@charset "UTF-8";

:root {
	--primary-color: #007DBB;
	--secondary-color: #0B315E;
	--primary-dark-blue: #091B30;
	--secondary-dark-blue: #091B30;
	--primary-light-blue: #6ACEFF;
	--secondary-light-blue: #6291C8;
	--red: #dc3545;
	--white: #FFFFFF;
	--blue: #0095FF;
	--orange: #FF7F00;
	--dark-orange: #DD5309;
	--green: #179F1D;
	--light-gray: #ECECEC;
	--checkbox-bd-hover: #C3C3C3;
	--gray: #666666;
	--medium-gray: #828282;
	--medium-700-gray: #707070;
	--dark-gray: #2E2D2D;
	--darker-gray: #3D3D3D;
	--primary-font: "Lexend Deca", sans-serif;
}

body {
	font-family: var(--primary-font);
	font-optical-sizing: auto;
	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-style: normal;
	font-weight: 600;
}

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

h1 {
	font-size: 3.2em;
	font-weight: 700
}

h2 {
	margin: 0 0 20px 0;
	font-size: 2.25em;
	font-weight: 700;
}

h2 span {
	display: inline;
}

h3 {
	color: var(--medium-gray);
	font-size: 21px;
}

h3 span {
	display: block;
}

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

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

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: 1.5em;
  	background-color: var(--orange);
  	border-color: var(--orange);
	border-radius: 6px;
}

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

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

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

	.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(--orange);
		;
		border-color: var(--orange);
	}

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

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

		.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-blue);
			border-color: var(--secondary-dark-blue);
		}

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

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

		.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: #fff;
			border-color: #999;
		}

	header {
		padding: 12px 0;
		background: var(--white)
	}

	.logo a {
		text-decoration: none;
	}

	.logo img {
		padding-right: 5px;
		width: auto;
		max-height: 50px;
	}

	.phone-mobile {
		display: none;
	}

	.needHelp {
		padding: 0;
		color: var(--medium-gray);
		font-size: 1em;
		font-weight: 600;
		line-height: 1.4em;
		text-align: right;
	}

		.needHelp .lead {
			font-size: .9375em;
			font-weight: 400
		}

		.needHelp .phone {
			display: block;
			padding: 5px 0;
			color: var(--primary-color);
			font-size: 1.6875em;
			font-weight: 500
		}

		.needHelp .hours {
			display: block;
			color: var(--medium-gray);
			font-size: .875em;
			font-weight: 400
		}

			.needHelp .hours span {
				display: block;
			}

		.needHelp a {
			padding-right: 8px;
			color: var(--primary-color);
			text-decoration: none;
		}

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

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

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

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

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

			#carrier-logos img.wellcare {
				max-height: 75px;
			}

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

		.OEPcontent h3 {
			color: var(--dark-gray);
			font-family: var(--primary-font);
			font-size: 20px;
			font-weight: 500;
			text-align: center
		}

	#footer {
		position: relative;
		color: var(--dark-gray);
		padding: 80px 0 42px 0;
		line-height: normal;
		background: var(--light-gray)
	}

		#footer p {
			color: var(--medium-gray);
			font-weight: 300;
		}

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

	.flogo {
		filter: grayscale(100%);
		opacity: .9;
	}

		.flogo:nth-child(1) {
			padding-right: 10px;
			border-right: 1px solid #D9D9D9;
		}

	footer .lead {
		display: block;
		font-size: .8em
	}

	footer .phone span {
		display: inline-block;
		margin: 0;
		padding: 0
	}

	footer .phone a {
		color: var(--dark-gray);
		background: 0 0 !important
	}

	footer .hours {
		color: #fff;
		font-size: .75em
	}

	footer .trusted-site-badge {
		float: none;
		margin-top: 0;
		margin-bottom: 0;
		margin-left: auto;
		margin-right: 0;
		max-height: 50px;
	}

	.footer-nav {
		float: left;
		list-style: none;
		position: relative;
		margin-top: 10px;
		margin-right: 20px;
		font-family: var(--primary-font);
		-webkit-columns: 2;
		-moz-columns: 2;
		columns: 2
	}

		.footer-nav li {
			margin-left: 30px;
			padding-bottom: 10px
		}

		.footer-nav a {
			color: #fff;
			font-size: .9375em;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: .2em
		}

			.footer-nav a:hover {
				color: var(--dark-gray);
				text-decoration: underline
			}

	.hr {
		border-top: none;
		border-bottom: 1px solid var(--light-gray);
		background-image: none
	}

	.copyright {
		float: left;
		padding: 10px 0;
		color: var(--medium-gray);
		font-size: .75em
	}

	.nav {
		padding-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: 10px 12px;
		color: var(--dark-gray) !important;
		font-size: 1em;
		font-weight: 400;
	}

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

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

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

	.disclaimer {
		padding-top: 30px;
	}

		.disclaimer p {
			margin-bottom: .75rem;
			color: var(--medium-gray);
			font-size: .75em;
			line-height: 20px
		}

		.disclaimer a {
			color: var(--medium-gray);
			line-height: normal
		}

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

	.rxDisclaimer {
		display: none;
	}

	.modal-title {
		font-family: var(--primary-font);
		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: #000;
			font-size: 1.5em;
			font-weight: 700
		}

		.modal-body h2 {
			color: #000;
			font-size: 1.25em;
			font-weight: 700
		}

		.modal-body h3 {
			margin: 20px 0 10px 0;
			color: #000;
			font-size: 1.125em;
			font-weight: 600
		}

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

		.modal-body .accordion-button {
			font-size: .9375rem;
		}

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

		.modal-footer .btn {
			width: auto;
		}

	.underline {
		text-decoration: underline;
	}

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

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

	#mobile-logos img {
		display: none;
	}

	@media screen and (max-width: 1199px) {
		#carrier-logos {
			display: block;
			padding: 30px 0;
			text-align: center;
			background: var(--primary-color)
		}

			#carrier-logos img {
				display: inline;
				padding: 5px 22px
			}

		h3 {
			color: #777;
			font-size: 16px;
		}
	}

	@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) {
		#mobile-logos img {
			display: inline-block;
			margin-left: 10px;
			margin-right: 10px;
			vertical-align: middle
		}

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

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

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

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

	@media (min-width:768px) and (max-width:939px) {
		.logo {
			padding: 17px 0px
		}

			.logo img {
				padding-right: 5px;
				width: auto;
				max-height: 45px;
			}

		.needHelp .lead {
			font-size: .875em;
			font-weight: 400
		}

		.needHelp .phone {
			font-size: 1.5em;
		}

		.nav {
			clear: left;
			float: left;
		}

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

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

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

		footer img {
			max-height: 45px
		}
	}

	@media (min-width:280px) and (max-width:767px) {
		header {
			padding-top: 5px;
			padding-bottom: 5px;
		}

		.needHelp {
			display: none
		}

		.logo {
			padding: 10px 0;
			text-align: left
		}

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

		.phone-mobile {
			display: block;
			position: absolute;
			top: 12px;
			right: 15px
		}

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

		h2 {
			margin: 0 0 20px 0;
			font-size: 1.875em;
			letter-spacing: -.01em
		}

			h2 span {
				display: block;
			}

		h3 span {
			display: inline;
		}

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

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

		.flogo:nth-child(1) {
			padding-right: 0;
			border-right: none;
		}

		.ms-2 {
			margin: 10px auto 0 auto !important;
		}

		footer .trusted-site-badge {
			float: none;
			margin: 40px auto 0 auto;
			text-align: center;
			max-height: 50px;
		}

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

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

				#carrier-logos img.uhc {
					width: 40%;
				}

				#carrier-logos img.HealthSpring {
					width: 35%;
				}

				#carrier-logos img.MOO {
					width: 45%;
					height: auto;
				}

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

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

			.OEPcontent h3 {
				font-size: 18px;
			}

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

		.nav {
			float: none;
			padding-top: 45px;
			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: var(--primary-font);
					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;
		}
	}

	@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: 25px 0 15px 0
		}

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

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

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

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

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

	@media screen and (max-width: 375px) {
		.logo img {
			max-height: 38px;
		}
	}

	@media screen and (max-width: 360px) {
		.phone-mobile {
			top: 10px;
			right: 10px
		}

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

	@media screen and (max-width: 320px) {
		.logo img {
			max-height: 32px;
		}

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

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

		h2 {
			font-size: 1.375em;
		}
	}

	@media (min-width: 240px) and (max-width: 280px) {
		.logo img {
			max-height: 23px;
		}

		.nav {
			margin-bottom: 20px;
		}

		.nav-link {
			padding: 5px;
			color: var(--dark-gray) !important;
			font-size: .75em;
			font-weight: 400;
		}

		.nav-item:nth-child(3),
		.nav-item:nth-child(4),
		.nav-item:nth-child(5) {
			background: 0 0
		}
	}