/* ================================================================
   NextWave — Careers Page Hero
   ================================================================ */

.careers-hero {
	position: relative;
	width: 100%;
	height: 50vh;
	background-image: url('https://nextwavebpo.com/wp-content/uploads/background-careers-1.avif');
	background-size: cover;
	background-position: center;
	background-color: #07111f;
	display: flex;
	align-items: center;
	justify-content: center;
}

.careers-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(7, 17, 31, 0.62);
}

.careers-hero__title {
	position: relative;
	z-index: 1;
	font-size: clamp(2.8rem, 6vw, 5rem);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
	text-align: center;
	text-shadow:
		0 2px 4px  rgba(0, 0, 0, 0.5),
		0 8px 32px rgba(0, 0, 0, 0.45);
}

/* Override Elementor global h1 color */
body.page-template-page-careers .careers-hero .careers-hero__title,
body.page-template-page-vacantes .careers-hero .careers-hero__title {
	color: #ffffff !important;
	text-shadow:
		0 2px 4px  rgba(0, 0, 0, 0.5),
		0 8px 32px rgba(0, 0, 0, 0.45);
}

@media (max-width: 640px) {
	.careers-hero {
		min-height: 200px;
	}
}


/* ================================================================
   CAREERS — WHY WORK WITH US
   ================================================================ */

.careers-benefits {
	background-color: #07111f;
	padding: 96px 32px;
}

.careers-benefits__container {
	max-width: 1180px;
	margin: 0 auto;
}

.careers-benefits__header {
	text-align: center;
	margin-bottom: 64px;
}

.careers-benefits__eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #00b4d8;
	margin-bottom: 16px;
}

.careers-benefits__title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 20px;
}

.careers-benefits__intro {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.6);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Grid */

.careers-benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* Card */

.careers-benefit-card {
	background-color: #0d1f35;
	border: 1px solid rgba(0, 180, 216, 0.12);
	border-radius: 12px;
	padding: 36px 28px;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
	            border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.careers-benefit-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 180, 216, 0.4);
}

.careers-benefit-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(0, 180, 216, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00b4d8;
	margin-bottom: 24px;
	flex-shrink: 0;
}

.careers-benefit-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 12px;
	line-height: 1.3;
}

/* Override Elementor global h2/h3 color */
body.page-template-page-careers .careers-benefits .careers-benefits__title,
body.page-template-page-vacantes .careers-benefits .careers-benefits__title {
	color: #ffffff !important;
}

body.page-template-page-careers .careers-benefits .careers-benefit-card__title,
body.page-template-page-vacantes .careers-benefits .careers-benefit-card__title {
	color: #ffffff !important;
}

.careers-benefit-card__desc {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin: 0;
}

/* Responsive */

@media (max-width: 1024px) {
	.careers-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.careers-benefits {
		padding: 64px 20px;
	}

	.careers-benefits__grid {
		grid-template-columns: 1fr;
	}

	.careers-benefits__header {
		margin-bottom: 40px;
	}

	body.page-template-page-careers .careers-benefits .careers-benefits__title,
	body.page-template-page-vacantes .careers-benefits .careers-benefits__title {
		font-size: clamp(22px, 5vw, 28px);
		line-height: 1.3;
	}
}


/* ================================================================
   CAREERS — OPEN POSITIONS
   ================================================================ */

.careers-jobs {
	background-color: #0a1929;
	padding: 96px 32px;
}

.careers-jobs__container {
	max-width: 1180px;
	margin: 0 auto;
}

/* Section header */

.careers-jobs__header {
	text-align: center;
	margin-bottom: 64px;
}

.careers-jobs__eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #00b4d8;
	margin-bottom: 16px;
}

.careers-jobs__title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 20px;
}

.careers-jobs__intro {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.6);
	max-width: 480px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Layout: aside + list */

.careers-jobs__layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 40px;
	align-items: start;
}

/* Categories aside */

.careers-jobs__aside {
	position: sticky;
	top: 100px;
}

.careers-jobs__categories {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.careers-jobs__category {
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.55);
	padding: 10px 16px;
	border-radius: 8px;
	border-left: 2px solid transparent;
	cursor: default;
	transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.careers-jobs__category--active {
	color: #00b4d8;
	border-left-color: #00b4d8;
	background-color: rgba(0, 180, 216, 0.07);
}

/* Job cards list */

.careers-jobs__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Job card */

.careers-job-card {
	display: flex;
	align-items: center;
	gap: 20px;
	background-color: #0d1f35;
	border: 1px solid rgba(0, 180, 216, 0.1);
	border-radius: 12px;
	padding: 24px 28px;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
	            border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.careers-job-card:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 180, 216, 0.35);
}

.careers-job-card--priority {
	border-color: rgba(0, 180, 216, 0.3);
}

/* Icon */

.careers-job-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(0, 180, 216, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00b4d8;
	flex-shrink: 0;
}

/* Content */

.careers-job-card__content {
	flex: 1;
	min-width: 0;
}

.careers-job-card__title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}

.careers-job-card__title {
	font-size: clamp(1.2rem, 1.6vw, 1.6rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	line-height: 1.3;
}

.careers-job-card__priority {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #07111f;
	background-color: #00b4d8;
	padding: 2px 8px;
	border-radius: 4px;
}

.careers-job-card__desc {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
	margin: 0 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.careers-job-card__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.careers-job-card__location {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.45);
}

.careers-job-card__category-tag {
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(0, 180, 216, 0.8);
}

/* Actions */

.careers-job-card__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	flex-shrink: 0;
}

.careers-job-card__badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 3px 12px;
	white-space: nowrap;
}

.careers-job-card__btn {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	color: #00b4d8;
	border: 1px solid rgba(0, 180, 216, 0.4);
	border-radius: 8px;
	padding: 8px 20px;
	white-space: nowrap;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.careers-job-card__btn:hover {
	background-color: #00b4d8;
	color: #ffffff;
	border-color: #00b4d8;
}

/* Elementor overrides */

body.page-template-page-careers .careers-jobs .careers-jobs__title,
body.page-template-page-careers .careers-jobs .careers-job-card__title,
body.page-template-page-vacantes .careers-jobs .careers-jobs__title,
body.page-template-page-vacantes .careers-jobs .careers-job-card__title {
	color: #ffffff !important;
}

body.page-template-page-careers .careers-job-card h2,
body.page-template-page-careers .careers-job-card h3,
body.page-template-page-careers .careers-job-card h4,
body.page-template-page-vacantes .careers-job-card h2,
body.page-template-page-vacantes .careers-job-card h3,
body.page-template-page-vacantes .careers-job-card h4 {
	color: #ffffff !important;
}

body.page-template-page-careers .careers-job-card__btn:hover,
body.page-template-page-vacantes .careers-job-card__btn:hover {
	color: #ffffff !important;
}

body.page-template-page-careers .careers-job-card__btn:hover span,
body.page-template-page-vacantes .careers-job-card__btn:hover span {
	color: #ffffff !important;
}

/* Responsive */

@media (max-width: 1024px) {
	.careers-jobs__layout {
		grid-template-columns: 180px 1fr;
		gap: 28px;
	}
}

@media (max-width: 768px) {
	.careers-jobs__layout {
		grid-template-columns: 1fr;
	}

	.careers-jobs__aside {
		position: static;
	}

	.careers-jobs__categories {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
	}

	.careers-jobs__category {
		border-left: none;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 20px;
		padding: 6px 14px;
		font-size: 0.82rem;
	}

	.careers-jobs__category--active {
		border-color: #00b4d8;
		background-color: rgba(0, 180, 216, 0.1);
	}

	.careers-job-card {
		flex-wrap: wrap;
		gap: 16px;
	}

	.careers-job-card__actions {
		flex-direction: row;
		align-items: center;
		width: 100%;
		justify-content: flex-end;
	}

	.careers-job-card__desc {
		white-space: normal;
	}
}

@media (max-width: 640px) {
	.careers-jobs {
		padding: 64px 20px;
	}

	.careers-jobs__header {
		margin-bottom: 40px;
	}

	.careers-job-card {
		padding: 20px;
	}

	.careers-job-card__icon {
		width: 40px;
		height: 40px;
	}
}


/* ================================================================
   JOB DETAIL — HERO
   ================================================================ */

.careers-job-detail-hero {
	position: relative;
	width: 100%;
	height: 45vh;
	min-height: 260px;
	background-image: url('https://nextwavebpo.com/wp-content/uploads/background-careers-1.avif');
	background-size: cover;
	background-position: center;
	background-color: #07111f;
	display: flex;
	align-items: center;
	justify-content: center;
}

.careers-job-detail-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(7, 17, 31, 0.65);
}

.careers-job-detail-hero__title {
	position: relative;
	z-index: 1;
	font-size: clamp(2rem, 5vw, 3.8rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1;
	text-align: center;
	text-shadow:
		0 2px 4px  rgba(0, 0, 0, 0.5),
		0 8px 32px rgba(0, 0, 0, 0.45);
}

@media (max-width: 640px) {
	.careers-job-detail-hero {
		height: 35vh;
		min-height: 200px;
	}
}


/* ================================================================
   JOB DETAIL — LAYOUT
   ================================================================ */

.careers-job-detail {
	background-color: #07111f;
	padding: 72px 32px 96px;
}

.careers-job-detail__container {
	max-width: 1180px;
	margin: 0 auto;
}

.careers-job-detail__layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 40px;
	align-items: start;
}

/* Main */

.careers-job-detail__main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Cards */

.careers-job-detail-card {
	background-color: #ffffff;
	border-radius: 14px;
	padding: 36px 40px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.careers-job-detail-card--dark {
	background-color: #0d1f35;
	border: 1px solid rgba(0, 180, 216, 0.15);
	box-shadow: none;
}

/* Intro card */

.careers-job-detail__job-title {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
	color: #07111f;
	line-height: 1.2;
	margin: 0 0 16px;
}

.careers-job-detail__intro {
	font-size: 1rem;
	color: #374151;
	line-height: 1.8;
	margin: 0;
	border-left: 3px solid #00b4d8;
	padding-left: 18px;
}

/* Section cards */

.careers-job-detail__section-title {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #07111f;
	margin: 0 0 18px;
}

.careers-job-detail__section-body {
	font-size: 0.95rem;
	color: #374151;
	line-height: 1.8;
}

.careers-job-detail__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.careers-job-detail__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.95rem;
	color: #374151;
	line-height: 1.65;
}

.careers-job-detail__list li::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #00b4d8;
	flex-shrink: 0;
	margin-top: 7px;
}

/* Sidebar */

.careers-job-detail__sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 96px;
}

.careers-job-detail__meta-heading {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin: 0 0 20px;
}

.careers-job-detail__meta-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.careers-job-detail__meta-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.careers-job-detail__meta-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.careers-job-detail__meta-label {
	color: rgba(255, 255, 255, 0.45);
}

.careers-job-detail__meta-value {
	color: #ffffff;
	font-weight: 600;
	text-align: right;
}

/* Apply box */

.careers-job-apply-box {
	background-color: #0d1f35;
	border: 1px solid rgba(0, 180, 216, 0.2);
	border-radius: 14px;
	padding: 28px;
}

.careers-job-apply-box__heading {
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 20px;
}

.careers-job-form-placeholder {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.35);
	border: 1px dashed rgba(0, 180, 216, 0.25);
	border-radius: 8px;
	padding: 36px 20px;
	text-align: center;
	line-height: 1.6;
}


/* ================================================================
   JOB DETAIL — ELEMENTOR OVERRIDES
   ================================================================ */

body.page-template-page-job-detail .careers-job-detail-hero .careers-job-detail-hero__title {
	color: #ffffff !important;
	text-shadow:
		0 2px 4px  rgba(0, 0, 0, 0.5),
		0 8px 32px rgba(0, 0, 0, 0.45);
}

body.page-template-page-job-detail .careers-job-detail__job-title,
body.page-template-page-dispatcher .careers-job-detail__job-title {
	color: #07111f !important;
	font-size: 1.25rem;
	letter-spacing: 0;
	line-height: 1.3;
}

body.page-template-page-job-detail .careers-job-detail__section-title,
body.page-template-page-dispatcher .careers-job-detail__section-title {
	color: #07111f !important;
	font-size: 1.15rem;
	letter-spacing: 0.08em;
}

/* Dispatcher template overrides */
body.page-template-page-dispatcher .careers-job-detail-hero {
	background-image: url('https://nextwavebpo.com/wp-content/uploads/ChatGPT-Image-3-may-2026-06_25_13-p.m.avif');
}

body.page-template-page-dispatcher .careers-job-detail-hero .careers-job-detail-hero__title {
	color: #ffffff !important;
	text-shadow:
		0 2px 4px  rgba(0, 0, 0, 0.5),
		0 8px 32px rgba(0, 0, 0, 0.45);
}

body.page-template-page-dispatcher .careers-job-detail__job-title {
	color: #07111f !important;
}

body.page-template-page-dispatcher .careers-job-detail__meta-heading {
	color: rgba(255, 255, 255, 0.45) !important;
}

body.page-template-page-dispatcher .careers-job-apply-box__heading {
	color: #ffffff !important;
}

body.page-template-page-job-detail .careers-job-detail__meta-heading {
	color: rgba(255, 255, 255, 0.45) !important;
}

body.page-template-page-job-detail .careers-job-apply-box__heading {
	color: #ffffff !important;
}


/* ================================================================
   JOB DETAIL — RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
	.careers-job-detail__layout {
		grid-template-columns: 1fr 300px;
		gap: 28px;
	}
}

@media (max-width: 768px) {
	.careers-job-detail__layout {
		grid-template-columns: 1fr;
	}

	.careers-job-detail__sidebar {
		position: static;
	}

	.careers-job-detail-card {
		padding: 28px 24px;
	}
}

@media (max-width: 640px) {
	.careers-job-detail {
		padding: 48px 20px 72px;
	}

	body.page-template-page-job-detail .careers-job-detail__job-title,
	body.page-template-page-dispatcher .careers-job-detail__job-title {
		font-size: 1.2rem;
		letter-spacing: 0;
		line-height: 1.3;
	}

	body.page-template-page-job-detail .careers-job-detail__section-title,
	body.page-template-page-dispatcher .careers-job-detail__section-title {
		font-size: 1.05rem;
		letter-spacing: 0.06em;
	}
}


/* ================================================================
   GRAVITY FORMS — JOB DETAIL
   Scope: body.page-template-page-job-detail .careers-job-apply-box
   ================================================================ */

body.page-template-page-job-detail .careers-job-apply-box__message {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.65;
	margin: 0 0 20px;
}

body.page-template-page-job-detail .careers-job-apply-box .gform_wrapper {
	margin: 0;
	padding: 0;
}

body.page-template-page-job-detail .careers-job-apply-box .gform_fields {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

body.page-template-page-job-detail .careers-job-apply-box .gfield {
	margin: 0;
}

/* Labels */

body.page-template-page-job-detail .careers-job-apply-box .gfield_label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 6px;
	letter-spacing: 0.02em;
}

body.page-template-page-job-detail .careers-job-apply-box .gfield_required {
	color: #00b4d8;
	margin-left: 2px;
}

/* Inputs, select, textarea */

body.page-template-page-job-detail .careers-job-apply-box input[type="text"],
body.page-template-page-job-detail .careers-job-apply-box input[type="email"],
body.page-template-page-job-detail .careers-job-apply-box input[type="tel"],
body.page-template-page-job-detail .careers-job-apply-box input[type="number"],
body.page-template-page-job-detail .careers-job-apply-box input[type="url"],
body.page-template-page-job-detail .careers-job-apply-box select,
body.page-template-page-job-detail .careers-job-apply-box textarea {
	width: 100%;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	padding: 11px 14px;
	font-size: 0.9rem;
	font-family: inherit;
	line-height: 1.5;
	outline: none;
	transition: border-color 0.2s, background-color 0.2s;
}

body.page-template-page-job-detail .careers-job-apply-box input[type="text"]:focus,
body.page-template-page-job-detail .careers-job-apply-box input[type="email"]:focus,
body.page-template-page-job-detail .careers-job-apply-box input[type="tel"]:focus,
body.page-template-page-job-detail .careers-job-apply-box input[type="number"]:focus,
body.page-template-page-job-detail .careers-job-apply-box input[type="url"]:focus,
body.page-template-page-job-detail .careers-job-apply-box select:focus,
body.page-template-page-job-detail .careers-job-apply-box textarea:focus {
	border-color: #00b4d8;
	background-color: rgba(0, 180, 216, 0.05);
}

body.page-template-page-job-detail .careers-job-apply-box input::placeholder,
body.page-template-page-job-detail .careers-job-apply-box textarea::placeholder {
	color: rgba(255, 255, 255, 0.28);
}

/* Textarea */

body.page-template-page-job-detail .careers-job-apply-box textarea {
	height: 52px;
	resize: vertical;
	min-height: 48px;
	max-height: 200px;
}

/* File upload */

body.page-template-page-job-detail .careers-job-apply-box input[type="file"] {
	width: 100%;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.6);
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 0.85rem;
	font-family: inherit;
	cursor: pointer;
}

/* Submit button */

body.page-template-page-job-detail .careers-job-apply-box .gform_footer {
	margin-top: 8px;
	padding: 0;
}

body.page-template-page-job-detail .careers-job-apply-box input[type="submit"],
body.page-template-page-job-detail .careers-job-apply-box .gform_button {
	width: 100%;
	box-sizing: border-box;
	display: block;
	background-color: #00b4d8;
	color: #07111f;
	border: none;
	border-radius: 8px;
	padding: 14px 20px;
	font-size: 0.95rem;
	font-weight: 700;
	font-family: inherit;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.15s;
}

body.page-template-page-job-detail .careers-job-apply-box input[type="submit"]:hover,
body.page-template-page-job-detail .careers-job-apply-box .gform_button:hover {
	background-color: #0099bb;
	transform: translateY(-1px);
}

/* Validation */

body.page-template-page-job-detail .careers-job-apply-box .gfield_error input,
body.page-template-page-job-detail .careers-job-apply-box .gfield_error textarea,
body.page-template-page-job-detail .careers-job-apply-box .gfield_error select {
	border-color: #f87171;
}

body.page-template-page-job-detail .careers-job-apply-box .validation_message {
	color: #f87171;
	font-size: 0.78rem;
	margin-top: 4px;
	display: block;
}

body.page-template-page-job-detail .careers-job-apply-box .gform_confirmation_message {
	color: #00b4d8;
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
	padding: 20px 0;
	line-height: 1.6;
}

/* intl-tel-input — phone country selector */

body.page-template-page-job-detail .careers-job-apply-box .iti {
	width: 100%;
	display: block;
}

body.page-template-page-job-detail .careers-job-apply-box .iti input[type="tel"] {
	padding-left: 52px;
}

body.page-template-page-job-detail .careers-job-apply-box .iti__flag-container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
}

body.page-template-page-job-detail .careers-job-apply-box .iti__selected-flag {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 8px 0 10px;
	background-color: transparent;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px 0 0 8px;
	gap: 5px;
}

body.page-template-page-job-detail .careers-job-apply-box .iti__selected-flag:hover,
body.page-template-page-job-detail .careers-job-apply-box .iti__selected-flag:focus {
	background-color: rgba(255, 255, 255, 0.06);
}

body.page-template-page-job-detail .careers-job-apply-box .iti__selected-dial-code {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
}

body.page-template-page-job-detail .careers-job-apply-box .iti__arrow {
	border-top-color: rgba(255, 255, 255, 0.35);
	margin-left: 4px;
}

body.page-template-page-job-detail .careers-job-apply-box .iti__arrow--up {
	border-bottom-color: rgba(255, 255, 255, 0.35);
	border-top: none;
}

body.page-template-page-job-detail .careers-job-apply-box .iti__country-list {
	background-color: #0d1f35;
	border: 1px solid rgba(0, 180, 216, 0.2);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.8);
	max-height: 200px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

body.page-template-page-job-detail .careers-job-apply-box .iti__country.iti__highlight,
body.page-template-page-job-detail .careers-job-apply-box .iti__country:hover {
	background-color: rgba(0, 180, 216, 0.1);
}

body.page-template-page-job-detail .careers-job-apply-box .iti__dial-code {
	color: rgba(255, 255, 255, 0.45);
}

body.page-template-page-job-detail .careers-job-apply-box .iti__divider {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* File upload description / helper text */

body.page-template-page-job-detail .careers-job-apply-box .gfield_description {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	line-height: 1.5;
	margin-top: 8px;
	display: block;
}
