@charset "UTF-8";

:root {
  --primary: #0277F5;
  --primary-light: #7ABFFF;
  --primary-dark: #034BDB;
  --secondary: #025AB9;
  --secondary-dark: #043B76;
  --secondary-light: #357FCF;
  --tertiary: #FF7F00;
  --tertiary-dark: #DD5309;
  --tertiary-light: #FFB061;
  --white: #FFFFFF;
  --grey-100: #DEE2E6;
  --grey-150: #EBEBEB;
  --grey-200: #ECECEC;
  --grey-300: #D6D6D6;
  --grey-350: #C3C3C3;
  --grey-400: #828282;
  --grey-500: #3D3D3D;
  --grey-600: #2E2D2D;
  --red: #B60F00;
  --red-light: #FFEDED;
  --blue-light: #F1FAFF;
  --blue: #0095FF;
  --green: #29C227;
  --btn-selected-default: #DBEDF6;
  --btn-selected-hover: #93D1F0;
  --btn-border-focus: #118AC6;
  --primary-font: "Lexend Deca", sans-serif;
  --secondary-font: "Inter", sans-serif;
}

body {
	font-family: var(--primary-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	background: var(--white);
}

a {
	color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	color: var(--secondary);
	font-family: var(--primary-font);
	font-optical-sizing: auto;
	font-style: normal;
  font-weight: 600;
}

h1 {
	font-size: 52px;
  line-height: 52px;
}

h2, .h2 {
	margin: 0 0 20px 0;
	font-size: 48px;
  line-height: 40px;
}

h2 span {
	display: inline;
}

h3, .h3 {
	font-size: 32px;
  line-height: 36px;
}

h3 span {
	display: block;
	padding: 0;
}

h4, .h4 {
  font-size: 24px;
  line-height: 28px;
}

h5, .h5 {
  font-size: 20px;
  line-height: 24px;
}

h6, .h6 {
  font-size: 16px;
  line-height: 24px;
}

.margin10 {
	margin-bottom: 10px;
}

.margin20 {
	margin-bottom: 20px;
}

.margin30 {
	margin-bottom: 30px;
}

.margin40 {
	margin-bottom: 40px;
}

.margin50 {
	margin-bottom: 50px;
}

.btn-default {
	padding: 10px 30px;
	color: var(--white);
	font-family: var(--primary-font);
	font-size: 18px;
	font-weight: 600;
	background-color: var(--tertiary);
	border-color: var(--tertiary);
	border-radius: 6px;
}

@media (hover: hover) and (pointer: fine) {
	.btn-default.active, .btn-default:active, .btn-default:focus, .btn-default:hover {
		color: var(--white) !important;
		background-color: var(--tertiary-dark) !important;
		border-color: var(--tertiary-dark) !important;
	}
}

@media (hover: none) and (pointer: coarse) {
	.btn-default.active, .btn-default:active {
		color: var(--white) !important;
		background-color: var(--tertiary-dark) !important;
		border-color: var(--tertiary-dark) !important;
	}
}

@media (hover: none) and (pointer: coarse) {
	.btn-default:focus, .btn-default:hover {
		color: #fff;
		background-color: var(--tertiary);
		border-color: var(--tertiary);
	}
}

	.btn-default.disabled.active, .btn-default.disabled:active, .btn-default.disabled:focus, .btn-default.disabled:hover, .btn-default[disabled].active, .btn-default[disabled]:active, .btn-default[disabled]:focus, .btn-default[disabled]:hover, fieldset[disabled] .btn-default.active, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:hover {
		background-color: var(--secondary);
		border-color: var(--secondary);
	}

	.btn-primary {
		color: var(--white);
		background-color: var(--secondary);
		border-color: var(--secondary);
	}

		.btn-primary.active, .btn-primary:active, .btn-primary:focus, .btn-primary:hover {
			color: var(--white);
			background-color: var(--secondary-dark);
			border-color: var(--secondary-dark);
		}

		.btn-primary.disabled.active, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled].active, .btn-primary[disabled]:active, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary.active, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
			background-color: var(--secondary-dark);
			border-color: var(--secondary-dark);
		}

	.btn-outline {
		padding: 10px;
		color: var(--secondary);
		font-family: var(--primary-font);
		font-size: 16px;
		font-weight: 600;
		text-transform: uppercase;
		background-color: var(--white);
		border: 2px solid var(--secondary);
		border-radius: 6px;
	}

		.btn-outline.active, .btn-outline:active, .btn-outline:focus, .btn-outline:hover {
			color: var(--secondary);
			background-color: var(--white);
			border-color: var(--primary);
		}

		.btn-outline.disabled.active, .btn-outline.disabled:active, .btn-outline.disabled:focus, .btn-outline.disabled:hover, .btn-outline[disabled].active, .btn-outline[disabled]:active, .btn-outline[disabled]:focus, .btn-outline[disabled]:hover, fieldset[disabled] .btn-outline.active, fieldset[disabled] .btn-outline:active, fieldset[disabled] .btn-outline:focus, fieldset[disabled] .btn-outline:hover {
			background-color: var(--white);
			border-color: var(--grey-400);
		}

	header {
		background: var(--white);
	}

		header .row:not(.bluebar) {
			padding-top: 12px;
			padding-bottom: 12px;
			max-width: 1320px;
			margin-left: auto;
			margin-right: auto;
		}

	.bluebar, .topBluebar {
		min-height: 36px;
		background-color: var(--primary);
	}

	.logo img {
		padding-right: 10px;
		width: auto;
		max-height: 55px;
	}

	.phone-mobile {
		display: none;
	}

	.needHelp {
		font-size: 1em;
		font-weight: 500;
		line-height: 24px;
		text-align: right;
	}

		.needHelp .lead {
			color: var(--grey-400);
			font-size: inherit;
			font-weight: inherit;
			display: block;
			margin-bottom: 5px;
		}

		.needHelp .phone {
			display: block;
			color: var(--primary);
			font-size: 27px;
			font-weight: inherit;
		}

		.needHelp .hours {
			display: block;
			color: var(--grey-400);
			font-size: inherit;
			font-weight: inherit;
			margin-top: 5px;
		}

			.needHelp .hours span {
				display: block;
			}

		.needHelp a {
			text-decoration: none;
		}

			.needHelp a:hover {
				text-decoration: underline;
			}

	#carrier-logos {
		display: block;
		padding: 30px 0;
		text-align: center;
		background-color: var(--primary);
	}

		#carrier-logos img {
			display: inline;
			padding: 0 35px;
		}

			#carrier-logos img.cigna {
				margin-top: -10px;
			}

	#footer {
		position: relative;
		color: var(--grey-400);
		padding-top: 78px;
		line-height: normal;
		background-color: var(--grey-200);
	}

		#footer p {
			color: inherit;
		}

	footer img {
		float: left;
		display: inline;
		width: auto;
		max-height: 55px;
	}

	footer .footerLogo {
		max-height: 90px;
		float: none;
		display: inline-block;
	}

	.trusted-site-badge {
		margin-left: auto;
		margin-right: 0;
		float: none;
	}

	.copyright {
		display: block;
		margin-top: 21px;
		margin-bottom: 0;
		font-size: .75em;
	}

	.nav {
		float: none;
		margin-top: 60px;
	}

	.nav-item {
		background: url(../img/nav-li-bg.png) no-repeat 0 50%;
	}

		.nav-item:nth-child(1) {
			background: 0 0;
		}

	.nav-link {
		padding: 4px 12px;
		font-size: 17px;
		letter-spacing: -0.17px;
		line-height: 10px;
		color: var(--grey-600);
		text-decoration: none;
	}

		.nav-link:hover {
			text-decoration: underline;
			color: var(--grey-600);
		}

	.logos {
		float: right;
		padding: 0 10px;
	}

		.logos img {
			display: inline;
			margin: 0 0 0 20px;
		}

	.disclaimer {
		padding-top: 60px;
		padding-bottom: 42px;
		background: var(--grey-200);
	}

		.disclaimer p {
			margin-bottom: .75rem;
			color: var(--grey-400);
			font-size: 12px;
			line-height: 20px;
		}

		.disclaimer a {
			color: var(--grey-400);
			line-height: normal;
			text-decoration: none;
		}

		.disclaimer span {
			float: right;
			margin-left: 5px;
		}

	.rxDisclaimer {
		display: none;
	}

	.OEPcontent {
		padding-top: 48px;
		padding-bottom: 48px;
		background: var(--white);
	}

		.OEPcontent h3 {
			color: var(--grey-600);
			font-family: var(--primary-font);
			font-size: 20px;
			font-weight: 600;
			line-height: 24px;
			text-align: center;
		}

	.modal-title {
		font-family: Arial, Helvetica, "sans-serif";
		font-weight: 600
	}

	.modal-links {
		margin: 0;
		padding: 5px 15px;
		width: 100%;
		font-weight: 500;
		font-size: 14px;
		text-transform: capitalize;
		letter-spacing: 1px;
		list-style: none;
		background: #f2f2f2;
		border-bottom: 1px solid #dfe2e6;
	}

		.modal-links > li {
			display: inline-block
		}

			.modal-links > li + li:before {
				padding: 0 5px;
				color: #ccc;
				content: "/\00a0";
			}

		.modal-links > .active a {
			color: #777
		}

	.modal-body {
		max-height: calc(100vh - 210px);
		overflow-y: auto;
		line-height: 28px;
	}

		.modal-body h1 {
			margin-top: 20px;
			margin-bottom: 10px;
			color: var(--secondary);
			font-family: var(--primary-font);
			font-size: 1.5em;
			font-weight: 700;
		}

		.modal-body h2 {
			color: var(--secondary);
			font-family: var(--primary-font);
			font-size: 1.25em;
			font-weight: 700
		}

		.modal-body h3 {
			margin: 20px 0 10px 0;
			color: var(--secondary);
			font-family: var(--primary-font);
			font-size: 1.125em;
			font-weight: 600
		}

		.modal-body table td {
			padding: 5px;
			line-height: normal;
			border: 1px solid #dee2e6;
		}

	.modal-footer {
		justify-content: center;
	}

		.modal-footer .btn {
			width: auto;
			font-size: 14px;
			font-weight: 600;
			text-transform: none;
		}

	.underline {
		text-decoration: underline;
	}

	.accordion-button:not(.collapsed) {
		background-color: #f5f5f5;
	}

	.accordion-button {
		font-size: .875rem;
	}

	.table-responsive a {
		overflow-wrap: anywhere;
	}

	#mobile-logos img {
		display: none;
	}

	@media screen and (max-width: 1199px) {
		#carrier-logos {
			padding: 35px 0;
		}

			#carrier-logos img {
				display: inline;
				padding: 6px 20px;
			}
	}

	@media (min-width:991px) and (max-width:1199px) {
		.logos {
			clear: both;
			float: left;
			padding: 10px 0;
		}

			.logos img {
				display: inline;
				margin: 0 20px 0 0;
			}
	}

	@media (min-width:768px) and (max-width:991px) {
		.logo img {
			padding-right: 8px;
			width: auto;
			max-height: 42px;
		}

		.needHelp .phone {
			font-size: 22px;
		}

		.needHelp .lead, .needHelp .hours {
			font-size: 14px;
		}

		#mobile-logos img {
			display: inline-block;
			margin-left: 10px;
			margin-right: 10px;
			vertical-align: middle
		}

		#carrier-logos {
			padding: 25px 0;
		}

			#carrier-logos img {
				display: inline;
			}

		.logos {
			clear: both;
			float: left;
			padding: 10px 0;
		}

			.logos img {
				display: inline;
				margin: 0 20px 0 0;
			}

		footer img {
			max-height: 42px;
		}
	}

#carriers .modal-dialog {
	max-width: 522px;
	max-height: 661px;
}

#carriers .modal-header {
	border-bottom: 0;
	padding-bottom: 0;
}

#carriers .modal-body ul {
	margin-bottom: 0;
}

#carriers .modal-body li {
	padding-top: 12px;
	padding-bottom: 12px;
}

	#carriers .modal-body li:first-child {
		padding-top: 0;
	}

	#carriers .modal-body li:not(:last-child) {
		border-bottom: 1px solid #D6D6D6;
	}

#carriers .modal-body strong,
#carriers .modal-body b {
	font-weight: 600;
	color: var(--dark-gray);
	line-height: 24px;
	display: inline-block;
}

#carriers .modal-body address {
	color: var(--medium-gray);
	font-size: 12px;
	font-family: var(--primary-font);
	margin-bottom: 0;
	line-height: 16px;
	display: block;
	font-weight: 400;
	margin-top: 5px;
}

#carriers .modal-dialog {
	max-width: 522px;
	max-height: 661px;
}

#carriers .modal-header {
	border-bottom: 0;
	padding-bottom: 32px;
}

#carriers .modal-body ul {
	margin-bottom: 0;
}

#carriers .modal-body li {
	padding-top: 12px;
	padding-bottom: 12px;
}

	#carriers .modal-body li:first-child {
		padding-top: 0;
	}

	#carriers .modal-body li:not(:last-child) {
		border-bottom: 1px solid #D6D6D6;
	}

#carriers .modal-body strong,
#carriers .modal-body b {
	font-weight: 600;
	color: var(--dark-gray);
	line-height: 24px;
	display: inline-block;
}

#carriers .modal-body address {
	color: var(--medium-gray);
	font-size: 12px;
	font-family: var(--primary-font);
	margin-bottom: 0;
	line-height: 16px;
	display: block;
	font-weight: 400;
	margin-top: 5px;
}


	@media (min-width:768px) and (max-width:939px) {
		.nav {
			clear: left;
		}

		.nav-link {
			padding: 12px;
		}

		.logos {
			clear: both;
			padding: 10px 0
		}

			.logos img {
				display: inline;
				margin: 0 20px 0 0;
			}

		#footer {
			padding: 36px 0 26px 0;
		}
	}

	@media screen and (max-width:767px) {
		header .row:not(.bluebar) {
			padding-bottom: 15px;
		}

		header .col-md-7 {
			display: flex;
			align-items: center;
			justify-content: space-between;
		}

		header .logo {
			display: flex;
			flex-wrap: nowrap;
		}

		.needHelp {
			display: none;
		}

		.logo {
			text-align: left;
		}

			.logo img {
				max-height: 35px;
			}

		.phone-mobile {
			display: block;
		}

			.phone-mobile a {
				color: var(--primary);
				font-size: 20px;
				background: var(--primary) url(../img/icon-phone.svg) no-repeat center center;
				border-radius: 50%;
				width: 42px;
				height: 42px;
				display: flex;
				transform: rotate(90deg);
				flex-direction: row;
				justify-content: center;
				align-items: center;
				text-decoration: none;
				text-indent: -9999px;
			}

		.nav-link {
			padding: 12px;
		}

		h1 {
			font-size: 40px;
			line-height: 48px;
		}

		h2 {
			margin: 0 0 20px 0;
			font-size: 1.875em;
		}

			h2 span {
				display: block;
			}

		h3 span {
			display: inline;
		}

		h4, .h4 {
			font-size: 20px;
			line-height: 24px;
		}

		#footer {
			padding: 25px 0 20px 0;
		}

		footer img {
			float: none;
			display: block;
			margin: 0 auto;
			text-align: center;
		}

		footer picture {
			text-align: center;
		}

		#carrier-logos {
			padding: 10px 8px;
			max-height: none;
			text-align: center;
			overflow: hidden;
		}

			#carrier-logos img {
				padding: 0 10px;
				width: 30%;
				height: auto;
			}

				#carrier-logos img.cigna {
					margin-top: -6px;
					width: 25%;
					height: auto;
				}

				#carrier-logos img.uhc, #carrier-logos img.healthspring {
					width: 40%;
					height: auto;
				}

				#carrier-logos img.WellCare {
					width: 20%;
					height: auto;
				}

		.copyright {
			clear: both;
			float: none;
			padding: 0;
			text-align: center;
		}

		.nav {
			float: none;
			justify-content: center;
			line-height: 1.25em;
		}

		#mobile-logos img {
			display: inline-block;
			margin-left: 10px;
			margin-right: 10px;
			vertical-align: middle;
		}

		.logos {
			float: none;
			padding: 0 10px;
			text-align: center
		}

			.logos img {
				display: inline;
				margin: 0 5px
			}

		.mobile-menu {
			display: flex;
			justify-content: space-between;
			list-style: none;
			text-align: center;
			margin: 0;
			padding: 0;
		}

			.mobile-menu li {
				width: 50%;
				margin: 10px 10px 0 10px;
			}

				.mobile-menu li a {
					display: block;
					margin-bottom: 8px;
					padding: 5px;
					color: #777;
					font-family: Arial, Helvetica, "sans-serif";
					font-size: 15px;
					line-height: normal;
					text-decoration: none;
					background: #f7f7f7;
					border: 1px solid #ccc;
					border-radius: 4px;
				}

					.mobile-menu li a span {
						display: block;
					}

					.mobile-menu li a:hover {
						color: #03366f;
						background: #fff;
						border: 1px solid #03366f;
					}

			.mobile-menu i {
				padding-bottom: 5px;
				color: #00366f;
				font-size: 26px;
				display: block;
				text-align: center;
			}

		.accordion-body .table td {
			font-size: smaller;
			line-height: normal;
		}

		.trusted-site-badge {
			margin-right: auto;
			margin-top: 40px;
		}

		#carriers .modal-body strong,
		#carriers .modal-body b,
		#carriers .modal-body address {
			font-size: 12px;
			line-height: 16px;
		}

		#carriers .modal-dialog {
			max-width: calc(100% - 40px);
			margin-right: auto;
			margin-left: auto;
			margin-top: 30px;
		}
	}

	@media (min-width:439px) and (max-width:639px) {
		#carrier-logos {
			display: block;
			padding: 25px 0 15px 0;
		}
	}

	@media screen and (max-width: 462px) {
		.modal-links li {
			display: block;
		}

		.modal-links > li + li:before {
			padding: 0;
			color: #ccc;
			content: ""
		}
	}

	@media (min-width:320px) and (max-width:439px) {
		#carrier-logos {
			display: block;
			padding: 20px 0 5px 0;
		}

			#carrier-logos img {
				margin-bottom: 10px;
			}

		footer img {
			float: none;
			display: block;
			margin: 0 auto;
			text-align: center;
		}
	}

	@media screen and (max-width: 430px) {
		.logo img {
			padding-right: 5px;
			max-height: 35px;
		}
	}

	@media screen and (max-width: 414px) {
		.logo img {
			padding-right: 4px;
			max-height: 34px;
		}
	}

	@media screen and (max-width: 390px) {
		.logo img {
			padding-right: 4px;
			max-height: 32px;
		}
	}

	@media screen and (max-width: 375px) {
		.logo img {
			padding-right: 3px;
			max-height: 30px;
		}
	}

	@media screen and (max-width: 360px) {
		.logo img {
			padding-right: 3px;
			max-height: 28px;
		}

		.phone-mobile {
			top: 10px;
			right: 10px
		}

		.mobile-menu li a {
			font-size: 13px;
		}
	}

	@media screen and (max-width: 344px) {
		.logo img {
			padding-right: 3px;
			max-height: 27px;
		}
	}

	@media screen and (max-width: 320px) {
		.logo img {
			padding-right: 3px;
			max-height: 24px;
		}

		.phone-mobile {
			top: 10px;
			right: 10px
		}

		.mobile-menu li a {
			font-size: 11px;
		}

		h2 {
			font-size: 1.375em;
		}
	}