/* ========================================== */
/* GRAVITY FORMS – BASE WRAPPER & TYPOGRAPHY */
/* ========================================== */

body .gform_wrapper {
	--gap: 1.5rem;
	--input-border: #D1D5DB;
	--input-focus: #305CDE;
	--error-color: #c91d21;
	--success-bg: #e6ffed;
	--label-color: #333;
	--font-size: .875rem;
	--check-size: 1.5rem;
	--check-radius: 0.25rem;
	--check-inner-size: 0.625rem;
	font-size: var(--font-size);
	line-height: var(--line-height-500, 1.5);
	margin-top: 1rem;
	text-align: left;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	max-width: 34rem;
}

body .gform_wrapper .gfield_required {
	color: #c91d21;
	margin-left: 0.125rem;
}
/* ========================================== */
/* INPUTS / TEXTAREA / SELECT – BASE */
/* ========================================== */

body .gform_wrapper input[type="text"],
body .gform_wrapper input[type="email"],
body .gform_wrapper input[type="url"],
body .gform_wrapper input[type="password"],
body .gform_wrapper input[type="tel"],
body .gform_wrapper input[type="number"],
body .gform_wrapper input[type="search"],
body .gform_wrapper textarea,
body .gform_wrapper select {
	padding: 0 1rem;
	height: 2.75rem;
	line-height: 2.75rem;
	box-shadow: none;
	border-radius: 6px;
	width: 100%;
	border: 1px solid #D1D5DB;
	font-family: var(--font-family-base);
	font-size: 1rem;
}
body .gform_wrapper input[type="text"]:focus,
body .gform_wrapper input[type="email"]:focus,
body .gform_wrapper input[type="url"]:focus,
body .gform_wrapper input[type="password"]:focus,
body .gform_wrapper input[type="tel"]:focus,
body .gform_wrapper input[type="number"]:focus,
body .gform_wrapper input[type="search"]:focus,
body .gform_wrapper textarea:focus,
body .gform_wrapper select:focus {
	border-color: rgba(0, 143, 207, 1);
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 143, 207, 0.4);
}

/* ========================================== */
/* SELECT – CUSTOM CHEVRON */
/* ========================================== */

body .gform_wrapper .gfield-select {
	padding-right: 2.5rem !important;
	background-color: #ffffff !important;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 0.75rem center !important;
	background-size: 1rem;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}

/* ========================================== */
/* PLACEHOLDERS */
/* ========================================== */

body .gform_wrapper .gfield-input::placeholder,
body .gform_wrapper .gfield-textarea::placeholder {
	color: #8b929c;
	opacity: 1;
}

/* ========================================== */
/* CHECKBOXES & RADIOS */
/* ========================================== */

body .gform_wrapper .gfield_checkbox,
body .gform_wrapper .gfield_radio {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top:0.5rem;
}
body .gform_wrapper .gfield_checkbox-row {
	flex-direction: row;
}
body .gform_wrapper .gfield_checkbox .gchoice,
body .gform_wrapper .gfield_radio .gchoice {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	font-size: var(--font-size);
	line-height: var(--line-height-400, 1.4);
	user-select: none;
}

body .gform_wrapper .gfield_checkbox .gchoice_15_11_1 {
	align-items: start;
}
body .gform_wrapper .gfield_checkbox input[type="checkbox"],
body .gform_wrapper .gfield_radio input[type="radio"] {
	width: var(--check-size);
	height: var(--check-size);
	appearance: none;
	border: 1px solid var(--input-border);
	background-color: var(--color-white, #fff);
	cursor: pointer;
	position: relative;
	display: inline-block;
	flex-shrink: 0;
	margin: 0;
	margin-top: 0.125rem;
}
body .gform_wrapper .gfield_radio input[type="radio"] {
	border-radius: var(--check-size);
}
body .gform_wrapper .gfield_checkbox input[type="checkbox"] {
	border-radius: var(--check-radius);
}
body .gform_wrapper .gfield_checkbox input[type="checkbox"]:hover,
body .gform_wrapper .gfield_radio input[type="radio"]:hover {
	border-color: var(--input-focus);
}
body .gform_wrapper .gfield_checkbox input[type="checkbox"]:checked,
body .gform_wrapper .gfield_radio input[type="radio"]:checked {
	border-color: var(--input-focus);
}
body .gform_wrapper .gfield_checkbox input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	width: 6px;
	height: 10px;
	border: solid var(--input-focus);
	border-width: 0 2px 2px 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%) rotate(45deg);
	pointer-events: none;
}
body .gform_wrapper .gfield_checkbox input[type="checkbox"]:checked::before {
	display: none;
}
body .gform_wrapper .gfield_radio input[type="radio"]:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.875rem;
	height: 0.875rem;
	background-color: var(--input-focus);
	border-radius: 0.875rem;
	transform: translate(-50%, -50%);
}

/* ========================================== */
/* GRID LAYOUT */
/* ========================================== */

body .gform_wrapper .gform_fields {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	column-gap: 1rem;
	grid-row-gap: 0.875rem !important;
}
body .gform_wrapper #gform_fields_11_2 {
	grid-template-columns: 1fr;
}
body .gform_wrapper .gfield--width-half {
	grid-column: span 1;
}
body .gform_wrapper .gfield--width-full {
	grid-column: span 2;
}
body .gform_wrapper fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}
/*
@media (max-width: 768px) {
	.gfield--width-half,
	.gfield--width-full { grid-column: span 1 !important; }
}
*/

/* ========================================== */
/* BUTTONS */
/* ========================================== */

body .gform_wrapper .gform_button,
body .gform_wrapper .gform_next_button,
body .gform_wrapper .gform_previous_button,
body .gform_wrapper button,
body .gform_wrapper input[type="submit"],
body .gform_wrapper button[type="submit"] {
	border-radius: 100px !important;
	padding-right: 1.5rem !important;
	padding-left: 1.5rem !important;
	background: #008fcf !important;
	color: #fff !important;
	border: none !important;
	font-size: 1rem !important;
	cursor: pointer !important;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out !important;
	width: 100% !important;
	padding: 0 1rem !important;
	height: 2.5rem !important;
	margin-top: .5rem !important;
}
body .gform_wrapper .gform_next_button:hover,
body .gform_wrapper .gform_previous_button:hover,
body .gform_wrapper .gform_button:hover,
body .gform_wrapper button:hover,
body .gform_wrapper input[type="submit"]:hover,
body .gform_wrapper button[type="submit"]:hover {
	background: var(--ac-button-focus) !important;
}
body .gform_wrapper .gform_next_button:focus,
body .gform_wrapper .gform_previous_button:focus,
body .gform_wrapper .gform_button:focus,
body .gform_wrapper button:focus,
body .gform_wrapper input[type="submit"]:focus,
body .gform_wrapper button[type="submit"]:focus {
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(0, 143, 207, 0.4);
}
/*
body .gform_wrapper .gform_button--custom {
	position: relative;
	border-radius: 0.5rem;
	height: 3.5rem;
	min-width: 15rem;
	padding: 0 2rem;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	background: radial-gradient(circle at top left, #c91d21, #6e1517);
	transition: background 0.3s;
}
body .gform_wrapper .gform_button--custom:hover {
	background: radial-gradient(circle at top left, #6e1517, #c91d21);
}
*/

/* ========================================== */
/* CONFIRMATION / ERROR / VALIDATION */
/* ========================================== */

body .gform_wrapper .gform_confirmation_message {
	padding: 1rem 1rem;
	border-radius: 0.5rem;
	font-weight: 400;
	margin-bottom: var(--gap);
	margin-top: 2rem;
	border: 1px solid #fff;
	background: #F8FAFC;
	text-align: center;
	color: #162438;
	font-size: 1.125rem;
	min-height: 300px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	backdrop-filter: blur(10px);
}
.contact-form .gform_confirmation_message {
	background: rgba(0, 0, 0, 0.2);
	min-height: 452px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 10px 10px 10px rgba(22, 36, 56, 0.2);
}
.awp-comp-col-2-p6q6-bd8e41acd81fbb8770487799d97e16299 .gform_confirmation_message {
	background: rgba(255, 255, 255, 0.2);
}
.gform_confirmation_message p {
	margin: 0;
}
.validation_message {
	color: var(--error-color);
	font-size: 0.875rem;
	margin-top: 0.25rem;
}
body .gform_wrapper .gfield.gfield_error input,
body .gform_wrapper .gfield.gfield_error textarea,
body .gform_wrapper .gfield.gfield_error select {
	border: 1px solid var(--error-color) !important;
	background: rgba(201, 29, 33, 0.1) !important;
}
body .gform_wrapper .gform_validation_errors {
	display: none;
}

/* ========================================== */
/* MISC */
/* ========================================== */

body .gform_wrapper .gfield--type-honeypot {
	display: none !important;
	visibility: hidden;
	height: 0;
	margin: 0;
	padding: 0;
}
/*
body .gform_wrapper .gform_wrapper fieldset { border: 0; padding: 0; margin-bottom: 0; }
body .gform_wrapper .gform_wrapper fieldset legend { font-size: var(--font-size); font-weight: 600; margin-bottom: 0.5rem; }
*/

body .gform_wrapper #field_15_11 legend {
	display: none;
}
body .gform_wrapper .gform_required_legend {
	display: none;
}
body .gform_wrapper #deferred-checkbox-1_11 {
	display: flex;
	gap: var(--space-50, 0.25rem);
}
body .gform_wrapper #deferred-checkbox-1_11 label {
	display: flex;
	gap: var(--space-125, 0.75rem);
	font-size: var(--font-size-50, 0.75rem);
	line-height: var(--line-height-500, 1.5);
}
body .gform_wrapper #choice_1_11_0 {
	border: 0;
	border-radius: .125rem !important;
	padding: var(--space-50, 0.25rem) !important;
}

/* ========================================== */
/* PAGE 469 – STEPPER */
/* ========================================== */

.awp-comp-col-1-pd1-b57dd03549d9d1736a817f9e70686c653 {
	background: url('/wp-content/uploads/2025/09/get-a-demo-bk-2.png');
	background-size: cover;
	background-position: center;
	min-height: 800px;
}
body #gform_wrapper_1 {
	margin: 0 auto;
	width: 100%;
}
body #gform_wrapper_1 .gform_fields label,
body #gform_wrapper_1 .gform_fields .gform-field-label {
	display: block;
	color: #fff;
	font-weight: 500;
	margin-bottom: 0.5rem;
}
body #gform_wrapper_1 .gform_fields .gchoice label {
	margin-bottom: 0;
	font-weight: 400;
	font-size: .875rem;
	line-height: 1;
}
body #gform_wrapper_1 .gf_page_steps {
	display: flex;
	justify-content: center !important;
	gap: 16px !important;
	max-width: 24rem !important;
	margin: 0 auto 2rem !important;
}
body #gform_wrapper_1 .gf_step {
	gap: 0 !important;
	flex: 1 !important;
	width: 100% !important;
}
body #gform_wrapper_1 .gf_step_number {
	width: 100% !important;
	font-size: 0 !important;
	height: 5px !important;
	border-radius: 6px !important;
	background: rgba(17, 35, 55, 0.3) !important;
	border: 0 !important;
	display: block;
}
body #gform_wrapper_1 .gf_step_active .gf_step_number {
	background: #008FCF !important;
}
body #gform_wrapper_1 .gf_step_completed .gf_step_number {
	background: #021F3F !important
}
body #gform_wrapper_1 .gf_step_completed .gf_step_number::after {
	display: none !important;
}
body #gform_wrapper_1 .gform-page-footer {
	margin-top: 1rem;
}

body .gform_wrapper .awpFormHeader {
	text-align: center;
	margin-bottom: .5rem;
}
body .gform_wrapper .awpFormHeader h1 {
	margin-bottom: 0.5rem !important;
	font-size: var(--font-size-350) !important;
	color: #fff !important;
}
body .gform_wrapper .awpFormHeader h2 {
	min-height: 3rem !important;
	font-size: var(--font-size-165) !important;
	font-weight: 500 !important;
	max-width: 20rem !important;
	margin: 0 auto 1rem !important;
	color: #059ee3;
	line-height: 1.2
}
body .gform_wrapper .awpFormHeader p {
	color: #fff;
}

/* ========================================= */
/* NOMINATE */
/* ========================================= */

.nominate-workplace-box__content #gform_wrapper_2 .gform_fields,
.nominate-workplace-box__content #gform_wrapper_3 .gform_fields {
	display: grid;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.nominate-workplace-box__content #gform_wrapper_2 .gform_fields,
	.nominate-workplace-box__content #gform_wrapper_3 .gform_fields {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
}
.nominate-workplace-box__content #gform_wrapper_2,
.nominate-workplace-box__content #gform_wrapper_3 {
	max-width: 100%;
}
.nominate-workplace-box__content #gform_wrapper_2 .gform_fields label,
.nominate-workplace-box__content #gform_wrapper_3 .gform_fields label {
	display: none !important;
}
.nominate-workplace-box__content #gform_submit_button_2,
.nominate-workplace-box__content #gform_submit_button_3,
#gform_submit_button_4 {
	background: #F4C954 !important;
	font-size: 1rem !important;
	color: #162438 !important;
	font-weight: 700 !important;
	height: 2.75rem !important;
	margin-top: 0 !important;
}
.nominate-workplace-box__content #gform_submit_button_2:hover,
.nominate-workplace-box__content #gform_submit_button_3:hover,
#gform_submit_button_4:hover,
.nominate-workplace-box__content #gform_submit_button_2:focus,
.nominate-workplace-box__content #gform_submit_button_3:focus,
#gform_submit_button_4:focus {
	background: #2563EB !important;
	color: #fff !important;
}
body #gform_wrapper_4 .gform_fields {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 1rem;
	row-gap: 1rem;
}
body #gform_wrapper_4 .gform_page_footer,
body #gform_wrapper_4 .gform_footer {
	display: none;
}
body #gform_wrapper_4 .gform_fields #field_4_1 label {
	display: none;
}
body #gform_wrapper_4 #gform_submit_button_4 {
	width: unset !important;
	padding-right: 3rem !important;
	padding-left: 3rem !important;
	height: 2.5rem !important;
	line-height: 2.5rem !important
}

/* ========================================= */
/* CHATBOX UI + FORM WRAPPER */
/* ========================================= */

#chatbox {
	position: relative;
	z-index: 9998;
}
#chatbox .floating-logo {
	box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.2), 0.25rem 0.375rem 1.25rem rgba(0, 0, 0, 0.19);
	height: 3.5rem;
	width: 3.5rem;
	bottom: 1.25rem;
	right: 1.25rem;
	position: fixed;
	border-radius: 50%;
	cursor: pointer;
	background: linear-gradient(135deg, #2563eb 0%, #305CDE 100%);
	z-index: 9998;
	overflow: hidden;
	border: 0;
	padding: 0;
}
#chatbox .floating-logo div {
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(/wp-content/themes/amazing-workplaces/wp_resources/wp_images/popup-open.svg);
	background-size: cover;
	height: 3.5rem;
	width: 3.5rem;
	animation: rotateLeft 0.5s linear;
}
#chatbox .floating-logo.active>div {
	background-image: url(/wp-content/themes/amazing-workplaces/wp_resources/wp_images/popup-close.svg);
	background-size: cover;
	animation: rotateRight 0.5s linear;
}
#chatbox .popup-box {
	position: fixed;
	bottom: 6.25rem;
	right: 1.25rem;
	width: 18.75rem;
	height: 25rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: var(--color-white, #fff);
	border-radius: 0.625rem;
	box-shadow: rgba(0, 18, 46, 0.16) 0px 0.5rem 2.25rem;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 5;
}
#chatbox .popup-box.popup-box-on {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
#chatbox .popup-form-container {
	padding: 1.25rem;
}
#chatbox .popup-form-container h3 {
	font-size: 1.125rem;
	margin: 0 0 0.25rem;
	text-align: center;
}
#chatbox .popup-form-container p {
	font-size: 0.875rem;
	margin: 0 0 0.5rem;
	text-align: center;
}
#chatbox .hrme-chat-icon {
	width: 3rem;
	height: 3rem;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
	display: inline-block;
	padding: 0;
}
@keyframes rotateLeft {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes rotateRight {
	from {
		transform: rotate(360deg);
	}
	to {
		transform: rotate(0deg);
	}
}
.gf-custom-honeypot {
	display: none !important;
}
.contact-form .button.btnMediumBlue {
	flex: 1;
}