/* Cadenza Search Overlay Widget */
.cso-widget {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	--cso-trigger-hover-color: #004280;
	--cso-trigger-hover-bg: rgba(255,255,255,0);
	--cso-submit-color: #000000;
	--cso-submit-hover-color: #000000;
	--cso-submit-hover-bg: rgba(255,255,255,0);
	--cso-close-color: #000000;
	--cso-close-hover-color: #000000;
	--cso-close-hover-bg: rgba(255,255,255,0);
}

.cso-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent !important;
	box-shadow: none !important;
	cursor: pointer;
	line-height: 1;
	transition: color .18s ease, background-color .18s ease, opacity .18s ease;
}

.cso-trigger:hover,
.cso-trigger:active {
	color: var(--cso-trigger-hover-color) !important;
	background-color: var(--cso-trigger-hover-bg) !important;
}

.cso-trigger:focus {
	outline: none;
}

.cso-trigger:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
	border-radius: 999px;
}

.cso-trigger svg {
	display: block;
	width: 20px;
	height: 20px;
}

.cso-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: flex-start;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity .18s ease;
}

.cso-widget.is-open .cso-overlay {
	display: flex;
	pointer-events: auto;
	opacity: 1;
}

.cso-overlay-inner {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-left: 16px;
	padding-right: 16px;
	box-sizing: border-box;
}

.cso-search-box {
	position: relative;
	display: flex;
	align-items: center;
	width: 596px;
	max-width: calc(100vw - 32px);
	min-height: 48px;
	background: #fff;
	border: 1px solid #000;
	border-radius: 24px;
	box-sizing: border-box;
	padding: 0 54px 0 26px;
	box-shadow: none;
}

.cso-input {
	width: 100%;
	min-width: 0;
	height: 100%;
	min-height: inherit;
	border: 0 !important;
	outline: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
	padding: 0;
	margin: 0;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.cso-input::-webkit-search-decoration,
.cso-input::-webkit-search-cancel-button,
.cso-input::-webkit-search-results-button,
.cso-input::-webkit-search-results-decoration {
	display: none;
}

.cso-submit,
.cso-close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: color .18s ease, background-color .18s ease, opacity .18s ease;
}

.cso-submit {
	right: 52px;
	width: 28px;
	height: 28px;
	color: var(--cso-submit-color) !important;
}

.cso-submit:hover,
.cso-submit:active {
	color: var(--cso-submit-hover-color) !important;
	background-color: var(--cso-submit-hover-bg) !important;
}

.cso-submit svg {
	width: 28px;
	height: 28px;
	display: block;
}

.cso-close {
	right: 19px;
	width: 30px;
	height: 30px;
	color: var(--cso-close-color) !important;
}

.cso-close:hover,
.cso-close:active {
	color: var(--cso-close-hover-color) !important;
	background-color: var(--cso-close-hover-bg) !important;
}

.cso-close span {
	position: absolute;
	display: block;
	width: 30px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

.cso-close span:first-child {
	transform: rotate(45deg);
}

.cso-close span:last-child {
	transform: rotate(-45deg);
}

body.cso-lock-scroll {
	overflow: hidden;
}

@media (max-width: 767px) {
	.cso-overlay-inner {
		padding-left: 14px;
		padding-right: 14px;
	}
	.cso-search-box {
		width: 100%;
		max-width: calc(100vw - 28px);
		min-height: 46px;
		padding-left: 20px;
		padding-right: 50px;
	}
	.cso-submit {
		right: 48px;
		width: 24px;
		height: 24px;
	}
	.cso-submit svg {
		width: 24px;
		height: 24px;
	}
	.cso-close {
		right: 16px;
		width: 28px;
		height: 28px;
	}
	.cso-close span {
		width: 28px;
	}
}
