/*<meta />*/

/* Stylesheet to override the default settings in the Yext stylesheet answers.css */

:root
{
	--hh-answers-background-color: transparent;
	--yxt-color-brand-primary: #231556;
	--yxt-color-text-primary: #121321;
	--yxt-searchbar-text-color: #ffffff;
	--yxt-searchbar-form-background-color: transparent;
	--yxt-searchbar-form-border-radius: 0px;
	--yxt-searchbar-form-outline-color-base: #e2e2e2;
	--yxt-searchbar-text-font-size: 1em;
	--yxt-searchbar-text-font-weight: normal;
	--yxt-searchbar-text-line-height: 1em;
	--yxt-font-family: 'Manrope', Arial, serif;
	--yxt-border-radius: 5px;
	/* search button */
	--yxt-searchbar-button-background-color-base: transparent;
	--yxt-searchbar-button-background-color-hover: transparent;
	--yxt-searchbar-button-background-color-active: transparent;
	--yxt-searchbar-button-text-color-base: #ffffff;
	--yxt-searchbar-button-text-color-active: #ffffff;
}

.yxt-SearchBar
{
	height: auto;
	margin-bottom: 0;
	width: 100%;
}

.yxt-SearchBar-container
{
	height: 2em;
	background-color: var(--yxt-searchbar-form-background-color);
	border: 2px solid var(--yxt-searchbar-form-outline-color-base);
	border-top: none;
	border-left: none;
	border-right: none;
	border-radius: var(--yxt-searchbar-form-border-radius);
}

.yxt-SearchBar-title
{
	color: var(--yxt-color-text-primary);
	font-family: var(--yxt-font-family);
	font-size: var(--yxt-font-size-xlg);
	font-style: normal;
	font-weight: var(--yxt-font-weight-semibold);
	line-height: var(--yxt-line-height-md);
	margin-bottom: var(--yxt-base-spacing);
}

.yxt-SearchBar-input
{
	background-color: transparent;
	border: none;
	color: var(--yxt-searchbar-text-color);
	font-family: var(--yxt-font-family);
	font-size: var(--yxt-searchbar-text-font-size);
	font-style: normal;
	font-weight: var(--yxt-searchbar-text-font-weight);
	line-height: var(--yxt-searchbar-text-line-height);
	padding: 0 50px 0 10px;
	width: 100%;
	height: 2em;
	mc-hidden: hidden;
}

.yxt-SearchBar-input::Placeholder
{
	font-family: var(--FontHeading);
	color: var(--GrayLight);
	opacity: 0.5;
	mc-hidden: hidden;
}

.yxt-SearchBar-input:hover::Placeholder
{
	opacity: 1;
	mc-hidden: hidden;
}

.yxt-SearchBar-input:focus::Placeholder
{
	opacity: 0;
	mc-hidden: hidden;
}

.yxt-SearchBar-button
{
	color: transparent;
	background-image: url('../icons/search-icon-yext-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 17px auto;
	outline-width: 1px;
	outline-color: #ffffff;
	mc-hidden: hidden;
}

.Icon--yext_animated_reverse svg
{
	color: transparent;
	mc-hidden: hidden;
}

.Icon--lg img,
.Icon--lg svg
{
	height: auto;
	width: auto;
	mc-hidden: hidden;
}

.Icon svg
{
	color: #ffffff;
	outline-width: 1px;
	outline-color: #ffffff;
	mc-hidden: hidden;
}

button.GlobalSearchButton
{
	background-color: transparent;
	border: none;
	padding: 0 0 0 0;
	height: auto;
	width: auto;
	float: right;
	margin: 5px 0 0 25px;
	min-width: 180px;
	mc-hidden: hidden;
}

button.GlobalSearchButton a:link,
button.GlobalSearchButton a:visited
{
	border: 2px solid var(--Brand1);
	background-color: var(--Brand1);
	color: #ffffff;
	text-align: center;
	display: inlne-block;
	position: relative;
	width: auto;
	height: auto;
	padding: 6px 12px;
	text-decoration: none;
	font-family: var(--FontHeading);
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 12px;
	letter-spacing: 1px;
	padding-right: 34px;
	background-size: 20px auto;
	background-repeat: no-repeat;
	background-position: calc(100% - 8px) center;
	background-image: url('../icons/search-icon-yext-white.svg');
	mc-hidden: hidden;
}

button.GlobalSearchButton a:hover
{
	border: 2px solid #00b951;
	background-color: #00b951;
	color: #ffffff;
	background-image: url('../icons/search-icon-yext-white.svg');
	mc-hidden: hidden;
}

button.GlobalSearchButton a:active
{
	border: 2px solid #00b951;
	background-color: #00b951;
	color: #ffffff;
	background-image: url('../icons/search-icon-yext-white.svg');
	mc-hidden: hidden;
}

/* Changes to Flare search to match Yext search */

h1#results-heading
{
	font-family: var(--FontSemiBold);
	font-size: 1rem;
	font-weight: normal;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: var(--Black);
	border: none;
	padding: 18px 0px 0px 0px;
	margin-bottom: 0px;
	mc-hidden: hidden;
}

div#searchPane
{
	border: solid 1px #d0d3d5;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 18px;
	mc-hidden: hidden;
}

h1.SearchResults
{
	clear: none;
	font-size: 2rem;
	margin-top: 0;
	padding-top: 0;
	mc-hidden: hidden;
}

h1.SearchResults:hover
{
	cursor: default;
	mc-hidden: hidden;
}

h1.SearchResults:hover::after
{
	display: none;
	mc-hidden: hidden;
}

#resultList div.description
{
	font-family: var(--FontText);
	font-size: var(--FontSizeNormal);
	line-height: 24px;
	mc-hidden: hidden;
}

#resultList h3.title
{
	font-family: var(--FontSemiBold);
	font-weight: normal;
	font-size: 20px;
	line-height: var(--LineHeightLarger);
	color: var(--Brand1);
	margin-top: 1.2rem;
	mc-hidden: hidden;
}

#resultList h3.title::before
{
	content: '';
	display: block;
	width: calc(100% + 40px);
	margin-left: -20px;
	margin-top: 8px;
	margin-bottom: 12px;
	border-top: solid 1px #d0d3d5;
	font-size: 4px;
	mc-hidden: hidden;
}

#resultList h3.title a:link,
#resultList h3.title a:visited
{
	color: var(--Brand1);
	text-decoration: none;
}

#resultList h3.title a:active,
#resultList h3.title a:hover
{
	color: var(--Brand1);
	text-decoration: underline;
}

/* Don't display the copy function on the search results page */

h1#results-heading:hover,
h3.title:hover
{
	cursor: default;
	mc-hidden: hidden;
}

h1#results-heading:hover::after,
h3.title:hover::after
{
	display: none;
	mc-hidden: hidden;
}

h1#results-heading,
h3.title
{
	mc-hidden: hidden;
}

#resultList .url
{
	margin-top: 0.5rem;
}

#resultList .url cite
{
	color: var(--Brand1);
	font-size: var(--FontSizeNormal);
	mc-hidden: hidden;
}

div.ArticleURL
{
	text-transform: uppercase;
	font-family: var(--FontSemiBold);
	font-weight: normal;
	float: right;
	min-height: 80px;
	padding: 25px 0px 0px 0px;
	margin: 0px 5px 0px 20px;
	mc-hidden: hidden;
}

div.ArticleURL a:link,
div.ArticleURL a:visited
{
	text-decoration: none;
	mc-hidden: hidden;
}

div.ArticleURL a:active,
div.ArticleURL a:hover
{
	text-decoration: underline;
	mc-hidden: hidden;
}

div.search-field-wrapper
{
	width: calc(100% - 50px);
	position: relative;
	display: inline-block;
	mc-hidden: hidden;
}

div.search-field-wrapper input.search-field
{
	padding-right: 2em;
	/* space for clear button */
	mc-hidden: hidden;
}

.clear-search-button
{
	pointer-events: auto;
	z-index: 10;
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	padding-top: 4px;
	font-size: 16px;
	color: #666;
	font-weight: bold;
	line-height: 100%;
	background: none;
	border: none;
	cursor: pointer;
	user-select: none;
	display: block;
	mc-hidden: hidden;
}

.search-bar:hover
{
	-webkit-box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.25);
	box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.25);
}

.search-bar.search-bar-container._Skins_SearchBar_Local.mc-component .search-submit
{
	background: #00b951 url('../icons/search-icon-yext-white.svg') no-repeat center center;
	-pie-background: #00b951 url('../icons/search-icon-yext-white.svg') no-repeat center center;
	background-size: 30px auto;
}

.search-bar.search-bar-container._Skins_SearchBar_Local.mc-component .search-submit:hover
{
	background-color: #00b951;
}

/* Style search next and previous pane buttons at bottom of search results */

#pagination a
{
	border: none;
	color: #ffffff;
	background-color: var(--Brand1);
}

#pagination a#selected
{
	border-top: none;
	color: var(--Yellow);
}

#pagination a:hover
{
	border-top: none;
	color: var(--Brand2);
}

body.dark-mode .search-bar.search-bar-container._Skins_SearchBar_Local.mc-component input.search-field
{
	background-color: var(--GrayLight);
}

@media only screen and (max-width: 767px)
{
	div.ArticleURL
	{
		display: none;
	}
}

