body {
	min-width: 300px;
	font-family: "Montserrat", sans-serif !important;
}

/*/////////////*/
/* MAIN STYLES */
/*/////////////*/

@media screen and (max-width: 1200px) {
	.ach_noScroll {
		visibility: hidden;
		overflow-y: hidden;
		height: 0 !important;
	}
}

/* Header/Nav Bar */
header.ach_header {
	width: 100%;
}

@media screen and (max-width: 1200px) {
	header.ach_header {
		height: 85px;
	}
	
}

nav.ach_topNav {
	position: fixed;
	z-index: 20;
	padding: 0 16px;
	display: flex;
    justify-content: center;
	margin-inline: auto;
	padding-inline: 48px;
	background-color: #f4f5f5;
}

@media screen and (min-width: 1200px) {
	header.ach_header,
	nav.ach_topNav {
		position: sticky;
		z-index: 999999;
		transition: 0.25s height ease;
	}
}

.ach_topNav ul {
	font-size: 12px;
	display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
	width: 100%;
	max-width: 1440px;
}

.ach_topNav ul li {
	background-color: #f4f5f5;
}

.ach_topNav ul li a {
	color: #3c3c3c;
	text-decoration: none;
	padding: 16px;
	display: block;
}

.ach_topNav ul li a:hover {
	background-color: #dadbdb;
}

@media screen and (max-width: 1200px) {
	nav.ach_topNav {
		display: none;
	}
}

.ach_logo {
	padding-block: 40px;
	height: 100%;
}

@media screen and (max-width: 1200px) {
	.ach_logo {
		height: auto;
		max-height: 64px;
		object-fit: contain;
		margin: 0 auto;
		padding-block: 0;
	}
}

a.ach_button {
	background-color: #46749b;
	color: #fff !important;
	font-weight: bold;
}

a.ach_button:hover {
	background-color: #003b5c !important;
}

nav.ach_mainNav {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	gap: 16px;
	margin: 0;
	width: 100%;
	height: 85px;
	max-width: 1440px;
	margin-inline: auto;
}

@media screen and (max-width: 1200px) {
	nav.ach_mainNav {
		padding-inline: 48px;
	}
}

.ach_mainNav.sticky-header {
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	margin: 0;
	background-color: #ffffff;
	width: 100%;
	max-width: 100%;
}

.ach_mainNav.sticky-header.sticky-header-reverse {
	height: auto;
	min-height: 45px;
	opacity: 1;
	overflow: visible;
	transition: min-height 0.25s ease;
}

.ach_mainNav-top {
	display: flex;
	justify-content: space-between;
	flex: auto;
}

@media screen and (max-width: 1200px) {
	.ach_mainNav-top {
		margin-left: 16px;
	}
}

.sticky-header .ach_mainNav-top {
	max-width: 1502px;
	width: 100%;
	margin: 0 auto;
}

.ach_mainNav-links {
	list-style: none;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding: 0;
}

.ach_mainNav-links li, .ach_mainNav-links li span {
	color: #3c3c3c;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	height: 100%;
}

.ach_mainNav-links li a,
.ach_mainNav-links li button {
	position: relative;
	color: #3c3c3c;
	text-decoration: none;
	padding-block: 40px;
	border: none;
	padding: 40px 16px;
}

@media screen and (min-width: 1200px) {
    .ach_mainNav-links li a::after,
	.ach_mainNav-links li button::after {
        content: "";
        display: block;
        block-size: 8px;
        position: absolute;
        inset-block-end: 0;
        inset-inline: 0;
        max-inline-size: 100%;
    }

	.ach_mainNav-links li a:hover::after,
	.ach_mainNav-links li button:hover::after {
		block-size: 12px;
		will-change: block-size;
		transition: block-size .2s ease;
	}

	.ach_mainNav.sticky-header .ach_mainNav-links li a,
	.ach_mainNav.sticky-header .ach_mainNav-links li button {
		padding: 32px 16px;
	}
}

.ach_mobileNav,
.ach_mobileNav-dropdown {
	display: none;
}

@media screen and (max-width: 1200px) {
	nav.ach_mainNav {
		position: fixed;
		display: flex;
		justify-content: space-between;
		gap: 16px;
		background-color: #f4f5f5;
		align-items: center;
		padding-block: 0;
		padding-inline: 0;
		z-index: 100;
    	box-shadow: 0 2px 2px 0 #00000040;
	}

	.ach_mainNav-links {
		display: none;
	}
	
	.ach_mobileNav {
		display: flex;
	}

	.ach_mobileNav-dropdown {
		display: flex;
		list-style: none;
		align-items: center;
		justify-content: center;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		overflow-y: scroll;
        z-index: 10;
	}

	.ach_mobileNav-dropdown[aria-expanded="false"] {
  		transform: translateY(-200%);
		transition: all 0.25s ease;
	}

	.ach_mobileNav-dropdown[aria-expanded="true"] {
		transform: translateY(0%);
		transition: all 0.25s ease;
	}

	.ach_mobileNav-dropdown .ach_button {
		background-color: #1375a7;
		padding: 16px;
		border-radius: 4px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 16px;
	}
}

.ach_mainNav-conditions a::after {
	background-color: #f68d39;
}

.ach_mainNav-servicesAndSpecialties a::after {
	background-color: #ffce34;
}

.ach_mainNav-healthResources a::after {
	background-color: #8270b3;
}

.ach_mainNav-yourVisit a::after {
	background-color: #68cef2;
}

.ach_mainNav-search button::after {
	background-color: #bfd22b;
}

.ach_mainNav-search {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.ach_mainNav-search span {
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
	cursor: pointer;
}

.ach_mainNav-search button,
.ach_mobileNav-search button,
.ach_mobileNav-menu button {
	font-family: "Montserrat", sans-serif !important;
	display: flex;
	background: transparent;
	cursor: pointer;
    border: none;
	padding-left: 16px;
	margin-right: 16px;
	margin-top: 5px;
}

@media screen and (max-width: 1200px) {
	.ach_mainNav-search button,
	.ach_mobileNav-search button,
	.ach_mobileNav-menu button {
		padding: 40px 8px;
	}
}

.ach_mainNav-search button svg,
.ach_mobileNav-search button svg,
.ach_mainNav-menu button svg,
.ach_mobileNav-menu button svg {
    fill: #3c3c3c;
	width: 16px;
	height: 16px;
	margin-left: 8px;
}

@media screen and (max-width: 1200px) {
	.ach_mobileNav-search span,
	.ach_mobileNav-menu span {
		display: none;
	}
}

.ach_mobileNav-search {
	display: flex;
    position: relative;
}

.ach_mobileNav-menu button.ach_mobileNav-closeBtn {
	display: none;
}

.ach_mobileNav-searchForm {
	position: relative;
	padding-inline: 16px;
}

.ach_mobileNav-searchForm input {
    font-size: 12px;
    font-weight: 500;
    padding: 16px;
    border: 1px solid #a7a8a9;
    background: #ffffff;
	width: 100%;
}

.ach_mobileNav-searchForm button {
    position: absolute;
    inset-inline-end: 16px;
    inset-block-start: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 12px;
    cursor: pointer;
}

.ach_mobileNav-dropdown {
	position: absolute;
	top: 85px;
	left: 0;
}

.ach_mobileNav-dropdown > ul {
	display: flex;
	flex-direction: column;
	background-color: #f4f5f5;
	gap: 24px;
	padding-block: 24px;
    box-shadow: inset 0 2px 2px 0 #00000040;
	width: 100%;
}

.ach_mobileNav-dropdown > ul li a {
	color: #3c3c3c;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	padding-inline: 16px;
}

.ach_mobileNav-dropdown svg {
	fill: #3c3c3c;
	width: 16px;
	height: 16px;
	margin-right: 8px;
}

ul.ach_mobileNav-links {
	list-style: none;
	padding: 0;
	margin: 0 16px;
	display: flex;
    flex-direction: column;
    box-shadow: 0 .25rem .5rem #0000001a;
}

.ach_mobileNav-links li a {
    background-color: #fff;
	color: #3c3c3c;
	text-decoration: none;
	font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
    padding: 16px;
	border-block-start: 1px #f4f5f5;
}

/* Footer */
.ach_socialMediaLink svg {
	width: 32px;
	height: 30px;
	margin-right: 16px;
}

.ach_socialMediaLink svg path {
	fill: #003b5c;
}

.ach_footer {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	line-height: 1.5;
	background-color: #f4f5f5;
	border-top: 1px solid #fff;
	font-size: 0.66em;
	padding: 0
}

.ach_footer.clear-y-border-padding {
	border-top: 0;
	padding-top: 0
}

.ach_footer .ach_containerFooter {
	margin: 40px auto 0;
	padding: 0 20px;
	max-width: 1502px;
}

@media screen and (max-width: 1200px) {
	.ach_footer .ach_containerFooter {
		margin: 0;
	}
}

.ach_footer .container-pals {
	background: #fff
}

.ach_footer .container-pals .container {
	padding-top: 100px
}

.ach_footer .container-pals .container .row {
	display: flex;
	flex-direction: row;
	justify-content: center
}

.ach_footer .container-pals .container .row .pal {
	background-position: 50% 100%;
	background-repeat: no-repeat;
	display: inline-block;
	height: 107px;
	max-width: 153px;
	position: relative;
	width: 20%
}

.ach_footerHeading {
	font-weight: bold;
	font-size: 16px;
}

.ach_footerMainLinkSection {
	display: flex;
	min-width: 100% !important;
}

.ach_footerMainLinkSection > div {
	width: 25%;
}

#ach_animals {
	background: url(/licensees/licensee493/images/pals-mobile.png);
	height: 110px;
	background-repeat: no-repeat;
	background-position: center;
}

@media screen and (max-width: 740px) {
	#ach_animals {
		background-size: contain;
		background-position: bottom;
		margin: 0 16px;
	}
}

.ach_footer {
    background-color: #f4f5f5;
    border-top: 1px solid #fff;
    font-size: 0.66em;
    padding: 0;
}

.ach_footerLogo {
	max-width: 200px;
	margin: 24px 0;
}

@media screen and (max-width: 1200px) {
	.ach_footerLogo {
			max-width: 240px !important;
	}
}

@media screen and (max-width: 1200px) {
	.ach_footerMainLinkSection {
		flex-direction: column;
	}

	.ach_footerMainLinkSection > div {
		width: 100%;
		margin-bottom: 20px;
	}

	.ach_footerMainLinkSection > div ul li a {
		text-decoration: underline;
	}

	.ach_footerMainLinkSection > div ul li a:hover {
		color: #003b5c !important;
	}
}

@media screen and (max-width: 991px) {
	.ach_footer .container-pals .container .row .pal {
		background-size:70%
	}
}

@media screen and (max-width: 425px) {
	.ach_footer .container-pals .container .row .pal {
		height:80px
	}
}

.ach_footer .container-pals .container .row .pal.quote {
	background-position: 0% 20%;
	background-repeat: no-repeat;
	background-size: 43px;
	color: #3c3c3c;
	font-size: 18px;
	font-weight: 500;
	height: 107px;
	line-height: 1.5;
	min-width: 200px;
	padding-left: 43px;
	padding-top: 5px
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.ach_footer .container-pals .container .row .pal.quote {
		font-size:16px;
		min-width: 175px
	}
}

@media screen and (max-width: 1199px) {
	.ach_footer .container-pals .container .row .pal.quote {
		display:none
	}
}

.ach_footer .ach_footerLogo {
	margin-bottom: 30px;
	transition: all 0.25s ease-in-out;
	max-width: 200px
}

.ach_footer .ach_footerLogo:hover {
	opacity: 0.8
}

.ach_footer .col-xs-12 {
	padding: 0
}

.ach_footer ul {
	list-style-type: none;
	margin: 0;
	padding: 0
}

.ach_footer ul li {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	padding-right: 20px;
	margin-bottom: 20px !important;
}

.ach_footer ul li a {
	color: #1175a7;
	display: block;
	font-weight: 600;
	text-decoration: underline;
}

.ach_footer ul li a:hover {
	color: #003b5c
}

.ach_footer ul li a.indent {
	margin-left: 15px
}

.ach_footer .social {
	margin-top: 30px
}

.ach_footer .social li {
	display: inline-block;
	margin-right: 16px
}

.ach_footer .social li a {
	display: inline-block;
	transition: all 0.25s ease-in-out
}

.ach_footer .social li a i,.ach_footer .social li a ion-icon {
	color: #003B5C;
	font-size: 30px
}

.ach_footer .social li a:hover {
	opacity: 0.8
}


.ach_footer p {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

.ach_footer .ach_advocate-health,
.ach_footer .ach_language {
	text-align: center;
	font-size: 16px;
 }

.ach_footer .ach_language {
	border-top: 1px solid #63666a;
	margin-top: 40px;
	padding: 40px 0 18px;
}

.ach_footer .ach_advocate-health p,
.ach_footer .ach_language p {
	line-height: 2.17;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
}

.ach_footer-links p {
	font-size: 12px !important;
}

.ach_footer .ach_language .ach_copyright {
	text-align: center;
}

.ach_footer .fa-external-link-alt {
	font-size: 12px;
	margin-left: 6px;
}

.ach_footer li.float-all-left {
	clear: both;
	display: inline-block;
}

.ach_footer a {
	color: #1175a7;
	font-weight: bold;
	text-decoration: none;
}

.ach_footer li.float-all-left a,.ach_footer li.float-all-left span {
	float: left;
}

@media screen and (max-width: 1199px) {
	.ach_footer li.float-all-left a,.ach_footer li.float-all-left span {
		float: none;
	}
}

.ach_footer li.float-all-left span {
	padding: 0 10px;
}

@media screen and (max-width: 1199px) {
	.ach_footer li.float-all-left span {
		display: none;
	}
}

@media (max-width: 765px) {
	.ach_footer .ach_social {
		padding-bottom: 15px;
	}

	.ach_footer .ach_column-content {
		padding: 0;
	}

	.ach_footer .ach_language {
		border-top: 0;
		margin-top: 15px;
		padding: 0;
	}
}

/* KidsHealth Overrides */
#mainContentContainer {
	width: auto;
	min-width: 320px;
	margin: 60px auto;
}

@media screen and (max-width: 1200px) {
	#mainContentContainer {
		padding-top: 60px;
	}
}

#subCatBox {
	width: 96% !important;
}


#KH_licNav #licDate {
	display: none;
}

#ps3c_lic_home_rotator {
	display: none;
}


#featureArticleImg, #featureNav {
	text-align: center;
	margin: 0 auto;
	
}

#homePageFeatureRotator {
	padding-top: 18px;
}

#categoryHeaderGraphic {
	display: none;
}

#khcontent {
	padding-top: 10px;
}

#subCatBox {
	position: relative;
	top: 18px;
}

#kh_lic_footer, #kh_lic_footer_legalease {
	width: 100%;
}

#kh_lic_footer_legalease p {
	font-size: 1.5rem;
}

#kh_lic_footer ul {
	list-style-type: none;
}

.imageDisclaimer {
	float: left;
}



.title {
	color: #3d85c6 !important;
}

/* Search Results Page */
#clustering h3 {
	width: 148px;
}

/* Custom Responsive Overrides */
.title {
	max-width: 50%;
}

#suggestbox {
	right: 39px;
	top: 0px;
}

#eac-container-q ul {
	margin-top: 8px;
	margin-right: 30px;
	border-radius: 0 0 8px 8px !important;
	border: 1px solid silver;
	padding-bottom: 0;
}

#khContentHeading.licH h1 {
	display: inline-block;
	margin-bottom: 0;
	position: relative;
	top: 16px;
	left: 0;
	font-size: 24px !important;
	padding: 20px 0 16px;
	color: #3d85c6 !important;
	margin: 0 14px;
	height: auto;
	width: auto;
	border-bottom: 0 none !important;
}

#ih-page-body ul {
    padding-left: 0px;
}

#khcontent ul {
	padding-left: 20px !important;
}

#khcontent_category ul li {
    margin-bottom: 0;
}

#khcontent_category ul li a {
	font-weight: normal;
	font-size: 
	.9em !important;
}


@media screen and (max-width: 767px) {
    .ih-content-column {
    	padding: 0 !important;
    }
}


@media screen and (max-width: 446px) {
	#KH_licNav .h1Adolescentes {
		background: transparent;
	}
}

@media screen and (max-width: 380px) {
	#KH_licNav .h1Parents {
		background: transparent;
	}
}

/* homepage and slps */

.ps3c_featured_links p {
	font-size: 12px;
	height: 70px;
}

.ps3c_featured_links ul li a {
	width: 100% !important;
	display: block;
}

.engEspLink {
	font-size: 12px;
}

button#clearSearch:after {
	font-size: 10px;
	width: 20px;
	height: 20px;
	line-height: 1;
}

#eac-container-q ul {
	right: -24px;
	top: 22px;
	border-radius: 0;
	border-top: 0;
}

#eac-container-q ul li {
	font-size: 14px !important;
}

#homePageFeatureRotator {
	width: 436px;
	margin: 0 auto;
}

/* misc pages */
.kh_experts_center_all {
text-align: left;
}
a#kh_experts_nav ul {
	width: 32px !important;
	overflow: hidden;
}

#kh_experts_nav li {
	border: 0 none !important;
}
#kh_experts_nav li a {
	font-size: 14px;
	text-align: center !important;
	display: block;
	border: 0 none;
	border-left: 0 none;
	padding: 4px 4px 0 0;
	background: #0364a2 !important;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 4px;
	width: 30px;
}

#kh_experts_nav li a:hover {
	margin-left: -6px !important;
	width: 36px;
}

#khcontent_article h2 a {
	padding-top: 0;
	font-size: 44px !important;
	color: black !important;
}

#khContentHeading.licH h1 {
	font-size: 30px !important;
	color: #333 !important;
	margin-left: 0;
}

#subCatBox {
	background: #f5f5f5;
	width: 100% !important;
}

ul#subCatLinks {
	padding-left: 30px !important;
	font-size: 14px;
}

ul#subCatLinks li {
	margin-bottom: 5px;
}

button.subCatOpen {
	background-position: 5px 11px !important;
}

#pageCountNumberBox {
	margin-top: -18px;
}

#pageCountNumberBox a {
	font-size: 14px !important;
}

/* search */

#kh_searched_for {
	font-size: 14px !important;

}

.paginationCount {
	font-size: 14px;
	padding-top: 4px;
}

.pagination * a {
	font-weight: normal;
	font-size: 15px
}

/* splats */


.splatH {
	font-weight: normal;
	font-size: 20px !important;
}

.aSplat p {
	line-height: 1.5;
	font-size: 16px;
}

button.splatX {
	font-size: 10px
}

.insvg {
	color: #003B5C;
	width: 30px;
	display: block;
	margin-bottom: -6px;
}

#ps3c_lic_homepage #ps3c_lic_home_pkt_links h2  {
	margin: 0;
	padding: 0;
}

.ps3c_featured_links p {
	font-size: 1.5rem;
	line-height: 1.25;
	padding: 0.5rem;
	margin: 0;
	height: 5rem;
}

.ps3c_featured_links ul li {
	margin: 0;
}

.engEspLink {
	padding: 3px 0px 0 5px;
	margin-right: 6px;
}

@media screen and (max-width: 760px) {
	.ps3c_featured_links p {
		height: auto;
		padding-top: 1rem;
	}
}

@media screen and (max-width: 540px) {
	.engEspLink {
		padding: 6px 0px 0 5px !important;
		margin-right: 6px;
	}
}

@media screen and (max-width: 380px) {

	.paginationCount {
		font-size: 14px;
		position: absolute;
		margin-top: 18px;
		text-align: center;
		width: 100%;
	}
	ul#searchResults {
		margin-top: 40px !important;
	}
}

ul#licTabs, ul#licTabs li {
	margin-bottom: 0;
}

#navTabsPKT li {
	margin-bottom: 0;
}

#navTabsPKT li.wascurrent {
	margin-bottom: 1px;
}

#mrLinks h2 {
	margin: 0;
}

#relatedButtonsBoth ul, #relatedButtonsBoth ul li {
	margin: 0;
}

h2.categoryName {
	margin: 0;
	padding: 0;
}

h2.categoryName button:before {
	min-height: 2rem !important;
}

ul.medicationsBrandsList {
	margin-left: 1.75rem !important;
}

button.medicationsExpand, button.medicationsExpanded {
	line-height: 1.25 !important;
}

button.medicationsExpand:before, button.medicationsExpanded:before {
	text-align: center !important;
	padding: 0 !important;width: 2rem !important;
	width: 2rem !important;
	height: 2.25rem !important;
}

p.kh-btn-general a.kh-button {
	width: 230px !important;
} */