/* =========================================================
   IMM SUPPORT — cleaned CSS
   Nav-related styles removed
========================================================= */

/* =========================================================
   Layout helpers
========================================================= */
.row-3-row-margins {
	max-width: 1225px;
	margin: 0 auto !important;
	width: 100%;
}

[class^="col-"] {
	margin-bottom: 0;
}

main {
	margin: 0 auto 1rem auto;
}

.divRight {
	text-align: right;
}

.button-subtext {
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	opacity: 0.9;
	display: block;
	margin-top: 2px;
}

/* =========================================================
   Text / color helpers
========================================================= */
.style1 {
	font-size: small;
	color: #000000;
}

.style2 {
	color: #000000;
}

.bg-bckgrndblue {
	background-color: #0097b2;
}

.btn-bckgrndgrey {
	background-color: #c6c7c7;
}

.light-blue2 {
	color: #0097b2;
}

.light-green2 {
	color: #70af33;
}

.light-orange2 {
	color: #70af33;
}

.color-link:hover {
	color: #fcb918;
}

.color-link2:hover {
	color: #70af33;
}

.h5,
h5 {
	font-size: 1.25rem !important;
	font-weight: normal !important;
	margin: -4px 0 -12px 0;
}

h1,
.h1 {
	line-height: 1.2 !important;
}

li {
	padding-bottom: 19px;
}

li:last-child {
	padding-bottom: 0px;
}

/* Optional global link reset */
a {
	text-decoration: none !important;
}

/* =========================================================
   Accordion
========================================================= */
.single-accordion {
	padding: 0 20px;
}

.toggle-button {
	width: 100%;
	padding: 15px 20px;
	background-color: #d32f2f;
	color: #fff;
	font-size: 1.1em;
	font-weight: bold;
	text-align: left;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: background-color 0.3s ease;
}

.toggle-button:hover,
.toggle-button.active {
	background-color: #9a2222;
	color: #fff;
}

.toggle-button::after {
	content: "+";
	float: right;
}

.toggle-button.active::after {
	content: "−";
}

.toggle-button .learn-more {
	color: #fff;
	font-weight: 400;
	transition: text-shadow 0.3s ease;
}

.toggle-button:hover .learn-more,
.toggle-button.active .learn-more {
	text-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.accordion-content {
	box-sizing: border-box;
	max-height: 0;
	overflow: hidden;
	padding: 0 25px;
	border-left: 3px solid transparent;
	transition:
		max-height 0.5s ease,
		border-left 0.3s ease;
}

.accordion-content.open {
	max-height: 2000px;
	padding-top: 10px;
	padding-bottom: 3px;
	border-left: 3px solid #061c60;
}

/* =========================================================
   Resource dropdown
========================================================= */
.dropdown-resource {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto 1rem;
}

.dropdown-res-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.75rem 1.5rem;
	background-color: #0098b3;
	color: #fff;
	font-size: 1.8rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.dropdown-res-button span.arrow {
	position: absolute;
	right: 0.8rem;
	width: 0;
	height: 0;
	pointer-events: none;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 9px solid #fff;
	transition: transform 0.3s ease;
}

.dropdown-resource.open .arrow {
	transform: rotate(180deg);
}

.dropdown-res-menu {
	position: relative;
	top: auto;
	left: auto;
	z-index: 1;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	margin-top: 0.5rem;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: max-height 0.3s ease;
}

.dropdown-resource.open .dropdown-res-menu {
	max-height: 1200px;
}

.dropdown-res-menu a {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0.3rem 0;
	padding: 1rem 1.25rem;
	background-color: #f9fafb;
	color: #1e293b;
	font-size: 1.15rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
	transition:
		background-color 0.25s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.dropdown-res-menu a:hover {
	background-color: #eafafd;
	color: #0098b3;
	box-shadow: 0 4px 10px rgb(0 152 179 / 0.3);
	transform: translateY(-2px);
}

.dropdown-res-menu a i.fa {
	flex-shrink: 0;
	width: 20px;
	color: #079db8;
	font-size: 1.3rem;
	text-align: center;
}

/* =========================================================
   Button 82 styles
========================================================= */
.button-82-pushable,
.button-82b-pushable,
.button-82c-pushable {
	position: relative;
	padding: 0;
	background: transparent;
	border: none;
	cursor: pointer;
	outline-offset: 4px;
	transition: filter 250ms;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}

.button-82-shadow,
.button-82b-shadow,
.button-82c-shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: hsl(0deg 0% 0% / 0.25);
	will-change: transform;
	transform: translateY(2px);
	transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-82-front,
.button-82b-front,
.button-82c-front {
	position: relative;
	display: block;
	padding: 12px 27px;
	color: #fff;
	font-size: 1.1rem;
	text-align: center;
	text-decoration: none !important;
	will-change: transform;
	transform: translateY(-4px);
	transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

/* Yellow */
.button-82-shadow,
.button-82-edge,
.button-82-front {
	border-radius: 12px;
}

/* edge */
.button-82-edge {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	background: linear-gradient(to left, #0f172a, #1e293b);
}

/* front */
.button-82-front {
	background-color: #334155;
	color: #fff;
}

/* Blue rounded */
.button-82b-shadow,
.button-82b-edge,
.button-82b-front {
	border-radius: 50px;
}

.button-82b-edge {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50px;
	background: linear-gradient(to left,
			hsla(189, 100%, 35%, 1) 0%,
			hsla(189, 100%, 35%, 1) 8%,
			hsla(189, 100%, 35%, 1) 92%,
			hsla(189, 100%, 35%, 1) 100%);
}

.button-82b-front {
	background-color: hsla(189, 100%, 35%, 1);
}

/* Green */
.button-82c-shadow,
.button-82c-edge,
.button-82c-front {
	border-radius: 12px;
}

.button-82c-edge {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	background: linear-gradient(to left,
			hsla(90.484, 55%, 44%, 1) 0%,
			hsla(90.484, 55%, 44%, 1) 8%,
			hsla(90.484, 55%, 44%, 1) 92%,
			hsla(90.484, 55%, 44%, 1) 100%);
}

.button-82c-front {
	background-color: hsla(90.484, 55%, 44%, 1);
}

/* Shared hover / active / focus */
.button-82-pushable:hover,
.button-82b-pushable:hover,
.button-82c-pushable:hover {
	filter: brightness(110%);
	-webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front,
.button-82b-pushable:hover .button-82b-front,
.button-82c-pushable:hover .button-82c-front {
	transform: translateY(-6px);
	transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front,
.button-82b-pushable:active .button-82b-front,
.button-82c-pushable:active .button-82c-front {
	transform: translateY(-2px);
	transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow,
.button-82b-pushable:hover .button-82b-shadow,
.button-82c-pushable:hover .button-82c-shadow {
	transform: translateY(4px);
	transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow,
.button-82b-pushable:active .button-82b-shadow,
.button-82c-pushable:active .button-82c-shadow {
	transform: translateY(1px);
	transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible),
.button-82b-pushable:focus:not(:focus-visible),
.button-82c-pushable:focus:not(:focus-visible) {
	outline: none;
}

/* =========================================================
   Visibility helpers
========================================================= */
.yellow-heart {
	display: none;
}

.yellow-heart2 {
	display: block;
}

.desktopBanner {
	display: block;
}

.mobileClickable {
	display: none;
}

/* =========================================================
   List icon styles
========================================================= */
ul li.changeColor::before,
ul li.changeColor2::before,
ul li.changeColor3::before,
ul li.changeColor4::before,
ul li.changeColor5::before {
	content: "\2713";
	display: inline-block;
	width: 1.2em;
	margin-left: -1.5em;
	padding-left: 2px;
	font-weight: bold;
}

ul li.changeColor::before,
ul li.changeColor5::before {
	color: #0097b2;
	border: 1.5px solid #0097b2;
}

ul li.changeColor2::before {
	color: #fcb918;
	border: 1.5px solid #fcb918;
}

ul li.changeColor3::before {
	color: #70af33;
	border: 1.5px solid #70af33;
}

ul li.changeColor4::before {
	color: #e56777;
	border: 1.5px solid #e56777;
}

/* =========================================================
   Overflow helpers
========================================================= */
.mobile-overflow {
	height: 800px;
	overflow-y: auto;
	overflow-x: clip !important;
}

.mobile-overflow3 {
	height: 280px;
	overflow-y: auto;
	overflow-x: clip !important;
}

/* =========================================
   IMAGE POSITIONING (DESKTOP)
========================================= */

.pregnant2 {
	position: absolute;
	/*top: -62%;
	left: -42%;*/
	width: 100%;
}

.school_aged {
	position: absolute;
    top: -155%;
    left: -10%;
	width: 100%;
}

.sick_lady {
	position: absolute;
	top: -140%;
	left: 0;
	width: 100%;
}

.ok_lady {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.weak_immune {
	position: absolute;
	/*top: -66%;
	left: -45%;*/
	width: 100%;
}

.weak_immune2 {
	position: absolute;
	top: -14%;
	left: 0;
	width: 100%;
}

.covid_germ {
	position: relative;
	top: 14%;
	left: 20%;
	width: clamp(50%, 75%, 75%);
}

.covid_shot_guy {
	position: absolute;
	top: -32%;
	left: 0;
	width: clamp(80%, 98%, 98%);
}

.infants {
	position: absolute;
	top: -170%;
	left: 0;
	width: clamp(70%, 86%, 86%);
}

.oldwithdoc {
	width: clamp(55%, 75%, 75%);
}

.textingphone {
	width: 100%;
}

.school-left {
	margin-left: -8%;
}


/* =========================================
   TABLET ADJUSTMENTS
========================================= */

@media (max-width: 992px) {

	.pregnant2 {
		top: -40%;
		width: 160%;
	}

	.school_aged {
		top: -80%;
		width: 110%;
	}

	.sick_lady {
		top: -90%;
	}

	.weak_immune {
		top: -40%;
		width: 140%;
	}

	.infants {
		top: -100%;
	}

	.covid_germ {
		left: 10%;
		width: 60%;
	}

}


/* =========================================
   MOBILE FIX
   Remove absolute positioning so layout
   does not break on small screens
========================================= */

@media (max-width: 576px) {

	.pregnant2,
	.school_aged,
	.sick_lady,
	.ok_lady,
	.weak_immune,
	.weak_immune2,
	.covid_shot_guy,
	.infants {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		display: block;
		margin: 0 auto;
	}

	.covid_germ {
		position: relative;
		top: 0;
		left: 0;
		width: 70%;
		margin: 20px auto;
		display: block;
	}

	.school-left {
		margin-left: 0;
	}

}

/* =========================================================
   Decorative text / headings
========================================================= */
.header-left {
	margin-left: 25px;
}

.header-left h1 {
	margin-bottom: -25px;
}

.test:after {
	content: "\2804";
	margin-left: 20px;
	color: #fcb918;
	font-size: 40px;
}

.test2:after {
	content: "\2804";
	color: #fcb918;
	font-size: 40px;
}

.fontsizeIcons {
	font-size: 1.1rem;
}

/* =========================================================
   Circle styles
========================================================= */
.circleBase {
	border-radius: 50%;
}

.circle2 {
	width: 225px;
	height: 225px;
	background: #fff9e4;
	border: 4px solid #fcb918;
}

.circle2:hover {
	background-color: #f0a8b1;
	border-color: #e56777;
}

.circle2-font {
	color: #fcb918;
}

.circle2-font:hover {
	color: #e56777;
}

/* =========================================================
   Tablet adjustments
========================================================= */
@media (max-width: 1000px) {
	.oldwithdoc {
		width: 85%;
	}
}

@media (min-width: 960px) and (max-width: 1023px) {
	.pregnant2 {
		position: absolute;
		top: -17%;
		left: -24%;
		width: 200%;
	}
}

/* =========================================================
   Vaccinate Section
========================================================= */
.vaccinate {
	padding: 15px;
	margin: 0;
}

.vaccinate h2 b {
	font-weight: 700;
}

.vaccinate ul {
	margin-top: -20px;
}

.vaccinate ul li {
	padding-bottom: 19px;
}

.vaccinate ul li:last-child {
	padding-bottom: 0;
}

/* =========================================================
   Mobile / responsive adjustments
========================================================= */
@media (max-width: 768px) {
	.button-82c-front {
		font-size: 1.4rem;
	}

	.yellow-heart {
		display: block;
	}

	.yellow-heart2 {
		display: none;
	}

	.mobile-overflow {
		height: 500px;
		overflow-y: auto;
		overflow-wrap: anywhere;
	}

	.header-left {
		margin-left: 0;
		text-align: center;
	}

	.test:after {
		margin-left: 0;
	}

	.pushCall {
		margin-top: 80px;
	}

	.pregnant2 {
		position: unset;
		top: 0;
		left: 0;
		width: 100%;
		margin-top: -200px;
	}

	.school_aged,
	.sick_lady,
	.weak_immune,
	.weak_immune2,
	.covid_germ,
	.infants,
	.ok_lady {
		display: none;
	}

	.school_aged {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}

	.sick_lady,
	.ok_lady {
		position: absolute;
		top: -140%;
		left: 0;
		width: 100%;
	}

	.weak_immune {
		position: relative;
		top: -26%;
		left: 36%;
		width: 170%;
	}

	.weak_immune2 {
		position: relative;
		top: 8%;
		left: 0;
		width: 100%;
	}

	.covid_germ {
		position: relative;
		top: 14%;
		left: 20%;
		width: 75%;
	}

	.infants {
		position: relative;
		top: -100%;
		left: -26%;
		width: 110%;
	}

	.covid_shot_guy {
		position: relative;
		top: 0;
		left: -11%;
		width: 125%;
	}

	.school-left {
		margin-left: 0;
	}

	.oldwithdoc {
		width: 100%;
	}

	.textingphone {
		width: 83%;
	}

	.fontsizeIcons {
		font-size: 1rem;
	}
}

@media (min-width: 768px) {

	.button-82-front,
	.button-82b-front {
		padding: 12px 4px;
		font-size: 1.25rem;
	}

	.button-82c-front {
		padding: 12px 4px;
		font-size: 1.4rem;
	}
}

@media (max-width: 600px) {

	.dropdown-res-button,
	.dropdown-res-menu {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.dropdown-res-button {
		font-size: 1.4rem;
	}
}

@media (max-width: 360px) {
	.dropdown-res-button {
		font-size: 1.1rem;
	}
}

@media only screen and (max-width: 768px) {
	.pregnant2 {
		margin-top: -50px;
	}
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
	.pregnant2 {
		margin-top: -120px;
	}
}

/* =========================================================
   Vaccine Preventable Diseases section
========================================================= */
.vaccines-preventable-section {
	border: 3px solid #0097b2;
	border-radius: 10px;
	padding: 15px;
	margin: 0;
	box-shadow: 2px 4px #888888;
	background-color: rgba(0, 151, 178, 0.025);
}

.vaccines-preventable-title {
	margin: 0 auto -5px auto;
	text-align: center;
	text-transform: uppercase;
}

.vaccines-preventable-card {
	border: 4px solid #e56777;
	padding: 25px;
	border-radius: 25px;
	background-color: rgba(229, 103, 119, 0.055);
	max-width: 1000px;
	margin: 0 auto;
}

.vaccines-preventable-card h5 {
	font-size: 1.25rem !important;
	font-weight: normal !important;
	margin-top: 0;
	margin-bottom: -15px;
}


/* =========================================================
   Priority populations section
========================================================= */
.priority-populations-section {
	border: 3px solid #70af33;
	border-radius: 10px;
	padding: 15px;
	margin: 0;
	box-shadow: 2px 4px #888888;
	background-color: rgba(112, 175, 51, 0.055);
}

/* =========================================================
   Circle cards
========================================================= */
.priority-circle {
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
}

.priority-circle-label {
	margin: auto;
	width: 80%;
	font-weight: bold;
}

.priority-circle-label-old-adults {
	margin-top: 78%;
}

.priority-circle-label-pregnant {
	margin-top: 77%;
}

.priority-circle-label-school-aged {
	margin-top: 72%;
}

.priority-circle-label-chronic {
	margin-top: 68%;
}

.priority-circle-label-immune {
	margin-top: 62%;
}

.priority-circle-label-infants {
	margin-top: 78%;
}

.priority-circle-old-adults {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/34.png");
	background-size: 280px;
	background-repeat: no-repeat;
	background-position: 44% 88%;
}

.priority-circle-pregnant {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/31.png");
	background-size: 300px 342px;
	background-repeat: no-repeat;
	background-position: 44% 66%;
}

.priority-circle-school-aged {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/32.png");
	background-size: 300px;
	background-repeat: no-repeat;
	background-position: 66% 60%;
}

.priority-circle-chronic {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/30.png");
	background-size: 300px;
	background-repeat: no-repeat;
	background-position: 44% 68%;
}

.priority-circle-immune {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/33.png");
	background-size: 270px;
	background-repeat: no-repeat;
	background-position: 48% 78%;
}

.priority-circle-infants {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/36.png");
	background-size: 200px;
	background-repeat: no-repeat;
	background-position: 48% 86%;
}

/* =========================================================
   Accordion headers / shared utility styles
========================================================= */
.vaccine-accordion-header {
	background-image: linear-gradient(to bottom, #0097b2, #00adcc);
	background-repeat: no-repeat;
	background-position: left;
}

.grid-center {
	display: grid;
	align-items: center;
}

.download-links {
	font-weight: bold;
	width: 96%;
}

.download-links-narrow {
	font-weight: bold;
	width: 96%;
}

.info-banner {
	background-image: linear-gradient(to bottom, #0097b2, #00adcc);
}

.info-banner-old-adults {
	min-height: 170px;
	overflow: hidden;
	border-radius: 8px;
	/* optional */
}

.info-banner-old-adults .row {
	align-items: center;
	min-height: 170px;
}

.info-banner-old-adults .col-lg-8,
.info-banner-old-adults .col-lg-4,
.info-banner-old-adults .header-left {
	position: relative;
	z-index: 2;
}

.info-banner-old-adults .col-lg-4 {
	display: flex;
	align-items: end;
	justify-content: center;
	overflow: hidden;
}

.oldwithdoc {
	display: block;
	width: 60%;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.banner-dots-offset {
	margin-bottom: -28px;
	margin-top: -18px;
}

/* =========================================================
   Image helpers
========================================================= */
.img-bandaid-heart {
	width: 75%;
}

.img-bandaid-heart-top {
	width: 75%;
	margin-top: 4%;
}

.img-bandaid-heart-up {
	width: 75%;
	margin-top: -10%;
}

.img-red-shield {
	width: 70%;
	transform: rotate(-2deg);
}

.img-texting-phone-tilt {
	transform: rotate(-15deg);
}

/* =========================================================
   Text helpers
========================================================= */
.font-bold {
	font-weight: bold;
}

.text-center-block {
	text-align: center;
}

/* =========================================================
   Callout / infoline rows
========================================================= */
.infoline-row {
	background-color: #efefef;
	margin-top: 100px;
}

.infoline-row-tight {
	background-color: #efefef;
	margin-top: 52px;
}

.infoline-image-wrap {
	margin-top: -70px;
	height: 100px;
	margin-right: -8%;
}

.infoline-image-wrap-wide {
	margin-top: -70px;
	height: 100px;
	margin-right: -10%;
}

.infoline-phone-link {
	font-weight: bold;
}

/* =========================================================
   List helpers
========================================================= */
.list-no-style {
	list-style-type: none;
}

.list-item-spacer {
	padding-bottom: 14px;
}

/* =========================================================
   Small utility classes replacing inline styles
========================================================= */
.mt-neg-10 {
	margin-top: -10%;
}

.mb-neg-28-mt-neg-18 {
	margin-bottom: -28px;
	margin-top: -18px;
}


/* =========================================================
   GETTING VACCINATED IS VERY IMPORTANT FOR
========================================================= */
.priority-populations-section {
	border: 3px solid #70af33;
	border-radius: 10px;
	padding: 15px;
	margin: 0;
	box-shadow: 2px 4px #888888;
	background-color: rgba(112, 175, 51, 0.055);
}

.priority-populations-section h2 {
	text-align: left;
	margin: 0 auto;
}

.priority-circle {
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
}

.priority-circle-label {
	margin: auto;
	width: 80%;
	font-weight: bold;
}

.priority-circle-label-old-adults {
	margin-top: 78%;
}

.priority-circle-label-pregnant {
	margin-top: 77%;
}

.priority-circle-label-school-aged {
	margin-top: 72%;
}

.priority-circle-label-chronic {
	margin-top: 68%;
}

.priority-circle-label-immune {
	margin-top: 62%;
}

.priority-circle-label-infants {
	margin-top: 78%;
}

/* =========================================================
   Priority circle image sizing
========================================================= */
.priority-circle-old-adults,
.priority-circle-pregnant,
.priority-circle-school-aged,
.priority-circle-chronic,
.priority-circle-immune,
.priority-circle-infants {
	background-repeat: no-repeat;
}

.priority-circle-old-adults {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/34.png");
	background-size: 280px;
	background-position: 44% 88%;
}

.priority-circle-pregnant {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/31.png");
	background-size: 300px 342px;
	background-position: 44% 66%;
}

.priority-circle-school-aged {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/32.png");
	background-size: 300px;
	background-position: 66% 60%;
}

.priority-circle-chronic {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/30.png");
	background-size: 300px;
	background-position: 44% 68%;
}

.priority-circle-immune {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/33.png");
	background-size: 270px;
	background-position: 48% 78%;
}

.priority-circle-infants {
	background-image: url("http://ph.lacounty.gov/ip/images/general_vaccine/36.png");
	background-size: 200px;
	background-position: 48% 86%;
}

/* =========================================================
   Responsive image sizing
========================================================= */
@media (max-width: 1199px) {
	.priority-circle-old-adults {
		background-size: 250px;
		background-position: 44% 86%;
	}

	.priority-circle-pregnant {
		background-size: 268px 306px;
		background-position: 44% 66%;
	}

	.priority-circle-school-aged {
		background-size: 268px;
		background-position: 64% 60%;
	}

	.priority-circle-chronic {
		background-size: 268px;
		background-position: 44% 68%;
	}

	.priority-circle-immune {
		background-size: 230px;
		background-position: 48% 76%;
	}

	.priority-circle-infants {
		background-size: 170px;
		background-position: 48% 84%;
	}
}

@media (max-width: 991px) {
	.priority-circle-old-adults {
		background-size: 220px;
		background-position: 44% 84%;
	}

	.priority-circle-pregnant {
		background-size: 235px 268px;
		background-position: 44% 65%;
	}

	.priority-circle-school-aged {
		background-size: 235px;
		background-position: 62% 59%;
	}

	.priority-circle-chronic {
		background-size: 235px;
		background-position: 44% 66%;
	}

	.priority-circle-immune {
		background-size: 205px;
		background-position: 48% 74%;
	}

	.priority-circle-infants {
		background-size: 150px;
		background-position: 48% 82%;
	}
}

@media (max-width: 767px) {
	.priority-circle-old-adults {
		background-size: 185px;
		background-position: 44% 82%;
	}

	.priority-circle-pregnant {
		background-size: 200px 228px;
		background-position: 44% 64%;
	}

	.priority-circle-school-aged {
		background-size: 200px;
		background-position: 60% 58%;
	}

	.priority-circle-chronic {
		background-size: 200px;
		background-position: 44% 64%;
	}

	.priority-circle-immune {
		background-size: 175px;
		background-position: 48% 72%;
	}

	.priority-circle-infants {
		background-size: 128px;
		background-position: 48% 80%;
	}
}

@media (max-width: 575px) {
	.priority-circle-old-adults {
		background-size: 160px;
		background-position: 44% 80%;
	}

	.priority-circle-pregnant {
		background-size: 175px 200px;
		background-position: 44% 63%;
	}

	.priority-circle-school-aged {
		background-size: 175px;
		background-position: 58% 57%;
	}

	.priority-circle-chronic {
		background-size: 175px;
		background-position: 44% 62%;
	}

	.priority-circle-immune {
		background-size: 150px;
		background-position: 48% 70%;
	}

	.priority-circle-infants {
		background-size: 110px;
		background-position: 48% 78%;
	}

	.mobileMargins {
		margin-top: -2rem;
	}
}

/* =========================================================
   Responsive text size
========================================================= */
.fontsizeIcons {
	font-size: clamp(0.855rem, 1.35vw, 0.99rem);
}

.grid-center {
	display: flex;
	align-items: center;
	text-align: left;
}

.d-grid {
	display: grid;
}

.download-links {
	font-weight: bold;
	width: 96%;
}

.info-banner {
	background-image: linear-gradient(to bottom, #0097b2, #00adcc);
}

.info-banner-old-adults {
	min-height: 170px;
	overflow: hidden;
}

@media (max-width: 768px) {
	.info-banner-old-adults {
		min-height: auto;
		padding: 20px 15px;
	}

	.info-banner-old-adults .row {
		align-items: center;
	}

	.oldwithdoc {
		width: 70%;
		margin-top: 15px;
	}
}

.banner-dots-offset {
	margin-bottom: -28px;
	margin-top: -18px;
}

.img-bandaid-heart-top {
	width: 75%;
	margin-top: 4%;
}

.img-bandaid-heart-up {
	width: 75%;
	margin-top: -10%;
}

.img-red-shield {
	width: 70%;
	transform: rotate(-2deg);
}

.font-size-105 {
	font-size: 1.05rem;
}

.list-no-style {
	list-style-type: none;
}

.text-center-block {
	text-align: center;
}

.infoline-row {
	background-color: #efefef;
	margin-top: 100px;
}

.infoline-row-tight {
	background-color: #efefef;
	margin-top: 52px;
}

.infoline-image-wrap {
	margin-top: -70px;
	height: 100px;
	margin-right: -8%;
}

.infoline-image-wrap-wide {
	margin-top: -70px;
	height: 100px;
	margin-right: -10%;
}

.img-texting-phone-tilt {
	transform: rotate(-15deg);
}

.infoline-phone-link {
	font-weight: bold;
}


/* =========================================================
   Overrides for mini-bootstrap button blue
========================================================= */
.bootstrap-support .questions-accordion-header .btn,
.bootstrap-support .card-header.questions-accordion-header .btn,
.bootstrap-support .questions-accordion-header .btn.btn-block,
.bootstrap-support .vaccine-accordion-header .btn,
.bootstrap-support .card-header.vaccine-accordion-header .btn,
.bootstrap-support .vaccine-accordion-header .btn.btn-block {
	background-color: transparent !important;
	border-color: transparent !important;
	color: #fff !important;
	box-shadow: none !important;
	padding: 8px 15px !important;
}

.bootstrap-support .questions-accordion-header .btn:hover,
.bootstrap-support .questions-accordion-header .btn:focus,
.bootstrap-support .questions-accordion-header .btn:active,
.bootstrap-support .vaccine-accordion-header .btn:hover,
.bootstrap-support .vaccine-accordion-header .btn:focus,
.bootstrap-support .vaccine-accordion-header .btn:active {
	background-color: transparent !important;
	border-color: transparent !important;
	color: #fff !important;
	box-shadow: none !important;
}

/* Optional: make all buttons inside this section stop using Bootstrap blue */
.bootstrap-support .priority-populations-section .btn,
.bootstrap-support .vaccines-preventable-section .btn {
	background-color: transparent;
	border-color: transparent;
}

.bootstrap-support .priority-populations-section .btn:hover,
.bootstrap-support .priority-populations-section .btn:focus,
.bootstrap-support .priority-populations-section .btn:active,
.bootstrap-support .vaccines-preventable-section .btn:hover,
.bootstrap-support .vaccines-preventable-section .btn:focus,
.bootstrap-support .vaccines-preventable-section .btn:active {
	background-color: transparent;
	border-color: transparent;
	box-shadow: none;
}

.accordion-title-wrap {
	display: flex;
	align-items: center;
	/* vertical center */
	text-align: left;
	/* text stays left */
	height: 100%;
}

.accordion-title-wrap h3 {
	width: 100%;
	margin: 0;
	text-align: left;
}

.grid-center {
	display: flex;
	align-items: center;
	text-align: left;
}

.vaccine-accordion-header h3 {
	margin-top: 9px;
	padding-bottom: 9px;
	margin-left: 15px;
}

.carousel-caption {
	display: none;
}

/* =========================================================
   GET YOUR QUESTIONS ANSWERED
========================================================= */
.questions-answered-section {
	border: 3px solid #0097b2;
	border-radius: 10px;
	padding: 15px;
	margin: 0;
	box-shadow: 2px 4px #888888;
	background-color: rgba(0, 151, 178, 0.025);
}

.questions-answered-title {
	margin: 0 auto;
	text-align: center;
}

.questions-answered-download-links {
	font-weight: bold;
}

.questions-answered-banner {
	background-image: linear-gradient(to bottom, #0097b2, #00adcc);
	background-repeat: no-repeat;
	background-position: left;
	height: 180px;
}

.questions-answered-banner-auto {
	/*background-image: linear-gradient(to bottom, #0097b2, #00adcc);*/
	background-repeat: no-repeat;
	background-position: left;
}

.questions-answered-banner-dots {
	margin-bottom: -28px;
	margin-top: -18px;
}

.questions-answered-card {
	border: 4px solid #fcb918;
	padding: 25px;
	border-radius: 25px;
	background: #fffcf5;
}

.questions-answered-list {
	list-style-type: none;
}

.questions-answered-img-full {
	width: 100%;
}

.questions-answered-img-tilt {
	width: 100%;
	transform: rotate(-10deg);
}

/* =========================================================
   Shared accordion trigger
========================================================= */
.accordion-trigger {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 16px !important;
	text-align: left;
	gap: 12px;
}

.accordion-label {
	flex: 1 1 auto;
	min-width: 0;
}

.accordion-label h3 {
	margin: 0 !important;
	padding: 0 !important;
	text-align: left;
}

.accordion-icon {
	flex: 0 0 24px;
	width: 24px;
	min-width: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
	text-align: center;
}

.accordion-icon::before {
	content: "+";
}

.accordion-trigger:not(.collapsed) .accordion-icon::before {
	content: "−";
}

/* accordion header bg */
.vaccine-accordion-header,
.questions-accordion-header {
	background-image: linear-gradient(to bottom, #0097b2, #00adcc);
	background-repeat: no-repeat;
	background-position: left;
}

/* remove old conflicting spacing */
.vaccine-accordion-header h3,
.questions-accordion-header h3 {
	margin: 0 !important;
	padding: 0 !important;
}

.collapseSection,
.float-right,
.text-right {
	float: none !important;
	text-align: inherit !important;
}

.adjust800width {
	max-width: 800PX;
}

.covid19-MTop {
	margin-top: -2rem;
}
@media (max-width: 480px) {
    .carousel-container {
        margin: 0 !important;
    }
}