body.has-home-fixed-header {
	padding-top: 72px;
}
.pf-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1045;
	height: 72px;
}
.pf-header__bar {
	position: relative;
	z-index: 2;
	height: 72px;
	padding: 0 16px;
	background-color: #101868;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.pf-header__bar .pf-header__container {
    max-width: 1300px;
}
.pf-header__bar-inner {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.pf-header__logo-link {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}
.pf-header__logo {
	width: 274px;
	height: auto;
	max-width: 100%;
}
.pf-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex: 0 1 300px;
}
.pf-header__input {
	flex: 1 1 auto;
	min-width: 0;
	height: 48px;
	border: 1px solid #cdd7ea;
	border-radius: 8px;
	padding: 0 14px;
	font-size: 16px;
	color: #203150;
}
.pf-header__submit {
	flex: 0 0 132px;
	height: 48px;
	border: 0;
	border-radius: 8px;
	color: #ffffff;
	font-weight: 600;
}
.pf-header.is-open .pf-header__search-trigger {
	display: none !important;
}
.pf-header.is-closing .pf-header__search-trigger {
	display: none !important;
}
.pf-header.is-open .pf-header__close-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pf-header.is-closing .pf-header__close-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pf-header.is-open .pf-header__panel {
	top: 72px;
	pointer-events: auto;
	border-bottom: 1px solid #e2e8f4;
	transition: top 100ms ease-in-out;
}
.pf-header__search-trigger {
	display: flex;
	align-items: center;
	width: 100%;
    height: 42px;
    border-radius: 6px;
    line-height: 1;
    gap: 10px;
    padding: 0 14px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.pf-header__search-trigger:focus-visible,
.pf-header__close-btn:focus-visible,
.pf-header__submit:focus-visible,
.pf-header__input:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}
.pf-header__search-icon {
	width: 18px;
	height: 18px;
	border: none;
	border-radius: 0;
	position: relative;
	flex: 0 0 18px;
	cursor: pointer;
	display: none;
}
.pf-header__search-text {
    max-width: 270px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pf-header__close-btn {
	display: none;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 50%;
	background-color: transparent;
	color: #ffffff;
	font-size: 30px;
	line-height: 1;
	padding: 0;
	font-weight: 300;
	cursor: pointer;
}
.pf-header__panel {
	position: absolute;
	top: -312px;
	left: 0;
	height: auto;
	padding: 28px 0;
	pointer-events: none;
	background-color: #ffffff;
	border-bottom: 0;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	z-index: 1;
	will-change: top;
	backface-visibility: hidden;
	transition: top 100ms ease-in-out, border-color 100ms ease-in-out;
}
/* mobiles */
@media (max-width: 767.98px) {
	.pf-header__bar-inner {
		gap: 10px;
	}
	.pf-header__logo {
		width: 184px;
	}
	.pf-header__actions {
		flex-basis: auto;
	}
	.pf-header__search-trigger {
		display: none !important;
	}
	.pf-header__search-icon {
		display: block !important;
		width: 22px;
		height: 22px;
		flex-basis: 22px;
	}
	.pf-header.is-open .pf-header__search-icon {
		display: none !important;
	}
	.header-sign-in-link {
		padding: 10px 6px;
	}
	.pf-header__panel {
		height: auto;
		top: -265px;
	}
	.pf-header__form {
		flex-direction: column;
		gap: 8px;
	}
	.pf-header__input,
	.pf-header__submit {
		width: 100%;
		flex: 0 0 auto;
	}
}
