
/*!
 * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
.fa {
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
}

.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp-solid, .fa-solid, .fab, .far, .fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
	font-family: "Font Awesome 6 Free";
}

.fa-brands, .fab {
	font-family: "Font Awesome 6 Brands";
}

.fa-1x {
	font-size: 1em;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-6x {
	font-size: 6em;
}

.fa-7x {
	font-size: 7em;
}

.fa-8x {
	font-size: 8em;
}

.fa-9x {
	font-size: 9em;
}

.fa-10x {
	font-size: 10em;
}

.fa-2xs {
	font-size: .625em;
	line-height: .1em;
	vertical-align: .225em;
}

.fa-xs {
	font-size: .75em;
	line-height: .08333em;
	vertical-align: .125em;
}

.fa-sm {
	font-size: .875em;
	line-height: .07143em;
	vertical-align: .05357em;
}

.fa-lg {
	font-size: 1.25em;
	line-height: .05em;
	vertical-align: -.075em;
}

.fa-xl {
	font-size: 1.5em;
	line-height: .04167em;
	vertical-align: -.125em;
}

.fa-2xl {
	font-size: 2em;
	line-height: .03125em;
	vertical-align: -.1875em;
}

.fa-fw {
	text-align: center;
	width: 1.25em;
}

.fa-ul {
	list-style-type: none;
	margin-left: var(--fa-li-margin, 2.5em);
	padding-left: 0;
}

.fa-ul>li {
	position: relative;
}

.fa-li {
	left: calc(var(--fa-li-width, 2em) * -1);
	position: absolute;
	text-align: center;
	width: var(--fa-li-width, 2em);
	line-height: inherit;
}

.fa-border {
	border-radius: var(--fa-border-radius, .1em);
	border: var(--fa-border-width, .08em) var(--fa-border-style, solid) var(--fa-border-color, #eee);
	padding: var(--fa-border-padding, .2em .25em .15em);
}

.fa-pull-left {
	float: left;
	margin-right: var(--fa-pull-margin, .3em);
}

.fa-pull-right {
	float: right;
	margin-left: var(--fa-pull-margin, .3em);
}

.fa-beat {
	animation-name: fa-beat;
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
	animation-duration: var(--fa-animation-duration, 1s);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
	animation-name: fa-bounce;
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
	animation-duration: var(--fa-animation-duration, 1s);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1));
}

.fa-fade {
	animation-name: fa-fade;
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
}

.fa-beat-fade, .fa-fade {
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
	animation-duration: var(--fa-animation-duration, 1s);
}

.fa-beat-fade {
	animation-name: fa-beat-fade;
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
}

.fa-flip {
	animation-name: fa-flip;
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
	animation-duration: var(--fa-animation-duration, 1s);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
	animation-name: fa-shake;
	animation-duration: var(--fa-animation-duration, 1s);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-shake, .fa-spin {
	animation-delay: var(--fa-animation-delay, 0s);
	animation-direction: var(--fa-animation-direction, normal);
}

.fa-spin {
	animation-name: fa-spin;
	animation-duration: var(--fa-animation-duration, 2s);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
	--fa-animation-direction: reverse;
}

.fa-pulse, .fa-spin-pulse {
	animation-name: fa-spin;
	animation-direction: var(--fa-animation-direction, normal);
	animation-duration: var(--fa-animation-duration, 1s);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion:reduce) {
	.fa-beat, .fa-beat-fade, .fa-bounce, .fa-fade, .fa-flip, .fa-pulse, .fa-shake, .fa-spin, .fa-spin-pulse {
		animation-delay: -1ms;
		animation-duration: 1ms;
		animation-iteration-count: 1;
		transition-delay: 0s;
		transition-duration: 0s;
	}
}

@keyframes fa-beat {
	0%, 90% {
		transform: scale(1);
	}
	
	45% {
		transform: scale(var(--fa-beat-scale, 1.25));
	}
}

@keyframes fa-bounce {
	0% {
		transform: scale(1) translateY(0);
	}
	
	10% {
		transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
	}
	
	30% {
		transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
	}
	
	50% {
		transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
	}
	
	57% {
		transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
	}
	
	64% {
		transform: scale(1) translateY(0);
	}
	
	to {
		transform: scale(1) translateY(0);
	}
}

@keyframes fa-fade {
	50% {
		opacity: var(--fa-fade-opacity, .4);
	}
}

@keyframes fa-beat-fade {
	0%, to {
		opacity: var(--fa-beat-fade-opacity, .4);
		transform: scale(1);
	}
	
	50% {
		opacity: 1;
		transform: scale(var(--fa-beat-fade-scale, 1.125));
	}
}

@keyframes fa-flip {
	50% {
		transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
	}
}

@keyframes fa-shake {
	0% {
		transform: rotate(-15deg);
	}
	
	4% {
		transform: rotate(15deg);
	}
	
	8%, 24% {
		transform: rotate(-18deg);
	}
	
	12%, 28% {
		transform: rotate(18deg);
	}
	
	16% {
		transform: rotate(-22deg);
	}
	
	20% {
		transform: rotate(22deg);
	}
	
	32% {
		transform: rotate(-12deg);
	}
	
	36% {
		transform: rotate(12deg);
	}
	
	40%, to {
		transform: rotate(0deg);
	}
}

@keyframes fa-spin {
	0% {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(1turn);
	}
}

.fa-rotate-90 {
	transform: rotate(90deg);
}

.fa-rotate-180 {
	transform: rotate(180deg);
}

.fa-rotate-270 {
	transform: rotate(270deg);
}

.fa-flip-horizontal {
	transform: scaleX(-1);
}

.fa-flip-vertical {
	transform: scaleY(-1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
	transform: scale(-1);
}

.fa-rotate-by {
	transform: rotate(var(--fa-rotate-angle, 0));
}

.fa-stack {
	display: inline-block;
	height: 2em;
	line-height: 2em;
	position: relative;
	vertical-align: middle;
	width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
	line-height: inherit;
}

.fa-stack-2x {
	font-size: 2em;
}

.fa-inverse {
	color: var(--fa-inverse, #fff);
}

.fa-0:before {
	content: "0";
}

.fa-1:before {
	content: "1";
}

.fa-2:before {
	content: "2";
}

.fa-3:before {
	content: "3";
}

.fa-4:before {
	content: "4";
}

.fa-5:before {
	content: "5";
}

.fa-6:before {
	content: "6";
}

.fa-7:before {
	content: "7";
}

.fa-8:before {
	content: "8";
}

.fa-9:before {
	content: "9";
}

.fa-fill-drip:before {
	content: "";
}

.fa-arrows-to-circle:before {
	content: "";
}

.fa-chevron-circle-right:before, .fa-circle-chevron-right:before {
	content: "";
}

.fa-at:before {
	content: "@";
}

.fa-trash-alt:before, .fa-trash-can:before {
	content: "";
}

.fa-text-height:before {
	content: "";
}

.fa-user-times:before, .fa-user-xmark:before {
	content: "";
}

.fa-stethoscope:before {
	content: "";
}

.fa-comment-alt:before, .fa-message:before {
	content: "";
}

.fa-info:before {
	content: "";
}

.fa-compress-alt:before, .fa-down-left-and-up-right-to-center:before {
	content: "";
}

.fa-explosion:before {
	content: "";
}

.fa-file-alt:before, .fa-file-lines:before, .fa-file-text:before {
	content: "";
}

.fa-wave-square:before {
	content: "";
}

.fa-ring:before {
	content: "";
}

.fa-building-un:before {
	content: "";
}

.fa-dice-three:before {
	content: "";
}

.fa-calendar-alt:before, .fa-calendar-days:before {
	content: "";
}

.fa-anchor-circle-check:before {
	content: "";
}

.fa-building-circle-arrow-right:before {
	content: "";
}

.fa-volleyball-ball:before, .fa-volleyball:before {
	content: "";
}

.fa-arrows-up-to-line:before {
	content: "";
}

.fa-sort-desc:before, .fa-sort-down:before {
	content: "";
}

.fa-circle-minus:before, .fa-minus-circle:before {
	content: "";
}

.fa-door-open:before {
	content: "";
}

.fa-right-from-bracket:before, .fa-sign-out-alt:before {
	content: "";
}

.fa-atom:before {
	content: "";
}

.fa-soap:before {
	content: "";
}

.fa-heart-music-camera-bolt:before, .fa-icons:before {
	content: "";
}

.fa-microphone-alt-slash:before, .fa-microphone-lines-slash:before {
	content: "";
}

.fa-bridge-circle-check:before {
	content: "";
}

.fa-pump-medical:before {
	content: "";
}

.fa-fingerprint:before {
	content: "";
}

.fa-hand-point-right:before {
	content: "";
}

.fa-magnifying-glass-location:before, .fa-search-location:before {
	content: "";
}

.fa-forward-step:before, .fa-step-forward:before {
	content: "";
}

.fa-face-smile-beam:before, .fa-smile-beam:before {
	content: "";
}

.fa-flag-checkered:before {
	content: "";
}

.fa-football-ball:before, .fa-football:before {
	content: "";
}

.fa-school-circle-exclamation:before {
	content: "";
}

.fa-crop:before {
	content: "";
}

.fa-angle-double-down:before, .fa-angles-down:before {
	content: "";
}

.fa-users-rectangle:before {
	content: "";
}

.fa-people-roof:before {
	content: "";
}

.fa-people-line:before {
	content: "";
}

.fa-beer-mug-empty:before, .fa-beer:before {
	content: "";
}

.fa-diagram-predecessor:before {
	content: "";
}

.fa-arrow-up-long:before, .fa-long-arrow-up:before {
	content: "";
}

.fa-burn:before, .fa-fire-flame-simple:before {
	content: "";
}

.fa-male:before, .fa-person:before {
	content: "";
}

.fa-laptop:before {
	content: "";
}

.fa-file-csv:before {
	content: "";
}

.fa-menorah:before {
	content: "";
}

.fa-truck-plane:before {
	content: "";
}

.fa-record-vinyl:before {
	content: "";
}

.fa-face-grin-stars:before, .fa-grin-stars:before {
	content: "";
}

.fa-bong:before {
	content: "";
}

.fa-pastafarianism:before, .fa-spaghetti-monster-flying:before {
	content: "";
}

.fa-arrow-down-up-across-line:before {
	content: "";
}

.fa-spoon:before, .fa-utensil-spoon:before {
	content: "";
}

.fa-jar-wheat:before {
	content: "";
}

.fa-envelopes-bulk:before, .fa-mail-bulk:before {
	content: "";
}

.fa-file-circle-exclamation:before {
	content: "";
}

.fa-circle-h:before, .fa-hospital-symbol:before {
	content: "";
}

.fa-pager:before {
	content: "";
}

.fa-address-book:before, .fa-contact-book:before {
	content: "";
}

.fa-strikethrough:before {
	content: "";
}

.fa-k:before {
	content: "K";
}

.fa-landmark-flag:before {
	content: "";
}

.fa-pencil-alt:before, .fa-pencil:before {
	content: "";
}

.fa-backward:before {
	content: "";
}

.fa-caret-right:before {
	content: "";
}

.fa-comments:before {
	content: "";
}

.fa-file-clipboard:before, .fa-paste:before {
	content: "";
}

.fa-code-pull-request:before {
	content: "";
}

.fa-clipboard-list:before {
	content: "";
}

.fa-truck-loading:before, .fa-truck-ramp-box:before {
	content: "";
}

.fa-user-check:before {
	content: "";
}

.fa-vial-virus:before {
	content: "";
}

.fa-sheet-plastic:before {
	content: "";
}

.fa-blog:before {
	content: "";
}

.fa-user-ninja:before {
	content: "";
}

.fa-person-arrow-up-from-line:before {
	content: "";
}

.fa-scroll-torah:before, .fa-torah:before {
	content: "";
}

.fa-broom-ball:before, .fa-quidditch-broom-ball:before, .fa-quidditch:before {
	content: "";
}

.fa-toggle-off:before {
	content: "";
}

.fa-archive:before, .fa-box-archive:before {
	content: "";
}

.fa-person-drowning:before {
	content: "";
}

.fa-arrow-down-9-1:before, .fa-sort-numeric-desc:before, .fa-sort-numeric-down-alt:before {
	content: "";
}

.fa-face-grin-tongue-squint:before, .fa-grin-tongue-squint:before {
	content: "";
}

.fa-spray-can:before {
	content: "";
}

.fa-truck-monster:before {
	content: "";
}

.fa-w:before {
	content: "W";
}

.fa-earth-africa:before, .fa-globe-africa:before {
	content: "";
}

.fa-rainbow:before {
	content: "";
}

.fa-circle-notch:before {
	content: "";
}

.fa-tablet-alt:before, .fa-tablet-screen-button:before {
	content: "";
}

.fa-paw:before {
	content: "";
}

.fa-cloud:before {
	content: "";
}

.fa-trowel-bricks:before {
	content: "";
}

.fa-face-flushed:before, .fa-flushed:before {
	content: "";
}

.fa-hospital-user:before {
	content: "";
}

.fa-tent-arrow-left-right:before {
	content: "";
}

.fa-gavel:before, .fa-legal:before {
	content: "";
}

.fa-binoculars:before {
	content: "";
}

.fa-microphone-slash:before {
	content: "";
}

.fa-box-tissue:before {
	content: "";
}

.fa-motorcycle:before {
	content: "";
}

.fa-bell-concierge:before, .fa-concierge-bell:before {
	content: "";
}

.fa-pen-ruler:before, .fa-pencil-ruler:before {
	content: "";
}

.fa-people-arrows-left-right:before, .fa-people-arrows:before {
	content: "";
}

.fa-mars-and-venus-burst:before {
	content: "";
}

.fa-caret-square-right:before, .fa-square-caret-right:before {
	content: "";
}

.fa-cut:before, .fa-scissors:before {
	content: "";
}

.fa-sun-plant-wilt:before {
	content: "";
}

.fa-toilets-portable:before {
	content: "";
}

.fa-hockey-puck:before {
	content: "";
}

.fa-table:before {
	content: "";
}

.fa-magnifying-glass-arrow-right:before {
	content: "";
}

.fa-digital-tachograph:before, .fa-tachograph-digital:before {
	content: "";
}

.fa-users-slash:before {
	content: "";
}

.fa-clover:before {
	content: "";
}

.fa-mail-reply:before, .fa-reply:before {
	content: "";
}

.fa-star-and-crescent:before {
	content: "";
}

.fa-house-fire:before {
	content: "";
}

.fa-minus-square:before, .fa-square-minus:before {
	content: "";
}

.fa-helicopter:before {
	content: "";
}

.fa-compass:before {
	content: "";
}

.fa-caret-square-down:before, .fa-square-caret-down:before {
	content: "";
}

.fa-file-circle-question:before {
	content: "";
}

.fa-laptop-code:before {
	content: "";
}

.fa-swatchbook:before {
	content: "";
}

.fa-prescription-bottle:before {
	content: "";
}

.fa-bars:before, .fa-navicon:before {
	content: "";
}

.fa-people-group:before {
	content: "";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
	content: "";
}

.fa-heart-broken:before, .fa-heart-crack:before {
	content: "";
}

.fa-external-link-square-alt:before, .fa-square-up-right:before {
	content: "";
}

.fa-face-kiss-beam:before, .fa-kiss-beam:before {
	content: "";
}

.fa-film:before {
	content: "";
}

.fa-ruler-horizontal:before {
	content: "";
}

.fa-people-robbery:before {
	content: "";
}

.fa-lightbulb:before {
	content: "";
}

.fa-caret-left:before {
	content: "";
}

.fa-circle-exclamation:before, .fa-exclamation-circle:before {
	content: "";
}

.fa-school-circle-xmark:before {
	content: "";
}

.fa-arrow-right-from-bracket:before, .fa-sign-out:before {
	content: "";
}

.fa-chevron-circle-down:before, .fa-circle-chevron-down:before {
	content: "";
}

.fa-unlock-alt:before, .fa-unlock-keyhole:before {
	content: "";
}

.fa-cloud-showers-heavy:before {
	content: "";
}

.fa-headphones-alt:before, .fa-headphones-simple:before {
	content: "";
}

.fa-sitemap:before {
	content: "";
}

.fa-circle-dollar-to-slot:before, .fa-donate:before {
	content: "";
}

.fa-memory:before {
	content: "";
}

.fa-road-spikes:before {
	content: "";
}

.fa-fire-burner:before {
	content: "";
}

.fa-flag:before {
	content: "";
}

.fa-hanukiah:before {
	content: "";
}

.fa-feather:before {
	content: "";
}

.fa-volume-down:before, .fa-volume-low:before {
	content: "";
}

.fa-comment-slash:before {
	content: "";
}

.fa-cloud-sun-rain:before {
	content: "";
}

.fa-compress:before {
	content: "";
}

.fa-wheat-alt:before, .fa-wheat-awn:before {
	content: "";
}

.fa-ankh:before {
	content: "";
}

.fa-hands-holding-child:before {
	content: "";
}

.fa-asterisk:before {
	content: "*";
}

.fa-check-square:before, .fa-square-check:before {
	content: "";
}

.fa-peseta-sign:before {
	content: "";
}

.fa-header:before, .fa-heading:before {
	content: "";
}

.fa-ghost:before {
	content: "";
}

.fa-list-squares:before, .fa-list:before {
	content: "";
}

.fa-phone-square-alt:before, .fa-square-phone-flip:before {
	content: "";
}

.fa-cart-plus:before {
	content: "";
}

.fa-gamepad:before {
	content: "";
}

.fa-circle-dot:before, .fa-dot-circle:before {
	content: "";
}

.fa-dizzy:before, .fa-face-dizzy:before {
	content: "";
}

.fa-egg:before {
	content: "";
}

.fa-house-medical-circle-xmark:before {
	content: "";
}

.fa-campground:before {
	content: "";
}

.fa-folder-plus:before {
	content: "";
}

.fa-futbol-ball:before, .fa-futbol:before, .fa-soccer-ball:before {
	content: "";
}

.fa-paint-brush:before, .fa-paintbrush:before {
	content: "";
}

.fa-lock:before {
	content: "";
}

.fa-gas-pump:before {
	content: "";
}

.fa-hot-tub-person:before, .fa-hot-tub:before {
	content: "";
}

.fa-map-location:before, .fa-map-marked:before {
	content: "";
}

.fa-house-flood-water:before {
	content: "";
}

.fa-tree:before {
	content: "";
}

.fa-bridge-lock:before {
	content: "";
}

.fa-sack-dollar:before {
	content: "";
}

.fa-edit:before, .fa-pen-to-square:before {
	content: "";
}

.fa-car-side:before {
	content: "";
}

.fa-share-alt:before, .fa-share-nodes:before {
	content: "";
}

.fa-heart-circle-minus:before {
	content: "";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
	content: "";
}

.fa-microscope:before {
	content: "";
}

.fa-sink:before {
	content: "";
}

.fa-bag-shopping:before, .fa-shopping-bag:before {
	content: "";
}

.fa-arrow-down-z-a:before, .fa-sort-alpha-desc:before, .fa-sort-alpha-down-alt:before {
	content: "";
}

.fa-mitten:before {
	content: "";
}

.fa-person-rays:before {
	content: "";
}

.fa-users:before {
	content: "";
}

.fa-eye-slash:before {
	content: "";
}

.fa-flask-vial:before {
	content: "";
}

.fa-hand-paper:before, .fa-hand:before {
	content: "";
}

.fa-om:before {
	content: "";
}

.fa-worm:before {
	content: "";
}

.fa-house-circle-xmark:before {
	content: "";
}

.fa-plug:before {
	content: "";
}

.fa-chevron-up:before {
	content: "";
}

.fa-hand-spock:before {
	content: "";
}

.fa-stopwatch:before {
	content: "";
}

.fa-face-kiss:before, .fa-kiss:before {
	content: "";
}

.fa-bridge-circle-xmark:before {
	content: "";
}

.fa-face-grin-tongue:before, .fa-grin-tongue:before {
	content: "";
}

.fa-chess-bishop:before {
	content: "";
}

.fa-face-grin-wink:before, .fa-grin-wink:before {
	content: "";
}

.fa-deaf:before, .fa-deafness:before, .fa-ear-deaf:before, .fa-hard-of-hearing:before {
	content: "";
}

.fa-road-circle-check:before {
	content: "";
}

.fa-dice-five:before {
	content: "";
}

.fa-rss-square:before, .fa-square-rss:before {
	content: "";
}

.fa-land-mine-on:before {
	content: "";
}

.fa-i-cursor:before {
	content: "";
}

.fa-stamp:before {
	content: "";
}

.fa-stairs:before {
	content: "";
}

.fa-i:before {
	content: "I";
}

.fa-hryvnia-sign:before, .fa-hryvnia:before {
	content: "";
}

.fa-pills:before {
	content: "";
}

.fa-face-grin-wide:before, .fa-grin-alt:before {
	content: "";
}

.fa-tooth:before {
	content: "";
}

.fa-v:before {
	content: "V";
}

.fa-bangladeshi-taka-sign:before {
	content: "";
}

.fa-bicycle:before {
	content: "";
}

.fa-rod-asclepius:before, .fa-rod-snake:before, .fa-staff-aesculapius:before, .fa-staff-snake:before {
	content: "";
}

.fa-head-side-cough-slash:before {
	content: "";
}

.fa-ambulance:before, .fa-truck-medical:before {
	content: "";
}

.fa-wheat-awn-circle-exclamation:before {
	content: "";
}

.fa-snowman:before {
	content: "";
}

.fa-mortar-pestle:before {
	content: "";
}

.fa-road-barrier:before {
	content: "";
}

.fa-school:before {
	content: "";
}

.fa-igloo:before {
	content: "";
}

.fa-joint:before {
	content: "";
}

.fa-angle-right:before {
	content: "";
}

.fa-horse:before {
	content: "";
}

.fa-q:before {
	content: "Q";
}

.fa-g:before {
	content: "G";
}

.fa-notes-medical:before {
	content: "";
}

.fa-temperature-2:before, .fa-temperature-half:before, .fa-thermometer-2:before, .fa-thermometer-half:before {
	content: "";
}

.fa-dong-sign:before {
	content: "";
}

.fa-capsules:before {
	content: "";
}

.fa-poo-bolt:before, .fa-poo-storm:before {
	content: "";
}

.fa-face-frown-open:before, .fa-frown-open:before {
	content: "";
}

.fa-hand-point-up:before {
	content: "";
}

.fa-money-bill:before {
	content: "";
}

.fa-bookmark:before {
	content: "";
}

.fa-align-justify:before {
	content: "";
}

.fa-umbrella-beach:before {
	content: "";
}

.fa-helmet-un:before {
	content: "";
}

.fa-bullseye:before {
	content: "";
}

.fa-bacon:before {
	content: "";
}

.fa-hand-point-down:before {
	content: "";
}

.fa-arrow-up-from-bracket:before {
	content: "";
}

.fa-folder-blank:before, .fa-folder:before {
	content: "";
}

.fa-file-medical-alt:before, .fa-file-waveform:before {
	content: "";
}

.fa-radiation:before {
	content: "";
}

.fa-chart-simple:before {
	content: "";
}

.fa-mars-stroke:before {
	content: "";
}

.fa-vial:before {
	content: "";
}

.fa-dashboard:before, .fa-gauge-med:before, .fa-gauge:before, .fa-tachometer-alt-average:before {
	content: "";
}

.fa-magic-wand-sparkles:before, .fa-wand-magic-sparkles:before {
	content: "";
}

.fa-e:before {
	content: "E";
}

.fa-pen-alt:before, .fa-pen-clip:before {
	content: "";
}

.fa-bridge-circle-exclamation:before {
	content: "";
}

.fa-user:before {
	content: "";
}

.fa-school-circle-check:before {
	content: "";
}

.fa-dumpster:before {
	content: "";
}

.fa-shuttle-van:before, .fa-van-shuttle:before {
	content: "";
}

.fa-building-user:before {
	content: "";
}

.fa-caret-square-left:before, .fa-square-caret-left:before {
	content: "";
}

.fa-highlighter:before {
	content: "";
}

.fa-key:before {
	content: "";
}

.fa-bullhorn:before {
	content: "";
}

.fa-globe:before {
	content: "";
}

.fa-synagogue:before {
	content: "";
}

.fa-person-half-dress:before {
	content: "";
}

.fa-road-bridge:before {
	content: "";
}

.fa-location-arrow:before {
	content: "";
}

.fa-c:before {
	content: "C";
}

.fa-tablet-button:before {
	content: "";
}

.fa-building-lock:before {
	content: "";
}

.fa-pizza-slice:before {
	content: "";
}

.fa-money-bill-wave:before {
	content: "";
}

.fa-area-chart:before, .fa-chart-area:before {
	content: "";
}

.fa-house-flag:before {
	content: "";
}

.fa-person-circle-minus:before {
	content: "";
}

.fa-ban:before, .fa-cancel:before {
	content: "";
}

.fa-camera-rotate:before {
	content: "";
}

.fa-air-freshener:before, .fa-spray-can-sparkles:before {
	content: "";
}

.fa-star:before {
	content: "";
}

.fa-repeat:before {
	content: "";
}

.fa-cross:before {
	content: "";
}

.fa-box:before {
	content: "";
}

.fa-venus-mars:before {
	content: "";
}

.fa-arrow-pointer:before, .fa-mouse-pointer:before {
	content: "";
}

.fa-expand-arrows-alt:before, .fa-maximize:before {
	content: "";
}

.fa-charging-station:before {
	content: "";
}

.fa-shapes:before, .fa-triangle-circle-square:before {
	content: "";
}

.fa-random:before, .fa-shuffle:before {
	content: "";
}

.fa-person-running:before, .fa-running:before {
	content: "";
}

.fa-mobile-retro:before {
	content: "";
}

.fa-grip-lines-vertical:before {
	content: "";
}

.fa-spider:before {
	content: "";
}

.fa-hands-bound:before {
	content: "";
}

.fa-file-invoice-dollar:before {
	content: "";
}

.fa-plane-circle-exclamation:before {
	content: "";
}

.fa-x-ray:before {
	content: "";
}

.fa-spell-check:before {
	content: "";
}

.fa-slash:before {
	content: "";
}

.fa-computer-mouse:before, .fa-mouse:before {
	content: "";
}

.fa-arrow-right-to-bracket:before, .fa-sign-in:before {
	content: "";
}

.fa-shop-slash:before, .fa-store-alt-slash:before {
	content: "";
}

.fa-server:before {
	content: "";
}

.fa-virus-covid-slash:before {
	content: "";
}

.fa-shop-lock:before {
	content: "";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
	content: "";
}

.fa-blender-phone:before {
	content: "";
}

.fa-building-wheat:before {
	content: "";
}

.fa-person-breastfeeding:before {
	content: "";
}

.fa-right-to-bracket:before, .fa-sign-in-alt:before {
	content: "";
}

.fa-venus:before {
	content: "";
}

.fa-passport:before {
	content: "";
}

.fa-thumb-tack-slash:before, .fa-thumbtack-slash:before {
	content: "";
}

.fa-heart-pulse:before, .fa-heartbeat:before {
	content: "";
}

.fa-people-carry-box:before, .fa-people-carry:before {
	content: "";
}

.fa-temperature-high:before {
	content: "";
}

.fa-microchip:before {
	content: "";
}

.fa-crown:before {
	content: "";
}

.fa-weight-hanging:before {
	content: "";
}

.fa-xmarks-lines:before {
	content: "";
}

.fa-file-prescription:before {
	content: "";
}

.fa-weight-scale:before, .fa-weight:before {
	content: "";
}

.fa-user-friends:before, .fa-user-group:before {
	content: "";
}

.fa-arrow-up-a-z:before, .fa-sort-alpha-up:before {
	content: "";
}

.fa-chess-knight:before {
	content: "";
}

.fa-face-laugh-squint:before, .fa-laugh-squint:before {
	content: "";
}

.fa-wheelchair:before {
	content: "";
}

.fa-arrow-circle-up:before, .fa-circle-arrow-up:before {
	content: "";
}

.fa-toggle-on:before {
	content: "";
}

.fa-person-walking:before, .fa-walking:before {
	content: "";
}

.fa-l:before {
	content: "L";
}

.fa-fire:before {
	content: "";
}

.fa-bed-pulse:before, .fa-procedures:before {
	content: "";
}

.fa-shuttle-space:before, .fa-space-shuttle:before {
	content: "";
}

.fa-face-laugh:before, .fa-laugh:before {
	content: "";
}

.fa-folder-open:before {
	content: "";
}

.fa-heart-circle-plus:before {
	content: "";
}

.fa-code-fork:before {
	content: "";
}

.fa-city:before {
	content: "";
}

.fa-microphone-alt:before, .fa-microphone-lines:before {
	content: "";
}

.fa-pepper-hot:before {
	content: "";
}

.fa-unlock:before {
	content: "";
}

.fa-colon-sign:before {
	content: "";
}

.fa-headset:before {
	content: "";
}

.fa-store-slash:before {
	content: "";
}

.fa-road-circle-xmark:before {
	content: "";
}

.fa-user-minus:before {
	content: "";
}

.fa-mars-stroke-up:before, .fa-mars-stroke-v:before {
	content: "";
}

.fa-champagne-glasses:before, .fa-glass-cheers:before {
	content: "";
}

.fa-clipboard:before {
	content: "";
}

.fa-house-circle-exclamation:before {
	content: "";
}

.fa-file-arrow-up:before, .fa-file-upload:before {
	content: "";
}

.fa-wifi-3:before, .fa-wifi-strong:before, .fa-wifi:before {
	content: "";
}

.fa-bath:before, .fa-bathtub:before {
	content: "";
}

.fa-underline:before {
	content: "";
}

.fa-user-edit:before, .fa-user-pen:before {
	content: "";
}

.fa-signature:before {
	content: "";
}

.fa-stroopwafel:before {
	content: "";
}

.fa-bold:before {
	content: "";
}

.fa-anchor-lock:before {
	content: "";
}

.fa-building-ngo:before {
	content: "";
}

.fa-manat-sign:before {
	content: "";
}

.fa-not-equal:before {
	content: "";
}

.fa-border-style:before, .fa-border-top-left:before {
	content: "";
}

.fa-map-location-dot:before, .fa-map-marked-alt:before {
	content: "";
}

.fa-jedi:before {
	content: "";
}

.fa-poll:before, .fa-square-poll-vertical:before {
	content: "";
}

.fa-mug-hot:before {
	content: "";
}

.fa-battery-car:before, .fa-car-battery:before {
	content: "";
}

.fa-gift:before {
	content: "";
}

.fa-dice-two:before {
	content: "";
}

.fa-chess-queen:before {
	content: "";
}

.fa-glasses:before {
	content: "";
}

.fa-chess-board:before {
	content: "";
}

.fa-building-circle-check:before {
	content: "";
}

.fa-person-chalkboard:before {
	content: "";
}

.fa-mars-stroke-h:before, .fa-mars-stroke-right:before {
	content: "";
}

.fa-hand-back-fist:before, .fa-hand-rock:before {
	content: "";
}

.fa-caret-square-up:before, .fa-square-caret-up:before {
	content: "";
}

.fa-cloud-showers-water:before {
	content: "";
}

.fa-bar-chart:before, .fa-chart-bar:before {
	content: "";
}

.fa-hands-bubbles:before, .fa-hands-wash:before {
	content: "";
}

.fa-less-than-equal:before {
	content: "";
}

.fa-train:before {
	content: "";
}

.fa-eye-low-vision:before, .fa-low-vision:before {
	content: "";
}

.fa-crow:before {
	content: "";
}

.fa-sailboat:before {
	content: "";
}

.fa-window-restore:before {
	content: "";
}

.fa-plus-square:before, .fa-square-plus:before {
	content: "";
}

.fa-torii-gate:before {
	content: "";
}

.fa-frog:before {
	content: "";
}

.fa-bucket:before {
	content: "";
}

.fa-image:before {
	content: "";
}

.fa-microphone:before {
	content: "";
}

.fa-cow:before {
	content: "";
}

.fa-caret-up:before {
	content: "";
}

.fa-screwdriver:before {
	content: "";
}

.fa-folder-closed:before {
	content: "";
}

.fa-house-tsunami:before {
	content: "";
}

.fa-square-nfi:before {
	content: "";
}

.fa-arrow-up-from-ground-water:before {
	content: "";
}

.fa-glass-martini-alt:before, .fa-martini-glass:before {
	content: "";
}

.fa-rotate-back:before, .fa-rotate-backward:before, .fa-rotate-left:before, .fa-undo-alt:before {
	content: "";
}

.fa-columns:before, .fa-table-columns:before {
	content: "";
}

.fa-lemon:before {
	content: "";
}

.fa-head-side-mask:before {
	content: "";
}

.fa-handshake:before {
	content: "";
}

.fa-gem:before {
	content: "";
}

.fa-dolly-box:before, .fa-dolly:before {
	content: "";
}

.fa-smoking:before {
	content: "";
}

.fa-compress-arrows-alt:before, .fa-minimize:before {
	content: "";
}

.fa-monument:before {
	content: "";
}

.fa-snowplow:before {
	content: "";
}

.fa-angle-double-right:before, .fa-angles-right:before {
	content: "";
}

.fa-cannabis:before {
	content: "";
}

.fa-circle-play:before, .fa-play-circle:before {
	content: "";
}

.fa-tablets:before {
	content: "";
}

.fa-ethernet:before {
	content: "";
}

.fa-eur:before, .fa-euro-sign:before, .fa-euro:before {
	content: "";
}

.fa-chair:before {
	content: "";
}

.fa-check-circle:before, .fa-circle-check:before {
	content: "";
}

.fa-circle-stop:before, .fa-stop-circle:before {
	content: "";
}

.fa-compass-drafting:before, .fa-drafting-compass:before {
	content: "";
}

.fa-plate-wheat:before {
	content: "";
}

.fa-icicles:before {
	content: "";
}

.fa-person-shelter:before {
	content: "";
}

.fa-neuter:before {
	content: "";
}

.fa-id-badge:before {
	content: "";
}

.fa-marker:before {
	content: "";
}

.fa-face-laugh-beam:before, .fa-laugh-beam:before {
	content: "";
}

.fa-helicopter-symbol:before {
	content: "";
}

.fa-universal-access:before {
	content: "";
}

.fa-chevron-circle-up:before, .fa-circle-chevron-up:before {
	content: "";
}

.fa-lari-sign:before {
	content: "";
}

.fa-volcano:before {
	content: "";
}

.fa-person-walking-dashed-line-arrow-right:before {
	content: "";
}

.fa-gbp:before, .fa-pound-sign:before, .fa-sterling-sign:before {
	content: "";
}

.fa-viruses:before {
	content: "";
}

.fa-square-person-confined:before {
	content: "";
}

.fa-user-tie:before {
	content: "";
}

.fa-arrow-down-long:before, .fa-long-arrow-down:before {
	content: "";
}

.fa-tent-arrow-down-to-line:before {
	content: "";
}

.fa-certificate:before {
	content: "";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
	content: "";
}

.fa-suitcase:before {
	content: "";
}

.fa-person-skating:before, .fa-skating:before {
	content: "";
}

.fa-filter-circle-dollar:before, .fa-funnel-dollar:before {
	content: "";
}

.fa-camera-retro:before {
	content: "";
}

.fa-arrow-circle-down:before, .fa-circle-arrow-down:before {
	content: "";
}

.fa-arrow-right-to-file:before, .fa-file-import:before {
	content: "";
}

.fa-external-link-square:before, .fa-square-arrow-up-right:before {
	content: "";
}

.fa-box-open:before {
	content: "";
}

.fa-scroll:before {
	content: "";
}

.fa-spa:before {
	content: "";
}

.fa-location-pin-lock:before {
	content: "";
}

.fa-pause:before {
	content: "";
}

.fa-hill-avalanche:before {
	content: "";
}

.fa-temperature-0:before, .fa-temperature-empty:before, .fa-thermometer-0:before, .fa-thermometer-empty:before {
	content: "";
}

.fa-bomb:before {
	content: "";
}

.fa-registered:before {
	content: "";
}

.fa-address-card:before, .fa-contact-card:before, .fa-vcard:before {
	content: "";
}

.fa-balance-scale-right:before, .fa-scale-unbalanced-flip:before {
	content: "";
}

.fa-subscript:before {
	content: "";
}

.fa-diamond-turn-right:before, .fa-directions:before {
	content: "";
}

.fa-burst:before {
	content: "";
}

.fa-house-laptop:before, .fa-laptop-house:before {
	content: "";
}

.fa-face-tired:before, .fa-tired:before {
	content: "";
}

.fa-money-bills:before {
	content: "";
}

.fa-smog:before {
	content: "";
}

.fa-crutch:before {
	content: "";
}

.fa-cloud-arrow-up:before, .fa-cloud-upload-alt:before, .fa-cloud-upload:before {
	content: "";
}

.fa-palette:before {
	content: "";
}

.fa-arrows-turn-right:before {
	content: "";
}

.fa-vest:before {
	content: "";
}

.fa-ferry:before {
	content: "";
}

.fa-arrows-down-to-people:before {
	content: "";
}

.fa-seedling:before, .fa-sprout:before {
	content: "";
}

.fa-arrows-alt-h:before, .fa-left-right:before {
	content: "";
}

.fa-boxes-packing:before {
	content: "";
}

.fa-arrow-circle-left:before, .fa-circle-arrow-left:before {
	content: "";
}

.fa-group-arrows-rotate:before {
	content: "";
}

.fa-bowl-food:before {
	content: "";
}

.fa-candy-cane:before {
	content: "";
}

.fa-arrow-down-wide-short:before, .fa-sort-amount-asc:before, .fa-sort-amount-down:before {
	content: "";
}

.fa-cloud-bolt:before, .fa-thunderstorm:before {
	content: "";
}

.fa-remove-format:before, .fa-text-slash:before {
	content: "";
}

.fa-face-smile-wink:before, .fa-smile-wink:before {
	content: "";
}

.fa-file-word:before {
	content: "";
}

.fa-file-powerpoint:before {
	content: "";
}

.fa-arrows-h:before, .fa-arrows-left-right:before {
	content: "";
}

.fa-house-lock:before {
	content: "";
}

.fa-cloud-arrow-down:before, .fa-cloud-download-alt:before, .fa-cloud-download:before {
	content: "";
}

.fa-children:before {
	content: "";
}

.fa-blackboard:before, .fa-chalkboard:before {
	content: "";
}

.fa-user-alt-slash:before, .fa-user-large-slash:before {
	content: "";
}

.fa-envelope-open:before {
	content: "";
}

.fa-handshake-alt-slash:before, .fa-handshake-simple-slash:before {
	content: "";
}

.fa-mattress-pillow:before {
	content: "";
}

.fa-guarani-sign:before {
	content: "";
}

.fa-arrows-rotate:before, .fa-refresh:before, .fa-sync:before {
	content: "";
}

.fa-fire-extinguisher:before {
	content: "";
}

.fa-cruzeiro-sign:before {
	content: "";
}

.fa-greater-than-equal:before {
	content: "";
}

.fa-shield-alt:before, .fa-shield-halved:before {
	content: "";
}

.fa-atlas:before, .fa-book-atlas:before {
	content: "";
}

.fa-virus:before {
	content: "";
}

.fa-envelope-circle-check:before {
	content: "";
}

.fa-layer-group:before {
	content: "";
}

.fa-arrows-to-dot:before {
	content: "";
}

.fa-archway:before {
	content: "";
}

.fa-heart-circle-check:before {
	content: "";
}

.fa-house-chimney-crack:before, .fa-house-damage:before {
	content: "";
}

.fa-file-archive:before, .fa-file-zipper:before {
	content: "";
}

.fa-square:before {
	content: "";
}

.fa-glass-martini:before, .fa-martini-glass-empty:before {
	content: "";
}

.fa-couch:before {
	content: "";
}

.fa-cedi-sign:before {
	content: "";
}

.fa-italic:before {
	content: "";
}

.fa-table-cells-column-lock:before {
	content: "";
}

.fa-church:before {
	content: "";
}

.fa-comments-dollar:before {
	content: "";
}

.fa-democrat:before {
	content: "";
}

.fa-z:before {
	content: "Z";
}

.fa-person-skiing:before, .fa-skiing:before {
	content: "";
}

.fa-road-lock:before {
	content: "";
}

.fa-a:before {
	content: "A";
}

.fa-temperature-arrow-down:before, .fa-temperature-down:before {
	content: "";
}

.fa-feather-alt:before, .fa-feather-pointed:before {
	content: "";
}

.fa-p:before {
	content: "P";
}

.fa-snowflake:before {
	content: "";
}

.fa-newspaper:before {
	content: "";
}

.fa-ad:before, .fa-rectangle-ad:before {
	content: "";
}

.fa-arrow-circle-right:before, .fa-circle-arrow-right:before {
	content: "";
}

.fa-filter-circle-xmark:before {
	content: "";
}

.fa-locust:before {
	content: "";
}

.fa-sort:before, .fa-unsorted:before {
	content: "";
}

.fa-list-1-2:before, .fa-list-numeric:before, .fa-list-ol:before {
	content: "";
}

.fa-person-dress-burst:before {
	content: "";
}

.fa-money-check-alt:before, .fa-money-check-dollar:before {
	content: "";
}

.fa-vector-square:before {
	content: "";
}

.fa-bread-slice:before {
	content: "";
}

.fa-language:before {
	content: "";
}

.fa-face-kiss-wink-heart:before, .fa-kiss-wink-heart:before {
	content: "";
}

.fa-filter:before {
	content: "";
}

.fa-question:before {
	content: "?";
}

.fa-file-signature:before {
	content: "";
}

.fa-arrows-alt:before, .fa-up-down-left-right:before {
	content: "";
}

.fa-house-chimney-user:before {
	content: "";
}

.fa-hand-holding-heart:before {
	content: "";
}

.fa-puzzle-piece:before {
	content: "";
}

.fa-money-check:before {
	content: "";
}

.fa-star-half-alt:before, .fa-star-half-stroke:before {
	content: "";
}

.fa-code:before {
	content: "";
}

.fa-glass-whiskey:before, .fa-whiskey-glass:before {
	content: "";
}

.fa-building-circle-exclamation:before {
	content: "";
}

.fa-magnifying-glass-chart:before {
	content: "";
}

.fa-arrow-up-right-from-square:before, .fa-external-link:before {
	content: "";
}

.fa-cubes-stacked:before {
	content: "";
}

.fa-krw:before, .fa-won-sign:before, .fa-won:before {
	content: "";
}

.fa-virus-covid:before {
	content: "";
}

.fa-austral-sign:before {
	content: "";
}

.fa-f:before {
	content: "F";
}

.fa-leaf:before {
	content: "";
}

.fa-road:before {
	content: "";
}

.fa-cab:before, .fa-taxi:before {
	content: "";
}

.fa-person-circle-plus:before {
	content: "";
}

.fa-chart-pie:before, .fa-pie-chart:before {
	content: "";
}

.fa-bolt-lightning:before {
	content: "";
}

.fa-sack-xmark:before {
	content: "";
}

.fa-file-excel:before {
	content: "";
}

.fa-file-contract:before {
	content: "";
}

.fa-fish-fins:before {
	content: "";
}

.fa-building-flag:before {
	content: "";
}

.fa-face-grin-beam:before, .fa-grin-beam:before {
	content: "";
}

.fa-object-ungroup:before {
	content: "";
}

.fa-poop:before {
	content: "";
}

.fa-location-pin:before, .fa-map-marker:before {
	content: "";
}

.fa-kaaba:before {
	content: "";
}

.fa-toilet-paper:before {
	content: "";
}

.fa-hard-hat:before, .fa-hat-hard:before, .fa-helmet-safety:before {
	content: "";
}

.fa-eject:before {
	content: "";
}

.fa-arrow-alt-circle-right:before, .fa-circle-right:before {
	content: "";
}

.fa-plane-circle-check:before {
	content: "";
}

.fa-face-rolling-eyes:before, .fa-meh-rolling-eyes:before {
	content: "";
}

.fa-object-group:before {
	content: "";
}

.fa-chart-line:before, .fa-line-chart:before {
	content: "";
}

.fa-mask-ventilator:before {
	content: "";
}

.fa-arrow-right:before {
	content: "";
}

.fa-map-signs:before, .fa-signs-post:before {
	content: "";
}

.fa-cash-register:before {
	content: "";
}

.fa-person-circle-question:before {
	content: "";
}

.fa-h:before {
	content: "H";
}

.fa-tarp:before {
	content: "";
}

.fa-screwdriver-wrench:before, .fa-tools:before {
	content: "";
}

.fa-arrows-to-eye:before {
	content: "";
}

.fa-plug-circle-bolt:before {
	content: "";
}

.fa-heart:before {
	content: "";
}

.fa-mars-and-venus:before {
	content: "";
}

.fa-home-user:before, .fa-house-user:before {
	content: "";
}

.fa-dumpster-fire:before {
	content: "";
}

.fa-house-crack:before {
	content: "";
}

.fa-cocktail:before, .fa-martini-glass-citrus:before {
	content: "";
}

.fa-face-surprise:before, .fa-surprise:before {
	content: "";
}

.fa-bottle-water:before {
	content: "";
}

.fa-circle-pause:before, .fa-pause-circle:before {
	content: "";
}

.fa-toilet-paper-slash:before {
	content: "";
}

.fa-apple-alt:before, .fa-apple-whole:before {
	content: "";
}

.fa-kitchen-set:before {
	content: "";
}

.fa-r:before {
	content: "R";
}

.fa-temperature-1:before, .fa-temperature-quarter:before, .fa-thermometer-1:before, .fa-thermometer-quarter:before {
	content: "";
}

.fa-cube:before {
	content: "";
}

.fa-bitcoin-sign:before {
	content: "";
}

.fa-shield-dog:before {
	content: "";
}

.fa-solar-panel:before {
	content: "";
}

.fa-lock-open:before {
	content: "";
}

.fa-elevator:before {
	content: "";
}

.fa-money-bill-transfer:before {
	content: "";
}

.fa-money-bill-trend-up:before {
	content: "";
}

.fa-house-flood-water-circle-arrow-right:before {
	content: "";
}

.fa-poll-h:before, .fa-square-poll-horizontal:before {
	content: "";
}

.fa-circle:before {
	content: "";
}

.fa-backward-fast:before, .fa-fast-backward:before {
	content: "";
}

.fa-recycle:before {
	content: "";
}

.fa-user-astronaut:before {
	content: "";
}

.fa-plane-slash:before {
	content: "";
}

.fa-trademark:before {
	content: "";
}

.fa-basketball-ball:before, .fa-basketball:before {
	content: "";
}

.fa-satellite-dish:before {
	content: "";
}

.fa-arrow-alt-circle-up:before, .fa-circle-up:before {
	content: "";
}

.fa-mobile-alt:before, .fa-mobile-screen-button:before {
	content: "";
}

.fa-volume-high:before, .fa-volume-up:before {
	content: "";
}

.fa-users-rays:before {
	content: "";
}

.fa-wallet:before {
	content: "";
}

.fa-clipboard-check:before {
	content: "";
}

.fa-file-audio:before {
	content: "";
}

.fa-burger:before, .fa-hamburger:before {
	content: "";
}

.fa-wrench:before {
	content: "";
}

.fa-bugs:before {
	content: "";
}

.fa-rupee-sign:before, .fa-rupee:before {
	content: "";
}

.fa-file-image:before {
	content: "";
}

.fa-circle-question:before, .fa-question-circle:before {
	content: "";
}

.fa-plane-departure:before {
	content: "";
}

.fa-handshake-slash:before {
	content: "";
}

.fa-book-bookmark:before {
	content: "";
}

.fa-code-branch:before {
	content: "";
}

.fa-hat-cowboy:before {
	content: "";
}

.fa-bridge:before {
	content: "";
}

.fa-phone-alt:before, .fa-phone-flip:before {
	content: "";
}

.fa-truck-front:before {
	content: "";
}

.fa-cat:before {
	content: "";
}

.fa-anchor-circle-exclamation:before {
	content: "";
}

.fa-truck-field:before {
	content: "";
}

.fa-route:before {
	content: "";
}

.fa-clipboard-question:before {
	content: "";
}

.fa-panorama:before {
	content: "";
}

.fa-comment-medical:before {
	content: "";
}

.fa-teeth-open:before {
	content: "";
}

.fa-file-circle-minus:before {
	content: "";
}

.fa-tags:before {
	content: "";
}

.fa-wine-glass:before {
	content: "";
}

.fa-fast-forward:before, .fa-forward-fast:before {
	content: "";
}

.fa-face-meh-blank:before, .fa-meh-blank:before {
	content: "";
}

.fa-parking:before, .fa-square-parking:before {
	content: "";
}

.fa-house-signal:before {
	content: "";
}

.fa-bars-progress:before, .fa-tasks-alt:before {
	content: "";
}

.fa-faucet-drip:before {
	content: "";
}

.fa-cart-flatbed:before, .fa-dolly-flatbed:before {
	content: "";
}

.fa-ban-smoking:before, .fa-smoking-ban:before {
	content: "";
}

.fa-terminal:before {
	content: "";
}

.fa-mobile-button:before {
	content: "";
}

.fa-house-medical-flag:before {
	content: "";
}

.fa-basket-shopping:before, .fa-shopping-basket:before {
	content: "";
}

.fa-tape:before {
	content: "";
}

.fa-bus-alt:before, .fa-bus-simple:before {
	content: "";
}

.fa-eye:before {
	content: "";
}

.fa-face-sad-cry:before, .fa-sad-cry:before {
	content: "";
}

.fa-audio-description:before {
	content: "";
}

.fa-person-military-to-person:before {
	content: "";
}

.fa-file-shield:before {
	content: "";
}

.fa-user-slash:before {
	content: "";
}

.fa-pen:before {
	content: "";
}

.fa-tower-observation:before {
	content: "";
}

.fa-file-code:before {
	content: "";
}

.fa-signal-5:before, .fa-signal-perfect:before, .fa-signal:before {
	content: "";
}

.fa-bus:before {
	content: "";
}

.fa-heart-circle-xmark:before {
	content: "";
}

.fa-home-lg:before, .fa-house-chimney:before {
	content: "";
}

.fa-window-maximize:before {
	content: "";
}

.fa-face-frown:before, .fa-frown:before {
	content: "";
}

.fa-prescription:before {
	content: "";
}

.fa-shop:before, .fa-store-alt:before {
	content: "";
}

.fa-floppy-disk:before, .fa-save:before {
	content: "";
}

.fa-vihara:before {
	content: "";
}

.fa-balance-scale-left:before, .fa-scale-unbalanced:before {
	content: "";
}

.fa-sort-asc:before, .fa-sort-up:before {
	content: "";
}

.fa-comment-dots:before, .fa-commenting:before {
	content: "";
}

.fa-plant-wilt:before {
	content: "";
}

.fa-diamond:before {
	content: "";
}

.fa-face-grin-squint:before, .fa-grin-squint:before {
	content: "";
}

.fa-hand-holding-dollar:before, .fa-hand-holding-usd:before {
	content: "";
}

.fa-bacterium:before {
	content: "";
}

.fa-hand-pointer:before {
	content: "";
}

.fa-drum-steelpan:before {
	content: "";
}

.fa-hand-scissors:before {
	content: "";
}

.fa-hands-praying:before, .fa-praying-hands:before {
	content: "";
}

.fa-arrow-right-rotate:before, .fa-arrow-rotate-forward:before, .fa-arrow-rotate-right:before, .fa-redo:before {
	content: "";
}

.fa-biohazard:before {
	content: "";
}

.fa-location-crosshairs:before, .fa-location:before {
	content: "";
}

.fa-mars-double:before {
	content: "";
}

.fa-child-dress:before {
	content: "";
}

.fa-users-between-lines:before {
	content: "";
}

.fa-lungs-virus:before {
	content: "";
}

.fa-face-grin-tears:before, .fa-grin-tears:before {
	content: "";
}

.fa-phone:before {
	content: "";
}

.fa-calendar-times:before, .fa-calendar-xmark:before {
	content: "";
}

.fa-child-reaching:before {
	content: "";
}

.fa-head-side-virus:before {
	content: "";
}

.fa-user-cog:before, .fa-user-gear:before {
	content: "";
}

.fa-arrow-up-1-9:before, .fa-sort-numeric-up:before {
	content: "";
}

.fa-door-closed:before {
	content: "";
}

.fa-shield-virus:before {
	content: "";
}

.fa-dice-six:before {
	content: "";
}

.fa-mosquito-net:before {
	content: "";
}

.fa-bridge-water:before {
	content: "";
}

.fa-person-booth:before {
	content: "";
}

.fa-text-width:before {
	content: "";
}

.fa-hat-wizard:before {
	content: "";
}

.fa-pen-fancy:before {
	content: "";
}

.fa-digging:before, .fa-person-digging:before {
	content: "";
}

.fa-trash:before {
	content: "";
}

.fa-gauge-simple-med:before, .fa-gauge-simple:before, .fa-tachometer-average:before {
	content: "";
}

.fa-book-medical:before {
	content: "";
}

.fa-poo:before {
	content: "";
}

.fa-quote-right-alt:before, .fa-quote-right:before {
	content: "";
}

.fa-shirt:before, .fa-t-shirt:before, .fa-tshirt:before {
	content: "";
}

.fa-cubes:before {
	content: "";
}

.fa-divide:before {
	content: "";
}

.fa-tenge-sign:before, .fa-tenge:before {
	content: "";
}

.fa-headphones:before {
	content: "";
}

.fa-hands-holding:before {
	content: "";
}

.fa-hands-clapping:before {
	content: "";
}

.fa-republican:before {
	content: "";
}

.fa-arrow-left:before {
	content: "";
}

.fa-person-circle-xmark:before {
	content: "";
}

.fa-ruler:before {
	content: "";
}

.fa-align-left:before {
	content: "";
}

.fa-dice-d6:before {
	content: "";
}

.fa-restroom:before {
	content: "";
}

.fa-j:before {
	content: "J";
}

.fa-users-viewfinder:before {
	content: "";
}

.fa-file-video:before {
	content: "";
}

.fa-external-link-alt:before, .fa-up-right-from-square:before {
	content: "";
}

.fa-table-cells:before, .fa-th:before {
	content: "";
}

.fa-file-pdf:before {
	content: "";
}

.fa-bible:before, .fa-book-bible:before {
	content: "";
}

.fa-o:before {
	content: "O";
}

.fa-medkit:before, .fa-suitcase-medical:before {
	content: "";
}

.fa-user-secret:before {
	content: "";
}

.fa-otter:before {
	content: "";
}

.fa-female:before, .fa-person-dress:before {
	content: "";
}

.fa-comment-dollar:before {
	content: "";
}

.fa-briefcase-clock:before, .fa-business-time:before {
	content: "";
}

.fa-table-cells-large:before, .fa-th-large:before {
	content: "";
}

.fa-book-tanakh:before, .fa-tanakh:before {
	content: "";
}

.fa-phone-volume:before, .fa-volume-control-phone:before {
	content: "";
}

.fa-hat-cowboy-side:before {
	content: "";
}

.fa-clipboard-user:before {
	content: "";
}

.fa-child:before {
	content: "";
}

.fa-lira-sign:before {
	content: "";
}

.fa-satellite:before {
	content: "";
}

.fa-plane-lock:before {
	content: "";
}

.fa-tag:before {
	content: "";
}

.fa-comment:before {
	content: "";
}

.fa-birthday-cake:before, .fa-cake-candles:before, .fa-cake:before {
	content: "";
}

.fa-envelope:before {
	content: "";
}

.fa-angle-double-up:before, .fa-angles-up:before {
	content: "";
}

.fa-paperclip:before {
	content: "";
}

.fa-arrow-right-to-city:before {
	content: "";
}

.fa-ribbon:before {
	content: "";
}

.fa-lungs:before {
	content: "";
}

.fa-arrow-up-9-1:before, .fa-sort-numeric-up-alt:before {
	content: "";
}

.fa-litecoin-sign:before {
	content: "";
}

.fa-border-none:before {
	content: "";
}

.fa-circle-nodes:before {
	content: "";
}

.fa-parachute-box:before {
	content: "";
}

.fa-indent:before {
	content: "";
}

.fa-truck-field-un:before {
	content: "";
}

.fa-hourglass-empty:before, .fa-hourglass:before {
	content: "";
}

.fa-mountain:before {
	content: "";
}

.fa-user-doctor:before, .fa-user-md:before {
	content: "";
}

.fa-circle-info:before, .fa-info-circle:before {
	content: "";
}

.fa-cloud-meatball:before {
	content: "";
}

.fa-camera-alt:before, .fa-camera:before {
	content: "";
}

.fa-square-virus:before {
	content: "";
}

.fa-meteor:before {
	content: "";
}

.fa-car-on:before {
	content: "";
}

.fa-sleigh:before {
	content: "";
}

.fa-arrow-down-1-9:before, .fa-sort-numeric-asc:before, .fa-sort-numeric-down:before {
	content: "";
}

.fa-hand-holding-droplet:before, .fa-hand-holding-water:before {
	content: "";
}

.fa-water:before {
	content: "";
}

.fa-calendar-check:before {
	content: "";
}

.fa-braille:before {
	content: "";
}

.fa-prescription-bottle-alt:before, .fa-prescription-bottle-medical:before {
	content: "";
}

.fa-landmark:before {
	content: "";
}

.fa-truck:before {
	content: "";
}

.fa-crosshairs:before {
	content: "";
}

.fa-person-cane:before {
	content: "";
}

.fa-tent:before {
	content: "";
}

.fa-vest-patches:before {
	content: "";
}

.fa-check-double:before {
	content: "";
}

.fa-arrow-down-a-z:before, .fa-sort-alpha-asc:before, .fa-sort-alpha-down:before {
	content: "";
}

.fa-money-bill-wheat:before {
	content: "";
}

.fa-cookie:before {
	content: "";
}

.fa-arrow-left-rotate:before, .fa-arrow-rotate-back:before, .fa-arrow-rotate-backward:before, .fa-arrow-rotate-left:before, .fa-undo:before {
	content: "";
}

.fa-hard-drive:before, .fa-hdd:before {
	content: "";
}

.fa-face-grin-squint-tears:before, .fa-grin-squint-tears:before {
	content: "";
}

.fa-dumbbell:before {
	content: "";
}

.fa-list-alt:before, .fa-rectangle-list:before {
	content: "";
}

.fa-tarp-droplet:before {
	content: "";
}

.fa-house-medical-circle-check:before {
	content: "";
}

.fa-person-skiing-nordic:before, .fa-skiing-nordic:before {
	content: "";
}

.fa-calendar-plus:before {
	content: "";
}

.fa-plane-arrival:before {
	content: "";
}

.fa-arrow-alt-circle-left:before, .fa-circle-left:before {
	content: "";
}

.fa-subway:before, .fa-train-subway:before {
	content: "";
}

.fa-chart-gantt:before {
	content: "";
}

.fa-indian-rupee-sign:before, .fa-indian-rupee:before, .fa-inr:before {
	content: "";
}

.fa-crop-alt:before, .fa-crop-simple:before {
	content: "";
}

.fa-money-bill-1:before, .fa-money-bill-alt:before {
	content: "";
}

.fa-left-long:before, .fa-long-arrow-alt-left:before {
	content: "";
}

.fa-dna:before {
	content: "";
}

.fa-virus-slash:before {
	content: "";
}

.fa-minus:before, .fa-subtract:before {
	content: "";
}

.fa-chess:before {
	content: "";
}

.fa-arrow-left-long:before, .fa-long-arrow-left:before {
	content: "";
}

.fa-plug-circle-check:before {
	content: "";
}

.fa-street-view:before {
	content: "";
}

.fa-franc-sign:before {
	content: "";
}

.fa-volume-off:before {
	content: "";
}

.fa-american-sign-language-interpreting:before, .fa-asl-interpreting:before, .fa-hands-american-sign-language-interpreting:before, .fa-hands-asl-interpreting:before {
	content: "";
}

.fa-cog:before, .fa-gear:before {
	content: "";
}

.fa-droplet-slash:before, .fa-tint-slash:before {
	content: "";
}

.fa-mosque:before {
	content: "";
}

.fa-mosquito:before {
	content: "";
}

.fa-star-of-david:before {
	content: "";
}

.fa-person-military-rifle:before {
	content: "";
}

.fa-cart-shopping:before, .fa-shopping-cart:before {
	content: "";
}

.fa-vials:before {
	content: "";
}

.fa-plug-circle-plus:before {
	content: "";
}

.fa-place-of-worship:before {
	content: "";
}

.fa-grip-vertical:before {
	content: "";
}

.fa-arrow-turn-up:before, .fa-level-up:before {
	content: "";
}

.fa-u:before {
	content: "U";
}

.fa-square-root-alt:before, .fa-square-root-variable:before {
	content: "";
}

.fa-clock-four:before, .fa-clock:before {
	content: "";
}

.fa-backward-step:before, .fa-step-backward:before {
	content: "";
}

.fa-pallet:before {
	content: "";
}

.fa-faucet:before {
	content: "";
}

.fa-baseball-bat-ball:before {
	content: "";
}

.fa-s:before {
	content: "S";
}

.fa-timeline:before {
	content: "";
}

.fa-keyboard:before {
	content: "";
}

.fa-caret-down:before {
	content: "";
}

.fa-clinic-medical:before, .fa-house-chimney-medical:before {
	content: "";
}

.fa-temperature-3:before, .fa-temperature-three-quarters:before, .fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
	content: "";
}

.fa-mobile-android-alt:before, .fa-mobile-screen:before {
	content: "";
}

.fa-plane-up:before {
	content: "";
}

.fa-piggy-bank:before {
	content: "";
}

.fa-battery-3:before, .fa-battery-half:before {
	content: "";
}

.fa-mountain-city:before {
	content: "";
}

.fa-coins:before {
	content: "";
}

.fa-khanda:before {
	content: "";
}

.fa-sliders-h:before, .fa-sliders:before {
	content: "";
}

.fa-folder-tree:before {
	content: "";
}

.fa-network-wired:before {
	content: "";
}

.fa-map-pin:before {
	content: "";
}

.fa-hamsa:before {
	content: "";
}

.fa-cent-sign:before {
	content: "";
}

.fa-flask:before {
	content: "";
}

.fa-person-pregnant:before {
	content: "";
}

.fa-wand-sparkles:before {
	content: "";
}

.fa-ellipsis-v:before, .fa-ellipsis-vertical:before {
	content: "";
}

.fa-ticket:before {
	content: "";
}

.fa-power-off:before {
	content: "";
}

.fa-long-arrow-alt-right:before, .fa-right-long:before {
	content: "";
}

.fa-flag-usa:before {
	content: "";
}

.fa-laptop-file:before {
	content: "";
}

.fa-teletype:before, .fa-tty:before {
	content: "";
}

.fa-diagram-next:before {
	content: "";
}

.fa-person-rifle:before {
	content: "";
}

.fa-house-medical-circle-exclamation:before {
	content: "";
}

.fa-closed-captioning:before {
	content: "";
}

.fa-hiking:before, .fa-person-hiking:before {
	content: "";
}

.fa-venus-double:before {
	content: "";
}

.fa-images:before {
	content: "";
}

.fa-calculator:before {
	content: "";
}

.fa-people-pulling:before {
	content: "";
}

.fa-n:before {
	content: "N";
}

.fa-cable-car:before, .fa-tram:before {
	content: "";
}

.fa-cloud-rain:before {
	content: "";
}

.fa-building-circle-xmark:before {
	content: "";
}

.fa-ship:before {
	content: "";
}

.fa-arrows-down-to-line:before {
	content: "";
}

.fa-download:before {
	content: "";
}

.fa-face-grin:before, .fa-grin:before {
	content: "";
}

.fa-backspace:before, .fa-delete-left:before {
	content: "";
}

.fa-eye-dropper-empty:before, .fa-eye-dropper:before, .fa-eyedropper:before {
	content: "";
}

.fa-file-circle-check:before {
	content: "";
}

.fa-forward:before {
	content: "";
}

.fa-mobile-android:before, .fa-mobile-phone:before, .fa-mobile:before {
	content: "";
}

.fa-face-meh:before, .fa-meh:before {
	content: "";
}

.fa-align-center:before {
	content: "";
}

.fa-book-dead:before, .fa-book-skull:before {
	content: "";
}

.fa-drivers-license:before, .fa-id-card:before {
	content: "";
}

.fa-dedent:before, .fa-outdent:before {
	content: "";
}

.fa-heart-circle-exclamation:before {
	content: "";
}

.fa-home-alt:before, .fa-home-lg-alt:before, .fa-home:before, .fa-house:before {
	content: "";
}

.fa-calendar-week:before {
	content: "";
}

.fa-laptop-medical:before {
	content: "";
}

.fa-b:before {
	content: "B";
}

.fa-file-medical:before {
	content: "";
}

.fa-dice-one:before {
	content: "";
}

.fa-kiwi-bird:before {
	content: "";
}

.fa-arrow-right-arrow-left:before, .fa-exchange:before {
	content: "";
}

.fa-redo-alt:before, .fa-rotate-forward:before, .fa-rotate-right:before {
	content: "";
}

.fa-cutlery:before, .fa-utensils:before {
	content: "";
}

.fa-arrow-up-wide-short:before, .fa-sort-amount-up:before {
	content: "";
}

.fa-mill-sign:before {
	content: "";
}

.fa-bowl-rice:before {
	content: "";
}

.fa-skull:before {
	content: "";
}

.fa-broadcast-tower:before, .fa-tower-broadcast:before {
	content: "";
}

.fa-truck-pickup:before {
	content: "";
}

.fa-long-arrow-alt-up:before, .fa-up-long:before {
	content: "";
}

.fa-stop:before {
	content: "";
}

.fa-code-merge:before {
	content: "";
}

.fa-upload:before {
	content: "";
}

.fa-hurricane:before {
	content: "";
}

.fa-mound:before {
	content: "";
}

.fa-toilet-portable:before {
	content: "";
}

.fa-compact-disc:before {
	content: "";
}

.fa-file-arrow-down:before, .fa-file-download:before {
	content: "";
}

.fa-caravan:before {
	content: "";
}

.fa-shield-cat:before {
	content: "";
}

.fa-bolt:before, .fa-zap:before {
	content: "";
}

.fa-glass-water:before {
	content: "";
}

.fa-oil-well:before {
	content: "";
}

.fa-vault:before {
	content: "";
}

.fa-mars:before {
	content: "";
}

.fa-toilet:before {
	content: "";
}

.fa-plane-circle-xmark:before {
	content: "";
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen-sign:before, .fa-yen:before {
	content: "";
}

.fa-rouble:before, .fa-rub:before, .fa-ruble-sign:before, .fa-ruble:before {
	content: "";
}

.fa-sun:before {
	content: "";
}

.fa-guitar:before {
	content: "";
}

.fa-face-laugh-wink:before, .fa-laugh-wink:before {
	content: "";
}

.fa-horse-head:before {
	content: "";
}

.fa-bore-hole:before {
	content: "";
}

.fa-industry:before {
	content: "";
}

.fa-arrow-alt-circle-down:before, .fa-circle-down:before {
	content: "";
}

.fa-arrows-turn-to-dots:before {
	content: "";
}

.fa-florin-sign:before {
	content: "";
}

.fa-arrow-down-short-wide:before, .fa-sort-amount-desc:before, .fa-sort-amount-down-alt:before {
	content: "";
}

.fa-less-than:before {
	content: "<";
}

.fa-angle-down:before {
	content: "";
}

.fa-car-tunnel:before {
	content: "";
}

.fa-head-side-cough:before {
	content: "";
}

.fa-grip-lines:before {
	content: "";
}

.fa-thumbs-down:before {
	content: "";
}

.fa-user-lock:before {
	content: "";
}

.fa-arrow-right-long:before, .fa-long-arrow-right:before {
	content: "";
}

.fa-anchor-circle-xmark:before {
	content: "";
}

.fa-ellipsis-h:before, .fa-ellipsis:before {
	content: "";
}

.fa-chess-pawn:before {
	content: "";
}

.fa-first-aid:before, .fa-kit-medical:before {
	content: "";
}

.fa-person-through-window:before {
	content: "";
}

.fa-toolbox:before {
	content: "";
}

.fa-hands-holding-circle:before {
	content: "";
}

.fa-bug:before {
	content: "";
}

.fa-credit-card-alt:before, .fa-credit-card:before {
	content: "";
}

.fa-automobile:before, .fa-car:before {
	content: "";
}

.fa-hand-holding-hand:before {
	content: "";
}

.fa-book-open-reader:before, .fa-book-reader:before {
	content: "";
}

.fa-mountain-sun:before {
	content: "";
}

.fa-arrows-left-right-to-line:before {
	content: "";
}

.fa-dice-d20:before {
	content: "";
}

.fa-truck-droplet:before {
	content: "";
}

.fa-file-circle-xmark:before {
	content: "";
}

.fa-temperature-arrow-up:before, .fa-temperature-up:before {
	content: "";
}

.fa-medal:before {
	content: "";
}

.fa-bed:before {
	content: "";
}

.fa-h-square:before, .fa-square-h:before {
	content: "";
}

.fa-podcast:before {
	content: "";
}

.fa-temperature-4:before, .fa-temperature-full:before, .fa-thermometer-4:before, .fa-thermometer-full:before {
	content: "";
}

.fa-bell:before {
	content: "";
}

.fa-superscript:before {
	content: "";
}

.fa-plug-circle-xmark:before {
	content: "";
}

.fa-star-of-life:before {
	content: "";
}

.fa-phone-slash:before {
	content: "";
}

.fa-paint-roller:before {
	content: "";
}

.fa-hands-helping:before, .fa-handshake-angle:before {
	content: "";
}

.fa-location-dot:before, .fa-map-marker-alt:before {
	content: "";
}

.fa-file:before {
	content: "";
}

.fa-greater-than:before {
	content: ">";
}

.fa-person-swimming:before, .fa-swimmer:before {
	content: "";
}

.fa-arrow-down:before {
	content: "";
}

.fa-droplet:before, .fa-tint:before {
	content: "";
}

.fa-eraser:before {
	content: "";
}

.fa-earth-america:before, .fa-earth-americas:before, .fa-earth:before, .fa-globe-americas:before {
	content: "";
}

.fa-person-burst:before {
	content: "";
}

.fa-dove:before {
	content: "";
}

.fa-battery-0:before, .fa-battery-empty:before {
	content: "";
}

.fa-socks:before {
	content: "";
}

.fa-inbox:before {
	content: "";
}

.fa-section:before {
	content: "";
}

.fa-gauge-high:before, .fa-tachometer-alt-fast:before, .fa-tachometer-alt:before {
	content: "";
}

.fa-envelope-open-text:before {
	content: "";
}

.fa-hospital-alt:before, .fa-hospital-wide:before, .fa-hospital:before {
	content: "";
}

.fa-wine-bottle:before {
	content: "";
}

.fa-chess-rook:before {
	content: "";
}

.fa-bars-staggered:before, .fa-reorder:before, .fa-stream:before {
	content: "";
}

.fa-dharmachakra:before {
	content: "";
}

.fa-hotdog:before {
	content: "";
}

.fa-blind:before, .fa-person-walking-with-cane:before {
	content: "";
}

.fa-drum:before {
	content: "";
}

.fa-ice-cream:before {
	content: "";
}

.fa-heart-circle-bolt:before {
	content: "";
}

.fa-fax:before {
	content: "";
}

.fa-paragraph:before {
	content: "";
}

.fa-check-to-slot:before, .fa-vote-yea:before {
	content: "";
}

.fa-star-half:before {
	content: "";
}

.fa-boxes-alt:before, .fa-boxes-stacked:before, .fa-boxes:before {
	content: "";
}

.fa-chain:before, .fa-link:before {
	content: "";
}

.fa-assistive-listening-systems:before, .fa-ear-listen:before {
	content: "";
}

.fa-tree-city:before {
	content: "";
}

.fa-play:before {
	content: "";
}

.fa-font:before {
	content: "";
}

.fa-table-cells-row-lock:before {
	content: "";
}

.fa-rupiah-sign:before {
	content: "";
}

.fa-magnifying-glass:before, .fa-search:before {
	content: "";
}

.fa-ping-pong-paddle-ball:before, .fa-table-tennis-paddle-ball:before, .fa-table-tennis:before {
	content: "";
}

.fa-diagnoses:before, .fa-person-dots-from-line:before {
	content: "";
}

.fa-trash-can-arrow-up:before, .fa-trash-restore-alt:before {
	content: "";
}

.fa-naira-sign:before {
	content: "";
}

.fa-cart-arrow-down:before {
	content: "";
}

.fa-walkie-talkie:before {
	content: "";
}

.fa-file-edit:before, .fa-file-pen:before {
	content: "";
}

.fa-receipt:before {
	content: "";
}

.fa-pen-square:before, .fa-pencil-square:before, .fa-square-pen:before {
	content: "";
}

.fa-suitcase-rolling:before {
	content: "";
}

.fa-person-circle-exclamation:before {
	content: "";
}

.fa-chevron-down:before {
	content: "";
}

.fa-battery-5:before, .fa-battery-full:before, .fa-battery:before {
	content: "";
}

.fa-skull-crossbones:before {
	content: "";
}

.fa-code-compare:before {
	content: "";
}

.fa-list-dots:before, .fa-list-ul:before {
	content: "";
}

.fa-school-lock:before {
	content: "";
}

.fa-tower-cell:before {
	content: "";
}

.fa-down-long:before, .fa-long-arrow-alt-down:before {
	content: "";
}

.fa-ranking-star:before {
	content: "";
}

.fa-chess-king:before {
	content: "";
}

.fa-person-harassing:before {
	content: "";
}

.fa-brazilian-real-sign:before {
	content: "";
}

.fa-landmark-alt:before, .fa-landmark-dome:before {
	content: "";
}

.fa-arrow-up:before {
	content: "";
}

.fa-television:before, .fa-tv-alt:before, .fa-tv:before {
	content: "";
}

.fa-shrimp:before {
	content: "";
}

.fa-list-check:before, .fa-tasks:before {
	content: "";
}

.fa-jug-detergent:before {
	content: "";
}

.fa-circle-user:before, .fa-user-circle:before {
	content: "";
}

.fa-user-shield:before {
	content: "";
}

.fa-wind:before {
	content: "";
}

.fa-car-burst:before, .fa-car-crash:before {
	content: "";
}

.fa-y:before {
	content: "Y";
}

.fa-person-snowboarding:before, .fa-snowboarding:before {
	content: "";
}

.fa-shipping-fast:before, .fa-truck-fast:before {
	content: "";
}

.fa-fish:before {
	content: "";
}

.fa-user-graduate:before {
	content: "";
}

.fa-adjust:before, .fa-circle-half-stroke:before {
	content: "";
}

.fa-clapperboard:before {
	content: "";
}

.fa-circle-radiation:before, .fa-radiation-alt:before {
	content: "";
}

.fa-baseball-ball:before, .fa-baseball:before {
	content: "";
}

.fa-jet-fighter-up:before {
	content: "";
}

.fa-diagram-project:before, .fa-project-diagram:before {
	content: "";
}

.fa-copy:before {
	content: "";
}

.fa-volume-mute:before, .fa-volume-times:before, .fa-volume-xmark:before {
	content: "";
}

.fa-hand-sparkles:before {
	content: "";
}

.fa-grip-horizontal:before, .fa-grip:before {
	content: "";
}

.fa-share-from-square:before, .fa-share-square:before {
	content: "";
}

.fa-child-combatant:before, .fa-child-rifle:before {
	content: "";
}

.fa-gun:before {
	content: "";
}

.fa-phone-square:before, .fa-square-phone:before {
	content: "";
}

.fa-add:before, .fa-plus:before {
	content: "+";
}

.fa-expand:before {
	content: "";
}

.fa-computer:before {
	content: "";
}

.fa-close:before, .fa-multiply:before, .fa-remove:before, .fa-times:before, .fa-xmark:before {
	content: "";
}

.fa-arrows-up-down-left-right:before, .fa-arrows:before {
	content: "";
}

.fa-chalkboard-teacher:before, .fa-chalkboard-user:before {
	content: "";
}

.fa-peso-sign:before {
	content: "";
}

.fa-building-shield:before {
	content: "";
}

.fa-baby:before {
	content: "";
}

.fa-users-line:before {
	content: "";
}

.fa-quote-left-alt:before, .fa-quote-left:before {
	content: "";
}

.fa-tractor:before {
	content: "";
}

.fa-trash-arrow-up:before, .fa-trash-restore:before {
	content: "";
}

.fa-arrow-down-up-lock:before {
	content: "";
}

.fa-lines-leaning:before {
	content: "";
}

.fa-ruler-combined:before {
	content: "";
}

.fa-copyright:before {
	content: "";
}

.fa-equals:before {
	content: "=";
}

.fa-blender:before {
	content: "";
}

.fa-teeth:before {
	content: "";
}

.fa-ils:before, .fa-shekel-sign:before, .fa-shekel:before, .fa-sheqel-sign:before, .fa-sheqel:before {
	content: "";
}

.fa-map:before {
	content: "";
}

.fa-rocket:before {
	content: "";
}

.fa-photo-film:before, .fa-photo-video:before {
	content: "";
}

.fa-folder-minus:before {
	content: "";
}

.fa-store:before {
	content: "";
}

.fa-arrow-trend-up:before {
	content: "";
}

.fa-plug-circle-minus:before {
	content: "";
}

.fa-sign-hanging:before, .fa-sign:before {
	content: "";
}

.fa-bezier-curve:before {
	content: "";
}

.fa-bell-slash:before {
	content: "";
}

.fa-tablet-android:before, .fa-tablet:before {
	content: "";
}

.fa-school-flag:before {
	content: "";
}

.fa-fill:before {
	content: "";
}

.fa-angle-up:before {
	content: "";
}

.fa-drumstick-bite:before {
	content: "";
}

.fa-holly-berry:before {
	content: "";
}

.fa-chevron-left:before {
	content: "";
}

.fa-bacteria:before {
	content: "";
}

.fa-hand-lizard:before {
	content: "";
}

.fa-notdef:before {
	content: "";
}

.fa-disease:before {
	content: "";
}

.fa-briefcase-medical:before {
	content: "";
}

.fa-genderless:before {
	content: "";
}

.fa-chevron-right:before {
	content: "";
}

.fa-retweet:before {
	content: "";
}

.fa-car-alt:before, .fa-car-rear:before {
	content: "";
}

.fa-pump-soap:before {
	content: "";
}

.fa-video-slash:before {
	content: "";
}

.fa-battery-2:before, .fa-battery-quarter:before {
	content: "";
}

.fa-radio:before {
	content: "";
}

.fa-baby-carriage:before, .fa-carriage-baby:before {
	content: "";
}

.fa-traffic-light:before {
	content: "";
}

.fa-thermometer:before {
	content: "";
}

.fa-vr-cardboard:before {
	content: "";
}

.fa-hand-middle-finger:before {
	content: "";
}

.fa-percent:before, .fa-percentage:before {
	content: "%";
}

.fa-truck-moving:before {
	content: "";
}

.fa-glass-water-droplet:before {
	content: "";
}

.fa-display:before {
	content: "";
}

.fa-face-smile:before, .fa-smile:before {
	content: "";
}

.fa-thumb-tack:before, .fa-thumbtack:before {
	content: "";
}

.fa-trophy:before {
	content: "";
}

.fa-person-praying:before, .fa-pray:before {
	content: "";
}

.fa-hammer:before {
	content: "";
}

.fa-hand-peace:before {
	content: "";
}

.fa-rotate:before, .fa-sync-alt:before {
	content: "";
}

.fa-spinner:before {
	content: "";
}

.fa-robot:before {
	content: "";
}

.fa-peace:before {
	content: "";
}

.fa-cogs:before, .fa-gears:before {
	content: "";
}

.fa-warehouse:before {
	content: "";
}

.fa-arrow-up-right-dots:before {
	content: "";
}

.fa-splotch:before {
	content: "";
}

.fa-face-grin-hearts:before, .fa-grin-hearts:before {
	content: "";
}

.fa-dice-four:before {
	content: "";
}

.fa-sim-card:before {
	content: "";
}

.fa-transgender-alt:before, .fa-transgender:before {
	content: "";
}

.fa-mercury:before {
	content: "";
}

.fa-arrow-turn-down:before, .fa-level-down:before {
	content: "";
}

.fa-person-falling-burst:before {
	content: "";
}

.fa-award:before {
	content: "";
}

.fa-ticket-alt:before, .fa-ticket-simple:before {
	content: "";
}

.fa-building:before {
	content: "";
}

.fa-angle-double-left:before, .fa-angles-left:before {
	content: "";
}

.fa-qrcode:before {
	content: "";
}

.fa-clock-rotate-left:before, .fa-history:before {
	content: "";
}

.fa-face-grin-beam-sweat:before, .fa-grin-beam-sweat:before {
	content: "";
}

.fa-arrow-right-from-file:before, .fa-file-export:before {
	content: "";
}

.fa-shield-blank:before, .fa-shield:before {
	content: "";
}

.fa-arrow-up-short-wide:before, .fa-sort-amount-up-alt:before {
	content: "";
}

.fa-house-medical:before {
	content: "";
}

.fa-golf-ball-tee:before, .fa-golf-ball:before {
	content: "";
}

.fa-chevron-circle-left:before, .fa-circle-chevron-left:before {
	content: "";
}

.fa-house-chimney-window:before {
	content: "";
}

.fa-pen-nib:before {
	content: "";
}

.fa-tent-arrow-turn-left:before {
	content: "";
}

.fa-tents:before {
	content: "";
}

.fa-magic:before, .fa-wand-magic:before {
	content: "";
}

.fa-dog:before {
	content: "";
}

.fa-carrot:before {
	content: "";
}

.fa-moon:before {
	content: "";
}

.fa-wine-glass-alt:before, .fa-wine-glass-empty:before {
	content: "";
}

.fa-cheese:before {
	content: "";
}

.fa-yin-yang:before {
	content: "";
}

.fa-music:before {
	content: "";
}

.fa-code-commit:before {
	content: "";
}

.fa-temperature-low:before {
	content: "";
}

.fa-biking:before, .fa-person-biking:before {
	content: "";
}

.fa-broom:before {
	content: "";
}

.fa-shield-heart:before {
	content: "";
}

.fa-gopuram:before {
	content: "";
}

.fa-earth-oceania:before, .fa-globe-oceania:before {
	content: "";
}

.fa-square-xmark:before, .fa-times-square:before, .fa-xmark-square:before {
	content: "";
}

.fa-hashtag:before {
	content: "#";
}

.fa-expand-alt:before, .fa-up-right-and-down-left-from-center:before {
	content: "";
}

.fa-oil-can:before {
	content: "";
}

.fa-t:before {
	content: "T";
}

.fa-hippo:before {
	content: "";
}

.fa-chart-column:before {
	content: "";
}

.fa-infinity:before {
	content: "";
}

.fa-vial-circle-check:before {
	content: "";
}

.fa-person-arrow-down-to-line:before {
	content: "";
}

.fa-voicemail:before {
	content: "";
}

.fa-fan:before {
	content: "";
}

.fa-person-walking-luggage:before {
	content: "";
}

.fa-arrows-alt-v:before, .fa-up-down:before {
	content: "";
}

.fa-cloud-moon-rain:before {
	content: "";
}

.fa-calendar:before {
	content: "";
}

.fa-trailer:before {
	content: "";
}

.fa-bahai:before, .fa-haykal:before {
	content: "";
}

.fa-sd-card:before {
	content: "";
}

.fa-dragon:before {
	content: "";
}

.fa-shoe-prints:before {
	content: "";
}

.fa-circle-plus:before, .fa-plus-circle:before {
	content: "";
}

.fa-face-grin-tongue-wink:before, .fa-grin-tongue-wink:before {
	content: "";
}

.fa-hand-holding:before {
	content: "";
}

.fa-plug-circle-exclamation:before {
	content: "";
}

.fa-chain-broken:before, .fa-chain-slash:before, .fa-link-slash:before, .fa-unlink:before {
	content: "";
}

.fa-clone:before {
	content: "";
}

.fa-person-walking-arrow-loop-left:before {
	content: "";
}

.fa-arrow-up-z-a:before, .fa-sort-alpha-up-alt:before {
	content: "";
}

.fa-fire-alt:before, .fa-fire-flame-curved:before {
	content: "";
}

.fa-tornado:before {
	content: "";
}

.fa-file-circle-plus:before {
	content: "";
}

.fa-book-quran:before, .fa-quran:before {
	content: "";
}

.fa-anchor:before {
	content: "";
}

.fa-border-all:before {
	content: "";
}

.fa-angry:before, .fa-face-angry:before {
	content: "";
}

.fa-cookie-bite:before {
	content: "";
}

.fa-arrow-trend-down:before {
	content: "";
}

.fa-feed:before, .fa-rss:before {
	content: "";
}

.fa-draw-polygon:before {
	content: "";
}

.fa-balance-scale:before, .fa-scale-balanced:before {
	content: "";
}

.fa-gauge-simple-high:before, .fa-tachometer-fast:before, .fa-tachometer:before {
	content: "";
}

.fa-shower:before {
	content: "";
}

.fa-desktop-alt:before, .fa-desktop:before {
	content: "";
}

.fa-m:before {
	content: "M";
}

.fa-table-list:before, .fa-th-list:before {
	content: "";
}

.fa-comment-sms:before, .fa-sms:before {
	content: "";
}

.fa-book:before {
	content: "";
}

.fa-user-plus:before {
	content: "";
}

.fa-check:before {
	content: "";
}

.fa-battery-4:before, .fa-battery-three-quarters:before {
	content: "";
}

.fa-house-circle-check:before {
	content: "";
}

.fa-angle-left:before {
	content: "";
}

.fa-diagram-successor:before {
	content: "";
}

.fa-truck-arrow-right:before {
	content: "";
}

.fa-arrows-split-up-and-left:before {
	content: "";
}

.fa-fist-raised:before, .fa-hand-fist:before {
	content: "";
}

.fa-cloud-moon:before {
	content: "";
}

.fa-briefcase:before {
	content: "";
}

.fa-person-falling:before {
	content: "";
}

.fa-image-portrait:before, .fa-portrait:before {
	content: "";
}

.fa-user-tag:before {
	content: "";
}

.fa-rug:before {
	content: "";
}

.fa-earth-europe:before, .fa-globe-europe:before {
	content: "";
}

.fa-cart-flatbed-suitcase:before, .fa-luggage-cart:before {
	content: "";
}

.fa-rectangle-times:before, .fa-rectangle-xmark:before, .fa-times-rectangle:before, .fa-window-close:before {
	content: "";
}

.fa-baht-sign:before {
	content: "";
}

.fa-book-open:before {
	content: "";
}

.fa-book-journal-whills:before, .fa-journal-whills:before {
	content: "";
}

.fa-handcuffs:before {
	content: "";
}

.fa-exclamation-triangle:before, .fa-triangle-exclamation:before, .fa-warning:before {
	content: "";
}

.fa-database:before {
	content: "";
}

.fa-mail-forward:before, .fa-share:before {
	content: "";
}

.fa-bottle-droplet:before {
	content: "";
}

.fa-mask-face:before {
	content: "";
}

.fa-hill-rockslide:before {
	content: "";
}

.fa-exchange-alt:before, .fa-right-left:before {
	content: "";
}

.fa-paper-plane:before {
	content: "";
}

.fa-road-circle-exclamation:before {
	content: "";
}

.fa-dungeon:before {
	content: "";
}

.fa-align-right:before {
	content: "";
}

.fa-money-bill-1-wave:before, .fa-money-bill-wave-alt:before {
	content: "";
}

.fa-life-ring:before {
	content: "";
}

.fa-hands:before, .fa-sign-language:before, .fa-signing:before {
	content: "";
}

.fa-calendar-day:before {
	content: "";
}

.fa-ladder-water:before, .fa-swimming-pool:before, .fa-water-ladder:before {
	content: "";
}

.fa-arrows-up-down:before, .fa-arrows-v:before {
	content: "";
}

.fa-face-grimace:before, .fa-grimace:before {
	content: "";
}

.fa-wheelchair-alt:before, .fa-wheelchair-move:before {
	content: "";
}

.fa-level-down-alt:before, .fa-turn-down:before {
	content: "";
}

.fa-person-walking-arrow-right:before {
	content: "";
}

.fa-envelope-square:before, .fa-square-envelope:before {
	content: "";
}

.fa-dice:before {
	content: "";
}

.fa-bowling-ball:before {
	content: "";
}

.fa-brain:before {
	content: "";
}

.fa-band-aid:before, .fa-bandage:before {
	content: "";
}

.fa-calendar-minus:before {
	content: "";
}

.fa-circle-xmark:before, .fa-times-circle:before, .fa-xmark-circle:before {
	content: "";
}

.fa-gifts:before {
	content: "";
}

.fa-hotel:before {
	content: "";
}

.fa-earth-asia:before, .fa-globe-asia:before {
	content: "";
}

.fa-id-card-alt:before, .fa-id-card-clip:before {
	content: "";
}

.fa-magnifying-glass-plus:before, .fa-search-plus:before {
	content: "";
}

.fa-thumbs-up:before {
	content: "";
}

.fa-user-clock:before {
	content: "";
}

.fa-allergies:before, .fa-hand-dots:before {
	content: "";
}

.fa-file-invoice:before {
	content: "";
}

.fa-window-minimize:before {
	content: "";
}

.fa-coffee:before, .fa-mug-saucer:before {
	content: "";
}

.fa-brush:before {
	content: "";
}

.fa-mask:before {
	content: "";
}

.fa-magnifying-glass-minus:before, .fa-search-minus:before {
	content: "";
}

.fa-ruler-vertical:before {
	content: "";
}

.fa-user-alt:before, .fa-user-large:before {
	content: "";
}

.fa-train-tram:before {
	content: "";
}

.fa-user-nurse:before {
	content: "";
}

.fa-syringe:before {
	content: "";
}

.fa-cloud-sun:before {
	content: "";
}

.fa-stopwatch-20:before {
	content: "";
}

.fa-square-full:before {
	content: "";
}

.fa-magnet:before {
	content: "";
}

.fa-jar:before {
	content: "";
}

.fa-note-sticky:before, .fa-sticky-note:before {
	content: "";
}

.fa-bug-slash:before {
	content: "";
}

.fa-arrow-up-from-water-pump:before {
	content: "";
}

.fa-bone:before {
	content: "";
}

.fa-table-cells-row-unlock:before {
	content: "";
}

.fa-user-injured:before {
	content: "";
}

.fa-face-sad-tear:before, .fa-sad-tear:before {
	content: "";
}

.fa-plane:before {
	content: "";
}

.fa-tent-arrows-down:before {
	content: "";
}

.fa-exclamation:before {
	content: "!";
}

.fa-arrows-spin:before {
	content: "";
}

.fa-print:before {
	content: "";
}

.fa-try:before, .fa-turkish-lira-sign:before, .fa-turkish-lira:before {
	content: "";
}

.fa-dollar-sign:before, .fa-dollar:before, .fa-usd:before {
	content: "$";
}

.fa-x:before {
	content: "X";
}

.fa-magnifying-glass-dollar:before, .fa-search-dollar:before {
	content: "";
}

.fa-users-cog:before, .fa-users-gear:before {
	content: "";
}

.fa-person-military-pointing:before {
	content: "";
}

.fa-bank:before, .fa-building-columns:before, .fa-institution:before, .fa-museum:before, .fa-university:before {
	content: "";
}

.fa-umbrella:before {
	content: "";
}

.fa-trowel:before {
	content: "";
}

.fa-d:before {
	content: "D";
}

.fa-stapler:before {
	content: "";
}

.fa-masks-theater:before, .fa-theater-masks:before {
	content: "";
}

.fa-kip-sign:before {
	content: "";
}

.fa-hand-point-left:before {
	content: "";
}

.fa-handshake-alt:before, .fa-handshake-simple:before {
	content: "";
}

.fa-fighter-jet:before, .fa-jet-fighter:before {
	content: "";
}

.fa-share-alt-square:before, .fa-square-share-nodes:before {
	content: "";
}

.fa-barcode:before {
	content: "";
}

.fa-plus-minus:before {
	content: "";
}

.fa-video-camera:before, .fa-video:before {
	content: "";
}

.fa-graduation-cap:before, .fa-mortar-board:before {
	content: "";
}

.fa-hand-holding-medical:before {
	content: "";
}

.fa-person-circle-check:before {
	content: "";
}

.fa-level-up-alt:before, .fa-turn-up:before {
	content: "";
}

.fa-sr-only, .fa-sr-only-focusable:not(:focus), .sr-only, .sr-only-focusable:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

:host, :root {
	--fa-style-family-brands: "Font Awesome 6 Brands";
	--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

.fa-brands, .fab {
	font-weight: 400;
}

.fa-monero:before {
	content: "";
}

.fa-hooli:before {
	content: "";
}

.fa-yelp:before {
	content: "";
}

.fa-cc-visa:before {
	content: "";
}

.fa-lastfm:before {
	content: "";
}

.fa-shopware:before {
	content: "";
}

.fa-creative-commons-nc:before {
	content: "";
}

.fa-aws:before {
	content: "";
}

.fa-redhat:before {
	content: "";
}

.fa-yoast:before {
	content: "";
}

.fa-cloudflare:before {
	content: "";
}

.fa-ups:before {
	content: "";
}

.fa-pixiv:before {
	content: "";
}

.fa-wpexplorer:before {
	content: "";
}

.fa-dyalog:before {
	content: "";
}

.fa-bity:before {
	content: "";
}

.fa-stackpath:before {
	content: "";
}

.fa-buysellads:before {
	content: "";
}

.fa-first-order:before {
	content: "";
}

.fa-modx:before {
	content: "";
}

.fa-guilded:before {
	content: "";
}

.fa-vnv:before {
	content: "";
}

.fa-js-square:before, .fa-square-js:before {
	content: "";
}

.fa-microsoft:before {
	content: "";
}

.fa-qq:before {
	content: "";
}

.fa-orcid:before {
	content: "";
}

.fa-java:before {
	content: "";
}

.fa-invision:before {
	content: "";
}

.fa-creative-commons-pd-alt:before {
	content: "";
}

.fa-centercode:before {
	content: "";
}

.fa-glide-g:before {
	content: "";
}

.fa-drupal:before {
	content: "";
}

.fa-jxl:before {
	content: "";
}

.fa-dart-lang:before {
	content: "";
}

.fa-hire-a-helper:before {
	content: "";
}

.fa-creative-commons-by:before {
	content: "";
}

.fa-unity:before {
	content: "";
}

.fa-whmcs:before {
	content: "";
}

.fa-rocketchat:before {
	content: "";
}

.fa-vk:before {
	content: "";
}

.fa-untappd:before {
	content: "";
}

.fa-mailchimp:before {
	content: "";
}

.fa-css3-alt:before {
	content: "";
}

.fa-reddit-square:before, .fa-square-reddit:before {
	content: "";
}

.fa-vimeo-v:before {
	content: "";
}

.fa-contao:before {
	content: "";
}

.fa-square-font-awesome:before {
	content: "";
}

.fa-deskpro:before {
	content: "";
}

.fa-brave:before {
	content: "";
}

.fa-sistrix:before {
	content: "";
}

.fa-instagram-square:before, .fa-square-instagram:before {
	content: "";
}

.fa-battle-net:before {
	content: "";
}

.fa-the-red-yeti:before {
	content: "";
}

.fa-hacker-news-square:before, .fa-square-hacker-news:before {
	content: "";
}

.fa-edge:before {
	content: "";
}

.fa-threads:before {
	content: "";
}

.fa-napster:before {
	content: "";
}

.fa-snapchat-square:before, .fa-square-snapchat:before {
	content: "";
}

.fa-google-plus-g:before {
	content: "";
}

.fa-artstation:before {
	content: "";
}

.fa-markdown:before {
	content: "";
}

.fa-sourcetree:before {
	content: "";
}

.fa-google-plus:before {
	content: "";
}

.fa-diaspora:before {
	content: "";
}

.fa-foursquare:before {
	content: "";
}

.fa-stack-overflow:before {
	content: "";
}

.fa-github-alt:before {
	content: "";
}

.fa-phoenix-squadron:before {
	content: "";
}

.fa-pagelines:before {
	content: "";
}

.fa-algolia:before {
	content: "";
}

.fa-red-river:before {
	content: "";
}

.fa-creative-commons-sa:before {
	content: "";
}

.fa-safari:before {
	content: "";
}

.fa-google:before {
	content: "";
}

.fa-font-awesome-alt:before, .fa-square-font-awesome-stroke:before {
	content: "";
}

.fa-atlassian:before {
	content: "";
}

.fa-linkedin-in:before {
	content: "";
}

.fa-digital-ocean:before {
	content: "";
}

.fa-nimblr:before {
	content: "";
}

.fa-chromecast:before {
	content: "";
}

.fa-evernote:before {
	content: "";
}

.fa-hacker-news:before {
	content: "";
}

.fa-creative-commons-sampling:before {
	content: "";
}

.fa-adversal:before {
	content: "";
}

.fa-creative-commons:before {
	content: "";
}

.fa-watchman-monitoring:before {
	content: "";
}

.fa-fonticons:before {
	content: "";
}

.fa-weixin:before {
	content: "";
}

.fa-shirtsinbulk:before {
	content: "";
}

.fa-codepen:before {
	content: "";
}

.fa-git-alt:before {
	content: "";
}

.fa-lyft:before {
	content: "";
}

.fa-rev:before {
	content: "";
}

.fa-windows:before {
	content: "";
}

.fa-wizards-of-the-coast:before {
	content: "";
}

.fa-square-viadeo:before, .fa-viadeo-square:before {
	content: "";
}

.fa-meetup:before {
	content: "";
}

.fa-centos:before {
	content: "";
}

.fa-adn:before {
	content: "";
}

.fa-cloudsmith:before {
	content: "";
}

.fa-opensuse:before {
	content: "";
}

.fa-pied-piper-alt:before {
	content: "";
}

.fa-dribbble-square:before, .fa-square-dribbble:before {
	content: "";
}

.fa-codiepie:before {
	content: "";
}

.fa-node:before {
	content: "";
}

.fa-mix:before {
	content: "";
}

.fa-steam:before {
	content: "";
}

.fa-cc-apple-pay:before {
	content: "";
}

.fa-scribd:before {
	content: "";
}

.fa-debian:before {
	content: "";
}

.fa-openid:before {
	content: "";
}

.fa-instalod:before {
	content: "";
}

.fa-expeditedssl:before {
	content: "";
}

.fa-sellcast:before {
	content: "";
}

.fa-square-twitter:before, .fa-twitter-square:before {
	content: "";
}

.fa-r-project:before {
	content: "";
}

.fa-delicious:before {
	content: "";
}

.fa-freebsd:before {
	content: "";
}

.fa-vuejs:before {
	content: "";
}

.fa-accusoft:before {
	content: "";
}

.fa-ioxhost:before {
	content: "";
}

.fa-fonticons-fi:before {
	content: "";
}

.fa-app-store:before {
	content: "";
}

.fa-cc-mastercard:before {
	content: "";
}

.fa-itunes-note:before {
	content: "";
}

.fa-golang:before {
	content: "";
}

.fa-kickstarter:before, .fa-square-kickstarter:before {
	content: "";
}

.fa-grav:before {
	content: "";
}

.fa-weibo:before {
	content: "";
}

.fa-uncharted:before {
	content: "";
}

.fa-firstdraft:before {
	content: "";
}

.fa-square-youtube:before, .fa-youtube-square:before {
	content: "";
}

.fa-wikipedia-w:before {
	content: "";
}

.fa-rendact:before, .fa-wpressr:before {
	content: "";
}

.fa-angellist:before {
	content: "";
}

.fa-galactic-republic:before {
	content: "";
}

.fa-nfc-directional:before {
	content: "";
}

.fa-skype:before {
	content: "";
}

.fa-joget:before {
	content: "";
}

.fa-fedora:before {
	content: "";
}

.fa-stripe-s:before {
	content: "";
}

.fa-meta:before {
	content: "";
}

.fa-laravel:before {
	content: "";
}

.fa-hotjar:before {
	content: "";
}

.fa-bluetooth-b:before {
	content: "";
}

.fa-square-letterboxd:before {
	content: "";
}

.fa-sticker-mule:before {
	content: "";
}

.fa-creative-commons-zero:before {
	content: "";
}

.fa-hips:before {
	content: "";
}

.fa-behance:before {
	content: "";
}

.fa-reddit:before {
	content: "";
}

.fa-discord:before {
	content: "";
}

.fa-chrome:before {
	content: "";
}

.fa-app-store-ios:before {
	content: "";
}

.fa-cc-discover:before {
	content: "";
}

.fa-wpbeginner:before {
	content: "";
}

.fa-confluence:before {
	content: "";
}

.fa-shoelace:before {
	content: "";
}

.fa-mdb:before {
	content: "";
}

.fa-dochub:before {
	content: "";
}

.fa-accessible-icon:before {
	content: "";
}

.fa-ebay:before {
	content: "";
}

.fa-amazon:before {
	content: "";
}

.fa-unsplash:before {
	content: "";
}

.fa-yarn:before {
	content: "";
}

.fa-square-steam:before, .fa-steam-square:before {
	content: "";
}

.fa-500px:before {
	content: "";
}

.fa-square-vimeo:before, .fa-vimeo-square:before {
	content: "";
}

.fa-asymmetrik:before {
	content: "";
}

.fa-font-awesome-flag:before, .fa-font-awesome-logo-full:before, .fa-font-awesome:before {
	content: "";
}

.fa-gratipay:before {
	content: "";
}

.fa-apple:before {
	content: "";
}

.fa-hive:before {
	content: "";
}

.fa-gitkraken:before {
	content: "";
}

.fa-keybase:before {
	content: "";
}

.fa-apple-pay:before {
	content: "";
}

.fa-padlet:before {
	content: "";
}

.fa-amazon-pay:before {
	content: "";
}

.fa-github-square:before, .fa-square-github:before {
	content: "";
}

.fa-stumbleupon:before {
	content: "";
}

.fa-fedex:before {
	content: "";
}

.fa-phoenix-framework:before {
	content: "";
}

.fa-shopify:before {
	content: "";
}

.fa-neos:before {
	content: "";
}

.fa-square-threads:before {
	content: "";
}

.fa-hackerrank:before {
	content: "";
}

.fa-researchgate:before {
	content: "";
}

.fa-swift:before {
	content: "";
}

.fa-angular:before {
	content: "";
}

.fa-speakap:before {
	content: "";
}

.fa-angrycreative:before {
	content: "";
}

.fa-y-combinator:before {
	content: "";
}

.fa-empire:before {
	content: "";
}

.fa-envira:before {
	content: "";
}

.fa-google-scholar:before {
	content: "";
}

.fa-gitlab-square:before, .fa-square-gitlab:before {
	content: "";
}

.fa-studiovinari:before {
	content: "";
}

.fa-pied-piper:before {
	content: "";
}

.fa-wordpress:before {
	content: "";
}

.fa-product-hunt:before {
	content: "";
}

.fa-firefox:before {
	content: "";
}

.fa-linode:before {
	content: "";
}

.fa-goodreads:before {
	content: "";
}

.fa-odnoklassniki-square:before, .fa-square-odnoklassniki:before {
	content: "";
}

.fa-jsfiddle:before {
	content: "";
}

.fa-sith:before {
	content: "";
}

.fa-themeisle:before {
	content: "";
}

.fa-page4:before {
	content: "";
}

.fa-hashnode:before {
	content: "";
}

.fa-react:before {
	content: "";
}

.fa-cc-paypal:before {
	content: "";
}

.fa-squarespace:before {
	content: "";
}

.fa-cc-stripe:before {
	content: "";
}

.fa-creative-commons-share:before {
	content: "";
}

.fa-bitcoin:before {
	content: "";
}

.fa-keycdn:before {
	content: "";
}

.fa-opera:before {
	content: "";
}

.fa-itch-io:before {
	content: "";
}

.fa-umbraco:before {
	content: "";
}

.fa-galactic-senate:before {
	content: "";
}

.fa-ubuntu:before {
	content: "";
}

.fa-draft2digital:before {
	content: "";
}

.fa-stripe:before {
	content: "";
}

.fa-houzz:before {
	content: "";
}

.fa-gg:before {
	content: "";
}

.fa-dhl:before {
	content: "";
}

.fa-pinterest-square:before, .fa-square-pinterest:before {
	content: "";
}

.fa-xing:before {
	content: "";
}

.fa-blackberry:before {
	content: "";
}

.fa-creative-commons-pd:before {
	content: "";
}

.fa-playstation:before {
	content: "";
}

.fa-quinscape:before {
	content: "";
}

.fa-less:before {
	content: "";
}

.fa-blogger-b:before {
	content: "";
}

.fa-opencart:before {
	content: "";
}

.fa-vine:before {
	content: "";
}

.fa-signal-messenger:before {
	content: "";
}

.fa-paypal:before {
	content: "";
}

.fa-gitlab:before {
	content: "";
}

.fa-typo3:before {
	content: "";
}

.fa-reddit-alien:before {
	content: "";
}

.fa-yahoo:before {
	content: "";
}

.fa-dailymotion:before {
	content: "";
}

.fa-affiliatetheme:before {
	content: "";
}

.fa-pied-piper-pp:before {
	content: "";
}

.fa-bootstrap:before {
	content: "";
}

.fa-odnoklassniki:before {
	content: "";
}

.fa-nfc-symbol:before {
	content: "";
}

.fa-mintbit:before {
	content: "";
}

.fa-ethereum:before {
	content: "";
}

.fa-speaker-deck:before {
	content: "";
}

.fa-creative-commons-nc-eu:before {
	content: "";
}

.fa-patreon:before {
	content: "";
}

.fa-avianex:before {
	content: "";
}

.fa-ello:before {
	content: "";
}

.fa-gofore:before {
	content: "";
}

.fa-bimobject:before {
	content: "";
}

.fa-brave-reverse:before {
	content: "";
}

.fa-facebook-f:before {
	content: "";
}

.fa-google-plus-square:before, .fa-square-google-plus:before {
	content: "";
}

.fa-web-awesome:before {
	content: "";
}

.fa-mandalorian:before {
	content: "";
}

.fa-first-order-alt:before {
	content: "";
}

.fa-osi:before {
	content: "";
}

.fa-google-wallet:before {
	content: "";
}

.fa-d-and-d-beyond:before {
	content: "";
}

.fa-periscope:before {
	content: "";
}

.fa-fulcrum:before {
	content: "";
}

.fa-cloudscale:before {
	content: "";
}

.fa-forumbee:before {
	content: "";
}

.fa-mizuni:before {
	content: "";
}

.fa-schlix:before {
	content: "";
}

.fa-square-xing:before, .fa-xing-square:before {
	content: "";
}

.fa-bandcamp:before {
	content: "";
}

.fa-wpforms:before {
	content: "";
}

.fa-cloudversify:before {
	content: "";
}

.fa-usps:before {
	content: "";
}

.fa-megaport:before {
	content: "";
}

.fa-magento:before {
	content: "";
}

.fa-spotify:before {
	content: "";
}

.fa-optin-monster:before {
	content: "";
}

.fa-fly:before {
	content: "";
}

.fa-aviato:before {
	content: "";
}

.fa-itunes:before {
	content: "";
}

.fa-cuttlefish:before {
	content: "";
}

.fa-blogger:before {
	content: "";
}

.fa-flickr:before {
	content: "";
}

.fa-viber:before {
	content: "";
}

.fa-soundcloud:before {
	content: "";
}

.fa-digg:before {
	content: "";
}

.fa-tencent-weibo:before {
	content: "";
}

.fa-letterboxd:before {
	content: "";
}

.fa-symfony:before {
	content: "";
}

.fa-maxcdn:before {
	content: "";
}

.fa-etsy:before {
	content: "";
}

.fa-facebook-messenger:before {
	content: "";
}

.fa-audible:before {
	content: "";
}

.fa-think-peaks:before {
	content: "";
}

.fa-bilibili:before {
	content: "";
}

.fa-erlang:before {
	content: "";
}

.fa-x-twitter:before {
	content: "";
}

.fa-cotton-bureau:before {
	content: "";
}

.fa-dashcube:before {
	content: "";
}

.fa-42-group:before, .fa-innosoft:before {
	content: "";
}

.fa-stack-exchange:before {
	content: "";
}

.fa-elementor:before {
	content: "";
}

.fa-pied-piper-square:before, .fa-square-pied-piper:before {
	content: "";
}

.fa-creative-commons-nd:before {
	content: "";
}

.fa-palfed:before {
	content: "";
}

.fa-superpowers:before {
	content: "";
}

.fa-resolving:before {
	content: "";
}

.fa-xbox:before {
	content: "";
}

.fa-square-web-awesome-stroke:before {
	content: "";
}

.fa-searchengin:before {
	content: "";
}

.fa-tiktok:before {
	content: "";
}

.fa-facebook-square:before, .fa-square-facebook:before {
	content: "";
}

.fa-renren:before {
	content: "";
}

.fa-linux:before {
	content: "";
}

.fa-glide:before {
	content: "";
}

.fa-linkedin:before {
	content: "";
}

.fa-hubspot:before {
	content: "";
}

.fa-deploydog:before {
	content: "";
}

.fa-twitch:before {
	content: "";
}

.fa-flutter:before {
	content: "";
}

.fa-ravelry:before {
	content: "";
}

.fa-mixer:before {
	content: "";
}

.fa-lastfm-square:before, .fa-square-lastfm:before {
	content: "";
}

.fa-vimeo:before {
	content: "";
}

.fa-mendeley:before {
	content: "";
}

.fa-uniregistry:before {
	content: "";
}

.fa-figma:before {
	content: "";
}

.fa-creative-commons-remix:before {
	content: "";
}

.fa-cc-amazon-pay:before {
	content: "";
}

.fa-dropbox:before {
	content: "";
}

.fa-instagram:before {
	content: "";
}

.fa-cmplid:before {
	content: "";
}

.fa-upwork:before {
	content: "";
}

.fa-facebook:before {
	content: "";
}

.fa-gripfire:before {
	content: "";
}

.fa-jedi-order:before {
	content: "";
}

.fa-uikit:before {
	content: "";
}

.fa-fort-awesome-alt:before {
	content: "";
}

.fa-phabricator:before {
	content: "";
}

.fa-ussunnah:before {
	content: "";
}

.fa-earlybirds:before {
	content: "";
}

.fa-trade-federation:before {
	content: "";
}

.fa-autoprefixer:before {
	content: "";
}

.fa-whatsapp:before {
	content: "";
}

.fa-square-upwork:before {
	content: "";
}

.fa-slideshare:before {
	content: "";
}

.fa-google-play:before {
	content: "";
}

.fa-viadeo:before {
	content: "";
}

.fa-line:before {
	content: "";
}

.fa-google-drive:before {
	content: "";
}

.fa-servicestack:before {
	content: "";
}

.fa-simplybuilt:before {
	content: "";
}

.fa-bitbucket:before {
	content: "";
}

.fa-imdb:before {
	content: "";
}

.fa-deezer:before {
	content: "";
}

.fa-raspberry-pi:before {
	content: "";
}

.fa-jira:before {
	content: "";
}

.fa-docker:before {
	content: "";
}

.fa-screenpal:before {
	content: "";
}

.fa-bluetooth:before {
	content: "";
}

.fa-gitter:before {
	content: "";
}

.fa-d-and-d:before {
	content: "";
}

.fa-microblog:before {
	content: "";
}

.fa-cc-diners-club:before {
	content: "";
}

.fa-gg-circle:before {
	content: "";
}

.fa-pied-piper-hat:before {
	content: "";
}

.fa-kickstarter-k:before {
	content: "";
}

.fa-yandex:before {
	content: "";
}

.fa-readme:before {
	content: "";
}

.fa-html5:before {
	content: "";
}

.fa-sellsy:before {
	content: "";
}

.fa-square-web-awesome:before {
	content: "";
}

.fa-sass:before {
	content: "";
}

.fa-wirsindhandwerk:before, .fa-wsh:before {
	content: "";
}

.fa-buromobelexperte:before {
	content: "";
}

.fa-salesforce:before {
	content: "";
}

.fa-octopus-deploy:before {
	content: "";
}

.fa-medapps:before {
	content: "";
}

.fa-ns8:before {
	content: "";
}

.fa-pinterest-p:before {
	content: "";
}

.fa-apper:before {
	content: "";
}

.fa-fort-awesome:before {
	content: "";
}

.fa-waze:before {
	content: "";
}

.fa-bluesky:before {
	content: "";
}

.fa-cc-jcb:before {
	content: "";
}

.fa-snapchat-ghost:before, .fa-snapchat:before {
	content: "";
}

.fa-fantasy-flight-games:before {
	content: "";
}

.fa-rust:before {
	content: "";
}

.fa-wix:before {
	content: "";
}

.fa-behance-square:before, .fa-square-behance:before {
	content: "";
}

.fa-supple:before {
	content: "";
}

.fa-webflow:before {
	content: "";
}

.fa-rebel:before {
	content: "";
}

.fa-css3:before {
	content: "";
}

.fa-staylinked:before {
	content: "";
}

.fa-kaggle:before {
	content: "";
}

.fa-space-awesome:before {
	content: "";
}

.fa-deviantart:before {
	content: "";
}

.fa-cpanel:before {
	content: "";
}

.fa-goodreads-g:before {
	content: "";
}

.fa-git-square:before, .fa-square-git:before {
	content: "";
}

.fa-square-tumblr:before, .fa-tumblr-square:before {
	content: "";
}

.fa-trello:before {
	content: "";
}

.fa-creative-commons-nc-jp:before {
	content: "";
}

.fa-get-pocket:before {
	content: "";
}

.fa-perbyte:before {
	content: "";
}

.fa-grunt:before {
	content: "";
}

.fa-weebly:before {
	content: "";
}

.fa-connectdevelop:before {
	content: "";
}

.fa-leanpub:before {
	content: "";
}

.fa-black-tie:before {
	content: "";
}

.fa-themeco:before {
	content: "";
}

.fa-python:before {
	content: "";
}

.fa-android:before {
	content: "";
}

.fa-bots:before {
	content: "";
}

.fa-free-code-camp:before {
	content: "";
}

.fa-hornbill:before {
	content: "";
}

.fa-js:before {
	content: "";
}

.fa-ideal:before {
	content: "";
}

.fa-git:before {
	content: "";
}

.fa-dev:before {
	content: "";
}

.fa-sketch:before {
	content: "";
}

.fa-yandex-international:before {
	content: "";
}

.fa-cc-amex:before {
	content: "";
}

.fa-uber:before {
	content: "";
}

.fa-github:before {
	content: "";
}

.fa-php:before {
	content: "";
}

.fa-alipay:before {
	content: "";
}

.fa-youtube:before {
	content: "";
}

.fa-skyatlas:before {
	content: "";
}

.fa-firefox-browser:before {
	content: "";
}

.fa-replyd:before {
	content: "";
}

.fa-suse:before {
	content: "";
}

.fa-jenkins:before {
	content: "";
}

.fa-twitter:before {
	content: "";
}

.fa-rockrms:before {
	content: "";
}

.fa-pinterest:before {
	content: "";
}

.fa-buffer:before {
	content: "";
}

.fa-npm:before {
	content: "";
}

.fa-yammer:before {
	content: "";
}

.fa-btc:before {
	content: "";
}

.fa-dribbble:before {
	content: "";
}

.fa-stumbleupon-circle:before {
	content: "";
}

.fa-internet-explorer:before {
	content: "";
}

.fa-stubber:before {
	content: "";
}

.fa-telegram-plane:before, .fa-telegram:before {
	content: "";
}

.fa-old-republic:before {
	content: "";
}

.fa-odysee:before {
	content: "";
}

.fa-square-whatsapp:before, .fa-whatsapp-square:before {
	content: "";
}

.fa-node-js:before {
	content: "";
}

.fa-edge-legacy:before {
	content: "";
}

.fa-slack-hash:before, .fa-slack:before {
	content: "";
}

.fa-medrt:before {
	content: "";
}

.fa-usb:before {
	content: "";
}

.fa-tumblr:before {
	content: "";
}

.fa-vaadin:before {
	content: "";
}

.fa-quora:before {
	content: "";
}

.fa-square-x-twitter:before {
	content: "";
}

.fa-reacteurope:before {
	content: "";
}

.fa-medium-m:before, .fa-medium:before {
	content: "";
}

.fa-amilia:before {
	content: "";
}

.fa-mixcloud:before {
	content: "";
}

.fa-flipboard:before {
	content: "";
}

.fa-viacoin:before {
	content: "";
}

.fa-critical-role:before {
	content: "";
}

.fa-sitrox:before {
	content: "";
}

.fa-discourse:before {
	content: "";
}

.fa-joomla:before {
	content: "";
}

.fa-mastodon:before {
	content: "";
}

.fa-airbnb:before {
	content: "";
}

.fa-wolf-pack-battalion:before {
	content: "";
}

.fa-buy-n-large:before {
	content: "";
}

.fa-gulp:before {
	content: "";
}

.fa-creative-commons-sampling-plus:before {
	content: "";
}

.fa-strava:before {
	content: "";
}

.fa-ember:before {
	content: "";
}

.fa-canadian-maple-leaf:before {
	content: "";
}

.fa-teamspeak:before {
	content: "";
}

.fa-pushed:before {
	content: "";
}

.fa-wordpress-simple:before {
	content: "";
}

.fa-nutritionix:before {
	content: "";
}

.fa-wodu:before {
	content: "";
}

.fa-google-pay:before {
	content: "";
}

.fa-intercom:before {
	content: "";
}

.fa-zhihu:before {
	content: "";
}

.fa-korvue:before {
	content: "";
}

.fa-pix:before {
	content: "";
}

.fa-steam-symbol:before {
	content: "";
}

:host, :root {
	--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}

.fa-regular, .far {
	font-weight: 400;
}

:host, :root {
	--fa-style-family-classic: "Font Awesome 6 Free";
	--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

.fa-solid, .fas {
	font-weight: 900;
}

[class^="ti-"]:before, [class*=" ti-"]:before {
	font-family: "themify";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ti-wand:before {
	content: "";
}

.ti-volume:before {
	content: "";
}

.ti-user:before {
	content: "";
}

.ti-unlock:before {
	content: "";
}

.ti-unlink:before {
	content: "";
}

.ti-trash:before {
	content: "";
}

.ti-thought:before {
	content: "";
}

.ti-target:before {
	content: "";
}

.ti-tag:before {
	content: "";
}

.ti-tablet:before {
	content: "";
}

.ti-star:before {
	content: "";
}

.ti-spray:before {
	content: "";
}

.ti-signal:before {
	content: "";
}

.ti-shopping-cart:before {
	content: "";
}

.ti-shopping-cart-full:before {
	content: "";
}

.ti-settings:before {
	content: "";
}

.ti-search:before {
	content: "";
}

.ti-zoom-in:before {
	content: "";
}

.ti-zoom-out:before {
	content: "";
}

.ti-cut:before {
	content: "";
}

.ti-ruler:before {
	content: "";
}

.ti-ruler-pencil:before {
	content: "";
}

.ti-ruler-alt:before {
	content: "";
}

.ti-bookmark:before {
	content: "";
}

.ti-bookmark-alt:before {
	content: "";
}

.ti-reload:before {
	content: "";
}

.ti-plus:before {
	content: "";
}

.ti-pin:before {
	content: "";
}

.ti-pencil:before {
	content: "";
}

.ti-pencil-alt:before {
	content: "";
}

.ti-paint-roller:before {
	content: "";
}

.ti-paint-bucket:before {
	content: "";
}

.ti-na:before {
	content: "";
}

.ti-mobile:before {
	content: "";
}

.ti-minus:before {
	content: "";
}

.ti-medall:before {
	content: "";
}

.ti-medall-alt:before {
	content: "";
}

.ti-marker:before {
	content: "";
}

.ti-marker-alt:before {
	content: "";
}

.ti-arrow-up:before {
	content: "";
}

.ti-arrow-right:before {
	content: "";
}

.ti-arrow-left:before {
	content: "";
}

.ti-arrow-down:before {
	content: "";
}

.ti-lock:before {
	content: "";
}

.ti-location-arrow:before {
	content: "";
}

.ti-link:before {
	content: "";
}

.ti-layout:before {
	content: "";
}

.ti-layers:before {
	content: "";
}

.ti-layers-alt:before {
	content: "";
}

.ti-key:before {
	content: "";
}

.ti-import:before {
	content: "";
}

.ti-image:before {
	content: "";
}

.ti-heart:before {
	content: "";
}

.ti-heart-broken:before {
	content: "";
}

.ti-hand-stop:before {
	content: "";
}

.ti-hand-open:before {
	content: "";
}

.ti-hand-drag:before {
	content: "";
}

.ti-folder:before {
	content: "";
}

.ti-flag:before {
	content: "";
}

.ti-flag-alt:before {
	content: "";
}

.ti-flag-alt-2:before {
	content: "";
}

.ti-eye:before {
	content: "";
}

.ti-export:before {
	content: "";
}

.ti-exchange-vertical:before {
	content: "";
}

.ti-desktop:before {
	content: "";
}

.ti-cup:before {
	content: "";
}

.ti-crown:before {
	content: "";
}

.ti-comments:before {
	content: "";
}

.ti-comment:before {
	content: "";
}

.ti-comment-alt:before {
	content: "";
}

.ti-close:before {
	content: "";
}

.ti-clip:before {
	content: "";
}

.ti-angle-up:before {
	content: "";
}

.ti-angle-right:before {
	content: "";
}

.ti-angle-left:before {
	content: "";
}

.ti-angle-down:before {
	content: "";
}

.ti-check:before {
	content: "";
}

.ti-check-box:before {
	content: "";
}

.ti-camera:before {
	content: "";
}

.ti-announcement:before {
	content: "";
}

.ti-brush:before {
	content: "";
}

.ti-briefcase:before {
	content: "";
}

.ti-bolt:before {
	content: "";
}

.ti-bolt-alt:before {
	content: "";
}

.ti-blackboard:before {
	content: "";
}

.ti-bag:before {
	content: "";
}

.ti-move:before {
	content: "";
}

.ti-arrows-vertical:before {
	content: "";
}

.ti-arrows-horizontal:before {
	content: "";
}

.ti-fullscreen:before {
	content: "";
}

.ti-arrow-top-right:before {
	content: "";
}

.ti-arrow-top-left:before {
	content: "";
}

.ti-arrow-circle-up:before {
	content: "";
}

.ti-arrow-circle-right:before {
	content: "";
}

.ti-arrow-circle-left:before {
	content: "";
}

.ti-arrow-circle-down:before {
	content: "";
}

.ti-angle-double-up:before {
	content: "";
}

.ti-angle-double-right:before {
	content: "";
}

.ti-angle-double-left:before {
	content: "";
}

.ti-angle-double-down:before {
	content: "";
}

.ti-zip:before {
	content: "";
}

.ti-world:before {
	content: "";
}

.ti-wheelchair:before {
	content: "";
}

.ti-view-list:before {
	content: "";
}

.ti-view-list-alt:before {
	content: "";
}

.ti-view-grid:before {
	content: "";
}

.ti-uppercase:before {
	content: "";
}

.ti-upload:before {
	content: "";
}

.ti-underline:before {
	content: "";
}

.ti-truck:before {
	content: "";
}

.ti-timer:before {
	content: "";
}

.ti-ticket:before {
	content: "";
}

.ti-thumb-up:before {
	content: "";
}

.ti-thumb-down:before {
	content: "";
}

.ti-text:before {
	content: "";
}

.ti-stats-up:before {
	content: "";
}

.ti-stats-down:before {
	content: "";
}

.ti-split-v:before {
	content: "";
}

.ti-split-h:before {
	content: "";
}

.ti-smallcap:before {
	content: "";
}

.ti-shine:before {
	content: "";
}

.ti-shift-right:before {
	content: "";
}

.ti-shift-left:before {
	content: "";
}

.ti-shield:before {
	content: "";
}

.ti-notepad:before {
	content: "";
}

.ti-server:before {
	content: "";
}

.ti-quote-right:before {
	content: "";
}

.ti-quote-left:before {
	content: "";
}

.ti-pulse:before {
	content: "";
}

.ti-printer:before {
	content: "";
}

.ti-power-off:before {
	content: "";
}

.ti-plug:before {
	content: "";
}

.ti-pie-chart:before {
	content: "";
}

.ti-paragraph:before {
	content: "";
}

.ti-panel:before {
	content: "";
}

.ti-package:before {
	content: "";
}

.ti-music:before {
	content: "";
}

.ti-music-alt:before {
	content: "";
}

.ti-mouse:before {
	content: "";
}

.ti-mouse-alt:before {
	content: "";
}

.ti-money:before {
	content: "";
}

.ti-microphone:before {
	content: "";
}

.ti-menu:before {
	content: "";
}

.ti-menu-alt:before {
	content: "";
}

.ti-map:before {
	content: "";
}

.ti-map-alt:before {
	content: "";
}

.ti-loop:before {
	content: "";
}

.ti-location-pin:before {
	content: "";
}

.ti-list:before {
	content: "";
}

.ti-light-bulb:before {
	content: "";
}

.ti-Italic:before {
	content: "";
}

.ti-info:before {
	content: "";
}

.ti-infinite:before {
	content: "";
}

.ti-id-badge:before {
	content: "";
}

.ti-hummer:before {
	content: "";
}

.ti-home:before {
	content: "";
}

.ti-help:before {
	content: "";
}

.ti-headphone:before {
	content: "";
}

.ti-harddrives:before {
	content: "";
}

.ti-harddrive:before {
	content: "";
}

.ti-gift:before {
	content: "";
}

.ti-game:before {
	content: "";
}

.ti-filter:before {
	content: "";
}

.ti-files:before {
	content: "";
}

.ti-file:before {
	content: "";
}

.ti-eraser:before {
	content: "";
}

.ti-envelope:before {
	content: "";
}

.ti-download:before {
	content: "";
}

.ti-direction:before {
	content: "";
}

.ti-direction-alt:before {
	content: "";
}

.ti-dashboard:before {
	content: "";
}

.ti-control-stop:before {
	content: "";
}

.ti-control-shuffle:before {
	content: "";
}

.ti-control-play:before {
	content: "";
}

.ti-control-pause:before {
	content: "";
}

.ti-control-forward:before {
	content: "";
}

.ti-control-backward:before {
	content: "";
}

.ti-cloud:before {
	content: "";
}

.ti-cloud-up:before {
	content: "";
}

.ti-cloud-down:before {
	content: "";
}

.ti-clipboard:before {
	content: "";
}

.ti-car:before {
	content: "";
}

.ti-calendar:before {
	content: "";
}

.ti-book:before {
	content: "";
}

.ti-bell:before {
	content: "";
}

.ti-basketball:before {
	content: "";
}

.ti-bar-chart:before {
	content: "";
}

.ti-bar-chart-alt:before {
	content: "";
}

.ti-back-right:before {
	content: "";
}

.ti-back-left:before {
	content: "";
}

.ti-arrows-corner:before {
	content: "";
}

.ti-archive:before {
	content: "";
}

.ti-anchor:before {
	content: "";
}

.ti-align-right:before {
	content: "";
}

.ti-align-left:before {
	content: "";
}

.ti-align-justify:before {
	content: "";
}

.ti-align-center:before {
	content: "";
}

.ti-alert:before {
	content: "";
}

.ti-alarm-clock:before {
	content: "";
}

.ti-agenda:before {
	content: "";
}

.ti-write:before {
	content: "";
}

.ti-window:before {
	content: "";
}

.ti-widgetized:before {
	content: "";
}

.ti-widget:before {
	content: "";
}

.ti-widget-alt:before {
	content: "";
}

.ti-wallet:before {
	content: "";
}

.ti-video-clapper:before {
	content: "";
}

.ti-video-camera:before {
	content: "";
}

.ti-vector:before {
	content: "";
}

.ti-themify-logo:before {
	content: "";
}

.ti-themify-favicon:before {
	content: "";
}

.ti-themify-favicon-alt:before {
	content: "";
}

.ti-support:before {
	content: "";
}

.ti-stamp:before {
	content: "";
}

.ti-split-v-alt:before {
	content: "";
}

.ti-slice:before {
	content: "";
}

.ti-shortcode:before {
	content: "";
}

.ti-shift-right-alt:before {
	content: "";
}

.ti-shift-left-alt:before {
	content: "";
}

.ti-ruler-alt-2:before {
	content: "";
}

.ti-receipt:before {
	content: "";
}

.ti-pin2:before {
	content: "";
}

.ti-pin-alt:before {
	content: "";
}

.ti-pencil-alt2:before {
	content: "";
}

.ti-palette:before {
	content: "";
}

.ti-more:before {
	content: "";
}

.ti-more-alt:before {
	content: "";
}

.ti-microphone-alt:before {
	content: "";
}

.ti-magnet:before {
	content: "";
}

.ti-line-double:before {
	content: "";
}

.ti-line-dotted:before {
	content: "";
}

.ti-line-dashed:before {
	content: "";
}

.ti-layout-width-full:before {
	content: "";
}

.ti-layout-width-default:before {
	content: "";
}

.ti-layout-width-default-alt:before {
	content: "";
}

.ti-layout-tab:before {
	content: "";
}

.ti-layout-tab-window:before {
	content: "";
}

.ti-layout-tab-v:before {
	content: "";
}

.ti-layout-tab-min:before {
	content: "";
}

.ti-layout-slider:before {
	content: "";
}

.ti-layout-slider-alt:before {
	content: "";
}

.ti-layout-sidebar-right:before {
	content: "";
}

.ti-layout-sidebar-none:before {
	content: "";
}

.ti-layout-sidebar-left:before {
	content: "";
}

.ti-layout-placeholder:before {
	content: "";
}

.ti-layout-menu:before {
	content: "";
}

.ti-layout-menu-v:before {
	content: "";
}

.ti-layout-menu-separated:before {
	content: "";
}

.ti-layout-menu-full:before {
	content: "";
}

.ti-layout-media-right-alt:before {
	content: "";
}

.ti-layout-media-right:before {
	content: "";
}

.ti-layout-media-overlay:before {
	content: "";
}

.ti-layout-media-overlay-alt:before {
	content: "";
}

.ti-layout-media-overlay-alt-2:before {
	content: "";
}

.ti-layout-media-left-alt:before {
	content: "";
}

.ti-layout-media-left:before {
	content: "";
}

.ti-layout-media-center-alt:before {
	content: "";
}

.ti-layout-media-center:before {
	content: "";
}

.ti-layout-list-thumb:before {
	content: "";
}

.ti-layout-list-thumb-alt:before {
	content: "";
}

.ti-layout-list-post:before {
	content: "";
}

.ti-layout-list-large-image:before {
	content: "";
}

.ti-layout-line-solid:before {
	content: "";
}

.ti-layout-grid4:before {
	content: "";
}

.ti-layout-grid3:before {
	content: "";
}

.ti-layout-grid2:before {
	content: "";
}

.ti-layout-grid2-thumb:before {
	content: "";
}

.ti-layout-cta-right:before {
	content: "";
}

.ti-layout-cta-left:before {
	content: "";
}

.ti-layout-cta-center:before {
	content: "";
}

.ti-layout-cta-btn-right:before {
	content: "";
}

.ti-layout-cta-btn-left:before {
	content: "";
}

.ti-layout-column4:before {
	content: "";
}

.ti-layout-column3:before {
	content: "";
}

.ti-layout-column2:before {
	content: "";
}

.ti-layout-accordion-separated:before {
	content: "";
}

.ti-layout-accordion-merged:before {
	content: "";
}

.ti-layout-accordion-list:before {
	content: "";
}

.ti-ink-pen:before {
	content: "";
}

.ti-info-alt:before {
	content: "";
}

.ti-help-alt:before {
	content: "";
}

.ti-headphone-alt:before {
	content: "";
}

.ti-hand-point-up:before {
	content: "";
}

.ti-hand-point-right:before {
	content: "";
}

.ti-hand-point-left:before {
	content: "";
}

.ti-hand-point-down:before {
	content: "";
}

.ti-gallery:before {
	content: "";
}

.ti-face-smile:before {
	content: "";
}

.ti-face-sad:before {
	content: "";
}

.ti-credit-card:before {
	content: "";
}

.ti-control-skip-forward:before {
	content: "";
}

.ti-control-skip-backward:before {
	content: "";
}

.ti-control-record:before {
	content: "";
}

.ti-control-eject:before {
	content: "";
}

.ti-comments-smiley:before {
	content: "";
}

.ti-brush-alt:before {
	content: "";
}

.ti-youtube:before {
	content: "";
}

.ti-vimeo:before {
	content: "";
}

.ti-twitter:before {
	content: "";
}

.ti-time:before {
	content: "";
}

.ti-tumblr:before {
	content: "";
}

.ti-skype:before {
	content: "";
}

.ti-share:before {
	content: "";
}

.ti-share-alt:before {
	content: "";
}

.ti-rocket:before {
	content: "";
}

.ti-pinterest:before {
	content: "";
}

.ti-new-window:before {
	content: "";
}

.ti-microsoft:before {
	content: "";
}

.ti-list-ol:before {
	content: "";
}

.ti-linkedin:before {
	content: "";
}

.ti-layout-sidebar-2:before {
	content: "";
}

.ti-layout-grid4-alt:before {
	content: "";
}

.ti-layout-grid3-alt:before {
	content: "";
}

.ti-layout-grid2-alt:before {
	content: "";
}

.ti-layout-column4-alt:before {
	content: "";
}

.ti-layout-column3-alt:before {
	content: "";
}

.ti-layout-column2-alt:before {
	content: "";
}

.ti-instagram:before {
	content: "";
}

.ti-google:before {
	content: "";
}

.ti-github:before {
	content: "";
}

.ti-flickr:before {
	content: "";
}

.ti-facebook:before {
	content: "";
}

.ti-dropbox:before {
	content: "";
}

.ti-dribbble:before {
	content: "";
}

.ti-apple:before {
	content: "";
}

.ti-android:before {
	content: "";
}

.ti-save:before {
	content: "";
}

.ti-save-alt:before {
	content: "";
}

.ti-yahoo:before {
	content: "";
}

.ti-wordpress:before {
	content: "";
}

.ti-vimeo-alt:before {
	content: "";
}

.ti-twitter-alt:before {
	content: "";
}

.ti-tumblr-alt:before {
	content: "";
}

.ti-trello:before {
	content: "";
}

.ti-stack-overflow:before {
	content: "";
}

.ti-soundcloud:before {
	content: "";
}

.ti-sharethis:before {
	content: "";
}

.ti-sharethis-alt:before {
	content: "";
}

.ti-reddit:before {
	content: "";
}

.ti-pinterest-alt:before {
	content: "";
}

.ti-microsoft-alt:before {
	content: "";
}

.ti-linux:before {
	content: "";
}

.ti-jsfiddle:before {
	content: "";
}

.ti-joomla:before {
	content: "";
}

.ti-html5:before {
	content: "";
}

.ti-flickr-alt:before {
	content: "";
}

.ti-email:before {
	content: "";
}

.ti-drupal:before {
	content: "";
}

.ti-dropbox-alt:before {
	content: "";
}

.ti-css3:before {
	content: "";
}

.ti-rss:before {
	content: "";
}

.ti-rss-alt:before {
	content: "";
}

.df-abs-center {
	top: 50%;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.df-abs-h-center {
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%);
	-moz-transform: translate(-50%);
	-ms-transform: translate(-50%);
	transform: translate(-50%);
}

.df-container {
	min-height: 320px;
	background: no-repeat 50%;
	background-size: cover;
	width: 100%;
	position: relative;
	image-rendering: auto;
	direction: ltr;
}

.df-container div {
	box-sizing: border-box !important;
}

.df-container.df-transparent:not(.df-fullscreen) {
	background: transparent !important;
}

.df-container.df-custom-fullscreen.df-fullscreen {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	z-index: 999999;
}

.df-container .loading-info {
	position: absolute;
	top: 100%;
	margin-top: 20px;
	margin-left: 5px;
	padding: 6px 20px;
	background-color: rgba(0, 0, 0, .3);
	font-style: italic;
	border-radius: 5px;
	font-size: 11px;
	max-height: 30px;
	color: #fff;
	max-width: 200px;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	left: 50%;
	opacity: .7;
	transition: .3s top ease;
	-webkit-transition: .3s top ease;
}

.loading-info.df-old-browser {
	color: gray;
	background-color: white;
	opacity: .9;
	text-align: center;
	max-height: none;
}

.loading-info.df-old-browser a {
	font-weight: bold;
	font-style: normal;
	text-transform: uppercase;
	color: #2196f3;
	display: block;
	text-decoration: underline;
	margin: 10px 0 0;
}

.df-container.df-init .loading-info {
	top: 50%;
}

.df-3dcanvas {
	position: absolute;
	z-index: 1;
	right: 0;
	top: 0;
}

.df-rtl .df-3dcanvas {
	right: auto;
	right: initial;
	left: 0;
}

.df-container a {
	outline: 0;
	text-decoration: none;
	box-shadow: none;
}

.df-container.df-zoom-enabled canvas.df-3dcanvas, .df-container.df-zoom-enabled .df-book-stage {
	cursor: move;
	cursor: -webkit-grab;
}

.df-container:before, .df-container:after {
	content: " ";
	transition: .3s .1s opacity;
	-webkit-transition: .3s .1s opacity;
	opacity: 0;
	height: 50px;
	width: 50px;
	left: 50%;
	top: 50%;
	font-size: 12px;
	margin: -45px -25px -25px;
	box-sizing: border-box;
	position: absolute;
	pointer-events: none;
}

.df-container.df-loading:before, .df-container.df-loading:after {
	content: " ";
	z-index: 100;
	opacity: 1;
}

.df-container.df-loading:after {
	content: " ";
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/dflip/assets/images/loading.gif");
	background-repeat: no-repeat;
	background-size: 32px;
	background-position: 50%;
}

.df-container.df-loading:before {
	background-color: white;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	border: 1px solid rgba(150, 150, 150, .2);
}

.df-book-stage {
	position: absolute;
	overflow: hidden;
	right: 0;
	bottom: 0;
	z-index: 1;
	top: 0;
	left: 0;
	filter: blur(0);
	-webkit-filter: blur(0);
	padding: 30px 50px 70px;
}

.df-container.df-xs .df-book-stage {
	padding-left: 20px;
	padding-right: 20px;
}

.df-container.df-sidemenu-open .df-book-stage {
	padding-left: 230px;
	padding-right: 10px;
}

.df-container.df-sidemenu-open>.df-ui-btn.df-ui-prev {
	left: 220px;
}

.df-rtl.df-container.df-sidemenu-open>.df-ui-btn.df-ui-prev {
	left: 0;
}

.df-rtl.df-container.df-sidemenu-open>.df-ui-btn.df-ui-next {
	right: 220px;
}

.df-book-stage.df-zoom-enabled {
	cursor: move;
}

.df-page-front:before, .df-page-back:before {
	content: " ";
}

.df-book-page .df-page-front:before {
	background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .25), rgba(0, 0, 0, .2) 10%, rgba(0, 0, 0, .15) 25%, rgba(0, 0, 0, 0) 70%);
	background-image: -moz-linear-gradient(right, rgba(0, 0, 0, .25), rgba(0, 0, 0, .2) 10%, rgba(0, 0, 0, .15) 25%, rgba(0, 0, 0, 0) 70%);
	background-image: -ms-linear-gradient(right, rgba(0, 0, 0, .25), rgba(0, 0, 0, .2) 10%, rgba(0, 0, 0, .15) 25%, rgba(0, 0, 0, 0) 70%);
}

.df-book-page .df-page-back:before {
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .25), rgba(0, 0, 0, .15) 15%, rgba(255, 255, 255, .07), rgba(255, 255, 255, 0));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, .25), rgba(0, 0, 0, .15) 15%, rgba(255, 255, 255, .07), rgba(255, 255, 255, 0));
	background-image: -ms-linear-gradient(left, rgba(0, 0, 0, .25), rgba(0, 0, 0, .15) 15%, rgba(255, 255, 255, .07), rgba(255, 255, 255, 0));
}

.df-book-wrapper, .df-page-wrapper, .df-book-page, .df-page-content, .df-page-front:before, .df-page-wrapper:after, .df-page-back:before, .df-page-content:after, .df-page-effects, .df-page-effects:before, .df-page-effects {
	position: absolute;
	height: 100%;
	display: block;
	top: 0;
}

.df-page-content, .df-book-page {
	width: 100%;
}

.df-book-wrapper {
	position: relative;
	margin: 0 auto;
	transition: .3s left;
	-webkit-transition: .3s left;
	left: 0;
}

.df-zoom-enabled .df-book-wrapper {
	transition: none;
	-webkit-transition: none;
}

.df-loading.df-container .df-book-wrapper {
	left: 100%;
}

.df-book-wrapper.close-right {
	left: 25%;
}

.df-book-wrapper.close-left {
	left: -25%;
}

.df-book-shadow {
	position: absolute;
	z-index: -1;
	height: 100%;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	-ms-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.df-book-wrapper .df-book-side-buttons {
	position: absolute;
	left: 100%;
	width: 40px;
	opacity: .3;
	height: 100%;
	cursor: pointer;
	z-index: 30;
	-webkit-border-radius: 0 20px 20px 0;
	-moz-border-radius: 0 20px 20px 0;
	border-radius: 0 20px 20px 0;
}

.df-book-prev-button.df-book-side-buttons {
	-webkit-border-radius: 20px 0 0 20px;
	-moz-border-radius: 20px 0 0 20px;
	border-radius: 20px 0 0 20px;
}

.df-book-wrapper .df-book-side-buttons:hover {
	opacity: .5;
	background-color: rgba(0, 0, 0, .18);
}

.df-book-wrapper .df-book-prev-button {
	right: 100%;
	left: auto;
	left: initial;
}

.df-book-wrapper .df-book-side-buttons:before {
	position: absolute;
	font-size: 30px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
}

.df-page-wrapper {
	overflow: hidden;
}

.df-hard-page .df-page-wrapper {
	width: 100% !important;
	height: 100% !important;
	overflow: visible;
	transform-style: preserve-3d;
	-webkit-transform-origin: 0 50% 0;
	-moz-transform-origin: 0 50% 0;
	-ms-transform-origin: 0 50% 0;
	transform-origin: 0 50% 0;
}

.df-book-page.df-flipping, .df-book-page.df-folding {
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0);
}

.df-book-page.df-left-side {
	left: 0;
	-webkit-transform-origin: right;
	-moz-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
}

.df-book-page.df-right-side {
	left: 50%;
	-webkit-transform-origin: left;
	-moz-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
}

.df-book-page.df-right-side+.df-page-wrapper.df-right-side {
	z-index: -1;
}

.df-book-page .df-page-front, .df-book-page .df-page-back {
	width: 100%;
	background-size: 100.5% 100%;
	background-size: 100% 100%;
	height: 100%;
	background-color: white;
	position: absolute;
	box-sizing: border-box;
}

.df-page-back>canvas, .df-page-front>canvas {
	width: 100%;
	position: relative;
	z-index: -1;
}

.df-quick-turn:before {
	opacity: 0;
}

.df-book-page.df-flipping.df-left-side:before {
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, .1));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, .1));
	width: 10px;
	left: -10px;
}

.df-book-page {
	width: 50%;
}

.df-book-page.df-flipping, .df-book-page.df-folding {
	z-index: 200 !important;
}

.df-page-content {
	background-size: 100.25% !important;
	background-repeat: no-repeat !important;
	transition-property: transform;
	-webkit-transition-property: -webkit-transform;
	width: 100%;
	overflow: hidden;
}

.df-book-page.df-left-side .df-page-front {
	z-index: 2;
}

.df-book-page.df-left-side .df-page-back {
	z-index: 1;
}

.df-book-page.df-left-side.df-folding:not(.df-hard-page) .df-page-back {
	z-index: 3;
}

.df-book-page.df-right-side .df-page-front {
	top: 0;
	left: 0;
	z-index: 0;
}

.df-book-page, .df-page-front, .df-page-back, .df-page-fold-inner-shadow, .df-page-fold-outer-shadow, .df-page-wrapper {
	position: absolute;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}

.df-page-front, .df-page-back {
	overflow: hidden;
}

.df-page-fold-outer-shadow {
	z-index: -1;
	width: 100%;
	height: 100%;
}

.df-page-fold-inner-shadow {
	position: absolute;
	z-index: 5;
	display: none;
}

.df-book-page.df-folding .df-page-fold-inner-shadow {
	display: block;
}

.df-book-page.df-right-side .df-page-back {
	left: 0;
	z-index: 1;
}

.df-book-page.df-right-side.df-folding .df-page-front {
	z-index: 2;
}

.df-page-wrapper.df-right-side .df-page-back {
	left: 100%;
	z-index: 1;
	overflow: hidden;
}

.df-hard-page .df-page-front, .df-hard-page .df-page-back {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.df-hard-page.df-right-side .df-page-front {
	-webkit-transform-origin: right 50%;
	-moz-transform-origin: right 50%;
	-ms-transform-origin: right 50%;
	transform-origin: right 50%;
	z-index: 3 !important;
}

.df-hard-page.df-left-side .df-page-front {
	-webkit-transform-origin: right 50%;
	-moz-transform-origin: right 50%;
	-ms-transform-origin: right 50%;
	transform-origin: right 50%;
}

.df-hard-page.df-right-side .df-page-back {
	-webkit-transform-origin: left 50%;
	-moz-transform-origin: left 50%;
	-ms-transform-origin: left 50%;
	transform-origin: left 50%;
	z-index: 3;
}

.df-hard-page.df-left-side .df-page-back {
	-webkit-transform-origin: left 50%;
	-moz-transform-origin: left 50%;
	-ms-transform-origin: left 50%;
	transform-origin: left 50%;
}

.df-page-front:before, .df-page-back:before {
	width: 20%;
	z-index: 5;
	pointer-events: none;
}

.df-page-front:before {
	right: 0;
}

.df-page-wrapper.df-right-side.df-flipping {
	z-index: 4;
}

.df-ui {
	height: 60px;
	padding: 20px 16px 0;
}

.df-ui-wrapper, .df-ui-btn {
	color: #888;
	vertical-align: top;
	background-color: #f7f7f7;
	box-sizing: border-box;
	text-align: center;
}

.df-ui-wrapper {
	box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
	background-color: #f7f7f7;
	position: absolute;
}

.df-share-wrapper {
	z-index: 2;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .35);
	display: none;
}

.df-share-box {
	position: absolute;
	top: 50%;
	width: 280px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	left: 50%;
	background-color: #fff;
	border-radius: 10px;
	padding: 10px 15px 5px;
	text-align: center;
}

span.df-share-title {
	color: #777;
	margin-bottom: 10px;
	display: block;
}

.df-share-url {
	background-color: #fff;
	height: 60px;
	color: #666;
	padding: 2px 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width: 100%;
	font-size: 12px;
	box-sizing: border-box;
	margin-bottom: 0;
}

.df-share-button {
	display: inline-block;
	text-align: center;
	cursor: pointer;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	padding: 10px;
	margin: 3px;
	color: #aaa;
}

.df-share-button:hover {
	color: #444;
}

.df-ui-btn {
	position: relative;
	width: 35px;
	right: 0;
	height: 40px;
	font-size: 17px;
	cursor: pointer;
	z-index: 2;
	display: inline-block;
	padding: 12px 5px;
	line-height: 1;
}

.df-floating .df-ui-controls>.df-ui-btn:first-child {
	border-radius: 5px 0 0 5px;
}

.df-floating .df-ui-controls>.df-ui-btn:last-child {
	border-radius: 0 5px 5px 0;
}

.df-ui-btn:before {
	box-sizing: border-box;
}

.df-ui-thumbnail, .df-ui-share, .df-ui-outline, .df-ui-help, .df-ui-sound {
	float: left;
}

.df-ui-btn:hover {
	color: #00acce;
}

.df-ui-btn.disabled, .df-ui-btn.disabled:hover {
	color: #ccc;
}

.df-ui-page {
	padding: 8px 5px 2px;
	font-size: 12px;
	width: auto;
	width: 50px;
	margin: 0;
	border-radius: 0;
	background-color: rgba(0, 0, 0, .03);
}

.df-ui-page input {
	width: 100%;
	background-color: transparent;
	height: 25px;
	margin: 0;
	padding: 0 !important;
	border: 1px solid #8f8f8f;
	text-align: center;
	vertical-align: top;
	color: transparent;
	font-size: 14px;
	top: 0;
	box-sizing: border-box;
	z-index: -1;
	display: inline-block;
	opacity: 0;
}

.df-ui-page input:focus {
	z-index: 2;
	opacity: 1;
	color: inherit;
}

.df-ui-page input:focus+label {
	opacity: 0;
	display: none;
}

.df-ui-page label {
	position: absolute;
	height: 30px;
	width: 100%;
	display: block;
	top: 0;
	padding-top: 14px;
	line-height: 1.1em;
	color: #999;
	font-size: 13px;
	font-weight: normal;
	left: 0;
	cursor: pointer;
	background-color: transparent;
	z-index: 1;
	box-sizing: border-box;
}

.df-ui-share {
	float: left;
}

.df-ui-fullscreen {
	bottom: 0;
}

.df-ui-zoom {
	top: 24px;
	height: 60px;
	right: 24px;
	width: 30px;
	display: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.df-ui-sidemenu-close {
	position: absolute;
	top: 10px;
	right: -32px;
	font-size: 14px;
	width: 32px;
	height: 35px;
	cursor: pointer;
	padding: 10px 0;
	background: inherit;
	border-radius: 0 5px 5px 0;
	z-index: -1;
	transition: .5s ease;
	-webkit-transition: .5s ease;
}

.df-ui-controls {
	bottom: 0;
	width: 100%;
	height: 40px;
	padding: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 4;
	display: block;
}

.df-floating .df-ui-controls {
	bottom: 10px;
	width: auto;
	width: initial;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	margin: 0 auto;
	display: table;
	display: flex;
	border-radius: 5px;
}

.df-floating.df-controls-top .df-ui-controls {
	bottom: auto;
	bottom: initial;
	top: 10px;
}

.df-floating.df-controls-hide .df-ui-controls {
	display: none;
}

.df-ui-wrapper.df-ui-controls .df-ui-btn {
	float: none;
}

.df-ui-size {
	bottom: 24px;
	height: 60px;
	right: 24px;
}

.df-ui-zoom:before, .df-ui-size:before {
	height: 0;
	border-bottom: 1px solid;
	content: " ";
	right: 5px;
	opacity: .3;
	display: block;
	position: absolute;
	top: 30px;
	left: 5px;
	z-index: 2;
}

.df-ui-zoomin {
	top: 0;
}

.df-ui-zoomout {
	bottom: 0;
}

.df-ui-next {
	right: 0;
	border-radius: 0;
}

.df-container.df-floating>.df-ui-next {
	right: 8px;
}

.df-container.df-floating>.df-ui-prev {
	left: 2px;
}

.df-container>.df-ui-next, .df-container>.df-ui-prev {
	margin-top: -5px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	position: absolute;
	opacity: .3;
	font-size: 36px;
	color: #000;
	text-align: center;
	background-color: transparent;
	height: auto;
	height: initial;
	width: auto;
	width: initial;
}

.df-container>.df-ui-next:hover, .df-container>.df-ui-prev:hover {
	opacity: .7;
}

.df-container.df-floating>.df-ui-next, .df-container.df-floating>.df-ui-prev {
	border-radius: 50%;
	width: 40px;
}

.df-ui-prev {
	left: 0;
	right: auto;
	border-radius: 0;
}

.df-ui-alt {
	position: relative !important;
	right: auto;
	right: initial;
	left: auto;
	left: initial;
	box-shadow: none !important;
}

.df-ui-alt.df-ui-next {
	border-right: 1px solid #ddd;
}

.df-ui-btn.df-active {
	color: #00acce;
	background-color: #e7e7e7;
}

.df-ui-fit {
	display: none;
}

.df-ui-zoomin, .df-ui-zoomout, .df-ui-fullscreen, .df-ui-more {
	float: right;
}

.df-ui-fit {
	top: 0;
}

.df-ui-more .more-container, .df-ui-search .search-container {
	display: none;
	position: absolute;
	bottom: 100%;
	margin-bottom: 8px !important;
	right: 10px;
	background-color: #f7f7f7;
	z-index: 20;
	border-radius: 5px;
	box-shadow: 0 -1px 3px rgba(0, 0, 0, .2);
}

.df-controls-top .df-ui-more .more-container, .df-controls-top .df-ui-search .search-container {
	bottom: auto;
	bottom: initial;
	margin-top: 8px !important;
	top: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.more-container:before, .search-container:before {
	content: " ";
	position: absolute;
	border: 7px solid transparent;
	border-top-color: #eee;
	height: 0;
	width: 0;
	bottom: -14px;
	right: 13px;
	margin-right: -8px;
	pointer-events: none;
}

.df-controls-top .more-container:before, .df-controls-top .search-container:before {
	border: 7px solid transparent;
	border-bottom-color: #eee;
	top: -14px;
}

.more-container .df-ui-btn {
	width: auto;
	width: initial;
	width: 170px;
	text-align: left;
	padding: 8px 10px;
	height: 36px;
	border-top: 1px solid #e4e4e4;
	border-radius: 0;
}

.more-container .df-ui-btn:hover {
	background-color: #eee;
}

.more-container>.df-ui-btn:first-child {
	border-radius: 5px;
	border-top: 0;
}

.more-container>.df-ui-btn:last-child {
	border-radius: 0 0 5px 5px;
}

.more-container .df-ui-btn:before {
	position: absolute;
	top: 11px;
	font-size: 14px;
}

.df-ui-btn span {
	display: none;
}

.more-container .df-ui-btn span {
	font-size: 12px;
	padding-left: 20px;
	vertical-align: middle;
	display: inline-block;
}

.df-ui-more.df-active .more-container, .df-ui-search.df-active .search-container {
	display: block;
}

.df-container section {
	padding: 0;
}

.annotationLayer section, .annotationDiv section, .customLinkAnnotation, .customHtmlAnnotation, .customVideoAnnotation, .linkAnnotation, .highlightAnnotation, .popupAnnotation {
	position: absolute;
	z-index: 5;
	cursor: pointer;
	pointer-events: all;
}

.annotationDiv .popupWrapper {
	position: absolute;
	width: 20em;
}

.annotationDiv .popup {
	position: absolute;
	z-index: 200;
	max-width: 20em;
	background-color: #ff9;
	box-shadow: 0 2px 5px #333;
	border-radius: 2px;
	padding: .6em;
	margin-left: 5px;
	cursor: pointer;
	word-wrap: break-word;
}

.annotationDiv .popup h1 {
	font-size: 1em;
	border-bottom: 1px solid #000;
	padding-bottom: .2em;
}

.annotationDiv .popup p {
	padding-top: .2em;
}

.annotationDiv .highlightAnnotation, .annotationDiv .underlineAnnotation, .annotationDiv .squigglyAnnotation, .annotationDiv .strikeoutAnnotation, .annotationDiv .fileAttachmentAnnotation {
	cursor: pointer;
}

.annotationDiv .textAnnotation img {
	position: absolute;
	cursor: pointer;
}

section.linkAnnotation a, .annotationDiv .buttonWidgetAnnotation.pushButton>a {
	display: block;
	height: 100%;
}

section.linkAnnotation a, a.linkAnnotation, a.customLinkAnnotation, .customHtmlAnnotation, .customVideoAnnotation {
	background-color: transparent;
	background-color: #ff0;
	opacity: .1;
}

section.linkAnnotation a:hover, a.linkAnnotation:hover, .highlightAnnotation:hover, a.customLinkAnnotation:hover {
	opacity: .4;
	border-color: transparent;
	background-color: #2196f3;
}

.annotationDiv, .textLayerDiv {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
}

.textLayerDiv {
	line-height: 1;
}

.textLayerDiv>div {
	position: absolute;
	white-space: pre;
	cursor: text;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}

section.linkAnnotation a .annotationLayer>a {
	display: block;
	position: absolute;
	height: 100%;
	cursor: pointer;
	box-sizing: border-box;
}

.df-page-loading:after, .df-page-loading:before {
	content: " ";
	height: 44px;
	width: 44px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -22px -22px;
}

.df-page-loading:before {
	background-color: white;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	box-sizing: border-box;
}

.df-page-loading:after {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/dflip/assets/images/loading.gif");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px;
}

.df-thumb-container .df-vrow {
	height: 124px;
	left: 0;
	width: 90%;
	margin: 10px auto;
	background-position: 50%;
	cursor: pointer;
	background-repeat: no-repeat;
	right: 0;
	border-radius: 5px;
}

.df-thumb-container .df-vrow:before {
	content: "";
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/dflip/assets/images/loading.gif");
	background-size: 22px;
	height: 22px;
	width: 22px;
	display: block;
	top: 60px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

.df-thumb-container .df-vrow:hover {
	background-color: #bbb;
}

.df-floating .df-thumb-container .df-vrow:hover, .df-vrow.df-selected {
	background-color: #ccc;
	opacity: 1;
}

.df-thumb-container .df-vrow.df-thumb-loaded {
	background-size: contain;
}

.df-thumb-container .df-vrow.df-thumb-loaded:before {
	display: none;
}

.df-vrow>div {
	height: 20px;
	background-color: rgba(170, 170, 170, .54);
	width: 40px;
	margin: 0 auto;
}

.df-sidemenu {
	float: left;
	width: 220px;
	height: auto !important;
	position: absolute !important;
	top: 0;
	z-index: 3;
	transition: .5s transform ease;
	-webkit-transition: .5s -webkit-transform ease;
	transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	left: -50px;
	background-color: rgba(238, 238, 238, .9);
}

.df-rtl .df-sidemenu {
	left: auto;
	left: initial;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	right: -50px;
	direction: rtl;
}

.df-thumb-container {
	text-align: center;
}

.df-outline-container {
	color: #666;
	font-size: 12px;
}

.df-outline-wrapper, .df-thumb-wrapper {
	position: absolute !important;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto !important;
	box-shadow: 1px 0 4px rgba(102, 102, 102, .38);
}

.df-outline-wrapper {
	overflow: auto;
	padding: 10px 10px 5px 10px;
}

.df-floating .df-outline-container, .df-floating .df-thumb-container {
	bottom: 0;
}

.df-sidemenu.df-sidemenu-visible {
	display: block;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	left: 0;
}

.df-outline-toggle {
	cursor: pointer;
	float: left;
	width: 18px;
	padding: 5px 0;
	margin-left: -18px;
	text-align: center;
}

.df-outline-toggle.df-outlines-hidden ~ .df-outline-items {
	display: none;
}

.df-outline-items>.df-outline-item {
	margin-left: 18px;
}

.df-outline-item a:hover, .df-outline-toggle:hover {
	background-color: #e7e7e7;
}

.df-outline-item a {
	color: inherit !important;
	text-decoration: none !important;
	display: block;
	padding: 5px 0 5px 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	border: none !important;
	box-shadow: none !important;
}

.df-outline-toggle:before {
	content: "";
	font-size: 10px;
	font-family: "themify";
}

.df-outline-toggle.df-outlines-hidden:before {
	content: "";
}

.df-lightbox-wrapper {
	position: fixed !important;
	top: 0;
	bottom: 0;
	right: 0;
	height: auto !important;
	left: 0;
	background-color: white;
	z-index: 99999;
}

.df-lightbox-controls {
	float: right;
	padding: 5px;
	z-index: 1000;
	position: relative;
}

.df-lightbox-close {
	float: right;
	height: 40px;
	text-align: center;
	font-size: 50px;
	cursor: pointer;
	color: #444;
	border-radius: 50%;
	border-color: transparent;
	width: 40px;
	background-color: transparent;
	transition: .2s;
	-webkit-transition: .2s;
}

.df-lightbox-close:hover {
	color: white;
	background-color: rgba(0, 0, 0, .21);
	border-color: black;
}

.df-lightbox-close:before {
	top: 50%;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	font-size: 24px;
}

.df-lightbox-wrapper .df-container {
	position: absolute !important;
	width: 100%;
	top: 0;
	bottom: 0;
	height: auto !important;
}

.df-container.df-xs .df-ui-controls .df-ui-btn.df-ui-page {
	display: none !important;
}

._df_button, ._df_thumb, ._df_custom {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	cursor: pointer;
}

._df_button {
	padding: 5px 15px;
	background: #0085ba;
	color: white;
	font-size: 14px;
	border-color: #0073aa #006799 #006799;
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	-webkit-appearance: none;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	white-space: nowrap;
}

._df_thumb {
	border: 0;
	width: 140px;
	height: 200px;
	text-align: center;
}

._df_thumb {
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .22);
	display: inline-block;
	-webkit-transform-style: flat;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	box-sizing: border-box;
	-webkit-transition: .2s;
	margin: 30px 10px 10px;
	-moz-perspective: 1200px;
	perspective: 1200px;
}

._df_books ._df_thumb, ._df_books .df-dummy {
	width: 140px;
	height: 200px;
	text-align: center;
	display: inline-block;
	position: relative;
	margin: 20px 10px;
	vertical-align: top;
}

._df_thumb[thumbtype="img"] {
	height: auto;
}

._df_thumb[thumbtype="img"] img {
	max-width: 100%;
	max-height: 200px;
	margin: 0;
	padding: 0;
	border: 0;
}

._df_book-cover {
	background-size: 100% 100%;
	height: 100%;
	width: 100%;
	-webkit-transform-origin: left;
	transform-origin: left;
	top: 0;
	background-color: #eee;
	position: relative;
	overflow: hidden;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .22);
}

._df_thumb ._df_book-title {
	bottom: -100%;
	position: absolute;
	width: 100%;
	left: 0;
	padding: 5px;
	font-size: 12px;
	background: rgba(60, 60, 60, .8);
	box-sizing: border-box;
	display: block;
	color: white;
	transition: .4s;
	-webkit-transition: .4s;
	opacity: 0;
}

._df_thumb ._df_book-tag {
	float: left;
	padding: 0 4px 2px;
	background-color: rgba(0, 0, 0, .26);
	text-transform: uppercase;
	font-size: 10px;
	margin: -15px 0 0 2px;
	z-index: -1;
	color: rgba(255, 255, 255, .8);
	position: relative;
}

._df_thumb:hover ._df_book-title, ._df_thumb-not-found ._df_book-title {
	opacity: 1;
	bottom: 0;
}

._df_thumb:hover ._df_book-cover {
	-webkit-transform: rotateY(-20deg) rotateZ(0);
	-moz-transform: rotateY(-20deg) rotateZ(0);
	-ms-transform: rotateY(-20deg) rotateZ(0);
	transform: rotateY(-20deg) rotateZ(0);
	box-shadow: 3px 0 12px rgba(0, 0, 0, .6);
}

.df-webkit ._df_thumb:hover ._df_book-cover {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	transform: none;
	box-shadow: 1px 0 12px rgba(0, 0, 0, .6);
}

._df_books {
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 20px 5px 150px;
}

._df_books-break {
	color: rgba(255, 255, 255, .3);
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 600;
	margin-top: 25px;
	text-transform: uppercase;
}

._df_books-break:after {
	content: " ";
	bottom: 0;
	width: 50px;
	height: 1px;
	background-color: rgba(255, 255, 255, .24);
	display: block;
	margin: 10px auto;
}

.df-page-wrapper {
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
}

.df-container ::-webkit-scrollbar {
	width: 8px;
}

.df-container ::-webkit-scrollbar-button {
	height: 8px;
}

.df-container ::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, .3);
	border: 0 none #fff;
	border-radius: 100px;
}

.df-container ::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, .5);
}

.df-container ::-webkit-scrollbar-thumb:active {
	background: rgba(0, 0, 0, .5);
}

.df-container ::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, .2);
	border: 0 none #fff;
	border-radius: 100px;
}

.df-container ::-webkit-scrollbar-track:hover {
	background: rgba(0, 0, 0, .2);
}

.df-container ::-webkit-scrollbar-track:active {
	background: rgba(0, 0, 0, .15);
}

.df-container ::-webkit-scrollbar-corner {
	background: transparent;
}

.df-skipTransition {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

.df-container.df-fullscreen {
	height: 100% !important;
	max-height: 100% !important;
	width: 100% !important;
	max-width: 100% !important;
}

.df-container.df-double-internal .df-page-front {
	background-position: left;
	background-size: cover;
}

.df-container.df-double-internal .df-page-back {
	background-position: right;
	background-size: cover;
}

.customHtmlAnnotation iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.df-rtl .more-container .df-ui-btn {
	text-align: right;
	direction: rtl;
}

.df-rtl .more-container .df-ui-btn:before {
	right: 10px;
}

.df-rtl .more-container .df-ui-btn span {
	padding: 0 20px 0 0;
}

.df-rtl .df-outline-items>.df-outline-item {
	margin: 0 18px 0 0;
	text-align: right;
	direction: rtl;
}

.df-rtl .df-outline-toggle {
	float: right;
	margin: 0 -18px 0 0;
}

.df-rtl .df-outline-toggle.df-outlines-hidden:before {
	content: "";
}

.df-rtl .df-sidemenu.df-sidemenu-visible {
	left: auto;
	left: initial;
	right: 0;
}

.df-rtl .df-ui-sidemenu-close {
	right: auto;
	right: initial;
	left: -32px;
	border-radius: 5px 0 0 5px;
}

._df_thumb[thumbtype="img"] ._df_thumb-not-found {
	height: 200px;
	position: relative;
}

body.admin-bar .df-lightbox-wrapper {
	top: 32px;
}

@media screen and (max-width:782px) {
	body.admin-bar .df-lightbox-wrapper {
		top: 46px;
	}
}

.df-raw-loading {
	position: absolute;
	margin-top: 20px;
	margin-left: 5px;
	padding: 6px 20px;
	background-color: rgba(0, 0, 0, .3);
	font-style: italic;
	border-radius: 5px;
	font-size: 11px;
	max-height: 30px;
	color: #fff;
	max-width: 200px;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	left: 50%;
	top: 50%;
	opacity: .7;
}

.df-raw-loading a {
	color: inherit !important;
}

.df-container .df-raw-loading {
	top: 100%;
}

[hidden] {
	display: none;
}

html.df-lightbox-open, body.df-lightbox-open {
	overflow: hidden !important;
}

.df-custom-fullscreen.df-fullscreen[backgroundcolor='transparent'] {
	background: gray !important;
}

.taxopress-table-container {
	width: 100%;
}

.taxopress-table-row td {
	border: none;
}

.taxopress-table-row:nth-child(n+7) {
	display: none;
}

.taxopress-see-more-link, .taxopress-close-table-link {
	cursor: pointer;
}

.taxopress-close-table-link {
	display: none;
}

.taxopress-see-more-container {
	text-align: right;
	padding: 10px;
}

.hidden {
	display: none;
}

.taxopress-table-container .taxopress-post-count {
	text-align: right;
	padding-right: 30px;
}

.taxopress-arrow {
	display: inline-block;
}

.taxopress-arrow.right {
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid;
}

.taxopress-arrow.down {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid;
}

/* border-cloud styling */
.taxopress-border-cloud a {
	text-decoration: none;
	border: 1px solid;
	padding: 4px 7px;
	display: inline-block;
	margin: 3px;
}

/* box-list styling */
.taxopress-box-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
}

.taxopress-box-list a {
	display: block;
	text-decoration: none;
	box-sizing: border-box;
	word-wrap: break-word;
}

.taxopress-box-list img {
	max-width: 100%;
	height: auto;
	display: block;
}

.taxopress-boxrelatedpost-cat {
	color: #666;
	font-size: .9em;
}

@media (max-width: 1200px) {
	.taxopress-box-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.taxopress-box-list {
		grid-template-columns: 1fr;
		word-wrap: break-word;
	}
}

.taxopress-parent-child-list {
	list-style: none !important;
}

.taxopress-parent-term {
	font-weight: normal;
	margin: .5em 0;
	list-style-type: none !important;
	position: relative;
	padding-left: 1.5em;
}

.taxopress-child-list {
	list-style: none !important;
	margin: .3em 0 .3em 1em !important;
	padding-left: 0 !important;
}

.taxopress-child-term {
	font-weight: normal;
	margin: .2em 0;
	position: relative;
	padding-left: 1.5em;
}

.taxopress-parent-term::before {
	content: "•";
	position: absolute;
	left: 0;
	font-size: 1.2em;
	line-height: 1;
}

.taxopress-child-list > li::before {
	content: "○";
	position: absolute;
	left: 0;
	font-size: 1.2em;
	line-height: 1;
}

.taxopress-child-list .taxopress-child-list > li::before {
	content: "▪  ▪";
	font-size: 1.2em;
}

.taxopress-child-list {
	margin-left: 1em !important;
}

.taxopress-child-list .taxopress-child-list {
	margin-left: 1em !important;
}

.taxopress-parent-term, .taxopress-child-list li {
	font-weight: normal;
}

.taxopress-box-list img.custom-image-class {
	width: var(--tp-image-width, 200px);
	height: var(--tp-image-height, 200px);
	object-fit: cover;
	aspect-ratio: 1/1;
	display: block;
	max-width: 100%;
}

a.st_tag, a.internal_tag, .st_tag, .internal_tag {
	text-decoration: underline !important;
}

.se-modal-wrapper {
	display: none;
}

.se-blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 99999;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #000;
	background-color: rgba(0, 0, 0, .75);
	text-align: center;
}

.se-blocker:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -.05em;
}

.se-blocker.se-behind {
	background-color: transparent;
}

.se-modal {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	max-width: 1540px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: calc(100% - 120px);
	background: #fff;
	-webkit-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	text-align: left;
}

.se-modal:after, .se-modal:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	-webkit-transition: opacity .3s, visibility .3s;
	transition: opacity .3s, visibility .3s;
	z-index: 1;
}

.se-modal:after {
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	border: 4px solid #212121;
	border-top-color: #3498db;
	border-radius: 50%;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

.se-modal.se-loaded:after, .se-modal.se-loaded:before {
	opacity: 0;
	visibility: hidden;
}

.se-modal-inner {
	height: 100%;
	overflow: auto;
}

.se-modal>iframe {
	width: 100%;
	height: 100%;
	border-width: 0;
}

.se-modal a.se-close-modal {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
	z-index: 2;
}

.se-modal a.se-close-modal.nitro-lazy {
	background-image: none !important;
}

.se-modal-spinner {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	padding: 12px 16px;
	border-radius: 5px;
	background-color: #111;
	height: 20px;
}

.se-modal-spinner>div {
	border-radius: 100px;
	background-color: #fff;
	height: 20px;
	width: 2px;
	margin: 0 1px;
	display: inline-block;
	-webkit-animation: se-sk-stretchdelay 1.2s infinite ease-in-out;
	animation: se-sk-stretchdelay 1.2s infinite ease-in-out;
}

.se-modal-spinner .se-rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.se-modal-spinner .se-rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.se-modal-spinner .se-rect4 {
	-webkit-animation-delay: -.9s;
	animation-delay: -.9s;
}

@media screen and (min-width:1025px) {
	.se-modal {
		width: 90%;
	}
}

@-webkit-keyframes se-sk-stretchdelay {
	0%, 100%, 40% {
		-webkit-transform: scaleY(.5);
		transform: scaleY(.5);
	}
	
	20% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}

@keyframes se-sk-stretchdelay {
	0%, 100%, 40% {
		-webkit-transform: scaleY(.5);
		transform: scaleY(.5);
	}
	
	20% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
}

.shopengine-wishlist {
	text-align: left;
	cursor: pointer;
}

.shopengine-wishlist.badge {
	padding: 6px 5px;
	margin-left: 4px;
}

.shopengine-wishlist.badge:focus {
	outline: 0;
	background: inherit;
}

.shopengine-wishlist.badge.active, .woocommerce .products .product .shopengine-wishlist.badge.active {
	color: #f03d3f;
}

.shopengine-wishlist.badge.active .shopengine-icon-add_to_favourite_1::before, .woocommerce .products .product .shopengine-wishlist.badge.active .shopengine-icon-add_to_favourite_1::before {
	content: "";
}

.shopengine-wishlist .shopengine-remove-action {
	color: #f03d3f;
	font-weight: 700;
	font-size: 1.2em;
	cursor: pointer;
}

.shopengine-wishlist td:last-child, .shopengine-wishlist th:last-child {
	text-align: center;
}

.parent-notification {
	position: fixed;
	right: -372px;
	bottom: 10px;
	-webkit-transition: all .8s;
	transition: all .8s;
	z-index: 99999;
}

.parent-notification .shopengine-wishlist-message {
	background-color: #d4edda;
	padding: 15px 25px;
	color: #28a745;
	border-style: solid;
	border-color: #28a745;
	border-width: 0 0 0 5px;
	border-radius: 5px 0 0 5px;
	-webkit-transition: all .8s;
	transition: all .8s;
	width: 310px;
}

.parent-notification .delete-message {
	background-color: #f8d7da;
	color: #dc3545;
	border-color: #dc3545;
}

.parent-notification.top-right {
	bottom: initial !important;
	top: 10px;
}

.parent-notification.top-right .shopengine-wishlist-message {
	top: 10px;
	bottom: initial;
}

.parent-notification.active {
	right: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.parent-notification p {
	margin: 0;
	line-height: 1.5;
	font-size: 18px;
	font-weight: 600;
}

.top-left {
	right: initial;
	left: -325px;
	top: 10px;
	-webkit-transition: all .8s;
	transition: all .8s;
}

.top-left.active {
	left: 0;
	-webkit-transition: all .8s;
	transition: all .8s;
}

.top-left .shopengine-wishlist-message {
	border-radius: 0 5px 5px 0;
	border-width: 0 5px 0 0;
	-webkit-transition: all .8s;
	transition: all .8s;
}

.bottom-left {
	right: initial;
	left: -325px;
	-webkit-transition: all .8s;
	transition: all .8s;
	top: initial;
	bottom: 10px;
}

.bottom-left.active {
	left: 0;
	-webkit-transition: all .8s;
	transition: all .8s;
}

.bottom-left .shopengine-wishlist-message {
	border-radius: 0 5px 5px 0;
	border-width: 0 5px 0 0;
	-webkit-transition: all .8s;
	transition: all .8s;
}

#linguise_background {
	z-index: 999998;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: hsla(0, 0%, 63.9%, .45);
	display: block;
}

#linguise_popup_container {
	position: fixed;
	z-index: 999999;
	visibility: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 16px;
}

#linguise_popup_container :after, #linguise_popup_container :before {
	box-sizing: unset;
}

#linguise_popup_container.show_linguise_popup_container {
	visibility: visible;
}

#linguise_popup_container.show_linguise_popup_container #linguise_popup {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

#linguise_popup_container #linguise_popup {
	flex-direction: column;
	width: 100%;
	min-width: 320px;
	background-color: #fff;
	padding: 20px;
	height: fit-content;
	border-radius: 4px;
	-webkit-transform: scale(.7);
	-ms-transform: scale(.7);
	transform: scale(.7);
	opacity: 0;
	-webkit-transition: all .3s;
	transition: all .3s;
	z-index: 999999;
}

#linguise_popup_container #linguise_popup p {
	margin: 10px 0;
}

#linguise_popup_container #linguise_popup ul {
	width: 100%;
	list-style-type: none !important;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(10em, 1fr));
	gap: .5rem;
}

#linguise_popup_container #linguise_popup li {
	list-style-type: none !important;
	line-height: 24px;
	padding: 10px 0;
}

#linguise_popup_container #linguise_popup li a {
	text-decoration: none;
}

#linguise_popup_container #linguise_popup li .linguise_flags {
	height: 24px;
	width: 24px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	box-shadow: 3px 3px 6px #bfbfbf;
	border-radius: 24px;
	opacity: .8;
	cursor: pointer;
	background-size: contain;
}

#linguise_popup_container #linguise_popup li .linguise_lang_name {
	vertical-align: middle;
	cursor: pointer;
}

#linguise_popup_container #linguise_popup li:hover span {
	opacity: 1;
}

#linguise_popup_container #linguise_popup li.linguise_current a {
	font-weight: 700;
	text-shadow: 2px 2px 2px #bfbfbf;
}

#linguise_popup_container #linguise_popup .linguise_switcher {
	opacity: .8;
}

#linguise_popup_container #linguise_popup .linguise_switcher li:hover {
	background-color: #f7f7f7;
}

#linguise_popup_container #linguise_popup .linguise_switcher li a:hover {
	text-decoration: none;
}

#linguise_popup_container #linguise_popup .close {
	display: block;
	position: absolute;
	top: 5px;
	right: 5px;
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/close.png");
	width: 20px;
	height: 20px;
}

#linguise_popup_container #linguise_popup .close.nitro-lazy {
	background-image: none !important;
}

#linguise_popup_container #linguise_popup.linguise_flag_rectangular ul li .linguise_flags {
	border-radius: 0;
	background-size: 100% auto;
	background-position: 50%;
}

@media screen and (max-width:660px) {
	#linguise_popup ul li {
		flex: 0 0 50%;
	}
}

@media screen and (min-width:660px) {
	#linguise_popup ul li {
		flex: 0 0 33.3333333333%;
	}
}

@media screen and (min-width:1200px) {
	#linguise_popup ul li {
		flex: 0 0 20%;
	}
}

@media screen and (max-width:768px) {
	#linguise_popup, #linguise_popup_container {
		overflow-y: auto;
		overflow-x: hidden;
	}
	
	#linguise_popup {
		max-height: 90dvh;
	}
}

@media screen and (min-width:768px) {
	#linguise_popup {
		max-width: 75dvw;
	}
}

@media screen and (max-width:768px) {
	#linguise_popup {
		max-width: 85dvw;
	}
}

@media screen and (min-width:1200px) {
	#linguise_popup {
		max-width: 57.5dvw;
	}
}

#dropdown {
	display: flex;
}

#dropdown .linguise_switcher_dropdown {
	border: 0;
	display: flex;
	border-radius: 4px;
}

#dropdown .linguise_switcher_dropdown li {
	border-bottom: 1px solid #eee;
	font-size: 14px;
}

#dropdown .linguise_switcher_dropdown li.linguise_current {
	display: flex;
	width: fit-content;
	font-size: 14px;
	margin: 0;
	position: relative;
}

#dropdown .linguise_switcher_dropdown li.linguise_current:hover>ul {
	visibility: visible;
	opacity: 1;
}

#dropdown .linguise_switcher_dropdown li.linguise_current:hover .lccaret {
	transform: rotate(1turn);
}

#dropdown .linguise_switcher_dropdown li.linguise_current:hover .lccaret.top {
	transform: rotate(180deg);
}

#dropdown .linguise_switcher_dropdown li.linguise_current .linguise_current_lang {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px;
	cursor: pointer;
	border: 1px solid #eee;
}

#dropdown .linguise_switcher_dropdown ul {
	width: 100%;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	margin: 0;
	background-color: #fff;
	padding: 0;
	border-radius: 4px;
	z-index: 999;
	box-shadow: 2px 3px 6px 0 rgba(0, 0, 0, .16);
	box-sizing: border-box;
	transition: visibility 0s, opacity .2s linear;
}

#dropdown .linguise_switcher_dropdown ul.many_languages {
	height: 300px;
	overflow-y: auto;
}

#dropdown .linguise_switcher_dropdown ul::-webkit-scrollbar {
	width: 1px;
}

#dropdown .linguise_switcher_dropdown ul::-webkit-scrollbar-thumb {
	background-color: #999;
}

#dropdown .linguise_switcher_dropdown ul li {
	display: flex;
	margin: 0;
	padding: 10px;
	width: 100%;
	align-items: center;
}

#dropdown .linguise_switcher_dropdown ul li:hover {
	background: #eee;
}

@media screen and (max-width:500px) {
	.linguise_switcher_dropdown li.linguise_current:hover>ul.many_languages {
		display: block;
		width: auto;
	}
}

#side_by_side .side_by_side_lang_list {
	list-style: none !important;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

#side_by_side .side_by_side_lang_list a {
	margin: 0;
	float: left;
	padding: 0;
}

.linguise_switcher {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	outline: 0 !important;
}

.linguise_switcher a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.linguise_switcher ul {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.linguise_switcher .lccaret {
	margin-left: 5px;
	transition: transform .2s linear;
	display: flex;
}

.linguise_switcher .lccaret svg {
	width: 20px;
	height: 20px;
}

.linguise_switcher span.linguise_language_icon {
	height: 24px;
	width: 24px;
	display: inline-block;
	vertical-align: middle;
	opacity: .8;
	cursor: pointer;
}

.linguise_switcher span.linguise_language_icon+.linguise_lang_name {
	margin-left: 10px;
	word-break: keep-all;
	overflow-wrap: normal;
}

.linguise_switcher span.linguise_language_icon>.linguise_lang_name {
	margin-right: 10px;
}

.linguise_switcher.linguise_flag_rectangular span.linguise_language_icon {
	border-radius: 0;
	background-size: 100% auto;
	background-position: 50%;
}

.linguise_switcher:hover {
	opacity: 1;
}

.linguise_switcher .linguise_switcher_popup {
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 5px 10px;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_af {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/af.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_af.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_am {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/am.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_am.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ar {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ar.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ar.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_az {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/az.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_az.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_be {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/be.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_be.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_bg {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/bg.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_bg.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_bn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/bn.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_bn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_bs {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/bs.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_bs.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ca {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ca.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ca.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ceb {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ceb.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ceb.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_co {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/co.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_co.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_cs {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/cs.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_cs.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_cy {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/cy.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_cy.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_da {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/da.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_da.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_de {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/de.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_de.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_de_at {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/de-at.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_de_at.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_el {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/el.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_el.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_en, .linguise_switcher.linguise_flag_rounded .linguise_flag_en_us {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/en-us.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_en.nitro-lazy, .linguise_switcher.linguise_flag_rounded .linguise_flag_en_us.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_en_gb {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/en-gb.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_en_gb.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_eo {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/eo.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_eo.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_es {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/es.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_es.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_es-mx, .linguise_switcher.linguise_flag_rounded .linguise_flag_es_mx {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/es-mx.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_es-mx.nitro-lazy, .linguise_switcher.linguise_flag_rounded .linguise_flag_es_mx.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_es-pu, .linguise_switcher.linguise_flag_rounded .linguise_flag_es_pu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/es-pu.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_es-pu.nitro-lazy, .linguise_switcher.linguise_flag_rounded .linguise_flag_es_pu.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_et {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/et.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_et.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_eu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/eu.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_eu.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_fa {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/fa.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_fa.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_fi {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/fi.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_fi.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_fr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/fr.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_fr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ga {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ga.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ga.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_gd {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/gd.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_gd.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_gu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/gu.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_gu.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_gl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/gl.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_gl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ha {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ha.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ha.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_haw {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/haw.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_haw.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_he {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/he.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_he.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hi {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/hi.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hi.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/hr.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ht {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ht.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ht.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/hu.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hu.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hy {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/hy.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hy.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_id {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/id.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_id.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ig {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ig.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ig.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_is {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/is.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_is.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ja {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ja.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ja.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_jw {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/jw.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_jw.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ka {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ka.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ka.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_kk {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/kk.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_kk.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_km {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/km.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_km.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_kn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/kn.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_kn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ko {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ko.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ko.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ku {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ku.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ku.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ky {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ky.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ky.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_lb {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/lb.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_lb.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_it {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/it.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_it.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_lo {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/lo.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_lo.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_lt {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/lt.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_lt.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_lv {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/lv.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_lv.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mg {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/mg.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mg.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mi {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/mi.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mi.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mk {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/mk.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mk.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ml {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ml.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ml.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/mn.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/mr.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ms {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ms.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ms.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mt {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/mt.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_mt.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_my {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/my.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_my.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ne {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ne.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ne.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_nl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/nl.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_nl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_no {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/no.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_no.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ny {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ny.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ny.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_pa {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/pa.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_pa.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_pl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/pl.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_pl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ps {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ps.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ps.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_pt {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/pt.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_pt.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_pt-br, .linguise_switcher.linguise_flag_rounded .linguise_flag_pt_br {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/pt-br.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_pt-br.nitro-lazy, .linguise_switcher.linguise_flag_rounded .linguise_flag_pt_br.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ro {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ro.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ro.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ru {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ru.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ru.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_rw {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/rw.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_rw.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_si {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/si.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_si.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sk {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/sk.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sk.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/sl.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sm {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/sm.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sm.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/sn.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_so {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/so.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_so.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sq {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/sq.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sq.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/sr.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_su {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/su.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_su.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sv {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/sv.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sv.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sw {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/sw.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_sw.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ta {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ta.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ta.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_te {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/te.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_te.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_tg {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/tg.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_tg.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_th {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/th.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_th.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_tl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/tl.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_tl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_tr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/tr.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_tr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_uk {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/uk.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_uk.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ur {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/ur.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_ur.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_uz {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/uz.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_uz.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_vi {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/vi.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_vi.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_xh {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/xh.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_xh.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_yo {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/yo.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_yo.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_zh-cn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/zh-cn.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_zh-cn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_zh-tw {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/zh-tw.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_zh-tw.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_zu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/zu.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_zu.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hmn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rounded/hmn.svg");
}

.linguise_switcher.linguise_flag_rounded .linguise_flag_hmn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_af {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/af.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_af.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_eo {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/eo.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_eo.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ku {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ku.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ku.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ps {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ps.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ps.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hmn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/hmn.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hmn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/mr.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_pa {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/pa.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_pa.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_am {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/am.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_am.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ar {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ar.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ar.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_az {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/az.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_az.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_be {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/be.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_be.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_bg {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/bg.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_bg.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_bn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/bn.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_bn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_bs {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/bs.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_bs.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ca {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ca.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ca.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_cs {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/cs.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_cs.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ceb {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ceb.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ceb.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_co {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/co.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_co.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_cy {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/cy.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_cy.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_da {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/da.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_da.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_de {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/de.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_de.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_de-at, .linguise_switcher.linguise_flag_rectangular .linguise_flag_de_at {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/de-at.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_de-at.nitro-lazy, .linguise_switcher.linguise_flag_rectangular .linguise_flag_de_at.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_el {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/el.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_el.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_en, .linguise_switcher.linguise_flag_rectangular .linguise_flag_en-us, .linguise_switcher.linguise_flag_rectangular .linguise_flag_en_us {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/en-us.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_en.nitro-lazy, .linguise_switcher.linguise_flag_rectangular .linguise_flag_en-us.nitro-lazy, .linguise_switcher.linguise_flag_rectangular .linguise_flag_en_us.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_en-gb, .linguise_switcher.linguise_flag_rectangular .linguise_flag_en_gb {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/en-gb.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_en-gb.nitro-lazy, .linguise_switcher.linguise_flag_rectangular .linguise_flag_en_gb.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_es {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/es.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_es.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_es-mx, .linguise_switcher.linguise_flag_rectangular .linguise_flag_es_mx {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/es-mx.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_es-mx.nitro-lazy, .linguise_switcher.linguise_flag_rectangular .linguise_flag_es_mx.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_es-pu, .linguise_switcher.linguise_flag_rectangular .linguise_flag_es_pu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/es-pu.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_es-pu.nitro-lazy, .linguise_switcher.linguise_flag_rectangular .linguise_flag_es_pu.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_et {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/et.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_et.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_eu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/eu.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_eu.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_fa {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/fa.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_fa.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_fi {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/fi.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_fi.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_fr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/fr.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_fr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ga {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ga.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ga.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_gu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/gu.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_gu.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_gl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/gl.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_gl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ha {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ha.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ha.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_haw {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/haw.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_haw.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_he {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/he.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_he.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hi {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/hi.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hi.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/hr.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ht {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ht.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ht.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/hu.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hu.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hy {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/hy.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_hy.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_id {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/id.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_id.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ig {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ig.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ig.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_is {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/is.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_is.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_it {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/it.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_it.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ja {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ja.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ja.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ka {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ka.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ka.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_kk {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/kk.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_kk.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_km {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/km.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_km.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_kn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/kn.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_kn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ko {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ko.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ko.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_lb {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/lb.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_lb.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_lo {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/lo.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_lo.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_lt {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/lt.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_lt.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_lv {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/lv.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_lv.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mg {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/mg.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mg.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mi {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/mi.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mi.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mk {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/mk.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mk.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ml {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ml.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ml.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/mn.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ms {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ms.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ms.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mt {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/mt.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_mt.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ne {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ne.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ne.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_nl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/nl.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_nl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_no {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/no.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_no.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_pl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/pl.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_pl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_pt {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/pt.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_pt.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_pt-br, .linguise_switcher.linguise_flag_rectangular .linguise_flag_pt_br {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/pt-br.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_pt-br.nitro-lazy, .linguise_switcher.linguise_flag_rectangular .linguise_flag_pt_br.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ro {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ro.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ro.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ru {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ru.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ru.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_rw {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/rw.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_rw.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sk {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/sk.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sk.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/sl.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sm {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/sm.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sm.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sq {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/sq.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sq.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/sr.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_su {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/su.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_su.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sv {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/sv.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sv.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sw {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/sw.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_sw.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ta {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ta.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ta.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_te {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/te.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_te.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_tg {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/tg.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_tg.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_th {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/th.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_th.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_tl {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/tl.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_tl.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_tr {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/tr.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_tr.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_uk {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/uk.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_uk.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ur {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/ur.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_ur.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_vi {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/vi.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_vi.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_zh-cn {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/zh-cn.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_zh-cn.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_zh-tw {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/zh-tw.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_zh-tw.nitro-lazy {
	background-image: none !important;
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_zu {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/linguise/assets/images/flags-rectangular/zu.svg");
}

.linguise_switcher.linguise_flag_rectangular .linguise_flag_zu.nitro-lazy {
	background-image: none !important;
}

.mr-10 {
	margin-right: 10px;
}

@media (max-width:1024px) {
	.elementor-nav-menu--dropdown a:hover>.linguise_lang_name, .elementor-nav-menu--dropdown li:hover>.linguise_lang_name {
		color: #fff !important;
	}
	
	.elementor-nav-menu--dropdown .linguise_parent_menu_item .linguise_switcher_sub {
		position: static;
	}
	
	.elementor-nav-menu--dropdown .linguise_parent_menu_item .linguise_switcher_sub li a {
		width: 100%;
	}
}

.theme-betheme #Top_bar .menu li.linguise_switcher a span.linguise_lang_name, .theme-betheme #Top_bar .menu li.linguise_switcher a span.linguise_language_icon {
	display: inline-block;
	padding: 0;
}

.theme-betheme #Top_bar .menu li.linguise_switcher a span.linguise_language_icon {
	margin-left: 20px;
}

.theme-betheme #Top_bar .menu li.linguise_switcher a span.linguise_lang_name {
	padding-right: 20px;
}

.elementor-nav-menu .linguise_switcher_dropdown ul a {
	padding: 0;
	line-height: normal;
	border-width: 0;
}

.et_divi_theme .linguise_menu_root .linguise_switcher_dropdown {
	padding: unset !important;
	box-shadow: unset !important;
	height: fit-content;
	margin-top: auto;
	margin-bottom: auto;
	visibility: visible !important;
	width: fit-content !important;
	min-width: unset !important;
	position: relative !important;
	opacity: 1 !important;
}

.gform-theme--framework :where(
:not(html):not(iframe):not(canvas):not(img):not(svg):not(video):not(svg *):not(symbol *):not(.gform-theme__no-reset--el):not(.gform-theme__no-reset--children *):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-reset):not(.gform-theme__disable-reset *):not(.gform_heading *):not(.gfield--type-html *):not(.gfield--type-section *):not(.form_saved_message > *):not(.form_saved_message_sent > *):not(.gform_confirmation_message *):not(.wp-editor-container):not(.mce-tinymce):not(.mce-tinymce *):not(.wp-editor-area):not(.gfield_description > *):not(.gform-field-label--type-inline > :not(span)):not(.ui-resizable-handle):not(.hidden)
) {
	all: unset;
	display: revert;
}

.gform-theme--framework *, .gform-theme--framework ::after, .gform-theme--framework ::before {
	box-sizing: border-box;
}

.gform-theme--framework a, .gform-theme--framework button {
	cursor: revert;
}

.gform-theme--framework menu, .gform-theme--framework ol:where(:not(.gform_heading *):not(.gfield--type-html *):not(.gfield--type-section *):not(.form_saved_message > *):not(.form_saved_message_sent > *):not(.gform_confirmation_message *)), .gform-theme--framework ul:where(:not(.gform_heading *):not(.gfield--type-html *):not(.gfield--type-section *):not(.form_saved_message > *):not(.form_saved_message_sent > *):not(.gform_confirmation_message *)) {
	list-style: none;
}

.gform-theme--framework img {
	max-inline-size: 100%;
	max-block-size: 100%;
}

.gform-theme--framework table {
	border-collapse: collapse;
}

.gform-theme--framework input, .gform-theme--framework textarea {
	-webkit-user-select: auto;
}

.gform-theme--framework textarea {
	white-space: revert;
}

.gform-theme--framework meter {
	-webkit-appearance: revert;
	-moz-appearance: revert;
	appearance: revert;
}

.gform-theme--framework :where(pre) {
	all: revert;
}

.gform-theme--framework ::-moz-placeholder {
	color: unset;
}

.gform-theme--framework ::placeholder {
	color: unset;
}

.gform-theme--framework :where([hidden]) {
	display: none;
}

.gform-theme--framework :where([contenteditable]:not([contenteditable=false])) {
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	word-wrap: break-word;
	-webkit-line-break: after-white-space;
	-webkit-user-select: auto;
}

.gform-theme--framework :where([draggable=true]) {
	-webkit-user-drag: element;
}

.gform-theme--framework :where(dialog:modal) {
	all: revert;
}

.gform-theme--framework input[type=checkbox]::before, .gform-theme--framework input[type=radio]::before {
	height: auto;
	margin-block: 0;
	margin-inline: 0;
	position: static;
	width: auto;
}

.gform-theme--framework input[type=checkbox]::after, .gform-theme--framework input[type=radio]::after {
	content: none;
}

.gform-theme--api, .gform-theme--foundation {
	--gf-form-gap-x: 16px;
	--gf-form-gap-y: 40px;
	--gf-form-footer-margin-y-start: 24px;
	--gf-form-footer-gap: 8px;
	--gf-field-gap-x: 12px;
	--gf-field-gap-y: 12px;
	--gf-field-date-width: 168px;
	--gf-field-time-width: 110px;
	--gf-field-list-btns-gap: 8px;
	--gf-field-list-btns-width: calc(32px + var(--gf-field-list-btns-gap) + var(--gf-field-gap-x));
	--gf-field-pg-steps-gap-y: 8px;
	--gf-field-pg-steps-gap-x: 24px;
	--gf-label-width: 30%;
	--gf-label-req-gap: 6px;
}

.gform-theme--foundation *, .gform-theme--foundation ::after, .gform-theme--foundation ::before {
	box-sizing: border-box;
}

.gform-theme--foundation fieldset, .gform-theme--foundation legend {
	background: 0 0;
	padding: 0;
}

.gform-theme--foundation fieldset {
	border: none;
	display: block;
	margin: 0;
}

.gform-theme--foundation legend {
	margin-inline: 0;
}

.gform_anchor:focus-visible {
	outline: 0;
}

.gform_confirmation_wrapper:focus, .gform_wrapper:focus {
	outline: 0;
}

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

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

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

.gform-theme--foundation .gform-text-input-reset {
	background-color: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	color: currentcolor;
	font-family: inherit;
	font-size: inherit;
	outline: 0;
	padding: inherit;
	width: auto;
}

@media (min-width:640px) {
	.gform-theme--foundation .left_label .gfield .copy_values_option_container, .gform-theme--foundation .left_label .gfield .gfield_creditcard_warning_message, .gform-theme--foundation .left_label .gfield .gfield_password_strength, .gform-theme--foundation .left_label .gfield>.gfield-admin-wrapper>.ginput_container, .gform-theme--foundation .left_label .gfield>.ginput_container, .gform-theme--foundation .right_label .gfield .copy_values_option_container, .gform-theme--foundation .right_label .gfield .gfield_creditcard_warning_message, .gform-theme--foundation .right_label .gfield .gfield_password_strength, .gform-theme--foundation .right_label .gfield>.gfield-admin-wrapper>.ginput_container, .gform-theme--foundation .right_label .gfield>.ginput_container {
		float: inline-end;
	}
	
	.gform-theme--foundation .left_label .gfield .gfield_creditcard_warning_message, .gform-theme--foundation .left_label .gfield .gfield_password_strength, .gform-theme--foundation .right_label .gfield .gfield_creditcard_warning_message, .gform-theme--foundation .right_label .gfield .gfield_password_strength {
		margin-inline-start: auto;
	}
	
	.gform-theme--foundation .left_label .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))>.gfield-admin-wrapper>div:where(:not(.gform-grid-row):not(.ui-resizable-handle):not(.gfield-admin-icons):not(.gfield-admin-wrapper):not(.gform-compact-view-overflow-menu):not(.admin-hidden-markup):not(.gfield-compact-icons)), .gform-theme--foundation .left_label .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))>div:where(:not(.gform-grid-row):not(.ui-resizable-handle):not(.gfield-admin-icons):not(.gfield-admin-wrapper):not(.gform-compact-view-overflow-menu):not(.admin-hidden-markup):not(.gfield-compact-icons)), .gform-theme--foundation .left_label .gfield>.gfield-admin-wrapper>.ginput_container:where(:not(.gform-grid-row):not(.ui-resizable-handle):not(.gfield-admin-icons):not(.gfield-admin-wrapper):not(.gform-compact-view-overflow-menu):not(.admin-hidden-markup):not(.gfield-compact-icons)), .gform-theme--foundation .left_label .gfield>.ginput_container:where(:not(.gform-grid-row):not(.ui-resizable-handle):not(.gfield-admin-icons):not(.gfield-admin-wrapper):not(.gform-compact-view-overflow-menu):not(.admin-hidden-markup):not(.gfield-compact-icons)), .gform-theme--foundation .right_label .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))>.gfield-admin-wrapper>div:where(:not(.gform-grid-row):not(.ui-resizable-handle):not(.gfield-admin-icons):not(.gfield-admin-wrapper):not(.gform-compact-view-overflow-menu):not(.admin-hidden-markup):not(.gfield-compact-icons)), .gform-theme--foundation .right_label .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))>div:where(:not(.gform-grid-row):not(.ui-resizable-handle):not(.gfield-admin-icons):not(.gfield-admin-wrapper):not(.gform-compact-view-overflow-menu):not(.admin-hidden-markup):not(.gfield-compact-icons)), .gform-theme--foundation .right_label .gfield>.gfield-admin-wrapper>.ginput_container:where(:not(.gform-grid-row):not(.ui-resizable-handle):not(.gfield-admin-icons):not(.gfield-admin-wrapper):not(.gform-compact-view-overflow-menu):not(.admin-hidden-markup):not(.gfield-compact-icons)), .gform-theme--foundation .right_label .gfield>.ginput_container:where(:not(.gform-grid-row):not(.ui-resizable-handle):not(.gfield-admin-icons):not(.gfield-admin-wrapper):not(.gform-compact-view-overflow-menu):not(.admin-hidden-markup):not(.gfield-compact-icons)) {
		inline-size: calc(100% - var(--gf-label-width));
	}
	
	.gform-theme--foundation .left_label .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))>.gfield-admin-wrapper>div:where(.gform-grid-row), .gform-theme--foundation .left_label .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))>div:where(.gform-grid-row), .gform-theme--foundation .left_label .gfield>.gfield-admin-wrapper>.ginput_container:where(.gform-grid-row), .gform-theme--foundation .left_label .gfield>.ginput_container:where(.gform-grid-row), .gform-theme--foundation .right_label .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))>.gfield-admin-wrapper>div:where(.gform-grid-row), .gform-theme--foundation .right_label .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))>div:where(.gform-grid-row), .gform-theme--foundation .right_label .gfield>.gfield-admin-wrapper>.ginput_container:where(.gform-grid-row), .gform-theme--foundation .right_label .gfield>.ginput_container:where(.gform-grid-row) {
		inline-size: calc(( 100% - var(--gf-label-width) ) + var(--gf-field-gap-x));
	}
	
	.gform-theme--foundation:where(:not(.gform_editor)) .left_label .gfield_html_formatted, .gform-theme--foundation:where(:not(.gform_editor)) .right_label .gfield_html_formatted {
		margin-inline-start: var(--gf-label-width);
	}
}

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

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

.gform-theme--foundation .ginput_complex label, .gform-theme--foundation .ginput_complex legend {
	display: block;
}

.gform-theme--foundation .ginput_complex input, .gform-theme--foundation .ginput_complex select {
	inline-size: 100%;
}

.gform-theme--foundation .gfield textarea {
	inline-size: 100%;
}

.gform-theme--foundation .gfield textarea.small {
	min-block-size: 6rem;
}

.gform-theme--foundation .gfield textarea.medium {
	min-block-size: 12rem;
}

.gform-theme--foundation .gfield textarea.large {
	min-block-size: 18rem;
}

.gform-theme--foundation .gfield .ginput_password, .gform-theme--foundation .gfield input, .gform-theme--foundation .gfield select {
	max-inline-size: 100%;
}

.gform-theme--foundation .gfield .ginput_password.small, .gform-theme--foundation .gfield input.small, .gform-theme--foundation .gfield select.small {
	inline-size: calc(25% - var(--gf-form-gap-x) * 3 / 4);
}

.gform-theme--foundation .gfield .ginput_password.medium, .gform-theme--foundation .gfield input.medium, .gform-theme--foundation .gfield select.medium {
	inline-size: calc(50% - var(--gf-form-gap-x) / 2);
}

.gform-theme--foundation .gfield .ginput_password.large, .gform-theme--foundation .gfield input.large, .gform-theme--foundation .gfield select.large {
	inline-size: 100%;
}

.gform-theme--foundation .gform_fields {
	grid-column-gap: 0;
	-moz-column-gap: 0;
	column-gap: 0;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(auto-fill, auto);
	inline-size: 100%;
	grid-row-gap: var(--gf-form-gap-y);
	row-gap: var(--gf-form-gap-y);
}

.gform-theme--foundation .gfield {
	grid-column: 1/-1;
	min-inline-size: 0;
}

.gform-theme--foundation #field_submit, .gform-theme--foundation .gform_footer, .gform-theme--foundation .gform_page_footer {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gf-form-footer-gap);
}

.gform-theme--foundation #field_submit {
	align-items: flex-end;
}

.gform-theme--foundation #field_submit input[type=submit][id*=gform_submit_button_].gform-button--width-full {
	inline-size: 100% !important;
}

.gform-theme--foundation .gform_footer, .gform-theme--foundation .gform_page_footer {
	margin-block-start: var(--gf-form-footer-margin-y-start);
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full {
	inline-size: 100% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-full, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-full {
	inline-size: 100% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-eleven-twelfths, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-eleven-twelfths {
	inline-size: 91.6666% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-five-sixths, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-five-sixths {
	inline-size: 83.3333% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-three-quarter, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-three-quarter {
	inline-size: 75% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-two-thirds, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-two-thirds {
	inline-size: 66.6666% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-seven-twelfths, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-seven-twelfths {
	inline-size: 58.3333% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-half, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-half {
	inline-size: 50% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-five-twelfths, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-five-twelfths {
	inline-size: 41.6666% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-third, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-third {
	inline-size: 33.3333% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-quarter, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-quarter {
	inline-size: 25% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-one-sixth, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-one-sixth {
	inline-size: 16.6666% !important;
}

.gform-theme--foundation .gform_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-one-twelfth, .gform-theme--foundation .gform_page_footer:where(:not(.gform-conversational__field-form-footer)) input[type=submit][id*=gform_submit_button_].gform-button--width-full.gfield--width-one-twelfth {
	inline-size: 8.3333% !important;
}

@media (min-width:640px) {
	.gform-theme--foundation .gform_fields {
		-moz-column-gap: var(--gf-form-gap-x);
		column-gap: var(--gf-form-gap-x);
	}
	
	.gform-theme--foundation .gfield--width-full {
		grid-column: span 12;
	}
	
	.gform-theme--foundation .gfield--width-eleven-twelfths {
		grid-column: span 11;
	}
	
	.gform-theme--foundation .gfield--width-five-sixths {
		grid-column: span 10;
	}
	
	.gform-theme--foundation .gfield--width-three-quarter {
		grid-column: span 9;
	}
	
	.gform-theme--foundation .gfield--width-two-thirds {
		grid-column: span 8;
	}
	
	.gform-theme--foundation .gfield--width-seven-twelfths {
		grid-column: span 7;
	}
	
	.gform-theme--foundation .gfield--width-half {
		grid-column: span 6;
	}
	
	.gform-theme--foundation .gfield--width-five-twelfths {
		grid-column: span 5;
	}
	
	.gform-theme--foundation .gfield--width-third {
		grid-column: span 4;
	}
	
	.gform-theme--foundation .gfield--width-quarter {
		grid-column: span 3;
	}
	
	.gform-theme--foundation .gfield--width-one-sixth {
		grid-column: span 2;
	}
	
	.gform-theme--foundation .gfield--width-one-twelfth {
		grid-column: span 1;
	}
	
	.gform-theme--foundation .gform_footer.left_label, .gform-theme--foundation .gform_footer.right_label {
		padding-inline-start: var(--gf-label-width);
	}
}

.gform-theme--foundation .gform-grid-row {
	display: flex;
	flex-flow: row wrap;
	margin-inline: calc(var(--gf-field-gap-x) * -1 / 2);
	row-gap: var(--gf-field-gap-y);
}

.gform-theme--foundation .gform-grid-col {
	flex: none;
	inline-size: 100%;
	padding-inline: calc(var(--gf-field-gap-x) / 2);
}

.gform-theme--foundation .gform-grid-col.gform-grid-row {
	inline-size: calc(100% + var(--gf-field-gap-x));
}

@media (min-width:640px) {
	.gform-theme--foundation .gform-grid-col.gform-grid-col--size-auto {
		flex: 1;
		inline-size: auto;
	}
}

.gform-theme--foundation .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)), .gform-theme--foundation.gform_editor legend.gform-field-label>span {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gf-label-req-gap);
}

.gform-theme--foundation .gform-field-label:where([class*=gform-field-label--type-]) {
	display: inline-block;
}

@media (min-width:640px) {
	.gform-theme--foundation:where(:not(.gform-editor--compact)) .left_label .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)), .gform-theme--foundation:where(:not(.gform-editor--compact)) .right_label .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)) {
		flex-direction: column;
		float: inline-start;
		gap: calc(var(--gf-label-req-gap) / 3);
		inline-size: var(--gf-label-width);
	}
}

@media (min-width:640px) {
	.gform-theme--foundation:where(:not(.gform-editor--compact)) .left_label .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)) {
		align-items: start;
	}
}

@media (min-width:640px) {
	.gform-theme--foundation:where(:not(.gform-editor--compact)) .right_label .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)) {
		align-items: end;
		justify-content: normal;
		text-align: end;
	}
}

@media (min-width:640px) {
	.gform-theme--foundation .left_label .gfield_description, .gform-theme--foundation .right_label .gfield_description {
		clear: inline-end;
		margin-inline-start: auto;
	}
}

.gform-theme--foundation.ui-datepicker {
	background-color: #fff;
	box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
	display: none;
	z-index: 9999 !important;
}

.gform-theme--foundation.ui-datepicker .ui-icon {
	background-repeat: no-repeat;
	display: block;
	inset-block-start: .3em;
	inset-inline-start: .5em;
	margin-block-start: -.25em;
	overflow: hidden;
	position: relative;
	text-indent: -99999px;
	vertical-align: middle;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-header {
	padding-block: .2em;
	position: relative;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-next, .gform-theme--foundation.ui-datepicker .ui-datepicker-prev {
	block-size: 1.8em;
	inline-size: 1.8em;
	inset-block-start: 2px;
	position: absolute;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-next::before, .gform-theme--foundation.ui-datepicker .ui-datepicker-prev::before {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/theme/down-arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	block-size: 1em;
	content: "";
	display: inline-block;
	inline-size: 1em;
	inset-block-start: 50%;
	inset-inline-start: 50%;
	position: absolute;
	transform: translate(-50%, -50%) rotate(90deg);
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-next span, .gform-theme--foundation.ui-datepicker .ui-datepicker-prev span {
	display: block;
	inset-block-start: 50%;
	inset-inline-start: 50%;
	margin-block-start: -8px;
	margin-inline-start: -8px;
	position: absolute;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-next-hover, .gform-theme--foundation.ui-datepicker .ui-datepicker-prev-hover {
	inset-block-start: 1px;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-prev {
	inset-inline-start: 2px;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-next {
	inset-inline-end: 2px;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-next::before {
	transform: translate(-50%, -50%) rotate(-90deg);
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-prev-hover {
	inset-inline-start: 1px;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-next-hover {
	inset-inline-end: 1px;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-title {
	line-height: 1.8em;
	margin-inline: 2.3em;
	text-align: center;
}

.gform-theme--foundation.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin-block: 1px;
}

.gform-theme--foundation.ui-datepicker select.ui-datepicker-month, .gform-theme--foundation.ui-datepicker select.ui-datepicker-year {
	background-color: transparent;
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/source/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/theme/down-arrow.svg");
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-size: 24px;
	padding-inline-end: 24px;
}

.gform-theme--foundation.ui-datepicker select.ui-datepicker-month.nitro-lazy, .gform-theme--foundation.ui-datepicker select.ui-datepicker-year.nitro-lazy {
	background-image: none !important;
}

.gform-theme--foundation.ui-datepicker table {
	border-collapse: collapse;
	font-size: .9em;
	inline-size: 100%;
	margin-block-end: .4em;
	table-layout: fixed;
}

.gform-theme--foundation.ui-datepicker th {
	border: 0;
	font-weight: 700;
	padding-block: .7em;
	padding-inline: .3em;
	text-align: center;
}

.gform-theme--foundation.ui-datepicker td {
	border: 0;
	padding: 1px;
}

.gform-theme--foundation.ui-datepicker td a, .gform-theme--foundation.ui-datepicker td span {
	display: block;
	margin: auto;
	padding: .25em .2em;
	text-align: center;
	text-decoration: none;
}

.gform-theme--foundation.ui-datepicker.ui-datepicker-rtl {
	direction: rtl;
}

.gform-theme--foundation.ui-datepicker.ui-datepicker-rtl .ui-datepicker-prev::before {
	transform: translate(50%, -50%) rotate(-90deg);
}

.gform-theme--foundation.ui-datepicker.ui-datepicker-rtl .ui-datepicker-next::before {
	transform: translate(50%, -50%) rotate(90deg);
}

.gform-theme--foundation.ui-datepicker.ui-datepicker-rtl select.ui-datepicker-month, .gform-theme--foundation.ui-datepicker.ui-datepicker-rtl select.ui-datepicker-year {
	background-position: 0 50%;
}

.gform-theme--foundation .gform_drop_area {
	background-color: #fff;
	border: 1px dashed #686e77;
	padding-block: 32px;
	padding-inline: 32px;
	text-align: center;
}

.gform-theme--foundation .gform_drop_instructions, .gform-theme--foundation .gform_fileupload_rules {
	display: block;
}

.gform-theme--foundation .chosen-container {
	display: inline-block;
	font-size: 13px;
	position: relative;
	text-align: start;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	vertical-align: middle;
}

.gform-theme--foundation .chosen-container * {
	box-sizing: border-box;
}

.gform-theme--foundation .chosen-container a {
	cursor: pointer;
}

.gform-theme--foundation .chosen-container .chosen-drop {
	background: #fff;
	border: 1px solid #aaa;
	border-block-start: 0;
	box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	clip: rect(0, 0, 0, 0);
	clip-path: inset(100% 100%);
	inline-size: 100%;
	inset-block-start: 100%;
	position: absolute;
	z-index: 1010;
}

.gform-theme--foundation .chosen-container.chosen-with-drop .chosen-drop {
	clip: auto;
	clip-path: none;
}

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

.gform-theme--foundation .chosen-container .chosen-single .group-name::after, .gform-theme--foundation .chosen-container .search-choice .group-name::after {
	content: ":";
	padding-inline-start: 2px;
	vertical-align: top;
}

.gform-theme--foundation .chosen-container-single .chosen-single {
	background: #fff linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
	background-clip: padding-box;
	block-size: 25px;
	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;
	line-height: 24px;
	overflow: hidden;
	padding-block: 0;
	padding-inline: 8px 0;
	position: relative;
	text-decoration: none;
	white-space: nowrap;
}

.gform-theme--foundation .chosen-container-single .chosen-single span {
	display: block;
	margin-inline-end: 26px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gform-theme--foundation .chosen-container-single .chosen-single abbr {
	background: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/theme/chosen/chosen-sprite.png") -42px 1px no-repeat;
	block-size: 12px;
	display: block;
	font-size: 1px;
	inline-size: 12px;
	inset-block-start: 6px;
	inset-inline-end: 26px;
	position: absolute;
}

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

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

.gform-theme--foundation .chosen-container-single .chosen-single div {
	block-size: 100%;
	display: block;
	inline-size: 18px;
	inset-block-start: 0;
	inset-inline-end: 0;
	position: absolute;
}

.gform-theme--foundation .chosen-container-single .chosen-single div b {
	background: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/theme/chosen/chosen-sprite.png") no-repeat 0 2px;
	block-size: 100%;
	display: block;
	inline-size: 100%;
}

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

.gform-theme--foundation .chosen-container-single .chosen-default {
	color: #999;
}

.gform-theme--foundation .chosen-container-single .chosen-single-with-deselect span {
	margin-inline-end: 38px;
}

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

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

.gform-theme--foundation .chosen-container-single .chosen-search input[type=text] {
	background: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/theme/chosen/chosen-sprite.png") no-repeat 100% -20px;
	block-size: auto;
	border: 1px solid #aaa;
	border-radius: 0;
	font-family: sans-serif;
	font-size: 1em;
	inline-size: 100%;
	line-height: normal;
	margin-block: 1px;
	margin-inline: 0;
	outline: 0;
	padding-block: 4px;
	padding-inline: 5px 20px;
}

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

.gform-theme--foundation .chosen-container-single.chosen-container-single-nosearch .chosen-search {
	clip: rect(0, 0, 0, 0);
	clip-path: inset(100% 100%);
	position: absolute;
}

.gform-theme--foundation .chosen-container-single .chosen-drop {
	background-clip: padding-box;
	border-end-end-radius: 4px;
	border-end-start-radius: 4px;
	border-start-end-radius: 0;
	border-start-start-radius: 0;
	margin-block-start: -1px;
}

.gform-theme--foundation .chosen-container .chosen-results {
	color: #444;
	margin-block: 0 4px;
	margin-inline: 0 4px;
	max-block-size: 240px;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	overflow-y: auto;
	padding-block: 0;
	padding-inline: 4px 0;
	position: relative;
}

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

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

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

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

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

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

.gform-theme--foundation .chosen-container .chosen-results li.group-option {
	padding-inline-start: 15px;
}

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

.gform-theme--foundation .chosen-container-multi .chosen-choices {
	background-color: #fff;
	background-image: linear-gradient(#eee 1%, #fff 15%);
	block-size: auto;
	border: 1px solid #aaa;
	cursor: text;
	inline-size: 100%;
	margin-block: 0;
	margin-inline: 0;
	overflow: hidden;
	padding-block: 0;
	padding-inline: 5px;
	position: relative;
}

.gform-theme--foundation .chosen-container-multi .chosen-choices li {
	float: inline-start;
	list-style: none;
}

.gform-theme--foundation .chosen-container-multi .chosen-choices li.search-field {
	margin-block: 0;
	margin-inline: 0;
	padding-block: 0;
	padding-inline: 0;
	white-space: nowrap;
}

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

.gform-theme--foundation .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-block: 3px;
	margin-inline: 0 5px;
	max-inline-size: 100%;
	padding-block: 3px;
	padding-inline: 5px 20px;
	position: relative;
}

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

.gform-theme--foundation .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	background: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/theme/chosen/chosen-sprite.png") -42px 1px no-repeat;
	block-size: 12px;
	display: block;
	font-size: 1px;
	inline-size: 12px;
	inset-block-start: 4px;
	inset-inline-end: 3px;
	position: absolute;
}

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

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

.gform-theme--foundation .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-inline-end: 5px;
}

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

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

.gform-theme--foundation .chosen-container-multi .chosen-results {
	margin-block: 0;
	margin-inline: 0;
	padding-block: 0;
	padding-inline: 0;
}

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

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

.gform-theme--foundation .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-theme--foundation .chosen-container-active.chosen-with-drop .chosen-single div {
	background: 0 0;
	border-inline-start: none;
}

.gform-theme--foundation .chosen-container-active.chosen-with-drop .chosen-single div b {
	background-position: -18px 2px;
}

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

.gform-theme--foundation .chosen-container-active .chosen-choices li.search-field input[type=text] {
	color: #222;
}

.gform-theme--foundation .chosen-disabled {
	cursor: default;
	opacity: .5 !important;
}

.gform-theme--foundation .chosen-disabled .chosen-single {
	cursor: default;
}

.gform-theme--foundation .chosen-disabled .chosen-choices .search-choice .search-choice-close {
	cursor: default;
}

.gform-theme--foundation .chosen-rtl {
	direction: rtl;
}

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

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

.gform-theme--foundation .chosen-rtl .chosen-search input[type=text] {
	background-position: -30px -20px;
}

@media only screen and (min-resolution:144dpi),only screen and (min-resolution:1.5dppx) {
	.gform-theme--foundation .chosen-container .chosen-results-scroll-down span, .gform-theme--foundation .chosen-container .chosen-results-scroll-up span, .gform-theme--foundation .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .gform-theme--foundation .chosen-container-single .chosen-search input[type=text], .gform-theme--foundation .chosen-container-single .chosen-single abbr, .gform-theme--foundation .chosen-container-single .chosen-single div b, .gform-theme--foundation .chosen-rtl .chosen-search input[type=text] {
		background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/theme/chosen/chosen-sprite@2x.png") !important;
		background-repeat: no-repeat !important;
		background-size: 52px 37px !important;
	}
	
	.gform-theme--foundation .chosen-container .chosen-results-scroll-down span.nitro-lazy, .gform-theme--foundation .chosen-container .chosen-results-scroll-up span.nitro-lazy, .gform-theme--foundation .chosen-container-multi .chosen-choices .search-choice .search-choice-close.nitro-lazy, .gform-theme--foundation .chosen-container-single .chosen-search input[type=text].nitro-lazy, .gform-theme--foundation .chosen-container-single .chosen-single abbr.nitro-lazy, .gform-theme--foundation .chosen-container-single .chosen-single div b.nitro-lazy, .gform-theme--foundation .chosen-rtl .chosen-search input[type=text].nitro-lazy {
		background-image: none !important;
	}
}

.gform-theme--foundation .gf_invisible, .gform-theme--foundation .gfield_visibility_hidden {
	inset-inline-start: -9999px;
	position: absolute;
	visibility: hidden;
}

.gform-theme--foundation .gf_hide_charleft .charleft {
	display: none !important;
}

.gform-theme--foundation .ginput_counter {
	color: #767676;
	font-size: .8em;
}

.gform-theme--foundation .ginput_counter_tinymce {
	border-block-start: 1px solid #dcdcde;
	font-size: 12px;
	padding-block: 2px;
	padding-inline: 10px;
}

@media (min-width:640px) {
	.gform-theme--foundation .ginput_address_city, .gform-theme--foundation .ginput_address_country, .gform-theme--foundation .ginput_address_state, .gform-theme--foundation .ginput_address_zip {
		inline-size: 50%;
	}
}

.gform-theme--foundation .gform_card_icon_container {
	block-size: 32px;
	display: flex;
	margin-block-end: 8px;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon {
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/gf-creditcards.svg");
	background-repeat: no-repeat;
	block-size: 32px;
	inline-size: 40px;
	margin-inline-end: .3rem;
	text-indent: -9000px;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon.nitro-lazy {
	background-image: none !important;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon.gform_card_icon_amex {
	background-position: -167px 0;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon.gform_card_icon_discover {
	background-position: -221px 0;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon.gform_card_icon_mastercard {
	background-position: -275px 0;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon.gform_card_icon_visa {
	background-position: -59px 0;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon.gform_card_icon_jcb {
	background-position: -329px 0;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon.gform_card_icon_maestro {
	background-position: -5px 0;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon.gform_card_icon_selected {
	position: relative;
}

.gform-theme--foundation .gform_card_icon_container .gform_card_icon.gform_card_icon_selected::after {
	background: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/gf-creditcards-check.svg") center center no-repeat;
	block-size: 10px;
	content: "";
	display: block;
	inline-size: 13px;
	inset-block-end: 4px;
	inset-inline-end: 0;
	position: absolute;
}

.gform-theme--foundation .ginput_cardinfo_left {
	display: flex;
	flex-direction: column;
}

.gform-theme--foundation .ginput_cardinfo_left legend {
	float: inline-start;
}

.gform-theme--foundation .field_sublabel_below .ginput_cardinfo_left {
	flex-direction: column-reverse;
	justify-content: flex-end;
}

.gform-theme--foundation .ginput_cardinfo_right {
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: flex-start;
}

.gform-theme--foundation .ginput_cardinfo_right label {
	inline-size: 100%;
}

.gform-theme--foundation .ginput_card_security_code {
	flex: 1;
}

.gform-theme--foundation .ginput_card_security_code_icon {
	align-self: center;
	background-image: url("https://cdn-lkobh.nitrocdn.com/AHerlUAPvoSGIdkXzbsdCQHFNUNdWYwU/assets/images/optimized/rev-485d307/medex.co.th/wp-content/plugins/gravityforms/images/gf-creditcards.svg");
	background-position: -382px center;
	background-repeat: no-repeat;
	block-size: 32px;
	display: block;
	flex: none;
	inline-size: 40px;
	margin-inline-start: .3em;
}

.gform-theme--foundation .ginput_card_security_code_icon.nitro-lazy {
	background-image: none !important;
}

@media (min-width:640px) {
	.gform-theme--foundation .ginput_card_expiration_month_container, .gform-theme--foundation .ginput_card_expiration_year_container, .gform-theme--foundation .ginput_cardinfo_left, .gform-theme--foundation .ginput_cardinfo_right {
		inline-size: 50%;
	}
	
	.gform-theme--foundation .ginput_cardinfo_right .ginput_card_security_code {
		flex: none;
		inline-size: 50%;
	}
}

.gform-theme--foundation .ginput_complex .ginput_container_date {
	inline-size: var(--gf-field-date-width);
}

.gform-theme--foundation .ginput_complex .ginput_container_date label {
	display: block;
}

.gform-theme--foundation:where(:not(.gform_editor)) .gf_hidden, .gform-theme--foundation:where(:not(.gform_editor)) .gform_hidden {
	display: none;
}

.gform-theme--foundation .gform_validation_container {
	display: none !important;
}

.gform-theme--foundation .ginput_container_list--columns .gfield_list_group_item::before {
	content: attr(data-label);
}

.gform-theme--foundation .gfield_list_header {
	display: none;
}

.gform-theme--foundation .gfield_header_item {
	word-wrap: anywhere;
}

.gform-theme--foundation .gfield_list_group {
	margin-block-end: var(--gf-field-gap-y);
}

.gform-theme--foundation .gfield_list_group:last-child {
	margin-block-end: 0;
}

.gform-theme--foundation .gfield_list_group_item+.gfield_list_group_item {
	margin-block-start: 4px;
}

.gform-theme--foundation .gfield_list_group_item input, .gform-theme--foundation .gfield_list_group_item select, .gform-theme--foundation .gfield_list_group_item textarea {
	inline-size: 100%;
}

.gform-theme--foundation .gfield_header_item--icons, .gform-theme--foundation .gfield_list_icons {
	align-items: center;
	display: flex;
	gap: var(--gf-field-list-btns-gap);
}

.gform-theme--foundation .add_list_item, .gform-theme--foundation .delete_list_item {
	font-size: 12px;
	padding: 0;
}

@media (min-width:640px) {
	.gform-theme--foundation .ginput_container_list--columns .gfield_list_group_item::before {
		content: none;
	}
	
	.gform-theme--foundation .gfield_list_group, .gform-theme--foundation .gfield_list_header {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
	}
	
	.gform-theme--foundation .gfield_header_item:where(:not(.gfield_header_item--icons)) {
		flex: 1 1 0;
	}
	
	.gform-theme--foundation .gfield_list_group_item {
		flex: 1;
	}
	
	.gform-theme--foundation .gfield_list_group_item+.gfield_list_group_item {
		margin-block-start: 0;
	}
	
	.gform-theme--foundation .gfield_header_item--icons, .gform-theme--foundation .gfield_list_icons {
		flex: none;
		flex-wrap: wrap;
		inline-size: var(--gf-field-list-btns-width);
		justify-content: center;
	}
}

.gform-theme--foundation .gf_page_steps {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gf-field-pg-steps-gap-y) var(--gf-field-pg-steps-gap-x);
}

.gform-theme--foundation .gf_step_active {
	font-weight: 500;
}

.gform-theme--foundation .gform_show_password {
	inset-block-start: 50%;
	inset-inline-end: 12px;
	position: absolute;
	transform: translateY(-50%);
}

.gform-theme--foundation .password_input_container {
	display: block;
	position: relative;
}

.gform-theme--foundation .ginput_password {
	display: block;
}

.gform-theme--foundation .ginput_password input {
	inline-size: 100%;
}

.gform-theme--foundation ::-ms-reveal {
	display: none;
}

.gform-theme--foundation .gfield--type-captcha iframe {
	block-size: 78px;
	inline-size: 100%;
}

.gform-theme--foundation .gfield_post_tags_hint {
	margin: 0;
}

.gform-theme--foundation .ginput_complex .ginput_container_time {
	inline-size: var(--gf-field-time-width);
}

.gform-theme--foundation .hour_minute_colon {
	display: none;
}

.gform-theme--foundation .gf_hide_ampm .gfield_time_ampm {
	display: none !important;
}

html[dir=rtl] .gform-theme--foundation .gfield--type-time .gform-grid-row {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

@media (min-width:640px) {
	.gform-theme--foundation .gfield.gf_list_2col:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_2col:where(:not(.gfield--type-image_choice)) .gfield_radio, .gform-theme--foundation .gfield.gf_list_3col:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_3col:where(:not(.gfield--type-image_choice)) .gfield_radio, .gform-theme--foundation .gfield.gf_list_4col:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_4col:where(:not(.gfield--type-image_choice)) .gfield_radio, .gform-theme--foundation .gfield.gf_list_5col:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_5col:where(:not(.gfield--type-image_choice)) .gfield_radio {
		display: grid;
	}
	
	.gform-theme--foundation .gfield.gf_list_2col:where(:not(.gfield--type-image_choice)) .gfield-choice-toggle-all, .gform-theme--foundation .gfield.gf_list_3col:where(:not(.gfield--type-image_choice)) .gfield-choice-toggle-all, .gform-theme--foundation .gfield.gf_list_4col:where(:not(.gfield--type-image_choice)) .gfield-choice-toggle-all, .gform-theme--foundation .gfield.gf_list_5col:where(:not(.gfield--type-image_choice)) .gfield-choice-toggle-all {
		grid-column: 1/-1;
	}
	
	.gform-theme--foundation .gfield.gf_list_2col:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_2col:where(:not(.gfield--type-image_choice)) .gfield_radio {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.gform-theme--foundation .gfield.gf_list_3col:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_3col:where(:not(.gfield--type-image_choice)) .gfield_radio {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.gform-theme--foundation .gfield.gf_list_4col:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_4col:where(:not(.gfield--type-image_choice)) .gfield_radio {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.gform-theme--foundation .gfield.gf_list_5col:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_5col:where(:not(.gfield--type-image_choice)) .gfield_radio {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.gform-theme--foundation .gfield.gf_list_2col_vertical:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_2col_vertical:where(:not(.gfield--type-image_choice)) .gfield_radio, .gform-theme--foundation .gfield.gf_list_3col_vertical:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_3col_vertical:where(:not(.gfield--type-image_choice)) .gfield_radio, .gform-theme--foundation .gfield.gf_list_4col_vertical:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_4col_vertical:where(:not(.gfield--type-image_choice)) .gfield_radio, .gform-theme--foundation .gfield.gf_list_5col_vertical:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_5col_vertical:where(:not(.gfield--type-image_choice)) .gfield_radio {
		display: block;
		line-height: 0;
		margin-block-start: calc(var(--gf-field-choice-gap) * -1);
	}
	
	.gform-theme--foundation .gfield.gf_list_2col_vertical:where(:not(.gfield--type-image_choice)) .gchoice, .gform-theme--foundation .gfield.gf_list_3col_vertical:where(:not(.gfield--type-image_choice)) .gchoice, .gform-theme--foundation .gfield.gf_list_4col_vertical:where(:not(.gfield--type-image_choice)) .gchoice, .gform-theme--foundation .gfield.gf_list_5col_vertical:where(:not(.gfield--type-image_choice)) .gchoice {
		page-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
		display: grid;
		inline-size: 100%;
		padding-block-start: var(--gf-field-choice-gap);
	}
	
	.gform-theme--foundation .gfield.gf_list_2col_vertical:where(:not(.gfield--type-image_choice)) .gchoice .gform-field-label--type-inline, .gform-theme--foundation .gfield.gf_list_3col_vertical:where(:not(.gfield--type-image_choice)) .gchoice .gform-field-label--type-inline, .gform-theme--foundation .gfield.gf_list_4col_vertical:where(:not(.gfield--type-image_choice)) .gchoice .gform-field-label--type-inline, .gform-theme--foundation .gfield.gf_list_5col_vertical:where(:not(.gfield--type-image_choice)) .gchoice .gform-field-label--type-inline {
		width: -moz-fit-content;
		width: fit-content;
	}
	
	.gform-theme--foundation .gfield.gf_list_2col_vertical:where(:not(.gfield--type-image_choice)) .gfield-choice-toggle-all, .gform-theme--foundation .gfield.gf_list_3col_vertical:where(:not(.gfield--type-image_choice)) .gfield-choice-toggle-all, .gform-theme--foundation .gfield.gf_list_4col_vertical:where(:not(.gfield--type-image_choice)) .gfield-choice-toggle-all, .gform-theme--foundation .gfield.gf_list_5col_vertical:where(:not(.gfield--type-image_choice)) .gfield-choice-toggle-all {
		-moz-column-span: all;
		column-span: all;
		margin-block-start: calc(var(--gf-field-choice-meta-margin-y-start) + var(--gf-field-choice-gap));
	}
	
	.gform-theme--foundation .gfield.gf_list_2col_vertical:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_2col_vertical:where(:not(.gfield--type-image_choice)) .gfield_radio {
		-moz-column-count: 2;
		column-count: 2;
	}
	
	.gform-theme--foundation .gfield.gf_list_3col_vertical:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_3col_vertical:where(:not(.gfield--type-image_choice)) .gfield_radio {
		-moz-column-count: 3;
		column-count: 3;
	}
	
	.gform-theme--foundation .gfield.gf_list_4col_vertical:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_4col_vertical:where(:not(.gfield--type-image_choice)) .gfield_radio {
		-moz-column-count: 4;
		column-count: 4;
	}
	
	.gform-theme--foundation .gfield.gf_list_5col_vertical:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_5col_vertical:where(:not(.gfield--type-image_choice)) .gfield_radio {
		-moz-column-count: 5;
		column-count: 5;
	}
	
	.gform-theme--foundation .gfield.gf_list_inline:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_inline:where(:not(.gfield--type-image_choice)) .gfield_radio {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px 16px;
	}
}

.gform-theme--foundation .gf_hide_ampm .gfield_time_ampm {
	display: none !important;
}

.gform-theme--foundation .gsection.gf_scroll_text {
	background-color: #fff;
	block-size: 15rem;
	border: 1px solid #ccc;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 2rem;
}

.gform-theme--foundation .gsection.gf_scroll_text .gsection_title {
	margin-block-start: 0;
}

.gform-theme--foundation .gfield.gfield_html.gf_alert_blue, .gform-theme--foundation .gfield.gfield_html.gf_alert_gray, .gform-theme--foundation .gfield.gfield_html.gf_alert_green, .gform-theme--foundation .gfield.gfield_html.gf_alert_red, .gform-theme--foundation .gfield.gfield_html.gf_alert_yellow {
	border-radius: 3px;
	margin-block: 1.25rem !important;
	margin-inline: 0 !important;
	padding: 1.25rem !important;
}

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

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

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

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

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

.gform-theme--foundation .gf_simple_horizontal {
	inline-size: calc(100% - 16px);
	margin-block: 0;
	margin-inline: auto;
}

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

.gform-theme--foundation .gf_simple_horizontal .gform_body {
	inline-size: auto;
	max-inline-size: 75%;
}

.gform-theme--foundation .gf_simple_horizontal .gform_body .top_label {
	display: table;
	inline-size: 100%;
}

.gform-theme--foundation .gf_simple_horizontal .gform_body .top_label .gfield {
	block-size: auto;
	display: table-cell;
	padding-inline-end: 1em;
}

.gform-theme--foundation .gf_simple_horizontal .gform_body .top_label .gfield .large, .gform-theme--foundation .gf_simple_horizontal .gform_body .top_label .gfield .medium, .gform-theme--foundation .gf_simple_horizontal .gform_body .top_label .gfield .small {
	inline-size: 100%;
}

.gform-theme--foundation .gf_simple_horizontal .gform_body .top_label .gfield .ginput_container_checkbox .gchoice, .gform-theme--foundation .gf_simple_horizontal .gform_body .top_label .gfield .ginput_container_radio .gchoice {
	display: inline-block;
	margin-inline-end: .5em;
}

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

.gform-theme--foundation .gf_simple_horizontal .gfield, .gform-theme--foundation .gf_simple_horizontal .ginput_container {
	margin-block-start: 0 !important;
}

.gform-theme--foundation .gf_simple_horizontal .gform_footer.top_label {
	inline-size: auto;
	margin: 0;
	max-inline-size: 25%;
	padding: 0;
	text-align: start;
}

.gform-theme--foundation .gf_simple_horizontal .gform_footer.top_label input[type=button], .gform-theme--foundation .gf_simple_horizontal .gform_footer.top_label input[type=image], .gform-theme--foundation .gf_simple_horizontal .gform_footer.top_label input[type=submit] {
	block-size: auto;
}

.gform-theme--foundation .gf_simple_horizontal .gfield_description:not(.gfield_validation_message), .gform-theme--foundation .gf_simple_horizontal .gfield_label, .gform-theme--foundation .gf_simple_horizontal .ginput_complex label {
	block-size: 1px;
	display: block;
	inline-size: 1px;
	inset-block-start: 0;
	inset-inline-start: -9000px;
	overflow: hidden;
	position: absolute;
}

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

.gform_confirmation_wrapper.gf_confirmation_simple_gray {
	background-color: #eaeaea;
	border-block: 1px solid #ccc;
	color: #424242;
	font-size: 25px;
	margin-block: 30px;
	margin-inline: 0;
	max-inline-size: 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-block: 30px;
	margin-inline: 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-block-end: 1px solid #e6db55;
	border-block-start: 2px solid #fff;
	color: #424242;
	font-size: 28px;
	margin: 0;
	max-inline-size: 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-block: 30px;
	margin-inline: 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-block-end: 1px solid #a7c37c;
	border-block-start: 2px solid #effade;
	color: #030;
	font-size: 28px;
	margin: 0;
	max-inline-size: 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);
	box-shadow: 0 15px 10px rgba(0, 0, 0, .2);
	content: "";
	inline-size: 50%;
	inset-block: 80% 15px;
	inset-inline-start: 10px;
	max-inline-size: 40%;
	position: absolute;
	transform: rotate(-3deg);
	z-index: -1;
}

.gform_confirmation_wrapper.gf_confirmation_green_gradient::after, .gform_confirmation_wrapper.gf_confirmation_yellow_gradient::after {
	inset-inline: auto 10px;
	transform: rotate(3deg);
}

.gform-theme--foundation .validation_message--hidden-on-empty:empty {
	display: none;
}

.gform-theme--foundation .gform-loader {
	align-self: center;
	animation: gformLoader 1.1s infinite linear;
	block-size: 10em;
	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: 10em;
	position: relative;
	transform: translateZ(0);
}

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

.gform-theme--foundation .gfield--type-stripe_creditcard-card .StripeElement {
	align-items: center;
	display: flex;
}

.gform-theme--foundation .gfield--type-stripe_creditcard-card .StripeElement .__PrivateStripeElement {
	inline-size: 100% !important;
}

.gform-theme--foundation .gfield--type-stripe_creditcard-card div.gform_stripe_requires_action {
	display: none;
}

.gform-theme--foundation .gfield--type-stripe_creditcard-payment-element .StripeElement--link {
	margin-block-end: var(--gf-field-gap-y);
}

.gform-theme--foundation .gfield--type-stripe_creditcard-payment-element #stripe-payment-link:not(.visible) {
	display: none;
}

.gform-theme--api, .gform-theme--framework {
	--gf-radius: 3px;
	--gf-radius-max-sm: 2px;
	--gf-radius-max-md: 3px;
	--gf-radius-max-lg: 8px;
}

.gform-theme--api, .gform-theme--framework {
	--gf-color-primary: #204ce5;
	--gf-color-primary-rgb: 45, 127, 251;
	--gf-color-primary-contrast: #fff;
	--gf-color-primary-contrast-rgb: 255, 255, 255;
	--gf-color-primary-darker: #044ad3;
	--gf-color-primary-lighter: #044ad3;
	--gf-color-secondary: #fff;
	--gf-color-secondary-rgb: 255, 255, 255;
	--gf-color-secondary-contrast: #112337;
	--gf-color-secondary-contrast-rgb: 17, 35, 55;
	--gf-color-secondary-darker: #f2f3f5;
	--gf-color-secondary-lighter: #f2f3f5;
	--gf-color-out-ctrl-dark: #585e6a;
	--gf-color-out-ctrl-dark-rgb: 88, 94, 106;
	--gf-color-out-ctrl-dark-darker: #112337;
	--gf-color-out-ctrl-dark-lighter: #686e77;
	--gf-color-out-ctrl-light: #e5e7eb;
	--gf-color-out-ctrl-light-rgb: 229, 231, 235;
	--gf-color-out-ctrl-light-darker: #d2d5db;
	--gf-color-out-ctrl-light-lighter: #f2f3f5;
	--gf-color-in-ctrl: #fff;
	--gf-color-in-ctrl-rgb: 255, 255, 255;
	--gf-color-in-ctrl-contrast: #112337;
	--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;
	--gf-color-in-ctrl-darker: #f2f3f5;
	--gf-color-in-ctrl-lighter: #f2f3f5;
	--gf-color-in-ctrl-primary: var(--gf-color-primary);
	--gf-color-in-ctrl-primary-rgb: var(--gf-color-primary-rgb);
	--gf-color-in-ctrl-primary-contrast: var(--gf-color-primary-contrast);
	--gf-color-in-ctrl-primary-contrast-rgb: var(--gf-color-primary-contrast-rgb);
	--gf-color-in-ctrl-primary-darker: var(--gf-color-primary-darker);
	--gf-color-in-ctrl-primary-lighter: var(--gf-color-primary-lighter);
	--gf-color-in-ctrl-dark: #585e6a;
	--gf-color-in-ctrl-dark-rgb: 88, 94, 106;
	--gf-color-in-ctrl-dark-darker: #112337;
	--gf-color-in-ctrl-dark-lighter: #686e77;
	--gf-color-in-ctrl-light: #e5e7eb;
	--gf-color-in-ctrl-light-rgb: 229, 231, 235;
	--gf-color-in-ctrl-light-darker: #d2d5db;
	--gf-color-in-ctrl-light-lighter: #f2f3f5;
	--gf-color-danger: #c02b0a;
	--gf-color-danger-rgb: 192, 43, 10;
	--gf-color-danger-contrast: #fff;
	--gf-color-danger-contrast-rgb: 255, 255, 255;
	--gf-color-success: #399f4b;
	--gf-color-success-rgb: 57, 159, 75;
	--gf-color-success-contrast: #fff;
	--gf-color-success-contrast-rgb: 255, 255, 255;
}

.gform-theme--api, .gform-theme--framework {
	--gf-icon-font-family: "gform-icons-orbital";
	--gf-icon-font-size: 20px;
	--gf-icon-ctrl-checkbox: "";
	--gf-icon-ctrl-select-down: "";
	--gf-icon-ctrl-select-up: "";
	--gf-icon-ctrl-select: url("data:image/svg+xml,%3Csvg width=\'10\' height=\'6\' viewBox=\'0 0 10 6\' fill=\'none\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath fill-rule=\'evenodd\' clip-rule=\'evenodd\' d=\'M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z\' fill=\'%23686E77\'/%3E%3C/svg%3E");
	--gf-icon-ctrl-search: url("data:image/svg+xml,%3Csvg width=\'640\' height=\'640\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z\' fill=\'%23686E77\'/%3E%3C/svg%3E");
	--gf-icon-ctrl-cancel: "";
	--gf-icon-ctrl-number: url("data:image/svg+xml,%3Csvg width=\'8\' height=\'14\' viewBox=\'0 0 8 14\' fill=\'none\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath fill-rule=\'evenodd\' clip-rule=\'evenodd\' d=\'M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z\' fill=\'%23686E77\'/%3E%3C/svg%3E");
	--gf-icon-ctrl-pwd-hidden: "";
	--gf-icon-ctrl-pwd-visible: "";
	--gf-icon-ctrl-list-item-add: "";
	--gf-icon-ctrl-list-item-remove: "";
	--gf-icon-ctrl-save-continue: "";
	--gf-icon-ctrl-pg-numbers-complete: "";
	--gf-icon-ctrl-file: "";
	--gf-icon-ctrl-file-completed: "";
	--gf-icon-ctrl-file-cancel: "";
	--gf-icon-ctrl-file-remove: "";
	--gf-icon-ctrl-datepicker: "";
	--gf-icon-ctrl-datepicker-left: "";
	--gf-icon-ctrl-datepicker-right: "";
	--gf-icon-ctrl-img-choice-placeholder: "";
	--gf-icon-tooltip-error: "";
}

.gform-theme--api, .gform-theme--framework {
	--gf-padding-x: 12px;
	--gf-padding-y: 12px;
	--gf-label-space-primary: 8px;
	--gf-label-choice-field-space-primary: 12px;
	--gf-label-space-x-secondary: 12px;
	--gf-label-space-y-sm-secondary: -1px;
	--gf-label-space-y-md-secondary: 0;
	--gf-label-space-y-lg-secondary: 1px;
	--gf-label-space-y-xl-secondary: 4px;
	--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);
	--gf-label-space-tertiary: 8px;
	--gf-desc-space: 8px;
	--gf-desc-choice-field-space: 12px;
}

.gform-theme--api, .gform-theme--framework {
	--gf-transition-duration: .15s;
	--gf-transition-ctrl: var(--gf-transition-duration);
}

.gform-theme--api, .gform-theme--framework {
	--gf-font-family-base: initial;
	--gf-font-style-base: normal;
	--gf-font-family-primary: var(--gf-font-family-base);
	--gf-font-size-primary: 14px;
	--gf-font-style-primary: var(--gf-font-style-base);
	--gf-font-weight-primary: 400;
	--gf-letter-spacing-primary: 0;
	--gf-line-height-primary: 1.5;
	--gf-font-family-secondary: var(--gf-font-family-base);
	--gf-font-size-secondary: 14px;
	--gf-font-style-secondary: var(--gf-font-style-base);
	--gf-font-weight-secondary: 500;
	--gf-letter-spacing-secondary: 0;
	--gf-line-height-secondary: 1.43;
	--gf-font-family-tertiary: var(--gf-font-family-base);
	--gf-font-size-tertiary: 14px;
	--gf-font-style-tertiary: var(--gf-font-style-base);
	--gf-font-weight-tertiary: 400;
	--gf-letter-spacing-tertiary: 0;
	--gf-line-height-tertiary: 1.43;
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-bg-color: var(--gf-color-in-ctrl);
	--gf-ctrl-bg-color-hover: var(--gf-ctrl-bg-color);
	--gf-ctrl-bg-color-focus: var(--gf-ctrl-bg-color);
	--gf-ctrl-bg-color-disabled: var(--gf-color-in-ctrl-light-lighter);
	--gf-ctrl-bg-color-error: var(--gf-ctrl-bg-color);
	--gf-ctrl-border-color: var(--gf-color-in-ctrl-dark-lighter);
	--gf-ctrl-border-color-hover: var(--gf-ctrl-border-color);
	--gf-ctrl-border-color-focus: var(--gf-color-primary);
	--gf-ctrl-border-color-disabled: var(--gf-color-in-ctrl-light-darker);
	--gf-ctrl-border-color-error: var(--gf-color-danger);
	--gf-ctrl-border-style: solid;
	--gf-ctrl-border-width: 1px;
	--gf-ctrl-radius: var(--gf-radius);
	--gf-ctrl-radius-max-sm: min(var(--gf-ctrl-radius), var(--gf-radius-max-sm));
	--gf-ctrl-radius-max-md: min(var(--gf-ctrl-radius), var(--gf-radius-max-md));
	--gf-ctrl-radius-max-lg: min(var(--gf-ctrl-radius), var(--gf-radius-max-lg));
	--gf-ctrl-outline-color: transparent;
	--gf-ctrl-outline-color-focus: rgba(var(--gf-color-primary-rgb), .65);
	--gf-ctrl-outline-offset: 1px;
	--gf-ctrl-outline-style: solid;
	--gf-ctrl-outline-width: 0;
	--gf-ctrl-outline-width-focus: 3px;
	--gf-ctrl-color: var(--gf-color-in-ctrl-contrast);
	--gf-ctrl-color-hover: var(--gf-ctrl-color);
	--gf-ctrl-color-focus: var(--gf-ctrl-color);
	--gf-ctrl-color-disabled: rgba(var(--gf-color-in-ctrl-contrast-rgb), .6);
	--gf-ctrl-color-error: var(--gf-ctrl-color);
	--gf-ctrl-icon-color: var(--gf-color-in-ctrl-dark-lighter);
	--gf-ctrl-icon-color-hover: var(--gf-color-in-ctrl-dark-darker);
	--gf-ctrl-icon-color-focus: var(--gf-ctrl-icon-color-hover);
	--gf-ctrl-icon-color-disabled: var(--gf-ctrl-icon-color);
	--gf-ctrl-shadow: 0 1px 4px rgba(18, 25, 97, .0779552);
	--gf-ctrl-accent-color: var(--gf-color-in-ctrl-primary);
	--gf-ctrl-appearance: none;
	--gf-ctrl-size-sm: 35px;
	--gf-ctrl-size-md: 38px;
	--gf-ctrl-size-lg: 47px;
	--gf-ctrl-size-xl: 54px;
	--gf-ctrl-size: var(--gf-ctrl-size-md);
	--gf-ctrl-padding-x: var(--gf-padding-x);
	--gf-ctrl-padding-y: 0;
	--gf-ctrl-transition: var(--gf-transition-ctrl);
	--gf-ctrl-font-family: var(--gf-font-family-primary);
	--gf-ctrl-font-size: var(--gf-font-size-primary);
	--gf-ctrl-font-style: var(--gf-font-style-base);
	--gf-ctrl-font-weight: var(--gf-font-weight-primary);
	--gf-ctrl-letter-spacing: var(--gf-letter-spacing-primary);
	--gf-ctrl-line-height: var(--gf-ctrl-size);
	--gf-ctrl-placeholder-color: rgba(var(--gf-color-in-ctrl-contrast-rgb), .7);
	--gf-ctrl-placeholder-font-family: var(--gf-ctrl-font-family);
	--gf-ctrl-placeholder-font-size: var(--gf-ctrl-font-size);
	--gf-ctrl-placeholder-font-style: var(--gf-ctrl-font-style);
	--gf-ctrl-placeholder-font-weight: var(--gf-ctrl-font-weight);
	--gf-ctrl-placeholder-letter-spacing: var(--gf-ctrl-letter-spacing);
	--gf-ctrl-placeholder-opacity: 1;
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-readonly-color: var(--gf-ctrl-color);
	--gf-ctrl-readonly-font-family: var(--gf-ctrl-font-family);
	--gf-ctrl-readonly-font-size: var(--gf-ctrl-font-size);
	--gf-ctrl-readonly-font-style: var(--gf-ctrl-font-style);
	--gf-ctrl-readonly-font-weight: 500;
	--gf-ctrl-readonly-letter-spacing: var(--gf-ctrl-letter-spacing);
	--gf-ctrl-readonly-line-height: 1;
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-btn-radius: var(--gf-radius);
	--gf-ctrl-btn-shadow: 0 1px 4px rgba(18, 25, 97, .0779552);
	--gf-ctrl-btn-shadow-hover: var(--gf-ctrl-btn-shadow);
	--gf-ctrl-btn-shadow-focus: var(--gf-ctrl-btn-shadow);
	--gf-ctrl-btn-shadow-disabled: var(--gf-ctrl-btn-shadow);
	--gf-ctrl-btn-opacity: 1;
	--gf-ctrl-btn-opacity-disabled: .5;
	--gf-ctrl-btn-size-xs: 30px;
	--gf-ctrl-btn-size-sm: var(--gf-ctrl-size-sm);
	--gf-ctrl-btn-size-md: var(--gf-ctrl-size-md);
	--gf-ctrl-btn-size-lg: var(--gf-ctrl-size-lg);
	--gf-ctrl-btn-size-xl: var(--gf-ctrl-size-xl);
	--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);
	--gf-ctrl-btn-padding-x-xs: 8px;
	--gf-ctrl-btn-padding-x-sm: 12px;
	--gf-ctrl-btn-padding-x-md: 16px;
	--gf-ctrl-btn-padding-x-lg: 20px;
	--gf-ctrl-btn-padding-x-xl: 24px;
	--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);
	--gf-ctrl-btn-padding-y: 0;
	--gf-ctrl-btn-font-family: var(--gf-font-family-base);
	--gf-ctrl-btn-font-size-xs: 12px;
	--gf-ctrl-btn-font-size-sm: 14px;
	--gf-ctrl-btn-font-size-md: 14px;
	--gf-ctrl-btn-font-size-lg: 16px;
	--gf-ctrl-btn-font-size-xl: 16px;
	--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);
	--gf-ctrl-btn-font-style: var(--gf-font-style-base);
	--gf-ctrl-btn-font-weight: 500;
	--gf-ctrl-btn-letter-spacing: var(--gf-letter-spacing-primary);
	--gf-ctrl-btn-line-height: 1;
	--gf-ctrl-btn-text-decoration: none;
	--gf-ctrl-btn-text-transform: none;
	--gf-ctrl-btn-icon: none;
	--gf-ctrl-btn-icon-font-size: var(--gf-icon-font-size);
	--gf-ctrl-btn-icon-gap: 6px;
	--gf-ctrl-btn-icon-transition: var(--gf-ctrl-transition);
	--gf-ctrl-btn-bg-color-primary: var(--gf-color-primary);
	--gf-ctrl-btn-bg-color-hover-primary: var(--gf-color-primary-darker);
	--gf-ctrl-btn-bg-color-focus-primary: var(--gf-ctrl-btn-bg-color-primary);
	--gf-ctrl-btn-bg-color-disabled-primary: var(--gf-ctrl-btn-bg-color-primary);
	--gf-ctrl-btn-border-color-primary: transparent;
	--gf-ctrl-btn-border-color-hover-primary: transparent;
	--gf-ctrl-btn-border-color-focus-primary: var(--gf-ctrl-btn-bg-color-hover-primary);
	--gf-ctrl-btn-border-color-disabled-primary: transparent;
	--gf-ctrl-btn-border-style-primary: solid;
	--gf-ctrl-btn-border-width-primary: 1px;
	--gf-ctrl-btn-color-primary: var(--gf-color-primary-contrast);
	--gf-ctrl-btn-color-hover-primary: var(--gf-ctrl-btn-color-primary);
	--gf-ctrl-btn-color-focus-primary: var(--gf-ctrl-btn-color-primary);
	--gf-ctrl-btn-color-disabled-primary: var(--gf-ctrl-btn-color-primary);
	--gf-ctrl-btn-icon-color-primary: var(--gf-ctrl-btn-color-primary);
	--gf-ctrl-btn-icon-color-hover-primary: var(--gf-ctrl-btn-icon-color-primary);
	--gf-ctrl-btn-icon-color-focus-primary: var(--gf-ctrl-btn-icon-color-primary);
	--gf-ctrl-btn-icon-color-disabled-primary: var(--gf-ctrl-btn-icon-color-primary);
	--gf-ctrl-btn-bg-color-secondary: var(--gf-color-secondary);
	--gf-ctrl-btn-bg-color-hover-secondary: var(--gf-color-secondary-darker);
	--gf-ctrl-btn-bg-color-focus-secondary: var(--gf-ctrl-btn-bg-color-secondary);
	--gf-ctrl-btn-bg-color-disabled-secondary: var(--gf-ctrl-btn-bg-color-secondary);
	--gf-ctrl-btn-border-color-secondary: var(--gf-color-in-ctrl-light-darker);
	--gf-ctrl-btn-border-color-hover-secondary: var(--gf-ctrl-btn-border-color-secondary);
	--gf-ctrl-btn-border-color-focus-secondary: var(--gf-ctrl-btn-bg-color-hover-primary);
	--gf-ctrl-btn-border-color-disabled-secondary: var(--gf-ctrl-btn-border-color-secondary);
	--gf-ctrl-btn-border-style-secondary: solid;
	--gf-ctrl-btn-border-width-secondary: 1px;
	--gf-ctrl-btn-color-secondary: var(--gf-color-secondary-contrast);
	--gf-ctrl-btn-color-hover-secondary: var(--gf-ctrl-btn-color-secondary);
	--gf-ctrl-btn-color-focus-secondary: var(--gf-ctrl-btn-color-secondary);
	--gf-ctrl-btn-color-disabled-secondary: var(--gf-ctrl-btn-color-secondary);
	--gf-ctrl-btn-icon-color-secondary: var(--gf-ctrl-icon-color);
	--gf-ctrl-btn-icon-color-hover-secondary: var(--gf-ctrl-btn-icon-color-secondary);
	--gf-ctrl-btn-icon-color-focus-secondary: var(--gf-ctrl-btn-icon-color-secondary);
	--gf-ctrl-btn-icon-color-disabled-secondary: var(--gf-ctrl-btn-icon-color-secondary);
	--gf-ctrl-btn-bg-color-ctrl: var(--gf-color-in-ctrl-primary);
	--gf-ctrl-btn-bg-color-hover-ctrl: var(--gf-color-in-ctrl-primary-darker);
	--gf-ctrl-btn-bg-color-focus-ctrl: var(--gf-ctrl-btn-bg-color-ctrl);
	--gf-ctrl-btn-bg-color-disabled-ctrl: var(--gf-ctrl-btn-bg-color-ctrl);
	--gf-ctrl-btn-border-color-ctrl: transparent;
	--gf-ctrl-btn-border-color-hover-ctrl: transparent;
	--gf-ctrl-btn-border-color-focus-ctrl: var(--gf-ctrl-btn-bg-color-hover-ctrl);
	--gf-ctrl-btn-border-color-disabled-ctrl: transparent;
	--gf-ctrl-btn-border-style-ctrl: solid;
	--gf-ctrl-btn-border-width-ctrl: 1px;
	--gf-ctrl-btn-color-ctrl: var(--gf-color-in-ctrl-primary-contrast);
	--gf-ctrl-btn-color-hover-ctrl: var(--gf-ctrl-btn-color-ctrl);
	--gf-ctrl-btn-color-focus-ctrl: var(--gf-ctrl-btn-color-ctrl);
	--gf-ctrl-btn-color-disabled-ctrl: var(--gf-ctrl-btn-color-ctrl);
	--gf-ctrl-btn-icon-color-ctrl: var(--gf-ctrl-btn-color-ctrl);
	--gf-ctrl-btn-icon-color-hover-ctrl: var(--gf-ctrl-btn-icon-color-ctrl);
	--gf-ctrl-btn-icon-color-focus-ctrl: var(--gf-ctrl-btn-icon-color-ctrl);
	--gf-ctrl-btn-icon-color-disabled-ctrl: var(--gf-ctrl-btn-icon-color-ctrl);
	--gf-ctrl-btn-bg-color-simple: transparent;
	--gf-ctrl-btn-bg-color-hover-simple: var(--gf-ctrl-btn-bg-color-simple);
	--gf-ctrl-btn-bg-color-focus-simple: var(--gf-ctrl-btn-bg-color-simple);
	--gf-ctrl-btn-bg-color-disabled-simple: var(--gf-ctrl-btn-bg-color-simple);
	--gf-ctrl-btn-border-color-simple: transparent;
	--gf-ctrl-btn-border-color-hover-simple: var(--gf-ctrl-btn-border-color-simple);
	--gf-ctrl-btn-border-color-focus-simple: var(--gf-ctrl-border-color-focus);
	--gf-ctrl-btn-border-color-disabled-simple: var(--gf-ctrl-btn-border-color-simple);
	--gf-ctrl-btn-border-style-simple: solid;
	--gf-ctrl-btn-border-width-simple: 1px;
	--gf-ctrl-btn-color-simple: rgba(var(--gf-color-out-ctrl-dark-rgb), .65);
	--gf-ctrl-btn-color-hover-simple: var(--gf-color-out-ctrl-dark);
	--gf-ctrl-btn-color-focus-simple: var(--gf-ctrl-btn-color-hover-simple);
	--gf-ctrl-btn-color-disabled-simple: var(--gf-ctrl-btn-color-simple);
	--gf-ctrl-btn-shadow-simple: none;
	--gf-ctrl-btn-shadow-hover-simple: var(--gf-ctrl-btn-shadow-simple);
	--gf-ctrl-btn-shadow-focus-simple: var(--gf-ctrl-btn-shadow-simple);
	--gf-ctrl-btn-shadow-disabled-simple: var(--gf-ctrl-btn-shadow-simple);
	--gf-ctrl-btn-size-simple: 24px;
	--gf-ctrl-btn-icon-color-simple: rgba(var(--gf-color-out-ctrl-dark-rgb), .9);
	--gf-ctrl-btn-icon-color-hover-simple: var(--gf-ctrl-btn-color-hover-simple);
	--gf-ctrl-btn-icon-color-focus-simple: var(--gf-ctrl-btn-color-focus-simple);
	--gf-ctrl-btn-icon-color-disabled-simple: var(--gf-ctrl-btn-color-disabled-simple);
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-choice-check-color: var(--gf-color-in-ctrl-primary);
	--gf-ctrl-choice-check-color-disabled: rgba(var(--gf-color-in-ctrl-contrast-rgb), .2);
	--gf-ctrl-choice-size-sm: 18px;
	--gf-ctrl-choice-size-md: 20px;
	--gf-ctrl-choice-size-lg: 22px;
	--gf-ctrl-choice-size-xl: 28px;
	--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);
	--gf-ctrl-checkbox-check-radius: var(--gf-ctrl-radius-max-sm);
	--gf-ctrl-checkbox-check-size-sm: 12px;
	--gf-ctrl-checkbox-check-size-md: initial;
	--gf-ctrl-checkbox-check-size-lg: 15px;
	--gf-ctrl-checkbox-check-size-xl: 19px;
	--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);
	--gf-ctrl-radio-check-radius: 50%;
	--gf-ctrl-radio-check-content: "";
	--gf-ctrl-radio-check-size-sm: 6px;
	--gf-ctrl-radio-check-size-md: 7px;
	--gf-ctrl-radio-check-size-lg: 8px;
	--gf-ctrl-radio-check-size-xl: 10px;
	--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-date-picker-bg-color: var(--gf-ctrl-bg-color);
	--gf-ctrl-date-picker-shadow: 0 0 1px rgba(18, 25, 97, .24), 0 24px 24px rgba(18, 25, 97, .03), 0 2px 2px rgba(18, 25, 97, .03), 0 4px 4px rgba(18, 25, 97, .03), 0 8px 8px rgba(18, 25, 97, .03), 0 16px 16px rgba(18, 25, 97, .03);
	--gf-ctrl-date-picker-padding-y: 16px 12px;
	--gf-ctrl-date-picker-padding-y-viewport-sm: 16px;
	--gf-ctrl-date-picker-padding-x: 12px;
	--gf-ctrl-date-picker-padding-x-viewport-sm: 16px;
	--gf-ctrl-date-picker-margin-y-start: 12px;
	--gf-ctrl-date-picker-radius: var(--gf-ctrl-radius-max-md);
	--gf-ctrl-date-picker-width: 250px;
	--gf-ctrl-date-picker-width-viewport-sm: 300px;
	--gf-ctrl-date-picker-header-icons-width: 20px;
	--gf-ctrl-date-picker-header-icons-color: var(--gf-ctrl-icon-color);
	--gf-ctrl-date-picker-header-icons-color-hover: var(--gf-ctrl-icon-color-hover);
	--gf-ctrl-date-picker-header-icons-font-size: 20px;
	--gf-ctrl-date-picker-title-color: var(--gf-color-secondary-contrast);
	--gf-ctrl-date-picker-title-font-size: 12px;
	--gf-ctrl-date-picker-title-font-size-viewport-sm: 14px;
	--gf-ctrl-date-picker-title-font-weight: 500;
	--gf-ctrl-date-picker-title-gap: 4px;
	--gf-ctrl-date-picker-title-gap-viewport-sm: 8px;
	--gf-ctrl-date-picker-title-line-height: 1.5;
	--gf-ctrl-date-picker-title-margin-x: 4px;
	--gf-ctrl-date-picker-title-margin-x-viewport-sm: 8px;
	--gf-ctrl-date-picker-dropdown-bg-img: var(--gf-icon-ctrl-select);
	--gf-ctrl-date-picker-dropdown-bg-position: var(--gf-ctrl-select-icon-position);
	--gf-ctrl-date-picker-dropdown-bg-size: var(--gf-ctrl-select-icon-size);
	--gf-ctrl-date-picker-dropdown-border-color: var(--gf-color-in-ctrl-light-darker);
	--gf-ctrl-date-picker-dropdown-border-style: var(--gf-ctrl-border-style);
	--gf-ctrl-date-picker-dropdown-border-width: var(--gf-ctrl-border-width);
	--gf-ctrl-date-picker-dropdown-shadow: 0 1px 2px rgba(0, 0, 0, .05);
	--gf-ctrl-date-picker-dropdown-text-align: start;
	--gf-ctrl-date-picker-table-margin-y-start: 16px;
	--gf-ctrl-date-picker-table-margin-y-end: 0;
	--gf-ctrl-date-picker-head-cell-font-size: 12px;
	--gf-ctrl-date-picker-head-cell-font-weight: 600;
	--gf-ctrl-date-picker-head-cell-line-height: 1.33;
	--gf-ctrl-date-picker-cell-padding: 1px;
	--gf-ctrl-date-picker-cell-padding-y: 6px;
	--gf-ctrl-date-picker-cell-padding-y-viewport-sm: var(--gf-ctrl-date-picker-cell-padding);
	--gf-ctrl-date-picker-cell-height: 29px;
	--gf-ctrl-date-picker-cell-height-viewport-sm: 40px;
	--gf-ctrl-date-picker-cell-font-size: 14px;
	--gf-ctrl-date-picker-cell-font-weight: 400;
	--gf-ctrl-date-picker-cell-line-height: 1.43;
	--gf-ctrl-date-picker-cell-content-align-items: center;
	--gf-ctrl-date-picker-cell-content-bg-color-disabled: transparent;
	--gf-ctrl-date-picker-cell-content-bg-color-hover: #f4f8ff;
	--gf-ctrl-date-picker-cell-content-bg-color-selected: var(--gf-color-in-ctrl-primary);
	--gf-ctrl-date-picker-cell-content-border: var(--gf-ctrl-border-width) var(--gf-ctrl-border-style) var(--gf-color-in-ctrl-primary);
	--gf-ctrl-date-picker-cell-content-radius: var(--gf-ctrl-radius-max-md);
	--gf-ctrl-date-picker-cell-content-color: var(--gf-color-secondary-contrast);
	--gf-ctrl-date-picker-cell-content-color-disabled: #cfd3d9;
	--gf-ctrl-date-picker-cell-content-color-hover: var(--gf-ctrl-date-picker-cell-content-color);
	--gf-ctrl-date-picker-cell-content-color-selected: var(--gf-color-in-ctrl-primary-contrast);
	--gf-ctrl-date-picker-cell-content-width: 27px;
	--gf-ctrl-date-picker-cell-content-width-viewport-sm: 100%;
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-desc-color: var(--gf-color-out-ctrl-dark);
	--gf-ctrl-desc-font-family: var(--gf-font-family-tertiary);
	--gf-ctrl-desc-font-size: var(--gf-font-size-tertiary);
	--gf-ctrl-desc-font-style: var(--gf-font-style-tertiary);
	--gf-ctrl-desc-font-weight: var(--gf-font-weight-tertiary);
	--gf-ctrl-desc-letter-spacing: var(--gf-letter-spacing-tertiary);
	--gf-ctrl-desc-line-height: var(--gf-line-height-tertiary);
	--gf-ctrl-desc-color-error: var(--gf-color-danger);
	--gf-ctrl-desc-font-family-error: var(--gf-ctrl-desc-font-family);
	--gf-ctrl-desc-font-size-error: var(--gf-ctrl-desc-font-size);
	--gf-ctrl-desc-font-style-error: var(--gf-ctrl-desc-font-style);
	--gf-ctrl-desc-font-weight-error: var(--gf-ctrl-desc-font-weight);
	--gf-ctrl-desc-letter-spacing-error: var(--gf-ctrl-desc-letter-spacing);
	--gf-ctrl-desc-line-height-error: var(--gf-ctrl-desc-line-height);
	--gf-ctrl-desc-border-color-consent: var(--gf-color-out-ctrl-light-darker);
	--gf-ctrl-desc-border-color-consent-focus: var(--gf-ctrl-border-color-focus);
	--gf-ctrl-desc-border-style-consent: solid;
	--gf-ctrl-desc-border-width-consent: 1px;
	--gf-ctrl-desc-max-height-consent: 456px;
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-file-padding-x: 0 var(--gf-ctrl-padding-x);
	--gf-ctrl-file-btn-bg-color: var(--gf-color-secondary-darker);
	--gf-ctrl-file-btn-bg-color-hover: var(--gf-color-secondary);
	--gf-ctrl-file-btn-bg-color-focus: var(--gf-ctrl-file-btn-bg-color);
	--gf-ctrl-file-btn-bg-color-disabled: var(--gf-ctrl-file-btn-bg-color);
	--gf-ctrl-file-btn-border-inline-end-width: 1px;
	--gf-ctrl-file-btn-border-inline-end-style: solid;
	--gf-ctrl-file-btn-border-inline-end-color: var(--gf-ctrl-border-color);
	--gf-ctrl-file-btn-border-inline-end-color-hover: var(--gf-ctrl-file-btn-border-inline-end-color);
	--gf-ctrl-file-btn-border-inline-end-color-focus: var(--gf-ctrl-file-btn-border-inline-end-color);
	--gf-ctrl-file-btn-border-inline-end-color-disabled: var(--gf-ctrl-file-btn-border-inline-end-color);
	--gf-ctrl-file-btn-radius: var(--gf-ctrl-radius);
	--gf-ctrl-file-btn-color: rgba(var(--gf-color-secondary-contrast-rgb), .725);
	--gf-ctrl-file-btn-color-hover: var(--gf-ctrl-file-btn-color);
	--gf-ctrl-file-btn-color-focus: var(--gf-ctrl-file-btn-color);
	--gf-ctrl-file-btn-color-disabled: var(--gf-ctrl-file-btn-color);
	--gf-ctrl-file-btn-font-family: var(--gf-font-family-base);
	--gf-ctrl-file-btn-font-size: 14px;
	--gf-ctrl-file-btn-font-style: var(--gf-font-style-base);
	--gf-ctrl-file-btn-font-weight: 500;
	--gf-ctrl-file-btn-letter-spacing: var(--gf-letter-spacing-primary);
	--gf-ctrl-file-btn-line-height: 1.43;
	--gf-ctrl-file-btn-text-decoration: none;
	--gf-ctrl-file-btn-text-transform: none;
	--gf-ctrl-file-btn-margin-x: 0 12px;
	--gf-ctrl-file-btn-padding-x: 12px;
	--gf-ctrl-file-btn-transition: var(--gf-ctrl-transition);
	--gf-ctrl-file-zone-border-style: dashed;
	--gf-ctrl-file-zone-radius: var(--gf-ctrl-radius-max-lg);
	--gf-ctrl-file-zone-color: rgba(var(--gf-color-in-ctrl-contrast-rgb), .725);
	--gf-ctrl-file-zone-height: auto;
	--gf-ctrl-file-zone-padding-x: 40px;
	--gf-ctrl-file-zone-padding-y: 40px;
	--gf-ctrl-file-zone-instructions-margin-y-end: 12px;
	--gf-ctrl-file-zone-font-weight: 500;
	--gf-ctrl-file-zone-line-height: 1;
	--gf-ctrl-file-zone-icon-color: var(--gf-color-in-ctrl-primary);
	--gf-ctrl-file-zone-icon-font-size: 36px;
	--gf-ctrl-file-zone-icon-margin-y-end: 8px;
	--gf-ctrl-file-prog-ui-gap: 12px;
	--gf-ctrl-file-prog-ui-size: var(--gf-icon-font-size);
	--gf-ctrl-file-prog-bar-bg-color: var(--gf-color-out-ctrl-light);
	--gf-ctrl-file-prog-bar-bg-color-loading: var(--gf-color-primary);
	--gf-ctrl-file-prog-bar-height: 6px;
	--gf-ctrl-file-prog-bar-radius: var(--gf-radius);
	--gf-ctrl-file-prog-bar-transition: var(--gf-transition-ctrl);
	--gf-ctrl-file-prog-text-color: var(--gf-ctrl-desc-color);
	--gf-ctrl-file-prog-text-min-width: 33px;
	--gf-ctrl-file-prog-text-font-size: 12px;
	--gf-ctrl-file-prog-btn-inset-y-start: -2px;
	--gf-ctrl-file-prog-btn-inset-x-end: -2px;
	--gf-ctrl-file-prog-btn-position: absolute;
	--gf-ctrl-file-prog-btn-font-size-cancel: 0;
	--gf-ctrl-file-prog-btn-icon-size: var(--gf-icon-font-size);
	--gf-ctrl-file-prog-btn-icon-color-complete: var(--gf-color-success);
	--gf-ctrl-file-prev-area-gap: 16px;
	--gf-ctrl-file-prev-area-margin-y-start: 16px;
	--gf-ctrl-file-prev-font-family: var(--gf-font-family-secondary);
	--gf-ctrl-file-prev-font-size: var(--gf-font-size-secondary);
	--gf-ctrl-file-prev-font-style: var(--gf-font-style-secondary);
	--gf-ctrl-file-prev-font-weight: var(--gf-font-weight-secondary);
	--gf-ctrl-file-prev-letter-spacing: var(--gf-letter-spacing-secondary);
	--gf-ctrl-file-prev-line-height: 1;
	--gf-ctrl-file-prev-gap: 4px;
	--gf-ctrl-file-prev-name-color: var(--gf-ctrl-label-color-primary);
	--gf-ctrl-file-prev-name-line-height: var(--gf-line-height-secondary);
	--gf-ctrl-file-prev-name-overflow: hidden;
	--gf-ctrl-file-prev-name-padding-x-end: calc(var(--gf-ctrl-file-prog-btn-icon-size) + var(--gf-ctrl-file-prog-text-min-width) + calc(var(--gf-ctrl-file-prog-ui-gap) * 2));
	--gf-ctrl-file-prev-name-text-overflow: ellipsis;
	--gf-ctrl-file-prev-name-white-space: nowrap;
	--gf-ctrl-file-prev-size-color: var(--gf-ctrl-desc-color);
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-label-color-primary: var(--gf-color-out-ctrl-dark-darker);
	--gf-ctrl-label-font-family-primary: var(--gf-font-family-secondary);
	--gf-ctrl-label-font-size-primary: var(--gf-font-size-secondary);
	--gf-ctrl-label-font-style-primary: var(--gf-font-style-secondary);
	--gf-ctrl-label-font-weight-primary: var(--gf-font-weight-secondary);
	--gf-ctrl-label-letter-spacing-primary: var(--gf-letter-spacing-secondary);
	--gf-ctrl-label-line-height-primary: var(--gf-line-height-secondary);
	--gf-ctrl-label-color-secondary: var(--gf-color-out-ctrl-dark-darker);
	--gf-ctrl-label-font-family-secondary: var(--gf-font-family-secondary);
	--gf-ctrl-label-font-size-secondary: var(--gf-font-size-secondary);
	--gf-ctrl-label-font-style-secondary: var(--gf-font-style-secondary);
	--gf-ctrl-label-font-weight-secondary: 400;
	--gf-ctrl-label-letter-spacing-secondary: var(--gf-letter-spacing-secondary);
	--gf-ctrl-label-line-height-secondary: var(--gf-line-height-secondary);
	--gf-ctrl-label-color-tertiary: var(--gf-color-out-ctrl-dark);
	--gf-ctrl-label-font-family-tertiary: var(--gf-font-family-tertiary);
	--gf-ctrl-label-font-size-tertiary: var(--gf-font-size-tertiary);
	--gf-ctrl-label-font-style-tertiary: var(--gf-font-style-tertiary);
	--gf-ctrl-label-font-weight-tertiary: var(--gf-font-weight-tertiary);
	--gf-ctrl-label-letter-spacing-tertiary: var(--gf-letter-spacing-tertiary);
	--gf-ctrl-label-line-height-tertiary: var(--gf-line-height-tertiary);
	--gf-ctrl-label-color-quaternary: var(--gf-color-out-ctrl-dark);
	--gf-ctrl-label-font-family-quaternary: var(--gf-font-family-tertiary);
	--gf-ctrl-label-font-size-quaternary: var(--gf-font-size-secondary);
	--gf-ctrl-label-font-style-quaternary: var(--gf-font-style-tertiary);
	--gf-ctrl-label-font-weight-quaternary: var(--gf-font-weight-secondary);
	--gf-ctrl-label-letter-spacing-quaternary: var(--gf-letter-spacing-tertiary);
	--gf-ctrl-label-line-height-quaternary: var(--gf-line-height-tertiary);
	--gf-ctrl-label-color-req: var(--gf-color-danger);
	--gf-ctrl-label-font-family-req: var(--gf-ctrl-label-font-family-primary);
	--gf-ctrl-label-font-size-req: 12px;
	--gf-ctrl-label-font-style-req: var(--gf-ctrl-label-font-style-primary);
	--gf-ctrl-label-font-weight-req: var(--gf-ctrl-label-font-weight-primary);
	--gf-ctrl-label-letter-spacing-req: var(--gf-ctrl-label-letter-spacing-primary);
	--gf-ctrl-label-line-height-req: var(--gf-ctrl-label-line-height-primary);
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-number-spin-btn-appearance: var(--gf-ctrl-appearance);
	--gf-ctrl-number-spin-btn-bg-position: center center;
	--gf-ctrl-number-spin-btn-bg-size: 8px 14px;
	--gf-ctrl-number-spin-btn-width: 8px;
	--gf-ctrl-number-spin-btn-opacity: 1;
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-select-icon: var(--gf-icon-ctrl-select);
	--gf-ctrl-select-icon-hover: var(--gf-ctrl-select-icon);
	--gf-ctrl-select-icon-focus: var(--gf-ctrl-select-icon);
	--gf-ctrl-select-icon-disabled: var(--gf-ctrl-select-icon);
	--gf-ctrl-select-icon-position: calc(100% - var(--gf-ctrl-padding-x)) center;
	--gf-ctrl-select-icon-size: 10px;
	--gf-ctrl-select-ms-expand: none;
	--gf-ctrl-select-padding-x: var(--gf-ctrl-padding-x) calc(var(--gf-ctrl-select-search-icon-size) + var(--gf-ctrl-padding-x));
	--gf-ctrl-multiselect-height: 130px;
	--gf-ctrl-multiselect-radius: var(--gf-ctrl-radius-max-lg);
	--gf-ctrl-multiselect-line-height: 1.5;
	--gf-ctrl-multiselect-padding-y: var(--gf-padding-y);
	--gf-ctrl-select-dropdown-border-color: transparent;
	--gf-ctrl-select-dropdown-radius: var(--gf-ctrl-radius-max-md);
	--gf-ctrl-select-dropdown-shadow: 0 0 1px rgba(18, 25, 97, .24), 0 24px 24px rgba(18, 25, 97, .03), 0 2px 2px rgba(18, 25, 97, .03), 0 4px 4px rgba(18, 25, 97, .03), 0 8px 8px rgba(18, 25, 97, .03), 0 16px 16px rgba(18, 25, 97, .03);
	--gf-ctrl-select-dropdown-option-bg-color-hover: var(--gf-color-in-ctrl-light-lighter);
	--gf-ctrl-select-dropdown-option-shadow-hover: inset 3px 0 0 var(--gf-color-in-ctrl-primary);
	--gf-ctrl-select-search-icon-size: var(--gf-icon-font-size);
	--gf-ctrl-select-search-icon-position: var(--gf-ctrl-padding-x) center;
	--gf-ctrl-select-search-padding-x: calc(var(--gf-ctrl-select-search-icon-size) + var(--gf-ctrl-padding-x) + 8px) var(--gf-ctrl-padding-x);
	--gf-ctrl-multiselect-close-icon-size: var(--gf-icon-font-size);
	--gf-ctrl-multiselect-close-icon-inset-y-start: calc(50% - ( var(--gf-ctrl-multiselect-close-icon-size) / 2 ));
	--gf-ctrl-multiselect-close-icon-inset-x-end: calc(( var(--gf-ctrl-padding-x) / 2 ) + 2px);
	--gf-ctrl-multiselect-selected-item-bg-color: var(--gf-color-in-ctrl-primary);
	--gf-ctrl-multiselect-selected-item-radius: 33px;
	--gf-ctrl-multiselect-selected-item-color: var(--gf-color-in-ctrl-primary-contrast);
	--gf-ctrl-multiselect-selected-item-font-size: var(--gf-ctrl-font-size);
	--gf-ctrl-multiselect-selected-item-font-weight: 600;
	--gf-ctrl-multiselect-selected-item-remove-icon-color: var(--gf-color-in-ctrl-primary-contrast);
}

html[dir=rtl] .gform-theme--api, html[dir=rtl] .gform-theme--framework {
	--gf-ctrl-select-icon-position: var(--gf-ctrl-padding-x) center;
	--gf-ctrl-select-search-icon-position: calc(100% - var(--gf-padding-x)) center;
}

.gform-theme--api, .gform-theme--framework {
	--gf-ctrl-textarea-height: 130px;
	--gf-ctrl-textarea-radius: var(--gf-ctrl-radius-max-lg);
	--gf-ctrl-textarea-line-height: 1.5;
	--gf-ctrl-textarea-padding-y: var(--gf-padding-y);
	--gf-ctrl-textarea-resize: vertical;
}

.gform-theme--api, .gform-theme--framework {
	--gf-field-date-ctrl-padding-x-end: calc(var(--gf-ctrl-padding-x) + var(--gf-icon-font-size) + 4px);
	--gf-field-date-icon-color: var(--gf-ctrl-icon-color);
	--gf-field-date-icon-color-hover: var(--gf-ctrl-icon-color-hover);
	--gf-field-date-icon-transition: var(--gf-ctrl-transition);
	--gf-field-date-custom-icon-max-height: 16px;
	--gf-field-date-custom-icon-max-width: 16px;
	--gf-field-date-custom-icon-opacity: .6;
	--gf-field-date-custom-icon-opacity-hover: 1;
}

.gform-theme--api, .gform-theme--framework {
	--gf-field-choice-gap: var(--gf-label-space-x-secondary);
	--gf-field-choice-align-x-gap-y: var(--gf-field-choice-gap);
	--gf-field-choice-align-x-gap-x: 16px;
	--gf-field-choice-meta-margin-y-start: 4px;
	--gf-field-choice-meta-space: 16px;
	--gf-field-choice-other-ctrl-max-width: 256px;
	--gf-field-img-choice-aspect-ratio: 1/1;
	--gf-field-img-choice-gap: var(--gf-field-gap-x);
	--gf-field-img-choice-margin-y-end: 12px;
	--gf-field-img-choice-placeholder-icon-font-size: 60px;
	--gf-field-img-choice-radius-square: var(--gf-ctrl-radius-max-sm);
	--gf-field-img-choice-radius-round: 50%;
	--gf-field-img-choice-shadow: 0 0 0 rgba(18, 25, 97, .05), 0 2px 5px rgba(18, 25, 97, .1), 0 1px 1px rgba(18, 25, 97, .15);
	--gf-field-img-choice-shadow-hover: 0 0 1px rgba(18, 25, 97, .24), 0 24px 24px rgba(18, 25, 97, .03), 0 2px 2px rgba(18, 25, 97, .03), 0 4px 4px rgba(18, 25, 97, .03), 0 8px 8px rgba(18, 25, 97, .03), 0 16px 16px rgba(18, 25, 97, .03);
	--gf-field-img-choice-size-sm: 125px;
	--gf-field-img-choice-size-md: 200px;
	--gf-field-img-choice-size-lg: 300px;
	--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);
	--gf-field-img-choice-card-placeholder-bg-color: rgba(var(--gf-color-in-ctrl-light-rgb), .05);
	--gf-field-img-choice-card-placeholder-color: rgba(var(--gf-color-in-ctrl-dark-rgb), .4);
	--gf-field-img-choice-card-check-ind-bg-color: var(--gf-color-in-ctrl-primary);
	--gf-field-img-choice-card-check-ind-icon-color: var(--gf-color-in-ctrl-primary-contrast);
	--gf-field-img-choice-card-space-sm: 8px;
	--gf-field-img-choice-card-space-md: 12px;
	--gf-field-img-choice-card-space-lg: 16px;
	--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);
	--gf-field-img-choice-no-card-placeholder-bg-color: rgba(var(--gf-color-out-ctrl-light-rgb), .05);
	--gf-field-img-choice-no-card-placeholder-color: rgba(var(--gf-color-out-ctrl-dark-rgb), .4);
	--gf-field-img-choice-no-card-check-ind-bg-color: var(--gf-color-in-ctrl-primary);
	--gf-field-img-choice-no-card-check-ind-icon-color: var(--gf-color-in-ctrl-primary-contrast);
	--gf-field-img-choice-check-ind-icon: var(--gf-icon-ctrl-checkbox);
	--gf-field-img-choice-check-ind-radius: 50%;
	--gf-field-img-choice-check-ind-shadow: 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));
	--gf-field-img-choice-check-ind-size-sm: 24px;
	--gf-field-img-choice-check-ind-size-md: 38px;
	--gf-field-img-choice-check-ind-size-lg: 64px;
	--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);
	--gf-field-img-choice-check-ind-icon-size-sm: 12px;
	--gf-field-img-choice-check-ind-icon-size-md: var(--gf-icon-font-size);
	--gf-field-img-choice-check-ind-icon-size-lg: 30px;
	--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);
	--gf-field-img-choice-ctrl-opacity: 1;
	--gf-field-img-choice-ctrl-opacity-disabled: .5;
	--gf-field-img-choice-other-ctrl-margin-y-start: 16px;
}

.gform-theme--api, .gform-theme--framework {
	--gf-field-list-btn-size: 16px;
	--gf-field-list-btn-radius: 50%;
	--gf-field-list-btn-font-size: 0;
	--gf-field-list-btn-padding-y: 0;
	--gf-field-list-btn-padding-x: 0;
}

.gform-theme--api, .gform-theme--framework {
	--gf-field-pg-prog-color: var(--gf-color-out-ctrl-dark);
	--gf-field-pg-prog-margin-y-end: 24px;
	--gf-field-pg-prog-title-margin-y-end: 16px;
	--gf-field-pg-prog-font-family: var(--gf-font-family-base);
	--gf-field-pg-prog-font-size: 14px;
	--gf-field-pg-prog-font-style: var(--gf-font-style-base);
	--gf-field-pg-prog-font-weight: 600;
	--gf-field-pg-prog-letter-spacing: 0;
	--gf-field-pg-prog-line-height: 1;
	--gf-field-pg-prog-text-transform: uppercase;
	--gf-field-pg-prog-bar-bg-color: var(--gf-color-out-ctrl-light);
	--gf-field-pg-prog-bar-bg-color-blue: #204ce5;
	--gf-field-pg-prog-bar-bg-color-gray: var(--gf-color-out-ctrl-dark);
	--gf-field-pg-prog-bar-bg-color-green: #31c48d;
	--gf-field-pg-prog-bar-bg-color-orange: #ff5a1f;
	--gf-field-pg-prog-bar-bg-color-red: #c02b0a;
	--gf-field-pg-prog-bar-bg-gradient-spring: linear-gradient(270deg, #9cd790 0%, #76d7db 100%);
	--gf-field-pg-prog-bar-bg-gradient-blues: linear-gradient(270deg, #00c2ff 0%, #7838e2 100%);
	--gf-field-pg-prog-bar-bg-gradient-rainbow: linear-gradient(274.73deg, #74b551 -5.58%, #f3ca30 44.81%, #cd302b 93.15%);
	--gf-field-pg-prog-bar-radius: 100px;
	--gf-field-pg-prog-bar-height: 10px;
	--gf-field-pg-steps-number-bg-color: transparent;
	--gf-field-pg-steps-number-bg-color-active: var(--gf-color-out-ctrl-light);
	--gf-field-pg-steps-number-bg-color-complete: var(--gf-color-primary);
	--gf-field-pg-steps-number-border-color: var(--gf-color-out-ctrl-light-darker);
	--gf-field-pg-steps-number-border-color-active: transparent;
	--gf-field-pg-steps-number-border-color-complete: var(--gf-color-primary);
	--gf-field-pg-steps-number-border-style: solid;
	--gf-field-pg-steps-number-border-width: 2px;
	--gf-field-pg-steps-number-radius: 50%;
	--gf-field-pg-steps-number-color: var(--gf-color-out-ctrl-dark);
	--gf-field-pg-steps-number-color-active: var(--gf-field-pg-steps-number-color);
	--gf-field-pg-steps-number-color-complete: var(--gf-color-primary-contrast);
	--gf-field-pg-steps-icon-font-size: var(--gf-icon-font-size);
	--gf-field-pg-steps-number-size: 32px;
	--gf-field-pg-steps-step-gap: 12px;
}

.gform-theme--api, .gform-theme--framework {
	--gf-field-pwd-ctrl-padding-x-end: calc(var(--gf-ctrl-padding-x) + var(--gf-icon-font-size) + 8px);
	--gf-field-pwd-str-bg-color: transparent;
	--gf-field-pwd-str-bg-color-mismatch: transparent;
	--gf-field-pwd-str-bg-color-short: transparent;
	--gf-field-pwd-str-bg-color-bad: transparent;
	--gf-field-pwd-str-bg-color-good: transparent;
	--gf-field-pwd-str-bg-color-strong: transparent;
	--gf-field-pwd-str-border-color: transparent;
	--gf-field-pwd-str-border-color-mismatch: transparent;
	--gf-field-pwd-str-border-color-short: transparent;
	--gf-field-pwd-str-border-color-bad: transparent;
	--gf-field-pwd-str-border-color-good: transparent;
	--gf-field-pwd-str-border-color-strong: transparent;
	--gf-field-pwd-str-border-style: var(--gf-ctrl-border-style);
	--gf-field-pwd-str-border-width: 0;
	--gf-field-pwd-str-radius: 0;
	--gf-field-pwd-str-color: var(--gf-color-out-ctrl-dark);
	--gf-field-pwd-str-color-mismatch: #c02b0a;
	--gf-field-pwd-str-color-short: #c02b0a;
	--gf-field-pwd-str-color-bad: #ff5a1f;
	--gf-field-pwd-str-color-good: #8b6c32;
	--gf-field-pwd-str-color-strong: #399f4b;
	--gf-field-pwd-str-margin-y-start: 16px;
	--gf-field-pwd-str-padding-y: 0;
	--gf-field-pwd-str-padding-x: calc(65px + 8px) 0;
	--gf-field-pwd-str-font-family: var(--gf-font-family-secondary);
	--gf-field-pwd-str-font-size: var(--gf-font-size-primary);
	--gf-field-pwd-str-font-style: var(--gf-font-style-secondary);
	--gf-field-pwd-str-font-weight: var(--gf-font-weight-secondary);
	--gf-field-pwd-str-letter-spacing: var(--gf-letter-spacing-secondary);
	--gf-field-pwd-str-line-height: 1;
	--gf-field-pwd-str-text-align: start;
	--gf-field-pwd-str-transition: var(--gf-transition-ctrl);
	--gf-field-pwd-str-ind-bg-color: var(--gf-color-out-ctrl-light);
	--gf-field-pwd-str-ind-bg-color-mismatch: var(--gf-field-pwd-str-color-mismatch);
	--gf-field-pwd-str-ind-bg-color-short: var(--gf-field-pwd-str-color-short);
	--gf-field-pwd-str-ind-bg-color-bad: var(--gf-field-pwd-str-color-bad);
	--gf-field-pwd-str-ind-bg-color-good: var(--gf-field-pwd-str-color-good);
	--gf-field-pwd-str-ind-bg-color-strong: var(--gf-field-pwd-str-color-strong);
	--gf-field-pwd-str-ind-radius: var(--gf-radius);
	--gf-field-pwd-str-ind-display: inline-block;
	--gf-field-pwd-str-ind-inset-y-start: 50%;
	--gf-field-pwd-str-ind-inset-x-start: 0;
	--gf-field-pwd-str-ind-position: absolute;
	--gf-field-pwd-str-ind-height: 6px;
	--gf-field-pwd-str-ind-width: 65px;
	--gf-field-pwd-str-ind-width-blank: 0;
	--gf-field-pwd-str-ind-width-mismatch: 65px;
	--gf-field-pwd-str-ind-width-short: 22px;
	--gf-field-pwd-str-ind-width-bad: 37px;
	--gf-field-pwd-str-ind-width-good: 46px;
	--gf-field-pwd-str-ind-width-strong: 65px;
	--gf-field-pwd-str-ind-content: "";
	--gf-field-pwd-str-ind-transform: translateY(-50%);
	--gf-field-pwd-str-ind-transition: var(--gf-transition-ctrl);
}

.gform-theme--api, .gform-theme--framework {
	--gf-field-prod-price-color: var(--gf-ctrl-label-color-primary);
	--gf-field-prod-quant-margin-y-end: var(--gf-field-gap-y);
	--gf-field-prod-quant-width: 150px;
}

.gform-theme--api, .gform-theme--framework {
	--gf-field-repeater-gap-y: var(--gf-form-gap-y);
	--gf-field-repeater-btn-inline-gap: var(--gf-form-gap-x);
	--gf-field-repeater-separator-color: var(--gf-color-out-ctrl-light-darker);
	--gf-field-repeater-separator-size: 1px;
	--gf-field-repeater-nested-border-color: var(--gf-color-out-ctrl-light-darker);
	--gf-field-repeater-nested-border-size: 1px;
	--gf-field-repeater-nested-border-style: solid;
	--gf-field-repeater-nested-padding-x-start: 20px;
}

.gform-theme--api, .gform-theme--framework {
	--gf-field-section-border-color: var(--gf-color-out-ctrl-light-darker);
	--gf-field-section-border-style: solid;
	--gf-field-section-border-width: 1px;
	--gf-field-section-padding-y-end: 8px;
}

.gform-theme--api, .gform-theme--framework {
	--gf-form-validation-bg-color: rgba(var(--gf-color-danger-rgb), .03);
	--gf-form-validation-border-color: rgba(var(--gf-color-danger-rgb), .25);
	--gf-form-validation-border-color-focus: var(--gf-color-danger);
	--gf-form-validation-border-width: 1px;
	--gf-form-validation-border-style: solid;
	--gf-form-validation-radius: var(--gf-ctrl-radius-max-md);
	--gf-form-validation-outline-color-focus: rgba(var(--gf-color-danger-rgb), .65);
	--gf-form-validation-outline-focus: var(--gf-ctrl-outline-width-focus) var(--gf-ctrl-outline-style) var(--gf-form-validation-outline-color-focus);
	--gf-form-validation-shadow: 0 1px 4px rgba(18, 25, 97, .0779552);
	--gf-form-validation-color: var(--gf-color-danger);
	--gf-form-validation-font-family: var(--gf-font-family-primary);
	--gf-form-validation-font-size: var(--gf-font-size-primary);
	--gf-form-validation-line-height: 1.43;
	--gf-form-validation-gap: 8px;
	--gf-form-validation-margin-y: 0 var(--gf-form-gap-y);
	--gf-form-validation-padding-y: 20px;
	--gf-form-validation-padding-x: 16px;
	--gf-form-validation-heading-color: var(--gf-form-validation-color);
	--gf-form-validation-heading-font-family: var(--gf-form-validation-font-family);
	--gf-form-validation-heading-font-size: var(--gf-form-validation-font-size);
	--gf-form-validation-heading-font-weight: 500;
	--gf-form-validation-heading-line-height: var(--gf-form-validation-line-height);
	--gf-form-validation-heading-gap: 12px;
	--gf-form-validation-heading-icon-bg-color: rgba(var(--gf-color-danger-rgb), .05);
	--gf-form-validation-heading-icon-border-color: var(--gf-form-validation-border-color);
	--gf-form-validation-heading-icon-border-width: 2px;
	--gf-form-validation-heading-icon-border-style: var(--gf-form-validation-border-style);
	--gf-form-validation-heading-icon-radius: 50%;
	--gf-form-validation-heading-icon-color: var(--gf-form-validation-heading-color);
	--gf-form-validation-heading-icon-font-size: 18px;
	--gf-form-validation-heading-icon-size: 20px;
	--gf-form-validation-summary-color: var(--gf-form-validation-color);
	--gf-form-validation-summary-font-family: var(--gf-form-validation-font-family);
	--gf-form-validation-summary-font-size: var(--gf-form-validation-font-size);
	--gf-form-validation-summary-font-weight: 400;
	--gf-form-validation-summary-line-height: var(--gf-form-validation-line-height);
	--gf-form-validation-summary-margin-y-start: 4px;
	--gf-form-validation-summary-padding-x: 48px;
	--gf-form-validation-summary-item-link-text-decoration: underline;
}

.gform-theme--api, .gform-theme--framework {
	--gf-form-spinner-fg-color: var(--gf-color-primary);
	--gf-form-spinner-bg-color: rgba(var(--gf-color-primary-rgb), .1);
}

.gform-orbital-icon {
	font-family: var(--gf-icon-font-family) !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-orbital-icon--photograph:before {
	content: "";
}

.gform-orbital-icon--arrow-back:before {
	content: "";
}

.gform-orbital-icon--calendar-alt:before {
	content: "";
}

.gform-orbital-icon--selector:before {
	content: "";
}

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

.gform-orbital-icon--trash:before {
	content: "";
}

.gform-orbital-icon--cloud-upload-alt:before {
	content: "";
}

.gform-orbital-icon--arrow-up:before {
	content: "";
}

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

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

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

.gform-orbital-icon--arrow-narrow-right:before {
	content: "";
}

.gform-orbital-icon--arrow-sm-left:before {
	content: "";
}

.gform-orbital-icon--arrow-sm-right:before {
	content: "";
}

.gform-orbital-icon--save-as:before {
	content: "";
}

.gform-orbital-icon--minus-alt:before {
	content: "";
}

.gform-orbital-icon--plus-alt:before {
	content: "";
}

.gform-orbital-icon--eye-off:before {
	content: "";
}

.gform-orbital-icon--eye:before {
	content: "";
}

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

.gform-orbital-icon--check-mark:before {
	content: "";
}

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

.gform-orbital-icon--check-mark-simple:before {
	content: "";
}

.gform-orbital-icon--exclamation-simple:before {
	content: "";
}

.gform-orbital-icon--information-simple:before {
	content: "";
}

.gform-orbital-icon--question-mark-simple:before {
	content: "";
}

.gform-orbital-icon--chevron-down:before {
	content: "";
}

.gform-orbital-icon--chevron-up:before {
	content: "";
}

.gform-orbital-icon--chevron-left:before {
	content: "";
}

.gform-orbital-icon--chevron-right:before {
	content: "";
}

.gform-orbital-icon--chevron-double-left:before {
	content: "";
}

.gform-orbital-icon--chevron-double-right:before {
	content: "";
}

.gform-orbital-icon--minus:before {
	content: "";
}

.gform-orbital-icon--x-circle:before {
	content: "";
}

.gform-orbital-icon--x:before {
	content: "";
}

.gform-theme--framework ::-moz-placeholder:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	color: var(--gf-ctrl-placeholder-color);
	font-family: var(--gf-ctrl-placeholder-font-family);
	font-size: var(--gf-ctrl-placeholder-font-size);
	font-style: var(--gf-ctrl-placeholder-font-style);
	font-weight: var(--gf-ctrl-placeholder-font-weight);
	letter-spacing: var(--gf-ctrl-placeholder-letter-spacing);
	opacity: var(--gf-ctrl-placeholder-opacity);
}

.gform-theme--framework ::placeholder:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	color: var(--gf-ctrl-placeholder-color);
	font-family: var(--gf-ctrl-placeholder-font-family);
	font-size: var(--gf-ctrl-placeholder-font-size);
	font-style: var(--gf-ctrl-placeholder-font-style);
	font-weight: var(--gf-ctrl-placeholder-font-weight);
	letter-spacing: var(--gf-ctrl-placeholder-letter-spacing);
	opacity: var(--gf-ctrl-placeholder-opacity);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-search input[type=text]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-appearance: var(--gf-ctrl-appearance);
	--gf-local-bg-color: var(--gf-ctrl-bg-color);
	--gf-local-height: var(--gf-ctrl-size);
	--gf-local-radius: var(--gf-ctrl-radius);
	--gf-local-border-color: var(--gf-ctrl-border-color);
	--gf-local-border-width: var(--gf-ctrl-border-width);
	--gf-local-border-style: var(--gf-ctrl-border-style);
	--gf-local-border-block-start: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-border-block-end: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-border-inline-start: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-border-inline-end: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-color: var(--gf-ctrl-color);
	--gf-local-display: block;
	--gf-local-font-family: var(--gf-ctrl-font-family);
	--gf-local-font-size: var(--gf-ctrl-font-size);
	--gf-local-font-style: var(--gf-ctrl-font-style);
	--gf-local-font-weight: var(--gf-ctrl-font-weight);
	--gf-local-letter-spacing: var(--gf-ctrl-letter-spacing);
	--gf-local-line-height: var(--gf-ctrl-line-height);
	--gf-local-min-height: auto;
	--gf-local-outline-color: var(--gf-ctrl-outline-color);
	--gf-local-outline-offset: var(--gf-ctrl-outline-offset);
	--gf-local-outline-style: var(--gf-ctrl-outline-style);
	--gf-local-outline-width: var(--gf-ctrl-outline-width);
	--gf-local-padding-x: var(--gf-ctrl-padding-x);
	--gf-local-padding-y: var(--gf-ctrl-padding-y);
	--gf-local-shadow: var(--gf-ctrl-shadow);
	--gf-local-transition: var(--gf-ctrl-transition);
	--gf-local-width: 100%;
	-webkit-appearance: var(--gf-local-appearance);
	-moz-appearance: var(--gf-local-appearance);
	appearance: var(--gf-local-appearance);
	background-color: var(--gf-local-bg-color);
	block-size: var(--gf-local-height);
	border-block-end: var(--gf-local-border-block-end);
	border-block-start: var(--gf-local-border-block-start);
	border-inline-end: var(--gf-local-border-inline-end);
	border-inline-start: var(--gf-local-border-inline-start);
	border-radius: var(--gf-local-radius);
	box-shadow: var(--gf-local-shadow);
	color: var(--gf-local-color);
	display: var(--gf-local-display);
	font-family: var(--gf-local-font-family);
	font-size: var(--gf-local-font-size);
	font-style: var(--gf-local-font-style);
	font-weight: var(--gf-local-font-weight);
	inline-size: var(--gf-local-width);
	letter-spacing: var(--gf-local-letter-spacing);
	line-height: var(--gf-local-line-height);
	margin-block: 0;
	margin-inline: 0;
	min-block-size: var(--gf-local-min-height);
	outline-color: var(--gf-local-outline-color);
	outline-offset: var(--gf-local-outline-offset);
	outline-style: var(--gf-local-outline-style);
	outline-width: var(--gf-local-outline-width);
	padding-block: var(--gf-local-padding-y);
	padding-inline: var(--gf-local-padding-x);
	transition: var(--gf-local-transition);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-search input[type=text]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-hover);
	--gf-local-border-color: var(--gf-ctrl-border-color-hover);
	--gf-local-color: var(--gf-ctrl-color-hover);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-search input[type=text]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-focus);
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
	--gf-local-color: var(--gf-ctrl-color-focus);
	--gf-local-outline-color: var(--gf-ctrl-outline-color-focus);
	--gf-local-outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-search input[type=text]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-disabled);
	--gf-local-border-color: var(--gf-ctrl-border-color-disabled);
	--gf-local-color: var(--gf-ctrl-color-disabled);
}

.gform-theme--framework .gfield_error .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-error);
	--gf-local-border-color: var(--gf-ctrl-border-color-error);
	--gf-local-color: var(--gf-ctrl-color-error);
}

.gform-theme--framework .gfield_error .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield_error input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield_error select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield_error select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield_error textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-focus);
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
	--gf-local-color: var(--gf-ctrl-color-focus);
	--gf-local-outline-color: var(--gf-ctrl-outline-color-focus);
	--gf-local-outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme--framework input[type].gform-text-input-reset {
	--gf-local-border-color: transparent;
	--gf-local-height: auto;
	--gf-local-color: var(--gf-ctrl-readonly-color);
	--gf-local-font-family: var(--gf-ctrl-readonly-font-family);
	--gf-local-font-size: var(--gf-ctrl-readonly-font-size);
	--gf-local-font-style: var(--gf-ctrl-readonly-font-style);
	--gf-local-font-weight: var(--gf-ctrl-readonly-font-weight);
	--gf-local-letter-spacing: var(--gf-ctrl-readonly-letter-spacing);
	--gf-local-line-height: var(--gf-ctrl-readonly-line-height);
	--gf-local-min-height: auto;
	--gf-local-outline-color: var(--gf-ctrl-outline-color);
	--gf-local-outline-width: var(--gf-ctrl-outline-width);
	block-size: var(--gf-local-height);
	border: var(--gf-ctrl-border-width) var(--gf-ctrl-border-style) var(--gf-local-border-color);
	border-radius: var(--gf-ctrl-radius);
	color: var(--gf-local-color);
	font-family: var(--gf-local-font-family);
	font-size: var(--gf-local-font-size);
	font-style: var(--gf-local-font-style);
	font-weight: var(--gf-local-font-weight);
	letter-spacing: var(--gf-local-letter-spacing);
	line-height: var(--gf-local-line-height);
	min-block-size: var(--gf-local-min-height);
	outline-color: var(--gf-local-outline-color);
	outline-offset: var(--gf-ctrl-outline-offset);
	outline-style: var(--gf-ctrl-outline-style);
	outline-width: var(--gf-local-outline-width);
	transition: var(--gf-ctrl-transition);
}

.gform-theme--framework input[type].gform-text-input-reset:focus {
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
	--gf-local-outline-color: var(--gf-ctrl-outline-color-focus);
	--gf-local-outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme--framework input[type=number]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::-webkit-inner-spin-button, .gform-theme--framework input[type=number]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::-webkit-outer-spin-button {
	opacity: var(--gf-ctrl-number-spin-btn-opacity);
}

.gform-theme--framework input[type=number]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::-webkit-inner-spin-button {
	-webkit-appearance: var(--gf-ctrl-number-spin-btn-appearance);
	appearance: var(--gf-ctrl-number-spin-btn-appearance);
	background-image: var(--gf-icon-ctrl-number);
	background-position: var(--gf-ctrl-number-spin-btn-bg-position);
	background-repeat: no-repeat;
	background-size: var(--gf-ctrl-number-spin-btn-bg-size);
	cursor: pointer;
	width: var(--gf-ctrl-number-spin-btn-width);
}

.gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-radius: var(--gf-ctrl-textarea-radius);
	--gf-local-height: var(--gf-ctrl-textarea-height);
	--gf-local-line-height: var(--gf-ctrl-textarea-line-height);
	--gf-local-padding-y: var(--gf-ctrl-textarea-padding-y);
	resize: var(--gf-ctrl-textarea-resize);
}

.gform-theme--framework .wp-editor-container:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-border-color: var(--gf-ctrl-border-color);
	--gf-local-outline-color: var(--gf-ctrl-outline-color);
	--gf-local-outline-width: var(--gf-ctrl-outline-width);
	border: var(--gf-ctrl-border-width) var(--gf-ctrl-border-style) var(--gf-local-border-color);
	border-radius: var(--gf-ctrl-textarea-radius);
	box-shadow: var(--gf-ctrl-shadow);
	outline-color: var(--gf-local-outline-color);
	outline-offset: var(--gf-ctrl-outline-offset);
	outline-style: var(--gf-ctrl-outline-style);
	outline-width: var(--gf-local-outline-width);
	overflow: hidden;
	transition: var(--gf-transition-ctrl);
}

.gform-theme--framework .wp-editor-container:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover {
	--gf-local-border-color: var(--gf-ctrl-border-color-hover);
}

.gform-theme--framework .wp-editor-container:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))[\:has\(.wp-editor-iframe-active\)] {
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
	--gf-local-outline-color: var(--gf-ctrl-outline-color-focus);
	--gf-local-outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme--framework .wp-editor-container:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):has(.wp-editor-iframe-active) {
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
	--gf-local-outline-color: var(--gf-ctrl-outline-color-focus);
	--gf-local-outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme--framework .wp-editor-container textarea {
	border-color: transparent;
	border-width: 0;
}

.gform-theme--framework .gfield_error .wp-editor-container:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-border-color: var(--gf-ctrl-border-color-error);
}

.gform-theme--framework .gfield_error .wp-editor-container:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))[\:has\(.wp-editor-iframe-active\)] {
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
}

.gform-theme--framework .gfield_error .wp-editor-container:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):has(.wp-editor-iframe-active) {
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
}

.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-height: var(--gf-ctrl-choice-size);
	--gf-local-display: inline-grid;
	--gf-local-line-height: var(--gf-ctrl-choice-size);
	--gf-local-padding-y: 0;
	--gf-local-padding-x: 0;
	--gf-local-width: var(--gf-ctrl-choice-size);
	accent-color: var(--gf-ctrl-accent-color);
	opacity: 1;
	align-content: center;
	justify-content: center;
	place-content: center;
}

.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before, .gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
	opacity: 0;
}

.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):checked::before, .gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):checked::before {
	opacity: 1;
}

.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-radius: var(--gf-ctrl-checkbox-check-radius);
}

.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--gf-ctrl-choice-check-color);
	content: var(--gf-icon-ctrl-checkbox);
	font-size: var(--gf-ctrl-checkbox-check-size);
}

.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::before {
	color: var(--gf-ctrl-choice-check-color-disabled);
}

.gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-radius: var(--gf-ctrl-radio-check-radius);
}

.gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
	background-color: var(--gf-ctrl-choice-check-color);
	block-size: var(--gf-ctrl-radio-check-size);
	border-radius: var(--gf-ctrl-radio-check-radius);
	content: var(--gf-ctrl-radio-check-content);
	inline-size: var(--gf-ctrl-radio-check-size);
}

.gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::before {
	background-color: var(--gf-ctrl-choice-check-color-disabled);
}

.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):where(:not([multiple])) {
	--gf-local-padding-x: var(--gf-ctrl-select-padding-x);
	background-image: var(--gf-ctrl-select-icon);
	background-position: var(--gf-ctrl-select-icon-position);
	background-repeat: no-repeat;
	background-size: var(--gf-ctrl-select-icon-size);
}

.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):where(:not([multiple])):hover {
	background-image: var(--gf-ctrl-select-icon-hover);
}

.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):where(:not([multiple])):focus {
	background-image: var(--gf-ctrl-select-icon-focus);
}

.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):where(:not([multiple])):disabled {
	background-image: var(--gf-ctrl-select-icon-disabled);
}

.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::-ms-expand {
	display: var(--gf-ctrl-select-ms-expand);
}

.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))[multiple] {
	--gf-local-height: var(--gf-ctrl-multiselect-height);
	--gf-local-radius: var(--gf-ctrl-multiselect-radius);
	--gf-local-line-height: var(--gf-ctrl-multiselect-line-height);
	--gf-local-padding-y: var(--gf-ctrl-multiselect-padding-y);
	overflow-y: auto;
}

.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))[multiple] option:checked {
	background: var(--gf-color-in-ctrl-light);
}

.gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single .chosen-single {
	background-image: var(--gf-icon-ctrl-select);
	background-position: var(--gf-ctrl-select-icon-position);
	background-repeat: no-repeat;
	background-size: var(--gf-ctrl-select-icon-size);
}

.gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single .chosen-single span {
	margin-inline-end: var(--gf-ctrl-select-search-icon-size);
}

.gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single .chosen-single abbr, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single .chosen-single div b {
	background-image: none !important;
}

.gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single.chosen-container-active .chosen-single, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-focus);
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
	--gf-local-color: var(--gf-ctrl-color-focus);
	--gf-local-outline-color: var(--gf-ctrl-outline-color-focus);
	--gf-local-outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single .chosen-single abbr.nitro-lazy, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single .chosen-single div b.nitro-lazy {
	background-image: none !important;
}

.gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single {
	border-bottom-left-radius: var(--gf-ctrl-radius);
	border-bottom-right-radius: var(--gf-ctrl-radius);
	border-color: var(--gf-ctrl-border-color-focus);
}

.gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single .chosen-search {
	padding-block: var(--gf-padding-y) 0;
	padding-inline: var(--gf-ctrl-padding-x);
}

.gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container-single .chosen-search input[type=text] {
	--gf-local-height: var(--gf-ctrl-size-md);
	--gf-local-padding-x: var(--gf-ctrl-select-search-padding-x);
	background-image: var(--gf-icon-ctrl-search) !important;
	background-position: var(--gf-ctrl-select-search-icon-position);
	background-size: var(--gf-ctrl-select-search-icon-size) !important;
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi {
	--gf-local-height: auto;
	--gf-local-radius: var(--gf-ctrl-multiselect-radius);
	padding-inline: 0;
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi.chosen-container-active {
	border-color: var(--gf-ctrl-border-color-focus);
	outline-color: var(--gf-ctrl-outline-color-focus);
	outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi.chosen-container-active .chosen-choices {
	box-shadow: none;
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi .chosen-choices {
	align-content: center;
	background: 0 0;
	border: none;
	display: flex;
	flex-flow: row wrap;
	gap: calc(var(--gf-padding-y) / 2);
	min-height: calc(var(--gf-ctrl-size) - 2px);
	padding-block: 4px;
	padding-inline: var(--gf-ctrl-padding-x);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li.search-field input[type=text].chosen-search-input {
	color: var(--gf-ctrl-placeholder-color);
	font-family: var(--gf-ctrl-placeholder-font-family);
	font-size: var(--gf-ctrl-placeholder-font-size);
	font-style: var(--gf-ctrl-placeholder-font-style);
	font-weight: var(--gf-ctrl-placeholder-font-weight);
	letter-spacing: var(--gf-ctrl-placeholder-letter-spacing);
	opacity: var(--gf-ctrl-placeholder-opacity);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi .chosen-choices .search-choice+li.search-field input[type=text].chosen-search-input {
	color: var(--gf-ctrl-color-focus);
	font-family: var(--gf-ctrl-font-family);
	font-size: var(--gf-ctrl-font-size);
	font-style: var(--gf-ctrl-font-style);
	font-weight: var(--gf-ctrl-font-weight);
	letter-spacing: var(--gf-ctrl-letter-spacing);
	opacity: 1;
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li.search-choice {
	align-self: flex-start;
	background: 0 0;
	background-color: var(--gf-ctrl-multiselect-selected-item-bg-color);
	border: none;
	border-radius: var(--gf-ctrl-multiselect-selected-item-radius);
	box-shadow: none;
	color: var(--gf-ctrl-multiselect-selected-item-color);
	flex-shrink: 0;
	font-size: var(--gf-ctrl-multiselect-selected-item-font-size);
	font-weight: var(--gf-ctrl-multiselect-selected-item-font-weight);
	margin: 0;
	padding-block: 8px;
	padding-inline: var(--gf-ctrl-padding-x) calc(( var(--gf-ctrl-padding-x) * 1.25 ) + var(--gf-ctrl-multiselect-close-icon-size));
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	background: 0 0;
	height: var(--gf-ctrl-multiselect-close-icon-size);
	inset-block-start: var(--gf-ctrl-multiselect-close-icon-inset-y-start);
	inset-inline-end: var(--gf-ctrl-multiselect-close-icon-inset-x-end);
	opacity: 70%;
	transition: var(--gf-local-transition);
	width: var(--gf-ctrl-multiselect-close-icon-size);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li.search-choice .search-choice-close::before {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--gf-ctrl-multiselect-selected-item-remove-icon-color);
	content: var(--gf-icon-ctrl-cancel);
	display: inline-block;
	font-size: var(--gf-ctrl-multiselect-close-icon-size);
	height: 100%;
	width: 100%;
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:focus, .gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
	opacity: 1;
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container .chosen-drop, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container .chosen-drop {
	background-color: var(--gf-ctrl-bg-color);
	border: var(--gf-ctrl-select-dropdown-border-color);
	border-radius: var(--gf-ctrl-select-dropdown-radius);
	box-shadow: var(--gf-ctrl-select-dropdown-shadow);
	overflow: hidden;
	padding-block: 0;
	padding-inline: 0;
	top: calc(100% + 8px);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container .chosen-results, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container .chosen-results {
	margin-block: 0;
	margin-inline: 0;
	padding-block: var(--gf-padding-y);
	padding-inline: 0;
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container .chosen-results li, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container .chosen-results li {
	color: var(--gf-ctrl-color);
	padding: var(--gf-padding-y) var(--gf-ctrl-padding-x);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container .chosen-results li.highlighted, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container .chosen-results li.highlighted {
	background: 0 0;
	background-color: var(--gf-ctrl-select-dropdown-option-bg-color-hover);
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container .chosen-results li.result-selected, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-container .chosen-results li.result-selected {
	background: 0 0;
	background-color: var(--gf-ctrl-select-dropdown-option-bg-color-hover);
	box-shadow: var(--gf-ctrl-select-dropdown-option-shadow-hover);
}

.gform-theme--framework .gfield_list_group_item::before:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gform-field-label:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-color: var(--gf-ctrl-label-color-primary);
	--gf-local-display: flex;
	--gf-local-font-family: var(--gf-ctrl-label-font-family-primary);
	--gf-local-font-size: var(--gf-ctrl-label-font-size-primary);
	--gf-local-font-style: var(--gf-ctrl-label-font-style-primary);
	--gf-local-font-weight: var(--gf-ctrl-label-font-weight-primary);
	--gf-local-letter-spacing: var(--gf-ctrl-label-letter-spacing-primary);
	--gf-local-line-height: var(--gf-ctrl-label-line-height-primary);
	--gf-local-margin-y: 0;
	--gf-local-margin-x: 0;
	color: var(--gf-local-color);
	display: var(--gf-local-display);
	font-family: var(--gf-local-font-family);
	font-size: var(--gf-local-font-size);
	font-style: var(--gf-local-font-style);
	font-weight: var(--gf-local-font-weight);
	letter-spacing: var(--gf-local-letter-spacing);
	line-height: var(--gf-local-line-height);
	margin-block: var(--gf-local-margin-y);
	margin-inline: var(--gf-local-margin-x);
}

.gform-theme--framework .gform-field-label--type-inline:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-color: var(--gf-ctrl-label-color-secondary);
	--gf-local-display: block;
	--gf-local-font-family: var(--gf-ctrl-label-font-family-secondary);
	--gf-local-font-size: var(--gf-ctrl-label-font-size-secondary);
	--gf-local-font-style: var(--gf-ctrl-label-font-style-secondary);
	--gf-local-font-weight: var(--gf-ctrl-label-font-weight-secondary);
	--gf-local-letter-spacing: var(--gf-ctrl-label-letter-spacing-secondary);
	--gf-local-line-height: var(--gf-ctrl-label-line-height-secondary);
}

.gform-theme--framework .gform-field-label--type-sub:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-color: var(--gf-ctrl-label-color-tertiary);
	--gf-local-display: block;
	--gf-local-font-family: var(--gf-ctrl-label-font-family-tertiary);
	--gf-local-font-size: var(--gf-ctrl-label-font-size-tertiary);
	--gf-local-font-style: var(--gf-ctrl-label-font-style-tertiary);
	--gf-local-font-weight: var(--gf-ctrl-label-font-weight-tertiary);
	--gf-local-letter-spacing: var(--gf-ctrl-label-letter-spacing-tertiary);
	--gf-local-line-height: var(--gf-ctrl-label-line-height-tertiary);
}

.gform-theme--framework .gform-field-label--type-sub-large:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-color: var(--gf-ctrl-label-color-quaternary);
	--gf-local-display: inline-block;
	--gf-local-font-family: var(--gf-ctrl-label-font-family-quaternary);
	--gf-local-font-size: var(--gf-ctrl-label-font-size-quaternary);
	--gf-local-font-style: var(--gf-ctrl-label-font-style-quaternary);
	--gf-local-font-weight: var(--gf-ctrl-label-font-weight-quaternary);
	--gf-local-letter-spacing: var(--gf-ctrl-label-letter-spacing-quaternary);
	--gf-local-line-height: var(--gf-ctrl-label-line-height-quaternary);
}

.gform-theme--framework .gform-field-label>.gfield_required:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform_editor legend.gform-field-label>span>.gfield_required:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	color: var(--gf-ctrl-label-color-req);
	display: inline-block;
	font-family: var(--gf-ctrl-label-font-family-req);
	font-size: var(--gf-ctrl-label-font-size-req);
	font-style: var(--gf-ctrl-label-font-style-req);
	font-weight: var(--gf-ctrl-label-font-weight-req);
	letter-spacing: var(--gf-ctrl-label-letter-spacing-req);
	line-height: var(--gf-ctrl-label-line-height-req);
}

.gform-theme--framework .gfield_description:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-color: var(--gf-ctrl-desc-color);
	--gf-local-font-family: var(--gf-ctrl-desc-font-family);
	--gf-local-font-size: var(--gf-ctrl-desc-font-size);
	--gf-local-font-style: var(--gf-ctrl-desc-font-style);
	--gf-local-font-weight: var(--gf-ctrl-desc-font-weight);
	--gf-local-letter-spacing: var(--gf-ctrl-desc-letter-spacing);
	--gf-local-line-height: var(--gf-ctrl-desc-line-height);
	color: var(--gf-local-color);
	display: block;
	font-family: var(--gf-local-font-family);
	font-size: var(--gf-local-font-size);
	font-style: var(--gf-local-font-style);
	font-weight: var(--gf-local-font-weight);
	letter-spacing: var(--gf-local-letter-spacing);
	line-height: var(--gf-local-line-height);
}

.gform-theme--framework .gfield_validation_message:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-color: var(--gf-ctrl-desc-color-error);
	--gf-local-font-family: var(--gf-ctrl-desc-font-family-error);
	--gf-local-font-size: var(--gf-ctrl-desc-font-size-error);
	--gf-local-font-style: var(--gf-ctrl-desc-font-style-error);
	--gf-local-font-weight: var(--gf-ctrl-desc-font-weight-error);
	--gf-local-letter-spacing: var(--gf-ctrl-desc-letter-spacing-error);
	--gf-local-line-height: var(--gf-ctrl-desc-line-height-error);
}

.gform-theme--framework .gfield_consent_description:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	border: var(--gf-ctrl-desc-border-width-consent) var(--gf-ctrl-desc-border-style-consent) var(--gf-ctrl-desc-border-color-consent);
	max-height: var(--gf-ctrl-desc-max-height-consent);
	outline-color: var(--gf-ctrl-outline-color);
	outline-offset: var(--gf-ctrl-outline-offset);
	outline-style: var(--gf-ctrl-outline-style);
	outline-width: var(--gf-ctrl-outline-width);
	overflow-y: auto;
	padding: 16px;
	transition: var(--gf-ctrl-transition);
}

.gform-theme--framework .gfield_consent_description:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
	border-color: var(--gf-ctrl-desc-border-color-consent-focus);
	outline-color: var(--gf-ctrl-outline-color-focus);
	outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-primary);
	--gf-local-radius: var(--gf-ctrl-btn-radius);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-primary);
	--gf-local-border-style: var(--gf-ctrl-btn-border-style-primary);
	--gf-local-border-width: var(--gf-ctrl-btn-border-width-primary);
	--gf-local-border-block-start: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-border-block-end: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-border-inline-start: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-border-inline-end: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-shadow: var(--gf-ctrl-btn-shadow);
	--gf-local-color: var(--gf-ctrl-btn-color-primary);
	--gf-local-column-gap: var(--gf-ctrl-btn-icon-gap);
	--gf-local-cursor: pointer;
	--gf-local-display: inline-flex;
	--gf-local-font-style: var(--gf-ctrl-btn-font-style);
	--gf-local-font-weight: var(--gf-ctrl-btn-font-weight);
	--gf-local-font-size: var(--gf-ctrl-btn-font-size);
	--gf-local-font-family: var(--gf-ctrl-btn-font-family);
	--gf-local-height: auto;
	--gf-local-letter-spacing: var(--gf-ctrl-btn-letter-spacing);
	--gf-local-line-height: var(--gf-ctrl-btn-line-height);
	--gf-local-min-height: var(--gf-ctrl-btn-size);
	--gf-local-min-width: auto;
	--gf-local-opacity: var(--gf-ctrl-btn-opacity);
	--gf-local-padding-y: var(--gf-ctrl-btn-padding-y);
	--gf-local-padding-x: var(--gf-ctrl-btn-padding-x);
	--gf-local-text-decoration: var(--gf-ctrl-btn-text-decoration);
	--gf-local-text-transform: var(--gf-ctrl-btn-text-transform);
	--gf-local-width: auto;
	align-items: center;
	-moz-column-gap: var(--gf-local-column-gap);
	column-gap: var(--gf-local-column-gap);
	cursor: var(--gf-local-cursor);
	justify-content: center;
	min-inline-size: var(--gf-local-min-width);
	opacity: var(--gf-local-opacity);
	text-align: center;
	-webkit-text-decoration: var(--gf-local-text-decoration);
	text-decoration: var(--gf-local-text-decoration);
	text-transform: var(--gf-local-text-transform);
	vertical-align: top;
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-primary);
	--gf-local-content: var(--gf-ctrl-btn-icon);
	--gf-local-font-size: var(--gf-ctrl-btn-icon-font-size);
	--gf-local-transition: var(--gf-ctrl-btn-icon-transition);
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--gf-local-color);
	content: var(--gf-local-content);
	font-size: var(--gf-local-font-size);
	transition: var(--gf-local-transition);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-hover-primary);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-hover-primary);
	--gf-local-shadow: var(--gf-ctrl-btn-shadow-hover);
	--gf-local-color: var(--gf-ctrl-btn-color-hover-primary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-hover-primary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-focus-primary);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-focus-primary);
	--gf-local-shadow: var(--gf-ctrl-btn-shadow-focus);
	--gf-local-color: var(--gf-ctrl-btn-color-focus-primary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-focus-primary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-disabled-primary);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-disabled-primary);
	--gf-local-shadow: var(--gf-ctrl-btn-shadow-disabled);
	--gf-local-color: var(--gf-ctrl-btn-color-disabled-primary);
	--gf-local-cursor: default;
	--gf-local-opacity: var(--gf-ctrl-btn-opacity-disabled);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-disabled-primary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-secondary);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-secondary);
	--gf-local-border-style: var(--gf-ctrl-btn-border-style-secondary);
	--gf-local-border-width: var(--gf-ctrl-btn-border-width-secondary);
	--gf-local-color: var(--gf-ctrl-btn-color-secondary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-secondary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-hover-secondary);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-hover-secondary);
	--gf-local-color: var(--gf-ctrl-btn-color-hover-secondary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:hover::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-hover-secondary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-focus-secondary);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-focus-secondary);
	--gf-local-color: var(--gf-ctrl-btn-color-focus-secondary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:focus::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-focus-secondary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-disabled-secondary);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-disabled-secondary);
	--gf-local-color: var(--gf-ctrl-btn-color-disabled-secondary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--secondary:disabled::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-disabled-secondary);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-ctrl);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-ctrl);
	--gf-local-border-style: var(--gf-ctrl-btn-border-style-ctrl);
	--gf-local-border-width: var(--gf-ctrl-btn-border-width-ctrl);
	--gf-local-color: var(--gf-ctrl-btn-color-ctrl);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-ctrl);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-hover-ctrl);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-hover-ctrl);
	--gf-local-color: var(--gf-ctrl-btn-color-hover-ctrl);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:hover::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-hover-ctrl);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-focus-ctrl);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-focus-ctrl);
	--gf-local-color: var(--gf-ctrl-btn-color-focus-ctrl);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:focus::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-focus-ctrl);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-disabled-ctrl);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-disabled-ctrl);
	--gf-local-color: var(--gf-ctrl-btn-color-disabled-ctrl);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--control:disabled::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-disabled-ctrl);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-simple);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-simple);
	--gf-local-border-width: var(--gf-ctrl-btn-border-width-simple);
	--gf-local-shadow: var(--gf-ctrl-btn-shadow-simple);
	--gf-local-color: var(--gf-ctrl-btn-color-simple);
	--gf-local-column-gap: 0;
	--gf-local-line-height: var(--gf-ctrl-btn-size-simple);
	--gf-local-min-height: var(--gf-ctrl-btn-size-simple);
	--gf-local-min-width: var(--gf-ctrl-btn-size-simple);
	--gf-local-padding-y: 0;
	--gf-local-padding-x: 0;
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-simple);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-hover-simple);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-hover-simple);
	--gf-local-shadow: var(--gf-ctrl-btn-shadow-hover-simple);
	--gf-local-color: var(--gf-ctrl-btn-color-hover-simple);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:hover::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-hover-simple);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-focus-simple);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-focus-simple);
	--gf-local-shadow: var(--gf-ctrl-btn-shadow-focus-simple);
	--gf-local-color: var(--gf-ctrl-btn-color-focus-simple);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:focus::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-focus-simple);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled {
	--gf-local-bg-color: var(--gf-ctrl-btn-bg-color-disabled-simple);
	--gf-local-border-color: var(--gf-ctrl-btn-border-color-disabled-simple);
	--gf-local-shadow: var(--gf-ctrl-btn-shadow-disabled-simple);
	--gf-local-color: var(--gf-ctrl-btn-color-disabled-simple);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled .dashicons::before, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::after, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--simple:disabled::before {
	--gf-local-color: var(--gf-ctrl-btn-icon-color-disabled-simple);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xs, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xs, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xs, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xs, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xs, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xs, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xs {
	--gf-local-font-size: var(--gf-ctrl-btn-font-size-xs);
	--gf-local-min-height: var(--gf-ctrl-btn-size-xs);
	--gf-local-padding-x: var(--gf-ctrl-btn-padding-x-xs);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-sm, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-sm, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-sm, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-sm, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-sm, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-sm, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-sm {
	--gf-local-font-size: var(--gf-ctrl-btn-font-size-sm);
	--gf-local-min-height: var(--gf-ctrl-btn-size-sm);
	--gf-local-padding-x: var(--gf-ctrl-btn-padding-x-sm);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-md, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-md, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-md, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-md, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-md, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-md, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-md {
	--gf-local-font-size: var(--gf-ctrl-btn-font-size-md);
	--gf-local-min-height: var(--gf-ctrl-btn-size-md);
	--gf-local-padding-x: var(--gf-ctrl-btn-padding-x-md);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-lg, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-lg, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-lg, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-lg, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-lg, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-lg, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-lg {
	--gf-local-font-size: var(--gf-ctrl-btn-font-size-lg);
	--gf-local-min-height: var(--gf-ctrl-btn-size-lg);
	--gf-local-padding-x: var(--gf-ctrl-btn-padding-x-lg);
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xl, .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xl, .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xl, .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xl, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xl, .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xl, .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).gform-theme-button--size-xl {
	--gf-local-font-size: var(--gf-ctrl-btn-font-size-xl);
	--gf-local-min-height: var(--gf-ctrl-btn-size-xl);
	--gf-local-padding-x: var(--gf-ctrl-btn-padding-x-xl);
}

.gform-theme--framework input[type=file]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-padding-x: var(--gf-ctrl-file-padding-x);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gform-theme--framework input[type=file]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover::file-selector-button {
	--gf-local-bg-color: var(--gf-ctrl-file-btn-bg-color-hover);
	--gf-local-border-inline-end-color: var(--gf-ctrl-file-btn-border-inline-end-color-hover);
	--gf-local-color: var(--gf-ctrl-file-btn-color-hover);
}

.gform-theme--framework input[type=file]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus::file-selector-button {
	--gf-local-bg-color: var(--gf-ctrl-file-btn-bg-color-focus);
	--gf-local-border-inline-end-color: var(--gf-ctrl-file-btn-border-inline-end-color-focus);
	--gf-local-color: var(--gf-ctrl-file-btn-color-focus);
}

.gform-theme--framework input[type=file]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):disabled::file-selector-button {
	--gf-local-bg-color: var(--gf-ctrl-file-btn-bg-color-disabled);
	--gf-local-border-inline-end-color: var(--gf-ctrl-file-btn-border-inline-end-color-disabled);
	--gf-local-color: var(--gf-ctrl-file-btn-color-disabled);
}

.gform-theme--framework input[type=file]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::file-selector-button {
	--gf-local-bg-color: var(--gf-ctrl-file-btn-bg-color);
	--gf-local-border-inline-end-color: var(--gf-ctrl-file-btn-border-inline-end-color);
	--gf-local-border-inline-end-style: var(--gf-ctrl-file-btn-border-inline-end-style);
	--gf-local-border-inline-end-width: var(--gf-ctrl-file-btn-border-inline-end-width);
	--gf-local-border-inline-end: var(--gf-local-border-inline-end-width) var(--gf-local-border-inline-end-style) var(--gf-local-border-inline-end-color);
	--gf-local-color: var(--gf-ctrl-file-btn-color);
	background-color: var(--gf-local-bg-color);
	block-size: 100%;
	border: 0;
	border-end-start-radius: var(--gf-ctrl-file-btn-radius);
	border-inline-end: var(--gf-local-border-inline-end);
	border-start-start-radius: var(--gf-ctrl-file-btn-radius);
	color: var(--gf-local-color);
	font-family: var(--gf-ctrl-file-btn-font-family);
	font-size: var(--gf-ctrl-file-btn-font-size);
	font-style: var(--gf-ctrl-file-btn-font-style);
	font-weight: var(--gf-ctrl-file-btn-font-weight);
	inset-block-start: calc(var(--gf-ctrl-border-width) * -1);
	letter-spacing: var(--gf-ctrl-file-btn-letter-spacing);
	line-height: var(--gf-ctrl-file-btn-line-height);
	margin-inline: var(--gf-ctrl-file-btn-margin-x);
	padding-block: 0;
	padding-inline: var(--gf-ctrl-file-btn-padding-x);
	position: relative;
	-webkit-text-decoration: var(--gf-ctrl-file-btn-text-decoration);
	text-decoration: var(--gf-ctrl-file-btn-text-decoration);
	text-transform: var(--gf-ctrl-file-btn-text-transform);
	transition: var(--gf-ctrl-file-btn-transition);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .gform_drop_area {
	--gf-local-height: var(--gf-ctrl-file-zone-height);
	--gf-local-radius: var(--gf-ctrl-file-zone-radius);
	--gf-local-border-style: var(--gf-ctrl-file-zone-border-style);
	--gf-local-color: var(--gf-ctrl-file-zone-color);
	--gf-local-font-weight: var(--gf-ctrl-file-zone-font-weight);
	--gf-local-line-height: var(--gf-ctrl-file-zone-line-height);
	--gf-local-padding-x: var(--gf-ctrl-file-zone-padding-x);
	--gf-local-padding-y: var(--gf-ctrl-file-zone-padding-y);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .gform_drop_area::before {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--gf-ctrl-file-zone-icon-color);
	content: var(--gf-icon-ctrl-file);
	display: block;
	font-size: var(--gf-ctrl-file-zone-icon-font-size);
	margin-block-end: var(--gf-ctrl-file-zone-icon-margin-y-end);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .gform_drop_instructions {
	margin-block-end: var(--gf-ctrl-file-zone-instructions-margin-y-end);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview_list {
	display: flex;
	flex-direction: column;
	gap: var(--gf-ctrl-file-prev-area-gap);
	margin-block-start: var(--gf-ctrl-file-prev-area-margin-y-start);
	width: 100%;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview_list:empty {
	margin-block-start: 0;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview {
	display: flex;
	flex-direction: column;
	font-family: var(--gf-ctrl-file-prev-font-family);
	font-size: var(--gf-ctrl-file-prev-font-size);
	font-style: var(--gf-ctrl-file-prev-font-style);
	font-weight: var(--gf-ctrl-file-prev-font-weight);
	gap: var(--gf-ctrl-file-prev-gap);
	letter-spacing: var(--gf-ctrl-file-prev-letter-spacing);
	line-height: var(--gf-ctrl-file-prev-line-height);
	position: relative;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_filename {
	color: var(--gf-ctrl-file-prev-name-color);
	line-height: var(--gf-ctrl-file-prev-name-line-height);
	overflow: var(--gf-ctrl-file-prev-name-overflow);
	padding-inline-end: var(--gf-ctrl-file-prev-name-padding-x-end);
	text-overflow: var(--gf-ctrl-file-prev-name-text-overflow);
	white-space: var(--gf-ctrl-file-prev-name-white-space);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_filesize {
	color: var(--gf-ctrl-file-prev-size-color);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_progress {
	align-items: center;
	display: flex;
	gap: var(--gf-ctrl-file-prog-ui-gap);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_progress::after {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	block-size: var(--gf-ctrl-file-prog-btn-icon-size);
	color: var(--gf-ctrl-file-prog-btn-icon-color-complete);
	content: var(--gf-icon-ctrl-file-completed);
	font-size: var(--gf-ctrl-file-prog-btn-icon-size);
	inline-size: var(--gf-ctrl-file-prog-btn-icon-size);
	min-inline-size: var(--gf-ctrl-file-prog-btn-icon-size);
	opacity: 0;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_progress_complete::after {
	opacity: 1;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_progressbar, .gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_progressbar_progress {
	block-size: var(--gf-ctrl-file-prog-bar-height);
	border-radius: var(--gf-ctrl-file-prog-bar-radius);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_progressbar {
	background-color: var(--gf-ctrl-file-prog-bar-bg-color);
	inline-size: 100%;
	position: relative;
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_progressbar_progress {
	background-color: var(--gf-ctrl-file-prog-bar-bg-color-loading);
	inline-size: 1%;
	position: absolute;
	transition: var(--gf-ctrl-file-prog-bar-transition);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_percent {
	color: var(--gf-ctrl-file-prog-text-color);
	font-size: var(--gf-ctrl-file-prog-text-font-size);
	min-inline-size: var(--gf-ctrl-file-prog-text-min-width);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_cancel, .gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gform_delete_file {
	inset-block-start: var(--gf-ctrl-file-prog-btn-inset-y-start);
	inset-inline-end: var(--gf-ctrl-file-prog-btn-inset-x-end);
	position: var(--gf-ctrl-file-prog-btn-position);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gform_delete_file .dashicons::before {
	--gf-ctrl-btn-icon: var(--gf-icon-ctrl-file-remove);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_cancel {
	--gf-local-font-size: var(--gf-ctrl-file-prog-btn-font-size-cancel);
}

.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview .gfield_fileupload_cancel::before {
	--gf-ctrl-btn-icon: var(--gf-icon-ctrl-file-cancel);
}

.gform-theme--framework.ui-datepicker {
	background-color: var(--gf-ctrl-date-picker-bg-color);
	border-radius: var(--gf-ctrl-date-picker-radius);
	box-shadow: var(--gf-ctrl-date-picker-shadow);
	display: none;
	inline-size: var(--gf-ctrl-date-picker-width);
	margin-block-start: var(--gf-ctrl-date-picker-margin-y-start);
	padding-block: var(--gf-ctrl-date-picker-padding-y);
	padding-inline: var(--gf-ctrl-date-picker-padding-x);
}

@media (min-width:640px) {
	.gform-theme--framework.ui-datepicker {
		inline-size: var(--gf-ctrl-date-picker-width-viewport-sm);
		padding-block: var(--gf-ctrl-date-picker-padding-y-viewport-sm);
		padding-inline: var(--gf-ctrl-date-picker-padding-x-viewport-sm);
	}
}

.gform-theme--framework.ui-datepicker .ui-datepicker-header {
	align-items: stretch;
	display: flex;
	margin-block: unset;
	margin-inline: unset;
	padding-block: 0;
	padding-inline: 0;
	position: unset;
}

.gform-theme--framework.ui-datepicker .ui-datepicker-next, .gform-theme--framework.ui-datepicker .ui-datepicker-prev {
	align-items: center;
	block-size: auto;
	cursor: pointer;
	display: flex;
	flex: none;
	inline-size: var(--gf-ctrl-date-picker-header-icons-width);
	inset: unset;
	justify-content: center;
	position: relative;
}

.gform-theme--framework.ui-datepicker .ui-datepicker-next::before, .gform-theme--framework.ui-datepicker .ui-datepicker-prev::before {
	--gf-local-color: var(--gf-ctrl-date-picker-header-icons-color);
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-image: none;
	border: none;
	color: var(--gf-local-color);
	font-size: var(--gf-ctrl-date-picker-header-icons-font-size);
	inset: unset;
	transform: unset;
}

.gform-theme--framework.ui-datepicker .ui-datepicker-prev::before {
	content: var(--gf-icon-ctrl-datepicker-left);
}

.gform-theme--framework.ui-datepicker .ui-datepicker-next {
	order: 1;
}

.gform-theme--framework.ui-datepicker .ui-datepicker-next::before {
	content: var(--gf-icon-ctrl-datepicker-right);
}

.gform-theme--framework.ui-datepicker .ui-datepicker-next-hover::before, .gform-theme--framework.ui-datepicker .ui-datepicker-prev-hover::before {
	--gf-local-color: var(--gf-ctrl-date-picker-header-icons-color-hover);
}

.gform-theme--framework.ui-datepicker .ui-datepicker-title {
	align-items: center;
	color: var(--gf-ctrl-date-picker-title-color);
	display: flex;
	flex: auto;
	font-size: var(--gf-ctrl-date-picker-title-font-size);
	font-weight: var(--gf-ctrl-date-picker-title-font-weight);
	gap: var(--gf-ctrl-date-picker-title-gap);
	line-height: var(--gf-ctrl-date-picker-title-line-height);
	margin-block: 0;
	margin-inline: var(--gf-ctrl-date-picker-title-margin-x);
}

@media (min-width:640px) {
	.gform-theme--framework.ui-datepicker .ui-datepicker-title {
		font-size: var(--gf-ctrl-date-picker-title-font-size-viewport-sm);
		gap: var(--gf-ctrl-date-picker-title-gap-viewport-sm);
		margin-inline: var(--gf-ctrl-date-picker-title-margin-x-viewport-sm);
	}
}

.gform-theme--framework.ui-datepicker select.ui-datepicker-month, .gform-theme--framework.ui-datepicker select.ui-datepicker-year {
	--gf-local-height: var(--gf-ctrl-size-sm);
	--gf-local-line-height: var(--gf-ctrl-size-sm);
	background-image: var(--gf-icon-ctrl-select);
	background-position: var(--gf-ctrl-select-icon-position);
	background-repeat: no-repeat;
	background-size: var(--gf-ctrl-select-icon-size);
	box-shadow: var(--gf-local-shadow);
	flex: auto;
	inline-size: auto;
	margin: 0;
	padding-inline: var(--gf-local-padding-x);
	text-align: var(--gf-ctrl-date-picker-dropdown-text-align);
}

.gform-theme--framework.ui-datepicker table {
	margin-block-end: 0;
	margin-block-start: 16px;
}

.gform-theme--framework.ui-datepicker table td, .gform-theme--framework.ui-datepicker table th {
	block-size: var(--gf-ctrl-date-picker-cell-height);
	color: var(--gf-ctrl-date-picker-cell-content-color);
	padding-block: var(--gf-ctrl-date-picker-cell-padding);
	padding-inline: var(--gf-ctrl-date-picker-cell-padding);
}

@media (min-width:640px) {
	.gform-theme--framework.ui-datepicker table td, .gform-theme--framework.ui-datepicker table th {
		block-size: var(--gf-ctrl-date-picker-cell-height-viewport-sm);
	}
}

.gform-theme--framework.ui-datepicker table th {
	font-size: var(--gf-ctrl-date-picker-head-cell-font-size);
	font-weight: var(--gf-ctrl-date-picker-head-cell-font-weight);
	line-height: var(--gf-ctrl-date-picker-head-cell-line-height);
	vertical-align: middle;
}

.gform-theme--framework.ui-datepicker table td {
	font-size: var(--gf-ctrl-date-picker-cell-font-size);
	font-weight: var(--gf-ctrl-date-picker-cell-font-weight);
	line-height: var(--gf-ctrl-date-picker-cell-line-height);
	padding-block: var(--gf-ctrl-date-picker-cell-padding-y);
}

@media (min-width:640px) {
	.gform-theme--framework.ui-datepicker table td {
		padding-block: var(--gf-ctrl-date-picker-cell-padding-y-viewport-sm);
	}
}

.gform-theme--framework.ui-datepicker table td:not(.ui-state-disabled) {
	cursor: pointer;
}

.gform-theme--framework.ui-datepicker table td a, .gform-theme--framework.ui-datepicker table td span {
	--gf-local-bg-color: transparent;
	--gf-local-border: 0;
	--gf-local-color: var(--gf-ctrl-date-picker-cell-content-color);
	align-items: center;
	background-color: var(--gf-local-bg-color);
	block-size: 100%;
	border: var(--gf-local-border);
	border-radius: var(--gf-ctrl-date-picker-cell-content-radius);
	color: var(--gf-local-color);
	display: flex;
	inline-size: var(--gf-ctrl-date-picker-cell-content-width);
	justify-content: center;
	text-decoration: none;
}

@media (min-width:640px) {
	.gform-theme--framework.ui-datepicker table td a, .gform-theme--framework.ui-datepicker table td span {
		inline-size: var(--gf-ctrl-date-picker-cell-content-width-viewport-sm);
	}
}

.gform-theme--framework.ui-datepicker table td:not(.ui-state-disabled):not(.ui-datepicker-current-day) a:hover {
	--gf-local-bg-color: var(--gf-ctrl-date-picker-cell-content-bg-color-hover);
	--gf-local-color: var(--gf-ctrl-date-picker-cell-content-color-hover);
}

.gform-theme--framework.ui-datepicker table td:not(.ui-state-disabled):not(.ui-datepicker-current-day) a:focus {
	--gf-local-border: var(--gf-ctrl-date-picker-cell-content-border);
}

.gform-theme--framework.ui-datepicker table .ui-state-disabled a, .gform-theme--framework.ui-datepicker table .ui-state-disabled span {
	--gf-local-bg-color: var(--gf-ctrl-date-picker-cell-content-bg-color-disabled);
	--gf-local-color: var(--gf-ctrl-date-picker-cell-content-color-disabled);
}

.gform-theme--framework.ui-datepicker table .ui-datepicker-today a, .gform-theme--framework.ui-datepicker table .ui-datepicker-today span {
	--gf-local-bg-color: var(--gf-ctrl-date-picker-cell-content-bg-color-hover);
	--gf-local-color: var(--gf-ctrl-date-picker-cell-content-color-hover);
}

.gform-theme--framework.ui-datepicker table .ui-datepicker-today.ui-state-disabled a, .gform-theme--framework.ui-datepicker table .ui-datepicker-today.ui-state-disabled span {
	--gf-local-bg-color: var(--gf-ctrl-date-picker-cell-content-bg-color-disabled);
	--gf-local-color: var(--gf-ctrl-date-picker-cell-content-color-disabled);
}

.gform-theme--framework.ui-datepicker table .ui-datepicker-current-day a, .gform-theme--framework.ui-datepicker table .ui-datepicker-current-day span {
	--gf-local-bg-color: var(--gf-ctrl-date-picker-cell-content-bg-color-selected);
	--gf-local-color: var(--gf-ctrl-date-picker-cell-content-color-selected);
}

.gform-theme--framework.ui-datepicker table .ui-datepicker-current-day a:focus, .gform-theme--framework.ui-datepicker table .ui-datepicker-current-day a:hover {
	--gf-local-color: var(--gf-ctrl-date-picker-cell-content-color-selected);
}

.gform-theme--framework.ui-datepicker table .ui-datepicker-current-day.ui-state-disabled a, .gform-theme--framework.ui-datepicker table .ui-datepicker-current-day.ui-state-disabled span {
	--gf-local-bg-color: var(--gf-ctrl-date-picker-cell-content-bg-color-disabled);
	--gf-local-color: var(--gf-ctrl-date-picker-cell-content-color-disabled);
}

.gform-theme--framework.ui-datepicker.ui-datepicker-rtl select.ui-datepicker-month, .gform-theme--framework.ui-datepicker.ui-datepicker-rtl select.ui-datepicker-year {
	background-position: var(--gf-ctrl-select-icon-position);
}

.gform-theme--framework.ui-datepicker.ui-datepicker-rtl .ui-datepicker-next::before, .gform-theme--framework.ui-datepicker.ui-datepicker-rtl .ui-datepicker-prev::before {
	transform: none;
}

.gform-theme--framework.ui-datepicker.ui-datepicker-rtl .ui-datepicker-prev::before {
	content: var(--gf-icon-ctrl-datepicker-right);
}

.gform-theme--framework.ui-datepicker.ui-datepicker-rtl .ui-datepicker-next::before {
	content: var(--gf-icon-ctrl-datepicker-left);
}

.gform-theme--framework .gfield:where(:not(.gfield--type-html):not(.gfield--type-section)) {
	line-height: 1;
}

.gform-theme--framework .gfield--type-address .copy_values_option_container {
	display: inline-grid;
	gap: var(--gf-field-choice-meta-space) 0;
	grid-template-columns: minmax(var(--gf-ctrl-choice-size), max-content) auto;
	margin-block-end: var(--gf-field-gap-y);
}

.gform-theme--framework .gfield--type-choice .gfield_checkbox, .gform-theme--framework .gfield--type-choice .gfield_radio {
	display: flex;
	flex-direction: column;
	gap: var(--gf-field-choice-gap);
}

.gform-theme--framework .gfield--type-choice.gfield--choice-align-horizontal .gfield_checkbox, .gform-theme--framework .gfield--type-choice.gfield--choice-align-horizontal .gfield_radio {
	flex-direction: row;
	flex-wrap: wrap;
	gap: var(--gf-field-choice-align-x-gap-y) var(--gf-field-choice-align-x-gap-x);
}

.gform-theme--framework .gfield--type-choice .gchoice, .gform-theme--framework .gfield--type-choice .ginput_container_consent {
	display: inline-grid;
	gap: var(--gf-field-choice-meta-space) 0;
	grid-template-columns: minmax(var(--gf-ctrl-choice-size), max-content) auto;
}

.gform-theme--framework .gfield--type-choice .gchoice br, .gform-theme--framework .gfield--type-choice .ginput_container_consent br {
	display: none;
}

.gform-theme--framework .gfield--type-choice .gchoice_other_control {
	--gf-local-width: auto;
	grid-column: span 2;
	max-inline-size: var(--gf-field-choice-other-ctrl-max-width);
}

.gform-theme--framework .gfield--type-choice .gfield-choice-toggle-all {
	align-self: self-start;
	inline-size: 100%;
}

.gform-theme--framework .gfield--type-choice .gfield_choice_all_toggle {
	justify-self: start;
}

.gform-theme--framework .gfield--type-image_choice .gfield_checkbox, .gform-theme--framework .gfield--type-image_choice .gfield_radio {
	flex-direction: row;
	flex-wrap: wrap;
	gap: var(--gf-field-img-choice-gap);
}

.gform-theme--framework .gfield--type-image_choice .gchoice {
	align-self: start;
	display: block;
	inline-size: var(--gf-field-img-choice-size);
	max-inline-size: var(--gf-field-img-choice-size);
	min-inline-size: var(--gf-field-img-choice-size);
	position: relative;
}

.gform-theme--framework .gfield--type-image_choice .gchoice:where([\:has\(input\:checked\)])::after {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	align-items: center;
	block-size: var(--gf-field-img-choice-check-ind-size);
	border-radius: var(--gf-field-img-choice-check-ind-radius);
	content: var(--gf-field-img-choice-check-ind-icon);
	display: flex;
	filter: var(--gf-field-img-choice-check-ind-shadow);
	font-size: var(--gf-field-img-choice-check-ind-icon-size);
	inline-size: var(--gf-field-img-choice-check-ind-size);
	justify-content: center;
	position: absolute;
	z-index: 5;
}

.gform-theme--framework .gfield--type-image_choice .gchoice:where([\:has\(input\:checked\)])::after {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	align-items: center;
	block-size: var(--gf-field-img-choice-check-ind-size);
	border-radius: var(--gf-field-img-choice-check-ind-radius);
	content: var(--gf-field-img-choice-check-ind-icon);
	display: flex;
	filter: var(--gf-field-img-choice-check-ind-shadow);
	font-size: var(--gf-field-img-choice-check-ind-icon-size);
	inline-size: var(--gf-field-img-choice-check-ind-size);
	justify-content: center;
	position: absolute;
	z-index: 5;
}

.gform-theme--framework .gfield--type-image_choice .gchoice:where(:has(input:checked))::after {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	align-items: center;
	block-size: var(--gf-field-img-choice-check-ind-size);
	border-radius: var(--gf-field-img-choice-check-ind-radius);
	content: var(--gf-field-img-choice-check-ind-icon);
	display: flex;
	filter: var(--gf-field-img-choice-check-ind-shadow);
	font-size: var(--gf-field-img-choice-check-ind-icon-size);
	inline-size: var(--gf-field-img-choice-check-ind-size);
	justify-content: center;
	position: absolute;
	z-index: 5;
}

.gform-theme--framework .gfield--type-image_choice .gfield-image-choice-wrapper-outer {
	display: block;
	min-block-size: 100%;
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice, .gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gfield-choice-image-wrapper {
	--gf-local-border-color: transparent;
	--gf-local-border-width: var(--gf-ctrl-border-width);
	--gf-local-border-style: var(--gf-ctrl-border-style);
	--gf-local-border-block-start: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-border-block-end: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-border-inline-start: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-border-inline-end: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-outline-color: var(--gf-ctrl-outline-color);
	--gf-local-outline-width: var(--gf-ctrl-outline-width);
	--gf-local-shadow: none;
	box-shadow: var(--gf-local-shadow);
	outline-color: var(--gf-local-outline-color);
	outline-offset: var(--gf-ctrl-outline-offset);
	outline-style: var(--gf-ctrl-outline-style);
	outline-width: var(--gf-local-outline-width);
	transition: var(--gf-transition-ctrl);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice, .gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gfield-choice-image-wrapper::before {
	border-block-end: var(--gf-local-border-block-end);
	border-block-start: var(--gf-local-border-block-start);
	border-inline-end: var(--gf-local-border-inline-end);
	border-inline-start: var(--gf-local-border-inline-start);
	border-radius: var(--gf-ctrl-radius);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice {
	--gf-local-bg-color: var(--gf-ctrl-bg-color);
	--gf-local-border-color: var(--gf-color-in-ctrl-light-darker);
	--gf-local-shadow: var(--gf-field-img-choice-shadow);
	background-color: var(--gf-local-bg-color);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice .gform-field-label {
	--gf-local-color: var(--gf-ctrl-color);
	color: var(--gf-local-color);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:hover {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-hover);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:hover .gform-field-label {
	--gf-local-color: var(--gf-ctrl-color-hover);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:focus-within {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-focus);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:focus-within .gform-field-label {
	--gf-local-color: var(--gf-ctrl-color-focus);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice[\:has\(.gfield-choice-input\:disabled\)] {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-disabled);
	--gf-local-border-color: var(--gf-ctrl-border-color-disabled);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:has(.gfield-choice-input:disabled) {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-disabled);
	--gf-local-border-color: var(--gf-ctrl-border-color-disabled);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice[\:has\(.gfield-choice-input\:disabled\)] .gform-field-label {
	--gf-local-color: var(--gf-ctrl-color-disabled);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:has(.gfield-choice-input:disabled) .gform-field-label {
	--gf-local-color: var(--gf-ctrl-color-disabled);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:where([\:has\(input\:checked\)])::after {
	background-color: var(--gf-field-img-choice-card-check-ind-bg-color);
	color: var(--gf-field-img-choice-card-check-ind-icon-color);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:where(:has(input:checked))::after {
	background-color: var(--gf-field-img-choice-card-check-ind-bg-color);
	color: var(--gf-field-img-choice-card-check-ind-icon-color);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card.gfield_error .gchoice {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-error);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card.gfield_error .gchoice .gform-field-label {
	--gf-local-color: var(--gf-ctrl-color-error);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gfield-image-choice-wrapper-outer {
	padding-block: var(--gf-field-img-choice-card-space);
	padding-inline: var(--gf-field-img-choice-card-space);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gfield-choice-image-no-image {
	background-color: var(--gf-field-img-choice-card-placeholder-bg-color);
	color: var(--gf-field-img-choice-card-placeholder-color);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gchoice:where([\:has\(input\:checked\)])::after {
	background-color: var(--gf-field-img-choice-no-card-check-ind-bg-color);
	color: var(--gf-field-img-choice-no-card-check-ind-icon-color);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gchoice:where(:has(input:checked))::after {
	background-color: var(--gf-field-img-choice-no-card-check-ind-bg-color);
	color: var(--gf-field-img-choice-no-card-check-ind-icon-color);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gfield-choice-image-wrapper::before {
	content: "";
	display: block;
	inset-block: 0;
	inset-inline: 0;
	position: absolute;
	transition: var(--gf-transition-ctrl);
	z-index: 1;
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gfield-choice-image-no-image {
	background-color: var(--gf-field-img-choice-no-card-placeholder-bg-color);
	color: var(--gf-field-img-choice-no-card-placeholder-color);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:hover, .gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gchoice:hover .gfield-choice-image-wrapper {
	--gf-local-shadow: var(--gf-field-img-choice-shadow-hover);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:focus-within, .gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gchoice:focus-within .gfield-choice-image-wrapper {
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
	--gf-local-outline-color: var(--gf-ctrl-outline-color-focus);
	--gf-local-outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice[\:has\(.gfield-choice-input\:disabled\)], .gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gchoice[\:has\(.gfield-choice-input\:disabled\)] .gfield-choice-image-wrapper {
	--gf-local-shadow: none;
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-card .gchoice:has(.gfield-choice-input:disabled), .gform-theme--framework .gfield--type-image_choice.gfield--image-choice-appearance-no-card .gchoice:has(.gfield-choice-input:disabled) .gfield-choice-image-wrapper {
	--gf-local-shadow: none;
}

.gform-theme--framework .gfield--type-image_choice .gchoice[\:has\(.gfield-choice-input\:disabled\)] .gfield-choice-image-wrapper {
	opacity: var(--gf-field-img-choice-ctrl-opacity-disabled);
}

.gform-theme--framework .gfield--type-image_choice .gchoice:has(.gfield-choice-input:disabled) .gfield-choice-image-wrapper {
	opacity: var(--gf-field-img-choice-ctrl-opacity-disabled);
}

.gform-theme--framework .gfield--type-image_choice.gfield_error.gfield--image-choice-appearance-card .gchoice, .gform-theme--framework .gfield--type-image_choice.gfield_error.gfield--image-choice-appearance-no-card .gfield-choice-image-wrapper {
	--gf-local-border-color: var(--gf-ctrl-border-color-error);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-square .gfield-choice-image-wrapper {
	border-radius: var(--gf-field-img-choice-radius-square);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-square .gfield-choice-image-wrapper::before {
	border-radius: var(--gf-field-img-choice-radius-square);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-square.gfield--image-choice-appearance-card .gchoice:where([\:has\(input\:checked\)])::after {
	inset-block-start: calc(var(--gf-field-img-choice-card-space) + 10px);
	inset-inline-end: calc(var(--gf-field-img-choice-card-space) + 10px);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-square.gfield--image-choice-appearance-card .gchoice:where(:has(input:checked))::after {
	inset-block-start: calc(var(--gf-field-img-choice-card-space) + 10px);
	inset-inline-end: calc(var(--gf-field-img-choice-card-space) + 10px);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-square.gfield--image-choice-appearance-no-card .gchoice:where([\:has\(input\:checked\)])::after {
	inset-block-start: 10px;
	inset-inline-end: 10px;
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-square.gfield--image-choice-appearance-no-card .gchoice:where(:has(input:checked))::after {
	inset-block-start: 10px;
	inset-inline-end: 10px;
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-circle .gfield-choice-image-wrapper {
	border-radius: var(--gf-field-img-choice-radius-round);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-circle .gfield-choice-image-wrapper::before {
	border-radius: var(--gf-field-img-choice-radius-round);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-circle.gfield--image-choice-appearance-card .gchoice:where([\:has\(input\:checked\)])::after {
	inset-block-start: var(--gf-field-img-choice-card-space);
	inset-inline-end: var(--gf-field-img-choice-card-space);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-circle.gfield--image-choice-appearance-card .gchoice:where(:has(input:checked))::after {
	inset-block-start: var(--gf-field-img-choice-card-space);
	inset-inline-end: var(--gf-field-img-choice-card-space);
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-circle.gfield--image-choice-appearance-no-card .gchoice:where([\:has\(input\:checked\)])::after {
	inset-block-start: 0;
	inset-inline-end: 0;
}

.gform-theme--framework .gfield--type-image_choice.gfield--image-choice-style-circle.gfield--image-choice-appearance-no-card .gchoice:where(:has(input:checked))::after {
	inset-block-start: 0;
	inset-inline-end: 0;
}

.gform-theme--framework .gfield--type-image_choice .gfield-choice-image-wrapper {
	aspect-ratio: var(--gf-field-img-choice-aspect-ratio);
	margin-block-end: var(--gf-field-img-choice-margin-y-end);
	opacity: var(--gf-field-img-choice-ctrl-opacity);
	overflow: hidden;
	position: relative;
}

.gform-theme--framework .gfield--type-image_choice .gfield-choice-image-no-image {
	block-size: 100%;
	display: block;
	inline-size: 100%;
	position: relative;
}

.gform-theme--framework .gfield--type-image_choice .gfield-choice-image-no-image::before {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: var(--gf-icon-ctrl-img-choice-placeholder);
	font-size: var(--gf-field-img-choice-placeholder-icon-font-size);
	inset-block-start: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

.gform-theme--framework .gfield--type-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-theme--framework .gfield--type-image_choice .gfield-choice-image {
	block-size: 100% !important;
	display: block;
	inline-size: 100%;
	max-block-size: 100%;
	max-inline-size: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.gform-theme--framework .gfield--type-image_choice .gfield-image-choice-wrapper-inner {
	display: inline-grid;
	gap: var(--gf-field-choice-meta-space) 0;
	grid-template-columns: minmax(var(--gf-ctrl-choice-size), max-content) auto;
}

.gform-theme--framework .gfield--type-image_choice .ginput_container_image_choice--label-hide .gchoice .gfield-choice-image-wrapper {
	margin-block-end: 0;
}

.gform-theme--framework .gfield--type-image_choice .ginput_container_image_choice--label-hide .gchoice .gfield-choice-input, .gform-theme--framework .gfield--type-image_choice .ginput_container_image_choice--label-hide .gchoice .gfield-image-choice-wrapper-inner, .gform-theme--framework .gfield--type-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-theme--framework .gfield--type-image_choice .ginput_container_image_choice--input-hide .gchoice .gform-field-label {
	--gf-local-margin-x: 0;
}

.gform-theme--framework .gfield--type-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-theme--framework .gfield--type-image_choice .gchoice_other_control {
	margin-block-start: var(--gf-field-img-choice-other-ctrl-margin-y-start);
	max-inline-size: 100%;
}

.gform-theme--framework .gfield--input-type-datepicker .ginput_container_date {
	align-content: flex-start;
	align-items: center;
	display: flex;
}

.gform-theme--framework .gfield--input-type-datepicker .ginput_container_date input {
	--gf-local-width: auto;
}

.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date img, .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date::after, .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date img, .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date::after {
	margin-inline-start: calc(var(--gf-ctrl-padding-x) * -1);
	pointer-events: none;
	transform: translateX(-100%);
	transition: var(--gf-field-date-icon-transition);
}

html[dir=rtl] .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date img, html[dir=rtl] .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date::after, html[dir=rtl] .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date img, html[dir=rtl] .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date::after {
	order: 1;
	transform: translateX(100%);
}

.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date input, .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date input {
	--gf-local-padding-x: var(--gf-ctrl-padding-x) var(--gf-field-date-ctrl-padding-x-end);
}

.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date img {
	display: none !important;
}

.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date::after {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--gf-field-date-icon-color);
	content: var(--gf-icon-ctrl-datepicker);
	display: inline-block;
	font-size: var(--gf-icon-font-size);
	inset-block-start: 0;
	inset-inline-start: 0;
}

.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date:focus-within::after, .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date:where([\:has\(input\:hover\)])::after {
	color: var(--gf-field-date-icon-color-hover);
}

.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date:focus-within::after, .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date:where(:has(input:hover))::after {
	color: var(--gf-field-date-icon-color-hover);
}

.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date img {
	max-block-size: var(--gf-field-date-custom-icon-max-height);
	max-inline-size: var(--gf-field-date-custom-icon-max-width);
	opacity: var(--gf-field-date-custom-icon-opacity);
}

.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date:focus-within img, .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date:where([\:has\(input\:hover\)]) img {
	opacity: var(--gf-field-date-custom-icon-opacity-hover);
}

.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date:focus-within img, .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-custom-icon .ginput_container_date:where(:has(input:hover)) img {
	opacity: var(--gf-field-date-custom-icon-opacity-hover);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield:where(.gfield--type-list,.gfield--input-type-list) button.add_list_item, .gform-theme--framework.gform-theme.gform_wrapper .gfield:where(.gfield--type-list,.gfield--input-type-list) button.delete_list_item {
	--gf-local-height: var(--gf-field-list-btn-size);
	--gf-local-radius: var(--gf-field-list-btn-radius);
	--gf-local-column-gap: 0;
	--gf-local-font-size: var(--gf-field-list-btn-font-size);
	--gf-local-letter-spacing: 0;
	--gf-local-line-height: 1;
	--gf-local-min-height: auto;
	--gf-local-padding-y: var(--gf-field-list-btn-padding-y);
	--gf-local-padding-x: var(--gf-field-list-btn-padding-x);
	--gf-local-width: var(--gf-field-list-btn-size);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield:where(.gfield--type-list,.gfield--input-type-list) button.add_list_item::before {
	--gf-local-content: var(--gf-icon-ctrl-list-item-add);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield:where(.gfield--type-list,.gfield--input-type-list) button.delete_list_item::before {
	--gf-local-content: var(--gf-icon-ctrl-list-item-remove);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield:where(.gfield--type-list,.gfield--input-type-list) .gfield_list_icons img {
	background-color: transparent !important;
	background-position: 0;
	background-repeat: no-repeat;
	background-size: 16px 16px !important;
	block-size: 16px !important;
	border: none !important;
	inline-size: 16px !important;
	opacity: .5;
	transition: var(--gf-transition-ctrl);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield:where(.gfield--type-list,.gfield--input-type-list) .gfield_list_icons a:focus img, .gform-theme--framework.gform-theme.gform_wrapper .gfield:where(.gfield--type-list,.gfield--input-type-list) .gfield_list_icons a:hover img {
	opacity: 1;
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield:where(.gfield--type-list,.gfield--input-type-list) .gfield_url_icon_disabled {
	opacity: 1;
	pointer-events: none;
}

.gform-theme--framework .gf_page_steps, .gform-theme--framework .gf_progressbar_wrapper {
	margin-block-end: var(--gf-field-pg-prog-margin-y-end);
}

.gform-theme--framework .gf_progressbar_title, .gform-theme--framework .gf_step_label, .gform-theme--framework .gf_step_number {
	--gf-local-color: var(--gf-field-pg-prog-color);
	--gf-local-font-family: var(--gf-field-pg-prog-font-family);
	--gf-local-font-size: var(--gf-field-pg-prog-font-size);
	--gf-local-font-style: var(--gf-field-pg-prog-font-style);
	--gf-local-font-weight: var(--gf-field-pg-prog-font-weight);
	--gf-local-letter-spacing: var(--gf-field-pg-prog-letter-spacing);
	--gf-local-line-height: var(--gf-field-pg-prog-line-height);
	--gf-local-text-transform: none;
	color: var(--gf-local-color);
	font-family: var(--gf-local-font-family);
	font-size: var(--gf-local-font-size);
	font-style: var(--gf-local-font-style);
	font-weight: var(--gf-local-font-weight);
	letter-spacing: var(--gf-local-letter-spacing);
	line-height: var(--gf-local-line-height);
	text-transform: var(--gf-local-text-transform);
}

.gform-theme--framework .gf_progressbar_title {
	margin-block-end: var(--gf-field-pg-prog-title-margin-y-end);
}

.gform-theme--framework .gf_progressbar {
	background-color: var(--gf-field-pg-prog-bar-bg-color);
	border-radius: var(--gf-field-pg-prog-bar-radius);
}

.gform-theme--framework .gf_progressbar 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-theme--framework .gf_progressbar .gf_progressbar_percentage {
	block-size: var(--gf-field-pg-prog-bar-height);
	border-radius: var(--gf-field-pg-prog-bar-radius);
}

.gform-theme--framework .gf_progressbar .percentbar_blue {
	background-color: var(--gf-field-pg-prog-bar-bg-color-blue);
}

.gform-theme--framework .gf_progressbar .percentbar_gray {
	background-color: var(--gf-field-pg-prog-bar-bg-color-gray);
}

.gform-theme--framework .gf_progressbar .percentbar_green {
	background-color: var(--gf-field-pg-prog-bar-bg-color-green);
}

.gform-theme--framework .gf_progressbar .percentbar_orange {
	background-color: var(--gf-field-pg-prog-bar-bg-color-orange);
}

.gform-theme--framework .gf_progressbar .percentbar_red {
	background-color: var(--gf-field-pg-prog-bar-bg-color-red);
}

.gform-theme--framework .gf_progressbar .percentbar_spring {
	background: var(--gf-field-pg-prog-bar-bg-gradient-spring);
}

.gform-theme--framework .gf_progressbar .percentbar_blues {
	background: var(--gf-field-pg-prog-bar-bg-gradient-blues);
}

.gform-theme--framework .gf_progressbar .percentbar_rainbow {
	background: var(--gf-field-pg-prog-bar-bg-gradient-rainbow);
}

.gform-theme--framework .gf_step {
	align-items: center;
	display: flex;
	gap: var(--gf-field-pg-steps-step-gap);
	position: relative;
}

.gform-theme--framework .gf_step_label {
	--gf-local-text-transform: var(--gf-field-pg-prog-text-transform);
}

.gform-theme--framework .gf_step_hidden {
	display: none;
}

.gform-theme--framework .gf_step_number {
	--gf-local-bg-color: var(--gf-field-pg-steps-number-bg-color);
	--gf-local-border-color: var(--gf-field-pg-steps-number-border-color);
	--gf-local-border: var(--gf-field-pg-steps-number-border-width) var(--gf-field-pg-steps-number-border-style) var(--gf-local-border-color);
	--gf-local-radius: var(--gf-field-pg-steps-number-radius);
	--gf-local-color: var(--gf-field-pg-steps-number-color);
	background-color: var(--gf-local-bg-color);
	block-size: var(--gf-field-pg-steps-number-size);
	border: var(--gf-local-border);
	border-radius: var(--gf-local-radius);
	color: var(--gf-local-color);
	display: inline-grid;
	inline-size: var(--gf-field-pg-steps-number-size);
	min-inline-size: var(--gf-field-pg-steps-number-size);
	align-content: center;
	justify-content: center;
	place-content: center;
}

.gform-theme--framework .gf_step_active .gf_step_number {
	--gf-local-bg-color: var(--gf-field-pg-steps-number-bg-color-active);
	--gf-local-border-color: var(--gf-field-pg-steps-number-border-color-active);
	--gf-local-color: var(--gf-field-pg-steps-number-color-active);
}

.gform-theme--framework .gf_step_completed .gf_step_number {
	--gf-local-bg-color: var(--gf-field-pg-steps-number-bg-color-complete);
	--gf-local-border-color: var(--gf-field-pg-steps-number-border-color-complete);
	--gf-local-color: var(--gf-field-pg-steps-number-color-complete);
}

.gform-theme--framework .gf_step_completed .gf_step_number::after {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--gf-field-pg-steps-number-bg-color-complete);
	block-size: var(--gf-field-pg-steps-number-size);
	border: var(--gf-field-pg-steps-number-border-width) var(--gf-field-pg-steps-number-border-style) var(--gf-field-pg-steps-number-border-color-complete);
	border-radius: var(--gf-field-pg-steps-number-radius);
	color: var(--gf-field-pg-steps-number-color-complete);
	content: var(--gf-icon-ctrl-pg-numbers-complete);
	display: inline-grid;
	font-size: var(--gf-field-pg-steps-icon-font-size);
	inline-size: var(--gf-field-pg-steps-number-size);
	inset-block-start: 0;
	inset-inline-start: 0;
	align-content: center;
	justify-content: center;
	place-content: center;
	position: absolute;
}

.gform-theme--framework .gfield--type-password input[type=password] {
	--gf-local-padding-x: var(--gf-ctrl-padding-x) var(--gf-field-pwd-ctrl-padding-x-end);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button {
	--gf-local-color: var(--gf-ctrl-icon-color);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button .dashicons, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button .dashicons::before, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button::after, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button::before {
	--gf-local-color: var(--gf-ctrl-icon-color);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:hover {
	--gf-local-color: var(--gf-ctrl-icon-color-hover);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:hover .dashicons, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:hover .dashicons::before, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:hover::after, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:hover::before {
	--gf-local-color: var(--gf-ctrl-icon-color-hover);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:focus {
	--gf-local-color: var(--gf-ctrl-icon-color-focus);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:focus .dashicons, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:focus .dashicons::before, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:focus::after, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:focus::before {
	--gf-local-color: var(--gf-ctrl-icon-color-focus);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:disabled {
	--gf-local-color: var(--gf-ctrl-icon-color-disabled);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:disabled .dashicons, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:disabled .dashicons::before, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:disabled::after, .gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button:disabled::before {
	--gf-local-color: var(--gf-ctrl-icon-color-disabled);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button .dashicons.dashicons-visibility::before {
	--gf-local-content: var(--gf-icon-ctrl-pwd-hidden);
}

.gform-theme--framework.gform-theme.gform_wrapper .gfield--type-password button.gform_show_password.gform-theme-button .dashicons.dashicons-hidden::before {
	--gf-local-content: var(--gf-icon-ctrl-pwd-visible);
}

.gform-theme--framework .gfield_password_strength {
	--gf-local-bg-color: var(--gf-field-pwd-str-bg-color);
	--gf-local-border-color: var(--gf-field-pwd-str-border-color);
	--gf-local-border-style: var(--gf-field-pwd-str-border-style);
	--gf-local-border-width: var(--gf-field-pwd-str-border-width);
	--gf-local-border: var(--gf-local-border-width) var(--gf-local-border-style) var(--gf-local-border-color);
	--gf-local-color: var(--gf-field-pwd-str-color);
	background-color: var(--gf-local-bg-color);
	border: var(--gf-local-border);
	border-radius: var(--gf-field-pwd-str-radius);
	color: var(--gf-local-color);
	font-family: var(--gf-field-pwd-str-font-family);
	font-size: var(--gf-field-pwd-str-font-size);
	font-style: var(--gf-field-pwd-str-font-style);
	font-weight: var(--gf-field-pwd-str-font-weight);
	letter-spacing: var(--gf-field-pwd-str-letter-spacing);
	line-height: var(--gf-field-pwd-str-line-height);
	margin-block-start: var(--gf-field-pwd-str-margin-y-start);
	padding-block: var(--gf-field-pwd-str-padding-y);
	padding-inline: var(--gf-field-pwd-str-padding-x);
	position: relative;
	text-align: var(--gf-field-pwd-str-text-align);
	transition: var(--gf-field-pwd-str-transition);
}

.gform-theme--framework .gfield_password_strength::after, .gform-theme--framework .gfield_password_strength::before {
	--gf-local-bg-color: var(--gf-field-pwd-str-ind-bg-color);
	--gf-local-height: var(--gf-field-pwd-str-ind-height);
	--gf-local-radius: var(--gf-field-pwd-str-ind-radius);
	--gf-local-content: var(--gf-field-pwd-str-ind-content);
	--gf-local-inset-y-start: var(--gf-field-pwd-str-ind-inset-y-start);
	--gf-local-inset-x-start: var(--gf-field-pwd-str-ind-inset-x-start);
	--gf-local-position: var(--gf-field-pwd-str-ind-position);
	--gf-local-transform: var(--gf-field-pwd-str-ind-transform);
	--gf-local-transition: none;
	--gf-local-width: var(--gf-field-pwd-str-ind-width);
	background-color: var(--gf-local-bg-color);
	block-size: var(--gf-local-height);
	border-radius: var(--gf-local-radius);
	content: var(--gf-local-content);
	display: var(--gf-field-pwd-str-ind-display);
	inline-size: var(--gf-local-width);
	inset-block-start: var(--gf-local-inset-y-start);
	inset-inline-start: var(--gf-local-inset-x-start);
	position: var(--gf-local-position);
	transform: var(--gf-local-transform);
	transition: var(--gf-local-transition);
}

.gform-theme--framework .gfield_password_strength::after {
	--gf-local-transition: var(--gf-field-pwd-str-ind-transition);
	--gf-local-width: var(--gf-field-pwd-str-ind-width-blank);
}

.gform-theme--framework .gfield_password_strength.mismatch {
	--gf-local-bg-color: var(--gf-field-pwd-str-bg-color-mismatch);
	--gf-local-border-color: var(--gf-field-pwd-str-border-color-mismatch);
	--gf-local-color: var(--gf-field-pwd-str-color-mismatch);
}

.gform-theme--framework .gfield_password_strength.mismatch::after {
	--gf-local-bg-color: var(--gf-field-pwd-str-ind-bg-color-mismatch);
	--gf-local-width: var(--gf-field-pwd-str-ind-width-mismatch);
}

.gform-theme--framework .gfield_password_strength.short {
	--gf-local-bg-color: var(--gf-field-pwd-str-bg-color-short);
	--gf-local-border-color: var(--gf-field-pwd-str-border-color-short);
	--gf-local-color: var(--gf-field-pwd-str-color-short);
}

.gform-theme--framework .gfield_password_strength.short::after {
	--gf-local-bg-color: var(--gf-field-pwd-str-ind-bg-color-short);
	--gf-local-width: var(--gf-field-pwd-str-ind-width-short);
}

.gform-theme--framework .gfield_password_strength.bad {
	--gf-local-bg-color: var(--gf-field-pwd-str-bg-color-bad);
	--gf-local-border-color: var(--gf-field-pwd-str-border-color-bad);
	--gf-local-color: var(--gf-field-pwd-str-color-bad);
}

.gform-theme--framework .gfield_password_strength.bad::after {
	--gf-local-bg-color: var(--gf-field-pwd-str-ind-bg-color-bad);
	--gf-local-width: var(--gf-field-pwd-str-ind-width-bad);
}

.gform-theme--framework .gfield_password_strength.good {
	--gf-local-bg-color: var(--gf-field-pwd-str-bg-color-good);
	--gf-local-border-color: var(--gf-field-pwd-str-border-color-good);
	--gf-local-color: var(--gf-field-pwd-str-color-good);
}

.gform-theme--framework .gfield_password_strength.good::after {
	--gf-local-bg-color: var(--gf-field-pwd-str-ind-bg-color-good);
	--gf-local-width: var(--gf-field-pwd-str-ind-width-good);
}

.gform-theme--framework .gfield_password_strength.strong {
	--gf-local-bg-color: var(--gf-field-pwd-str-bg-color-strong);
	--gf-local-border-color: var(--gf-field-pwd-str-border-color-strong);
	--gf-local-color: var(--gf-field-pwd-str-color-strong);
}

.gform-theme--framework .gfield_password_strength.strong::after {
	--gf-local-bg-color: var(--gf-field-pwd-str-ind-bg-color-strong);
	--gf-local-width: var(--gf-field-pwd-str-ind-width-strong);
}

.gform-theme--framework .gfield--type-product .ginput_product_price {
	--gf-local-color: var(--gf-field-prod-price-color);
}

.gform-theme--framework .gfield--type-product input[type].ginput_product_price {
	--gf-local-display: inline-block;
}

.gform-theme--framework .gfield--type-product .ginput_quantity {
	--gf-local-width: var(--gf-field-prod-quant-width);
	margin-block-end: var(--gf-field-prod-quant-margin-y-end);
}

.gform-theme--framework .gfield--type-product .ginput_container_product_calculation, .gform-theme--framework .gfield--type-product .ginput_container_singleproduct {
	display: flex;
	flex-direction: column;
}

.gform-theme--framework .gfield--type-product .ginput_container_product_calculation .ginput_product_price_wrapper, .gform-theme--framework .gfield--type-product .ginput_container_singleproduct .ginput_product_price_wrapper {
	order: 2;
}

.gform-theme--framework .gfield--type-repeater .gfield_repeater_cell:not(:first-child) {
	margin-block-start: var(--gf-field-repeater-gap-y);
}

.gform-theme--framework .gfield--type-repeater .gfield_repeater_item+.gfield_repeater_item {
	margin-block-start: var(--gf-field-repeater-gap-y);
	position: relative;
}

.gform-theme--framework .gfield--type-repeater .gfield_repeater_item+.gfield_repeater_item::before {
	background-color: var(--gf-field-repeater-separator-color);
	block-size: 1px;
	content: "";
	display: block;
	inline-size: 100%;
	inset-block-start: calc(0px - ( var(--gf-field-repeater-gap-y) / 2 ));
	position: absolute;
}

.gform-theme--framework .gfield--type-repeater .gfield_repeater_buttons {
	margin-block-start: var(--gf-form-footer-margin-y-start);
}

.gform-theme--framework .gfield--type-repeater .gfield_repeater_buttons .gform-theme-button.gform-theme-button--secondary.add_repeater_item {
	margin-inline-end: var(--gf-field-repeater-btn-inline-gap);
}

.gform-theme--framework .gfield--type-repeater .gfield_repeater_wrapper {
	border-inline-start: var(--gf-field-repeater-nested-border-size) var(--gf-field-repeater-nested-border-style) var(--gf-field-repeater-nested-border-color);
	border-inline-start-style: var(--gf-field-repeater-nested-border-style);
	padding-inline-start: var(--gf-field-repeater-nested-padding-x-start);
}

.gform-theme--framework .gfield--type-repeater .gfield_valid .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield--type-repeater .gfield_valid input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield--type-repeater .gfield_valid select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield--type-repeater .gfield_valid select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield--type-repeater .gfield_valid textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	--gf-local-bg-color: var(--gf-ctrl-bg-color);
	--gf-local-border-color: var(--gf-ctrl-border-color);
	--gf-local-color: var(--gf-ctrl-color);
}

.gform-theme--framework:where(:not(.gform_editor)) .gfield--type-section {
	border-block-end: var(--gf-field-section-border-width) var(--gf-field-section-border-style) var(--gf-field-section-border-color);
	padding-block-end: var(--gf-field-section-padding-y-end);
}

.gform-theme--framework .gform_validation_errors {
	background-color: var(--gf-form-validation-bg-color);
	border: var(--gf-form-validation-border-width) var(--gf-form-validation-border-style) var(--gf-form-validation-border-color);
	border-radius: var(--gf-form-validation-radius);
	box-shadow: var(--gf-form-validation-shadow);
	display: flex;
	flex-direction: column;
	gap: var(--gf-form-validation-gap);
	margin-block: var(--gf-form-validation-margin-y);
	padding-block: var(--gf-form-validation-padding-y);
	padding-inline: var(--gf-form-validation-padding-x);
}

.gform-theme--framework .gform_validation_errors:focus {
	border-color: var(--gf-form-validation-border-color-focus);
	outline: var(--gf-form-validation-outline-focus);
	outline-offset: var(--gf-ctrl-outline-offset);
}

.gform-theme--framework .gform_validation_errors .gform_submission_error {
	color: var(--gf-form-validation-heading-color);
	display: flex;
	flex-direction: column;
	font-family: var(--gf-form-validation-heading-font-family);
	font-size: var(--gf-form-validation-heading-font-size);
	font-weight: var(--gf-form-validation-heading-font-weight);
	gap: var(--gf-form-validation-heading-gap);
	line-height: var(--gf-form-validation-heading-line-height);
}

.gform-theme--framework .gform_validation_errors .gform-icon {
	font-family: var(--gf-icon-font-family) !important;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	speak: never;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--gf-form-validation-heading-icon-bg-color);
	block-size: var(--gf-form-validation-heading-icon-size);
	border-color: var(--gf-form-validation-heading-icon-border-color);
	border-radius: var(--gf-form-validation-heading-icon-radius);
	border-style: var(--gf-form-validation-heading-icon-border-style);
	border-width: var(--gf-form-validation-heading-icon-border-width);
	color: var(--gf-form-validation-heading-icon-color);
	display: inline-grid;
	font-size: var(--gf-form-validation-heading-icon-font-size);
	inline-size: var(--gf-form-validation-heading-icon-size);
	align-content: center;
	justify-content: center;
	place-content: center;
}

.gform-theme--framework .gform_validation_errors .gform-icon::before {
	content: var(--gf-icon-tooltip-error);
}

.gform-theme--framework .gform_validation_errors ol {
	color: var(--gf-form-validation-summary-color);
	font-family: var(--gf-form-validation-summary-font-family);
	font-size: var(--gf-form-validation-summary-font-size);
	font-weight: var(--gf-form-validation-summary-font-weight);
	line-height: var(--gf-form-validation-summary-line-height);
	list-style-type: disc;
	margin-block: 0;
	margin-inline: 0;
	padding-inline: var(--gf-form-validation-padding-x);
}

.gform-theme--framework .gform_validation_errors ol li+li {
	margin-block-start: var(--gf-form-validation-summary-margin-y-start);
}

.gform-theme--framework .gform_validation_errors ol a {
	border-color: transparent;
	border-radius: var(--gf-form-validation-radius);
	border-style: var(--gf-ctrl-border-style);
	border-width: var(--gf-ctrl-border-width);
	color: var(--gf-form-validation-summary-color);
	outline-color: var(--gf-ctrl-outline-color);
	outline-offset: var(--gf-ctrl-outline-offset);
	outline-style: var(--gf-ctrl-outline-style);
	outline-width: var(--gf-ctrl-outline-width);
	-webkit-text-decoration: var(--gf-form-validation-summary-item-link-text-decoration);
	text-decoration: var(--gf-form-validation-summary-item-link-text-decoration);
	transition: var(--gf-ctrl-transition);
}

.gform-theme--framework .gform_validation_errors ol a:focus {
	border-color: var(--gf-form-validation-border-color-focus);
	outline-color: var(--gf-form-validation-outline-color-focus);
	outline-width: var(--gf-ctrl-outline-width-focus);
}

@media (min-width:640px) {
	.gform-theme--framework .gform_validation_errors .gform_submission_error {
		align-items: center;
		flex-direction: row;
	}
	
	.gform-theme--framework .gform_validation_errors ol {
		padding-inline: var(--gf-form-validation-summary-padding-x);
	}
}

.gform-theme--framework .gform_required_legend .gfield_required {
	color: var(--gf-color-danger);
}

.gform-theme--framework .gform-loader {
	border-block-end-color: var(--gf-form-spinner-fg-color);
	border-block-start-color: var(--gf-form-spinner-bg-color);
	border-inline-end-color: var(--gf-form-spinner-bg-color);
	border-inline-start-color: var(--gf-form-spinner-fg-color);
}

.gform-theme--framework .gform_save_link svg {
	display: none;
}

.gform-theme--framework .gform_save_link::before {
	--gf-ctrl-btn-icon: var(--gf-icon-ctrl-save-continue);
}

.gform-theme--framework .field_description_below .gfield_description:where(:not(.gfield_creditcard_warning_message):not(.field_validation_above .gfield_validation_message):not(.ginput_counter_tinymce):not(.gfield_choice_limit_message)) {
	margin-block-start: var(--gf-desc-space);
}

.gform-theme--framework .field_description_below .gfield_description:where(.gfield_creditcard_warning_message,.field_validation_above .gfield_validation_message) {
	margin-block-end: var(--gf-desc-space);
}

.gform-theme--framework .field_description_below.gfield--type-choice .gfield_description:where(:not(.gfield--has-description.field_validation_below .gfield_validation_message):not(.field_validation_above .gfield_validation_message):not(.gfield_choice_limit_message)) {
	margin-block-start: var(--gf-desc-choice-field-space);
}

.gform-theme--framework .field_description_below.gfield--type-choice .gfield_description:where(.gfield_choice_limit_message) {
	margin-block-end: var(--gf-desc-choice-field-space);
}

.gform-theme--framework .field_description_above .gfield_description:where([class=gfield_description],.gfield_creditcard_warning_message,.field_validation_above .gfield_validation_message) {
	margin-block-end: var(--gf-desc-space);
}

.gform-theme--framework .field_description_above .gfield_description:where(:not([class=gfield_description]):not(.gfield_creditcard_warning_message):not(.field_validation_above .gfield_validation_message):not(.ginput_counter_tinymce):not(.gfield_consent_description):not(.gfield_choice_limit_message)) {
	margin-block-start: var(--gf-desc-space);
}

.gform-theme--framework .field_description_above.gfield--type-choice:where([\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(:not(.field_validation_above.gfield_error [class=gfield_description]):not(.gfield_validation_message)) {
	margin-block-end: var(--gf-desc-choice-field-space);
}

.gform-theme--framework .field_description_above.gfield--type-choice:where(:not(:has(.gfield_choice_limit_message))) .gfield_description:where(:not(.field_validation_above.gfield_error [class=gfield_description]):not(.gfield_validation_message)) {
	margin-block-end: var(--gf-desc-choice-field-space);
}

.gform-theme--framework .field_description_above.gfield--type-choice .gfield_description:where(.gfield_choice_limit_message) {
	margin-block-end: var(--gf-desc-choice-field-space);
}

.gform-theme--framework .field_validation_above.gfield--type-choice:where([\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(.gfield_validation_message) {
	margin-block-end: var(--gf-desc-choice-field-space);
}

.gform-theme--framework .field_validation_above.gfield--type-choice:where(:not(:has(.gfield_choice_limit_message))) .gfield_description:where(.gfield_validation_message) {
	margin-block-end: var(--gf-desc-choice-field-space);
}

.gform-theme--framework .field_validation_below.gfield--type-choice .gfield_description:where(.field_description_above .gfield_validation_message) {
	margin-block-start: var(--gf-desc-choice-field-space);
}

.gform-theme--framework .left_label .gfield_description:where(:not(.ginput_counter_tinymce):not(.gfield_creditcard_warning_message):not(.field_validation_above .gfield_validation_message):not(.gfield_choice_limit_message)), .gform-theme--framework .right_label .gfield_description:where(:not(.ginput_counter_tinymce):not(.gfield_creditcard_warning_message):not(.field_validation_above .gfield_validation_message):not(.gfield_choice_limit_message)) {
	margin-block: var(--gf-desc-space) 0;
}

@media (min-width:640px) {
	.gform-theme--framework .left_label .gfield_description:where(:not(.ginput_counter_tinymce):not(.gfield_creditcard_warning_message):not(.field_validation_above .gfield_validation_message):not(.gfield_choice_limit_message)), .gform-theme--framework .right_label .gfield_description:where(:not(.ginput_counter_tinymce):not(.gfield_creditcard_warning_message):not(.field_validation_above .gfield_validation_message):not(.gfield_choice_limit_message)) {
		margin-block: 0;
		margin-inline: auto 0;
		padding-block-start: var(--gf-desc-space);
	}
}

.gform-theme--framework .left_label .gfield--type-choice .gfield_description:where(:not(.field_description_below.gfield--has-description .gfield_validation_message):not(.field_validation_above .gfield_validation_message):not(.gfield_choice_limit_message)), .gform-theme--framework .right_label .gfield--type-choice .gfield_description:where(:not(.field_description_below.gfield--has-description .gfield_validation_message):not(.field_validation_above .gfield_validation_message):not(.gfield_choice_limit_message)) {
	margin-block: var(--gf-desc-choice-field-space) 0;
}

@media (min-width:640px) {
	.gform-theme--framework .left_label .gfield--type-choice .gfield_description:where(:not(.field_description_below.gfield--has-description .gfield_validation_message):not(.field_validation_above .gfield_validation_message):not(.gfield_choice_limit_message)), .gform-theme--framework .right_label .gfield--type-choice .gfield_description:where(:not(.field_description_below.gfield--has-description .gfield_validation_message):not(.field_validation_above .gfield_validation_message):not(.gfield_choice_limit_message)) {
		margin-block: 0;
		padding-block-start: var(--gf-desc-choice-field-space);
	}
}

.gform-theme--framework .left_label .gfield--type-choice .gfield_description:where(.gfield_choice_limit_message), .gform-theme--framework .right_label .gfield--type-choice .gfield_description:where(.gfield_choice_limit_message) {
	margin-block: 0 var(--gf-desc-choice-field-space);
}

@media (min-width:640px) {
	.gform-theme--framework .left_label .gfield--type-choice .gfield_description:where(.gfield_choice_limit_message), .gform-theme--framework .right_label .gfield--type-choice .gfield_description:where(.gfield_choice_limit_message) {
		margin-block: 0;
		padding-block: 0 var(--gf-desc-choice-field-space);
	}
}

.gform-theme--framework .left_label .field_description_above .gfield_description:where([class=gfield_description]), .gform-theme--framework .left_label .field_validation_above .gfield_description:where(.gfield_validation_message), .gform-theme--framework .right_label .field_description_above .gfield_description:where([class=gfield_description]), .gform-theme--framework .right_label .field_validation_above .gfield_description:where(.gfield_validation_message) {
	margin-block: 0 var(--gf-desc-space);
}

@media (min-width:640px) {
	.gform-theme--framework .left_label .field_description_above .gfield_description:where([class=gfield_description]), .gform-theme--framework .left_label .field_validation_above .gfield_description:where(.gfield_validation_message), .gform-theme--framework .right_label .field_description_above .gfield_description:where([class=gfield_description]), .gform-theme--framework .right_label .field_validation_above .gfield_description:where(.gfield_validation_message) {
		margin-block: 0;
		padding-block: 0 var(--gf-desc-space);
	}
}

.gform-theme--framework .left_label .field_description_above.gfield--type-choice:where(:not(.field_validation_above)[\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(:not(.gfield_validation_message)), .gform-theme--framework .left_label .field_validation_above.gfield--type-choice:where([\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(.gfield_validation_message), .gform-theme--framework .right_label .field_description_above.gfield--type-choice:where(:not(.field_validation_above)[\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(:not(.gfield_validation_message)), .gform-theme--framework .right_label .field_validation_above.gfield--type-choice:where([\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(.gfield_validation_message) {
	margin-block: 0 var(--gf-desc-choice-field-space);
}

.gform-theme--framework .left_label .field_description_above.gfield--type-choice:where(:not(.field_validation_above):not(:has(.gfield_choice_limit_message))) .gfield_description:where(:not(.gfield_validation_message)), .gform-theme--framework .left_label .field_validation_above.gfield--type-choice:where(:not(:has(.gfield_choice_limit_message))) .gfield_description:where(.gfield_validation_message), .gform-theme--framework .right_label .field_description_above.gfield--type-choice:where(:not(.field_validation_above):not(:has(.gfield_choice_limit_message))) .gfield_description:where(:not(.gfield_validation_message)), .gform-theme--framework .right_label .field_validation_above.gfield--type-choice:where(:not(:has(.gfield_choice_limit_message))) .gfield_description:where(.gfield_validation_message) {
	margin-block: 0 var(--gf-desc-choice-field-space);
}

@media (min-width:640px) {
	.gform-theme--framework .left_label .field_description_above.gfield--type-choice:where(:not(.field_validation_above)[\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(:not(.gfield_validation_message)), .gform-theme--framework .left_label .field_validation_above.gfield--type-choice:where([\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(.gfield_validation_message), .gform-theme--framework .right_label .field_description_above.gfield--type-choice:where(:not(.field_validation_above)[\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(:not(.gfield_validation_message)), .gform-theme--framework .right_label .field_validation_above.gfield--type-choice:where([\:not-has\(.gfield_choice_limit_message\)]) .gfield_description:where(.gfield_validation_message) {
		margin-block: 0;
		padding-block: 0 var(--gf-desc-choice-field-space);
	}
	
	.gform-theme--framework .left_label .field_description_above.gfield--type-choice:where(:not(.field_validation_above):not(:has(.gfield_choice_limit_message))) .gfield_description:where(:not(.gfield_validation_message)), .gform-theme--framework .left_label .field_validation_above.gfield--type-choice:where(:not(:has(.gfield_choice_limit_message))) .gfield_description:where(.gfield_validation_message), .gform-theme--framework .right_label .field_description_above.gfield--type-choice:where(:not(.field_validation_above):not(:has(.gfield_choice_limit_message))) .gfield_description:where(:not(.gfield_validation_message)), .gform-theme--framework .right_label .field_validation_above.gfield--type-choice:where(:not(:has(.gfield_choice_limit_message))) .gfield_description:where(.gfield_validation_message) {
		margin-block: 0;
		padding-block: 0 var(--gf-desc-choice-field-space);
	}
}

.gform-theme--framework .validation_above .gform-conversational__field-footer+.gfield_validation_message.gfield_description {
	margin-block-end: 0;
	margin-block-start: var(--gf-desc-space);
}

.gform-theme--framework .gfield_list_group_item::before, .gform-theme--framework .gform-field-label:where(:not([class*=gform-field-label--type-])) {
	--gf-local-margin-y: 0 var(--gf-label-space-primary);
}

.gform-theme--framework .gfield--type-choice.field_description_above.gfield--no-description:where(:not(.field_validation_above.gfield_error)[\:not-has\(.gfield_choice_limit_message\)]) .gform-field-label:where(:not([class*=gform-field-label--type-])), .gform-theme--framework .gfield--type-choice.field_description_below:where(:not(.field_validation_above.gfield_error)[\:not-has\(.gfield_choice_limit_message\)]) .gform-field-label:where(:not([class*=gform-field-label--type-])) {
	--gf-local-margin-y: 0 var(--gf-label-choice-field-space-primary);
}

.gform-theme--framework .gfield--type-choice.field_description_above.gfield--no-description:where(:not(.field_validation_above.gfield_error):not(:has(.gfield_choice_limit_message))) .gform-field-label:where(:not([class*=gform-field-label--type-])), .gform-theme--framework .gfield--type-choice.field_description_below:where(:not(.field_validation_above.gfield_error):not(:has(.gfield_choice_limit_message))) .gform-field-label:where(:not([class*=gform-field-label--type-])) {
	--gf-local-margin-y: 0 var(--gf-label-choice-field-space-primary);
}

@media (min-width:640px) {
	.gform-theme--framework .left_label .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)), .gform-theme--framework .right_label .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)) {
		--gf-local-margin-y: 0;
		--gf-local-margin-x: 0;
		padding-inline-end: var(--gf-label-space-primary);
	}
}

.gform-theme--framework .gform-field-label--type-inline {
	--gf-local-margin-x: var(--gf-label-space-x-secondary) 0;
	--gf-local-margin-y: var(--gf-label-space-y-secondary) 0;
}

.gform-theme--framework .field_sublabel_below .gform-field-label--type-sub {
	--gf-local-margin-y: var(--gf-label-space-tertiary) 0;
}

.gform-theme--framework .field_sublabel_above .gform-field-label--type-sub {
	--gf-local-margin-y: 0 var(--gf-label-space-tertiary);
}

.gform-theme--framework .gfield--type-stripe_creditcard-card .StripeElement--focus, .gform-theme--framework .gfield--type-stripe_creditcard-card .StripeElement--focus.StripeElement--invalid {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-focus);
	--gf-local-border-color: var(--gf-ctrl-border-color-focus);
	--gf-local-color: var(--gf-ctrl-color-focus);
	--gf-local-outline-color: var(--gf-ctrl-outline-color-focus);
	--gf-local-outline-width: var(--gf-ctrl-outline-width-focus);
}

.gform-theme--framework .gfield--type-stripe_creditcard-card .StripeElement--invalid {
	--gf-local-bg-color: var(--gf-ctrl-bg-color-error);
	--gf-local-border-color: var(--gf-ctrl-border-color-error);
	--gf-local-color: var(--gf-ctrl-color-error);
}
