@-webkit-keyframes dash {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes dash {
	to {
		stroke-dashoffset: 0;
	}
}

@-webkit-keyframes move-left {
	to {
		-webkit-transform: translateX(-30em);
		transform: translateX(-30em);
	}
}

@keyframes move-left {
	to {
		-webkit-transform: translateX(-30em);
		transform: translateX(-30em);
	}
}

@-webkit-keyframes flip-left {
	to {
		-webkit-transform: rotateY(180deg);
		transform: rotateY(180deg);
	}
}

@keyframes flip-left {
	to {
		-webkit-transform: rotateY(180deg);
		transform: rotateY(180deg);
	}
}

@-webkit-keyframes flip-right {
	to {
		-webkit-transform: rotateY(-180deg);
		transform: rotateY(-180deg);
	}
}

@keyframes flip-right {
	to {
		-webkit-transform: rotateY(-180deg);
		transform: rotateY(-180deg);
	}
}

@-webkit-keyframes move-up {
	to {
		-webkit-transform: translateY(-1em);
		transform: translateY(-1em);
	}
}

@keyframes move-up {
	to {
		-webkit-transform: translateY(-1em);
		transform: translateY(-1em);
	}
}

@-webkit-keyframes move-up-scale-up {
	to {
		-webkit-transform: translateY(-1em) scale(1.25);
		transform: translateY(-1em) scale(1.25);
	}
}

@keyframes move-up-scale-up {
	to {
		-webkit-transform: translateY(-1em) scale(1.25);
		transform: translateY(-1em) scale(1.25);
	}
}

@-webkit-keyframes scale-up-slightly {
	90% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scale-up-slightly {
	90% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes shake {
	0%,
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	25%,
	75% {
		-webkit-transform: rotate(10deg);
		transform: rotate(10deg);
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
}

@keyframes shake {
	0%,
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	25%,
	75% {
		-webkit-transform: rotate(10deg);
		transform: rotate(10deg);
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
}

@-webkit-keyframes shake-slightly {
	0%,
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	25%,
	75% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	50% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
}

@keyframes shake-slightly {
	0%,
	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	25%,
	75% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	50% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */

html {
	font-family: sans-serif;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

figcaption,
figure,
main {
	display: block;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
	outline-width: 0;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: inherit;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

dfn {
	font-style: italic;
}

mark {
	background-color: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

audio,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

img {
	border-style: none;
}

svg:not(:root) {
	overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	display: inline-block;
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details,
menu {
	display: block;
}

summary {
	display: list-item;
}

canvas {
	display: inline-block;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

html {
	box-sizing: border-box;
}

*,
*::after,
*::before {
	box-sizing: inherit;
}

blockquote,
caption,
dd,
dl,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
legend,
ol,
p,
pre,
table,
td,
th,
ul {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
}

pre {
	overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
	font: inherit;
}

abbr[title],
dfn[title] {
	cursor: help;
}

img {
	font-style: italic;
}

select {
	background: none;
	font-size: 100%;
}

textarea {
	resize: vertical;
}

button,
label,
option,
select {
	cursor: pointer;
}

.sls-b-TextInput:active,
.sls-b-TextInput:focus,
textarea:active,
textarea:focus {
	cursor: text;
}

::-moz-selection {
	background: #c3d3e3;
	color: #222;
	text-shadow: none;
}

::selection {
	background: #c3d3e3;
	color: #222;
	text-shadow: none;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	padding: 0;
	margin: 1em 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

p {
	margin: 15px 0px;
}

.visually-hidden {
	clip: rect(0, 0, 0, 0);
	position: absolute;
}

.sls-b-TextInput,
select,
textarea {
	background-color: #fff;
	margin-bottom: 0.3em;
	-webkit-transition: outline 0.3s;
	transition: outline 0.3s;
}

.sls-b-TextInput:focus,
.sls-b-TextInput:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
	border-color: #1a3555;
}

.b-TextInput--error,
.b-TextInput--error:focus {
	background-color: #faccc4;
	border-color: #b5121b;
}

.b-FormLabel--error {
	color: #b5121b;
	margin-bottom: 1em;
}

select {
	height: 2.34961em;
}

a,
.b-Link {
	color: #1a3555;
	/* text-decoration: underline; */
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
}

a:hover,
a:active,
a:focus,
.b-Link:hover,
.b-Link:active,
.b-Link:focus {
	color: #1a3555;
}

a:visited,
.b-Link:visited {
	color: #0c4569;
}

.disclosurePop:visited {
	color: #fff;
}

.b-Link--inverse {
	color: #fff;
}

.b-Link--inverse:hover,
.b-Link--inverse:active,
.b-Link--inverse:focus {
	color: #fff;
}

.b-Link--inverse:visited {
	color: #fff;
}

@media screen and (min-width: 50em) {
	.b-Link--inverse\@md {
		color: #fff;
	}
	.b-Link--inverse\@md: hover,
	.b-Link--inverse\@md: active,
	.b-Link--inverse\@md: focus {
		color: #fff;
	}
	.b-Link--inverse\@md: visited {
		color: #fff;
	}
}

.b-Link--alt {
	text-decoration: none;
}

.b-Link--alt:hover {
	text-decoration: underline;
}

.b-Link--muted {
	color: #5a5a5a;
}

.b-Link--muted:hover,
.b-Link--muted:active,
.b-Link--muted:focus,
.b-Link--muted:visited {
	color: #5a5a5a;
}

.b-Link--plain {
	text-decoration: none;
}

.b-Link--plain:hover {
	text-decoration: none;
}

.b-Link--static:visited {
	color: #1a3555;
}

@media screen and (min-width: 46em) {
	.b-Link--no-click\@md {
		pointer-events: none;
	}
}

@font-face {
	font-display: swap;
	font-family: RocketSans;
	font-weight: 700;
	src: url("https://www.rockomni.com/mcds/assets/GlobalContent/NonStockImages/Fonts/RocketSans-Bold.woff2") format("woff2"),
		url("https://www.rockomni.com/mcds/assets/GlobalContent/NonStockImages/Fonts/RocketSans-Bold.woff") format("woff");
}

@font-face {
	font-display: swap;
	font-family: RocketSans;
	font-weight: 500;
	src: url("https://www.rockomni.com/mcds/assets/GlobalContent/NonStockImages/Fonts/RocketSans-Medium.woff2") format("woff2"),
		url("https://www.rockomni.com/mcds/assets/GlobalContent/NonStockImages/Fonts/RocketSans-Medium.woff") format("woff");
}

@font-face {
	font-display: swap;
	font-family: RocketSans;
	font-weight: 400;
	src: url("https://www.rockomni.com/mcds/assets/GlobalContent/NonStockImages/Fonts/RocketSans-Regular.woff2") format("woff2"),
		url("https://www.rockomni.com/mcds/assets/GlobalContent/NonStockImages/Fonts/RocketSans-Regular.woff") format("woff");
}

@font-face {
	font-display: swap;
	font-family: RocketSans;
	font-weight: 300;
	src: url("https://www.rockomni.com/mcds/assets/GlobalContent/NonStockImages/Fonts/RocketSans-Light.woff2") format("woff2"),
		url("https://www.rockomni.com/mcds/assets/GlobalContent/NonStockImages/Fonts/RocketSans-Light.woff") format("woff");
}

.b-TypeNormal,
.b-BodyCopy {
	font-weight: normal;
}

.b-TypeBold {
	font-weight: bold;
}

.b-BodyCopy {
	color: #222;
}

.b-TypeBody,
.b-BodyCopy {
	font-family: RocketSans, Helvetica, "Helvetica Neue", Arial, sans-serif;
}

.b-TypeLight {
	color: #1a3555;
}

.b-TypeMuted {
	color: #5a5a5a;
}

.b-TypeInverse {
	color: #fff;
}

@media screen and (min-width: 50em) {
	.b-TypeInverse\@md {
		color: #fff;
	}
}

.b-TypeCenter {
	text-align: center;
}

.b-TypeLeft {
	text-align: left;
}

.b-TypeRight {
	text-align: right;
}

.b-TypeSmall-lh {
	line-height: 1.1;
}

.b-Measure--wide {
	max-width: 48em;
}

@media (max-width: 34.375em) {
	h1,
	.sls-b-Alpha {
		font-size: 2.26544em;
	}
}

@media (max-width: 34.375em) {
	h1,
	.sls-b-Alpha,
	h2,
	.sls-b-Beta {
		line-height: 1.3;
	}
}

.b-Alpha--lg {
	font-size: 3.63288em;
}

@media screen and (min-width: 50em) {
	.b-Alpha--lg\@lg {
		font-size: 3.63288em;
	}
}

@media screen and (max-width: 34.375em) {
	.b-Beta\@sm {
		font-size: 1.64062em;
	}
}

@media screen and (max-width: 34.375em) {
	.b-Gamma\@sm {
		font-size: 1.35183em;
	}
}

.o-Flex {
	display: -webkit-box;
	display: flex;
}

.o-Flex\@lg {
	display: block;
}

@media all and (min-width: 61.25em) {
	.o-Flex\@lg {
		display: -webkit-box;
		display: flex;
	}
}

.o-Flex\@xlg {
	display: block;
}

@media all and (min-width: 70em) {
	.o-Flex\@xlg {
		display: -webkit-box;
		display: flex;
	}
}

@media all and (min-width: 70em) {
	.o-Flex\@xlg__item--one-third {
		width: 33.333333333%;
	}
}

.o-Flex__item--two-third {
	width: 66.6666667%;
}

.o-Flex--center {
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.o-Flex--center__vertical {
	-webkit-box-align: center;
	align-items: center;
}

.o-Flex--align-end {
	-webkit-box-align: end;
	align-items: flex-end;
}

.o-Flex--wrap {
	flex-wrap: wrap;
}

@media screen and (min-width: 61.25em) {
	.o-Flex\@lg--center {
		-webkit-box-align: center;
		align-items: center;
		-webkit-box-pack: center;
		justify-content: center;
	}
}

@media screen and (min-width: 61.25em) {
	.o-Flex\@lg--center-top {
		-webkit-box-pack: center;
		justify-content: center;
	}
}

.o-Flex__item {
	-webkit-box-flex: 1;
	flex: 1;
	float: left;
	width: 66.6666667%;
}

@supports (display: flex) {
	.o-Flex__item {
		width: auto;
	}
}

.o-Grid {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}

@supports (display: grid) {
	.o-Grid {
		display: grid;
	}
}

.o-Grid--1 {
	grid-template-columns: repeat(1, minmax(13em, 1fr));
}

@media all and (max-width: 46em) {
	.o-Grid--1 {
		grid-template-columns: repeat(auto-fill, minmax(13em, 1fr));
	}
}

.o-Grid--2 {
	grid-template-columns: repeat(2, minmax(13em, 1fr));
}

@media all and (max-width: 46em) {
	.o-Grid--2 {
		grid-template-columns: repeat(auto-fill, minmax(13em, 1fr));
	}
}

.o-Grid--3 {
	grid-template-columns: repeat(3, minmax(13em, 1fr));
}

@media all and (max-width: 46em) {
	.o-Grid--3 {
		grid-template-columns: repeat(auto-fill, minmax(13em, 1fr));
	}
}

.o-Grid--4 {
	grid-template-columns: repeat(4, minmax(13em, 1fr));
}

@media all and (max-width: 46em) {
	.o-Grid--4 {
		grid-template-columns: repeat(auto-fill, minmax(13em, 1fr));
	}
}

.o-Grid--5 {
	grid-template-columns: repeat(5, minmax(13em, 1fr));
}

@media all and (max-width: 46em) {
	.o-Grid--5 {
		grid-template-columns: repeat(auto-fill, minmax(13em, 1fr));
	}
}

.o-Grid--gap {
	grid-gap: 0.5em;
}

.o-Grid__item {
	float: left;
	width: 100%;
}

@supports (display: grid) {
	.o-GridTwin\@md {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
	}
	@media all and (min-width: 46em) {
		.o-GridTwin\@md {
			grid-template-columns: 1fr 1fr;
			grid-template-rows: 1fr;
		}
	}
}

@media all and (min-width: 46em) {
	.o-GridTwin\@md__item {
		width: 50%;
	}
}

@supports (display: grid) {
	.o-GridTwin\@md__item {
		width: auto;
	}
}

@supports (display: grid) {
	.o-GridTwin\@md__item: first-child {
		grid-column: 1;
		grid-row: 1;
	}
}

@supports (display: grid) {
	.o-GridTwin\@md__item: last-child {
		grid-column: 1;
		grid-row: 2;
	}
	@media all and (min-width: 46em) {
		.o-GridTwin\@md__item: last-child {
			grid-column: 2;
			grid-row: 1;
		}
	}
}

.o-GridTwin\@md__item--rev: first-child {
	-webkit-box-ordinal-group: 2;
	order: 1;
}

@media all and (min-width: 46em) {
	.o-GridTwin\@md__item--rev: first-child {
		-webkit-box-ordinal-group: 3;
		order: 2;
	}
	@supports (display: grid) {
		.o-GridTwin\@md__item--rev: first-child {
			grid-column: 2;
		}
	}
}

.o-GridTwin\@md__item--rev: last-child {
	-webkit-box-ordinal-group: 3;
	order: 2;
}

@media all and (min-width: 46em) {
	.o-GridTwin\@md__item--rev: last-child {
		-webkit-box-ordinal-group: 2;
		order: 1;
	}
	@supports (display: grid) {
		.o-GridTwin\@md__item--rev: last-child {
			grid-column: 1;
		}
	}
}

@media screen and (min-width: 34.375em) {
	.o-HorizontalList\@md .o-HorizontalList\@md__item {
		display: inline-block;
		margin-bottom: 0;
		margin-right: 1em;
	}
	.o-HorizontalList\@md .o-HorizontalList\@md__item: last-child {
		margin-right: 0;
	}
}

.o-Panel,
.o-PanelTwo,
.o-PanelThree,
.o-PanelTwoSixth,
.o-PanelFourSixth {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-right: 0;
}

.o-Panel:last-child,
.o-PanelTwo:last-child,
.o-PanelThree:last-child,
.o-PanelTwoSixth:last-child,
.o-PanelFourSixth:last-child {
	float: right;
	margin-right: 0;
}

@media screen and (min-width: 61.25em) {
	.o-Panel {
		width: 21.05263%;
		float: left;
		margin-right: 5.26316%;
	}
}

@media screen and (min-width: 61.25em) {
	.o-PanelTwo {
		width: 47.36842%;
		float: left;
		margin-right: 5.26316%;
	}
}

@media screen and (min-width: 61.25em) {
	.o-PanelThree {
		width: 73.68421%;
		float: left;
		margin-right: 5.26316%;
	}
}

.o-Panel--no-stack {
	width: 21.05263%;
	float: left;
	margin-right: 5.26316%;
}

.o-PanelTwo--no-stack {
	width: 47.36842%;
	float: left;
	margin-right: 5.26316%;
}

.o-PanelThree--no-stack {
	width: 73.68421%;
	float: left;
	margin-right: 5.26316%;
}

@media screen and (min-width: 61.25em) {
	.o-PanelTwoSixth {
		width: 31.03448%;
		float: left;
		margin-right: 3.44828%;
	}
}

@media screen and (min-width: 61.25em) {
	.o-PanelFourSixth {
		width: 65.51724%;
		float: left;
		margin-right: 3.44828%;
	}
}

.o-Scaling {
	height: 0;
	padding: 0;
	position: relative;
	width: 100%;
}

.o-Scaling--pix {
	padding-bottom: 50%;
	width: 80%;
}

.o-Scaling--pix-cards {
	padding-bottom: 55.5%;
}

.o-Scaling__svg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.o-VerticalList--space .o-VerticalList--space__item {
	margin-bottom: 1em;
}

.o-VerticalList--space .o-VerticalList--space__item:last-child {
	margin-bottom: 0;
}

.o-Wrapper,
.o-WrapperM {
	max-width: 93.75em;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.o-Wrapper:after,
.o-WrapperM:after {
	content: " ";
	display: block;
	clear: both;
}

.o-WrapperM {
	max-width: 61.5em;
	margin-left: auto;
	margin-right: auto;
}

.o-WrapperM:after {
	content: " ";
	display: block;
	clear: both;
}

.o-WrapperL {
	max-width: 61.25em;
}

.c-Articles {
	margin: 20px auto;
}

.c-Articles__Article {
	border: 1px solid #e5e5e5;
	box-shadow: 0 2px 2px 1px #e5e5e5;
	display: inline-block;
	margin: 10px;
	max-width: 200px;
	min-height: 300px;
	vertical-align: top;
}

.c-Articles__Article__img {
	width: 100%;
}

.c-Articles__Article__title,
.c-Articles__Article__title:visited {
	color: #222;
	font-weight: bold;
}

.c-Articles__Article__spacing {
	padding: 20px;
}

.c-Articles__Article__link {
	text-decoration: none;
}

.c-BarTop {
	border-top: 2px solid #aaa;
}

.c-BarBottom {
	border-bottom: 2px solid #aaa;
}

.c-BarLeft {
	border-left: 2px solid currentColor;
}

.c-Bar--bold-dark {
	border-color: #0c4569;
}

.c-Bar--thick {
	border-width: 0.25em;
}

.c-Billboard {
	background-image: url("/l2/assets/imgs/jpg/american-house.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	max-height: 31.25em;
	min-height: 20em;
	position: relative;
}

@media screen and (min-width: 34.375em) {
	.c-Billboard {
		background-image: url("/l2/assets/imgs/jpg/american-house-2x.jpg");
	}
}

.c-Billboard--productivity {
	background-image: url("/l2/assets/imgs/jpg/working-space.jpg");
}

@media screen and (min-width: 34.375em) {
	.c-Billboard--productivity {
		background-image: url("/l2/assets/imgs/jpg/working-space-2x.jpg");
	}
}

.c-Billboard--houseMask {
	background-image: url("/l2/assets/imgs/jpg/american-house-mask.jpg");
}

@media screen and (min-width: 34.375em) {
	.c-Billboard--houseMask {
		background-image: url("/l2/assets/imgs/jpg/american-house-2x-mask.jpg");
	}
}

@media screen and (min-width: 34.375em) {
	.c-Billboard--houseMask\@md {
		background-image: url("/l2/assets/imgs/jpg/american-house-2x-mask.jpg");
	}
}

.c-Billboard--patio {
	background-image: url("/l2/assets/imgs/jpg/home-with-patio.jpg");
}

@media screen and (min-width: 34.375em) {
	.c-Billboard--patio {
		background-image: url("/l2/assets/imgs/jpg/home-with-patio-2x.jpg");
	}
}

.c-Billboard--patioMask {
	background-image: url("/l2/assets/imgs/jpg/home-with-patio-mask.jpg");
}

@media screen and (min-width: 34.375em) {
	.c-Billboard--patioMask {
		background-image: url("/l2/assets/imgs/jpg/home-with-patio-2x-mask.jpg");
	}
}

.c-Billboard--devices {
	background-image: url("/l2/assets/imgs/jpg/people-using-digital-devices.jpg");
}

@media screen and (min-width: 34.375em) {
	.c-Billboard--devices {
		background-image: url("/l2/assets/imgs/jpg/people-using-digital-devices-2x.jpg");
	}
}

.c-Billboard--kitchen {
	background-image: url("/l2/assets/imgs/jpg/family-kitchen.jpg");
	background-position: right top;
	min-height: 12em;
}

@media screen and (min-width: 40em) {
	.c-Billboard--kitchen {
		background-image: url("/l2/assets/imgs/jpg/family-kitchen-2x.jpg");
	}
}

.c-Billboard--swatches {
	background-image: url("/l2/assets/imgs/jpg/people-swatches.jpg");
}

@media (min-width: 31.25em) {
	.c-Billboard--swatches {
		background-image: url("/l2/assets/imgs/jpg/people-swatches-1.5x.jpg");
	}
}

@media (min-width: 46em) {
	.c-Billboard--swatches {
		background-image: url("/l2/assets/imgs/jpg/people-swatches-2x.jpg");
	}
}

.c-Billboard--rocket {
	background-image: url("/l2/assets/imgs/jpg/desk-rocket.jpg");
}

@media (min-width: 34.375em) {
	.c-Billboard--rocket {
		background-image: url("/l2/assets/imgs/jpg/desk-rocket-2x.jpg");
	}
}

.c-Billboard--rocket-phone {
	background-image: url("/l2/assets/imgs/jpg/rocket-phone.jpg");
}

@media (min-width: 34.375em) {
	.c-Billboard--rocket-phone {
		background-image: url("/l2/assets/imgs/jpg/rocket-phone-2x.jpg");
	}
}

.c-Billboard--va {
	background-image: url("/l2/assets/imgs/jpg/american-soldier.jpg");
}

@media (min-width: 34.375em) {
	.c-Billboard--va {
		background-image: url("/l2/assets/imgs/jpg/american-soldier-2x.jpg");
	}
}

.c-Billboard--va2 {
	background-image: url("/l2/assets/imgs/jpg/american-dog.jpg");
}

@media (min-width: 34.375em) {
	.c-Billboard--va2 {
		background-image: url("/l2/assets/imgs/jpg/american-dog-2x.jpg");
	}
}

.c-Billboard--pattern {
	background-image: none;
	max-height: none;
}

@media (min-width: 70em) {
	.c-Billboard--pattern {
		background-image: url("/l2/assets/imgs/png/blue-pattern-bg.png");
		max-height: 24.125em;
	}
}

.c-Billboard--powerbuyingprocess {
	background-image: url("/l2/assets/imgs/jpg/power-buying-process.jpg");
	background-position: top;
	background-size: contain;
	min-height: 15em;
}

@media (min-width: 46em) {
	.c-Billboard--powerbuyingprocess {
		min-height: 19em;
	}
}

@media (min-width: 61.25em) {
	.c-Billboard--powerbuyingprocess {
		min-height: 26em;
	}
}

.c-Billboard--pos-top {
	background-position: top;
}

.c-Billboard--sm {
	min-height: 17em;
}

@media screen and (min-width: 70em) {
	.c-Billboard--md\@xlg {
		min-height: 26em;
	}
}

@media screen and (min-width: 70em) {
	.c-Billboard--lg\@xlg {
		min-height: 37em;
	}
}

.c-Box--rounded {
	border-radius: 5px;
}

.c-Bucket {
	border: 0.25em solid #fff;
	height: 10.75em;
	margin: 0 auto;
	max-width: 25em;
	overflow: hidden;
	position: relative;
}

@media screen and (min-width: 70em) {
	.c-Bucket {
		margin-right: 1%;
		width: 32.4%;
	}
	.c-Bucket:last-child {
		margin-right: 0;
	}
}

@supports (display: flex) {
	@media screen and (min-width: 70em) {
		.c-Bucket {
			margin: 0 1% 0 0;
		}
	}
}

.c-Bucket .c-Bucket__Chat {
	cursor: pointer;
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

.c-Bucket .c-Bucket__Chat .LPMcontainer.LPMoverlay,
.c-Bucket .c-Bucket__Chat [data-lp-event="click"] {
	display: block;
	height: 100%;
}

.c-Bucket .c-Bucket__Chat .LPMcontainer.LPMoverlay > div {
	display: block;
	height: 100%;
	width: 100%;
}

.sls-c-Button {
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.sls-c-Button:visited,
.sls-c-Button:active,
.sls-c-Button:focus {
	color: #fff;
}

.c-Button--lg {
	font-size: 1.21363em;
	padding: 1em 1.64062em;
}

.c-Button--match {
	min-width: 10.997471431em;
}

.c-Button--full\@sm {
	width: 100%;
}

@media screen and (min-width: 34.375em) {
	.c-Button--full\@sm {
		width: auto;
	}
}

.c-dclp_container {
	margin: auto;
	max-width: 960px;
	overflow: hidden;
	padding: 2rem 1rem;
}

.c-dclp_showcase {
	position: relative;
}

.c-dclp_showcase::after {
	background-image: url("/l2/assets/imgs/jpg/debt-con-hero.jpg");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 60vh;
	-webkit-transition: 1ms ease;
	transition: 1ms ease;
	width: 100%;
}

.c-dclp_showcase .c-dclp_content {
	height: 350px;
	left: 50%;
	margin-left: -15%;
	margin-top: 105px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 30%;
	z-index: 1;
}

.c-dclp_showcase .c-dclp_content .c-dclp_logo {
	box-shadow: 2px 2px 4px #222;
}

.c-dclp_showcase .c-dclp_content .c-dclp_title {
	color: #fff;
	margin-top: 1rem;
	text-shadow: 2px 2px 6px #222;
}

.c-dclp_showcase .c-dclp_content .c-dclp_title button {
	margin-top: 20px;
}

.c-dclp_showcase .c-dclp_content .c-dclp_ql-style {
	color: #c8102e;
	display: none;
	font-style: italic;
	font-weight: bold;
	text-transform: capitalize;
}

.c-dclp_showcase .c-dclp_page-title {
	background: #0c4569;
	bottom: -1px;
	font-weight: normal;
	left: 0;
	line-height: 1.7;
	position: absolute;
	right: 0;
	z-index: 2;
}

.c-dclp_showcase .c-dclp_page-title h1 {
	color: #fff;
	font-size: 2rem;
	margin: 0;
}

.c-dclp_subhead {
	margin-top: 1rem;
	padding: 0.5rem;
	text-align: center;
	width: 100%;
}

.c-dclp_subhead p {
	color: #5a5a5a;
	font-size: 1.5rem;
	margin: 0;
}

.c-dclp_services h3 {
	color: #fff;
}

.c-dclp_services .c-dclp_services-header {
	color: #fff;
	font-size: 1.5rem;
	margin-bottom: 0;
	padding-top: 1rem;
	text-align: center;
	width: 100%;
}

.c-dclp_blue_bg {
	background: #0c4569;
	color: #fff;
	margin-bottom: 4rem;
	margin-top: 4rem;
}

.c-dclp_blue_bg svg {
	stroke: #aaa;
}

.c-dclp_calculator .c-dclp_container {
	max-width: 1200px;
}

.c-dclp_about h3 {
	color: #0c4569;
}

.c-dclp_about a {
	text-decoration: none;
}

.c-dclp_about a:hover {
	background-color: #f7f7f7;
	border-radius: 1rem;
}

.c-dclp_mb4 {
	margin-bottom: 4rem;
}

.c-dclp_aboutIcon svg {
	height: 100%;
	stroke: #0c4569;
}

.c-dclp_grid-4 {
	-webkit-box-align: start;
	align-items: start;
	display: grid;
	grid-gap: 2rem;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.c-dclp_grid-3 {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr 1fr 1fr;
}

.c-dclp_grid-2 {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 645px) {
	.c-dclp_showcase::after {
		height: 30vh;
	}
	.c-dclp_showcase .c-dclp_content {
		margin-top: 5px;
		top: 5%;
	}
	.c-dclp_showcase .c-dclp_content .c-dclp_logo {
		height: 75px;
		width: 75px;
	}
	.c-dclp_showcase .c-dclp_content .c-dclp_title {
		display: none;
	}
	.c-dclp_showcase .c-dclp_page-title h1 {
		font-size: 1.2rem;
	}
	.c-dclp_grid-4,
	.c-dclp_grid-3,
	.c-dclp_grid-2 {
		grid-template-columns: 1fr;
	}
	.c-dclp_services .c-dclp_container div {
		border-bottom: #f7f7f7 solid 1px;
		padding: 1.2rem 1rem;
	}
}

@media (max-width: 500px) {
	.c-dclp_showcase::after {
		height: 20vh;
	}
}

.c-qdc-assumptions {
	margin-top: 1rem;
}

.c-pplp_showcase {
	position: relative;
}

.c-pplp_showcase::after {
	background-image: url("/l2/assets/imgs/png/D-PowerPackLandingPage-Assets-P1287138-Hero2.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	content: "";
	display: block;
	height: 30vh;
	-webkit-transition: 1ms ease;
	transition: 1ms ease;
	width: 100%;
}

.c-dclp_page-title {
	background-color: #008473;
	color: #fff;
	font-size: 2.3rem;
	font-weight: bold;
	line-height: 1.7;
	padding-bottom: 4px;
	padding-top: 4px;
}

.c-pplp_rocket-homes-logo {
	margin: auto;
	padding: 1rem;
	width: 300px;
}

.c-pplp_rocket-homes-content {
	font-size: 1.2rem;
	margin: auto;
	padding: 1.2rem;
	width: 100%;
}

.c-pplp_rocket-homes-content h4 {
	color: #222;
}

.c-dclp_services .c-dclp_container div {
	-webkit-box-flex: 1;
	flex: 1;
}

.c-pplp_step-container {
	height: 100%;
}

.c-pplp_step-container .c-pplp_number {
	margin: 0 auto;
	width: 50%;
}

.c-pplp_step-container .c-pplp_number img {
	padding: 2rem;
}

@media (max-width: 900px) {
	.c-pplp_step-container .c-pplp_number img {
		padding: 1rem;
	}
}

.c-pplp_step-container .c-pplp_content {
	padding: 15px;
	text-align: left;
	width: 100%;
}

.c-pplp_step-container .c-pplp_content h3 {
	color: #008473;
	font-size: 2.3rem;
	font-weight: bold;
	text-align: center;
}

.c-pplp_sub-step-copy {
	border-bottom: 4px dotted #e5e5e5;
	margin: auto;
	width: 50%;
}

.c-pplp_flex {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
}

.c-pplp_flex .c-pplp_rocket-homes-logo {
	width: 30%;
}

.c-pplp_flex .c-pplp_rocket-homes-content {
	width: 70%;
}

.c-pplp_thankyou-section {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 5% auto;
	width: 80%;
}

.c-pplp_thankyou-section div {
	width: 100%;
}

.c-pplp_thankyou-section .c-pplp_thankyou-copy {
	padding: 1.5rem;
	width: 100%;
}

.c-pplp_thankyou-section .c-pplp_thankyou-copy h2 {
	color: #008473;
	font-size: 2rem;
	text-align: center;
}

.c-pplp_thankyou-section .c-pplp_thankyou_logo {
	text-align: center;
}

.c-pplp_thankyou-section .c-pplp_thankyou_logo img {
	width: 80%;
}

.c-dclp_calculator .c-pplp_container {
	background-color: transparent;
}

@media (max-width: 900px) {
	.c-pplp_showcase::after {
		background-size: 70%;
		height: 35vh;
	}
	.c-dclp_page-title {
		font-size: 1.5rem;
	}
	.c-pplp_sub-step-copy {
		width: 90%;
	}
	.c-pplp_sub-step-copy .c-pplp_rocket-homes-content {
		font-size: 1.2rem;
		margin: auto;
		padding: 1.2rem;
		text-align: center;
		width: 80%;
	}
	.c-pplp_sub-step-copy .c-pplp_rocket-homes-content h4 {
		color: #222;
	}
	.c-pplp_flex {
		display: -webkit-box;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		flex-direction: row;
	}
	.c-pplp_flex .c-pplp_rocket-homes-logo {
		width: 100%;
	}
	.c-pplp_flex .c-pplp_rocket-homes-content {
		width: 100%;
	}
}

.c-pplp_no-wrap {
	white-space: nowrap;
}

@media (max-width: 645px) {
	.c-dclp_services .c-dclp_container div {
		border-bottom: 0;
		padding: 0;
	}
}

@media (max-width: 530px) {
	.c-pplp_showcase::after {
		background-size: 80%;
		height: 25vh;
	}
	.c-dclp_page-title {
		font-size: 1.2rem;
	}
	.c-pplp_step-container .c-pplp_number {
		margin: 0 auto;
		width: 50%;
	}
	.c-pplp_flex {
		display: -webkit-box;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
}

.c-Card {
	background-color: #fff;
	border: 0.125em solid #aaa;
	border-radius: 5px;
}

.c-Card--slider {
	border: 0;
}

@media screen and (min-width: 50em) {
	.c-Card--slider {
		border: 0.125em solid #aaa;
	}
}

@media screen and (min-width: 55em) {
	.c-Card--quad {
		max-width: 45%;
	}
}

.c-Card--leadB {
	border-color: #066cad;
	max-width: 20em;
}

.c-Card--leadB:hover .c-card--leadB__heading,
.c-Card--leadB:active .c-card--leadB__heading,
.c-Card--leadB:focus .c-card--leadB__heading {
	background-color: #3c7814;
}

.c-Card--leadB__heading {
	background-color: #066cad;
	padding: 1em;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.c-qdcContainer {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding: 1em;
}

.c-qdcLabel {
	color: #222;
}

.c-qdcTextBox {
	border-bottom: 1px solid #aaa;
	margin-bottom: 0.5rem;
	width: 100%;
}

.c-qdcCardImgText {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 100%;
}

.c-qdcCardText {
	padding: 20px 16px;
}

.c-qdcCardText h4 {
	color: #222;
}

.c-qdcCardTitle {
	padding-left: 20px;
}

.c-qdcCardImg {
	padding-left: 20px;
}

.c-qdcRightOutput .c-qdcCardContent {
	background: #e5e5e5;
	border-radius: 0.4rem;
	color: #222;
	margin: auto;
	min-height: 100px;
	position: relative;
	width: 90%;
}

.c-qdcRightOutput .c-qdcCardContent ul {
	margin-left: 2rem;
}

.c-qdcRightOutput .c-qdcFormResult {
	display: none;
	margin-left: auto;
	margin-right: auto;
	min-height: 100px;
	position: relative;
	width: 90%;
}

.c-qdcRightOutput .c-qdcMathResult {
	color: #5a5a5a;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	margin-left: auto;
	margin-right: auto;
}

.c-qdcRightOutput .c-qdcMathResultLabel {
	color: #222;
	font-size: 1.2em;
	font-weight: bold;
	padding: 1rem;
	text-align: center;
}

.c-qdcRightOutput .c-qdcMathResultLabel p {
	color: #5a5a5a;
	font-weight: normal;
}

.c-qdcRightOutput .c-qdcContactButton {
	background-color: #1a3555;
	border-color: #066cad;
	border-radius: 5px;
	color: #fff;
	display: block;
	font-size: 1em;
	margin: auto;
	padding: 20px;
	text-align: center;
}

.c-qdcRightOutput .c-qdcResultTitle {
	background: #0c4569;
	color: #fff;
	margin-bottom: 0;
	text-align: center;
	width: 100%;
}

.c-qdcCreditButton {
	background-color: #fff;
	border: 2px solid #0c4569;
	border-radius: 3px;
	color: #0c4569;
	display: inline-block;
	font-size: 16px;
	margin: 3px;
	padding: 3px;
	text-align: center;
	text-decoration: none;
}

.c-qdcVetButton {
	background-color: #fff;
	border: 2px solid #0c4569;
	border-radius: 3px;
	color: #0c4569;
	display: inline-block;
	font-size: 16px;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
}

.c-qdcInputSection {
	border-right: thin solid #0c4569;
	padding: 1em;
}

@media (max-width: 950px) {
	.c-qdcInputSection {
		border-right: thin solid transparent;
	}
}

.c-qdcInformation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 20px;
}

.c-qdcOptions {
	margin-bottom: 10px;
	width: 100%;
}

.c-qdcVetButtonGroup {
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
}

.c-ppcInputError {
	border-color: #b5121b;
}

.c-qdc-blue_bg {
	background: #1a3555;
	color: #fff;
}

.c-qdcCreditRadio {
	display: none;
}

.c-qdcVetRadio {
	display: none;
}

.c-qdcCalculateButton {
	background-color: #066cad;
	border-color: #066cad;
	border-radius: 5px;
	color: #fff;
	display: block;
	font-size: 1em;
	margin: auto;
	padding: 1rem;
	text-align: center;
}

.c-qdcCalculateButton:hover {
	background-color: #3c7814;
	color: #fff;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.c-qdcCalculateButton-clicked {
	background-color: transparent;
	color: #066cad;
}

.c-qdcErrorMessage {
	color: #b5121b;
	font-size: 12px;
	padding-top: 0;
	position: relative;
	top: -10px;
}

.c-qdcToolTip {
	display: none;
}

.qdc-spark-icon {
	fill: #fff;
	position: relative;
	stroke: #0c4569;
	width: 20px;
	z-index: 10;
}

.qdc-spark-icon path {
	fill: #0c4569;
}

.qdc-spark-icon:hover {
	cursor: pointer;
	fill: #0c4569;
	stroke: #fff;
}

.qdc-spark-icon:hover path {
	fill: #fff;
}

.c-qdcContactForm {
	margin-top: 1rem;
}

.c-qdc-credit_buttons div {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	justify-content: center;
}

@media (max-width: 950px) {
	.c-qdcInformation {
		display: grid;
		grid-template-columns: 1fr;
	}
	.c-qdcToolTip {
		display: inline-block;
	}
	.c-qdcRightOutput {
		float: left;
	}
	.c-qdcRightOutput .c-qdcFormResult {
		width: 100%;
	}
	.c-qdcInfo {
		display: none;
	}
	.c-qdcCalculateButton {
		margin: 1rem auto;
	}
}

.c-qdcModalBg {
	background: #222;
	bottom: 0;
	display: none;
	left: 0;
	opacity: 0.7;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 99;
}

.c-qdcModalContent {
	background: #fff;
	border-radius: 5px;
	display: none;
	left: 5%;
	max-height: 50vh;
	overflow-y: auto;
	padding: 10px;
	position: fixed;
	right: 5%;
	top: 10vh;
	z-index: 999;
}

@media (min-width: 900px) {
	.c-qdcModalContent {
		left: 30%;
		right: 30%;
	}
}

.c-qdcModalContent .c-qdcModalHeader {
	font-size: 1.2rem;
	font-weight: bold;
}

.c-qdcModalContent .c-qdcModalFooter {
	background: #fff;
	bottom: 0;
	position: relative;
	width: 100%;
}

.c-qdcModalContent .c-qdcModalFooter .c-qdcCloseModal {
	border: 1px solid #0c4569;
	border-radius: 5px;
	float: right;
	margin-bottom: 10px;
	margin-right: 20px;
}

.c-qdc-disclaimers .legal__copy--title {
	display: inline-block;
}

.c-Icon {
	display: inline-block;
	height: 1em;
	-webkit-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
	vertical-align: middle;
	width: 1em;
}

.c-Icon--small {
	height: 55px;
	width: 55px;
}

.c-Icon--small .svgIcon__lightSide {
	fill: #05456a;
}

.c-Icon--small .svgIcon__darkSide {
	fill: #073552;
}

.c-Icon--purple .svgIcon__lightSide {
	fill: #44235d;
}

.c-Icon--purple .svgIcon__darkSide {
	fill: #250f38;
}

.c-Icon--big {
	height: 1.38084em;
	width: auto;
}

.c-Icon--award {
	height: 6.8125em;
	width: 4.25em;
}

.c-Icon--badge {
	height: 6.9375em;
	width: 4.375em;
}

.c-Icon--bottom {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.c-Icon--bullet {
	margin-left: -1.2em;
}

.c-Icon--toggle {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.c-Icon--baseline {
	vertical-align: baseline;
}

.c-Icon--alignBottom {
	vertical-align: bottom;
}

.c-Icon--bucket {
	height: 10em;
	margin-left: -3.2em;
	width: 8em;
}

@media screen and (min-width: 66.25em) {
	.c-Icon--bucket {
		width: 9em;
	}
}

.c-Icon--center {
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.c-Incentives {
	color: #0c4569;
	margin: auto;
	margin-right: 0;
}

.c-Incentives__heading {
	text-align: center;
}

.c-Incentives__item {
	padding: 20px 10px;
}

.c-Incentives__item + .c-Incentives__item {
	border-top: 2px solid #c3d3e3;
}

.c-Incentives__item__copy {
	margin-left: 10px;
	text-align: left;
	width: 79%;
}

.c-Incentives__item__copy,
.c-Icon--small {
	display: inline-block;
	font-size: 1.1em;
	vertical-align: middle;
}

.c-Incentives--purple,
.c-Incentives--purple h3 {
	color: #250f38;
}

.c-Incentives--horizontal {
	margin: auto;
	max-width: 1200px;
	text-align: center;
}

.c-Incentives--horizontal .c-Incentives__item {
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

.c-Incentives--horizontal .c-Incentives__item + .c-Incentives__item {
	border-top: 0;
}

.c-Incentives--horizontal .c-Incentives__item__copy {
	margin-left: 0;
	margin-top: 10px;
	text-align: center;
	width: 100%;
}

.c-Incentives--horizontal--1 {
	max-width: 240px;
}

.c-Incentives--horizontal--2 {
	max-width: 480px;
}

.c-Incentives--horizontal--3 {
	max-width: 720px;
}

.c-Incentives--horizontal--4 {
	max-width: 960px;
}

.c-Incentives--horizontal--5 {
	max-width: 1200px;
}

.c-Lightbox {
	background-color: rgba(0, 0, 0, 0.9);
	position: fixed;
	z-index: 1000;
}

.c-Lightbox__content,
.c-Lightbox {
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}

.c-Lightbox__content {
	position: absolute;
}

.c-Lightbox__btn,
.c-Lightbox__btn:hover {
	background: 0;
	border: 0;
}

.c-Lightbox__media {
	height: 34%;
	width: 90%;
}

@media screen and (min-width: 30em) {
	.c-Lightbox__media {
		height: 60%;
	}
}

@media screen and (min-width: 65.625em) {
	.c-Lightbox__media {
		height: 72%;
		width: 68%;
	}
}

.c-Masthead {
	padding: 1em;
}

@media screen and (min-width: 50em) {
	.c-Masthead {
		padding: 2.03384em;
	}
}

.c-Masthead--shortAndWide {
	padding: 0 2rem;
}

.c-Masthead--alt {
	float: left;
	width: 100%;
}

.c-Masthead-logo--primary {
	display: inline-block;
	max-width: 275px;
	min-width: 170px;
	width: 50vw;
}

.c-Masthead-logo--secondary {
	text-align: center;
}

@media screen and (min-width: 46em) {
	.c-Masthead-logo--secondary {
		border-left: 1px solid #222;
		display: inline-block;
		margin: 0;
		padding-left: 10px;
	}
}

.c-Masthead-logo--secondary__img {
	margin-top: 1em;
	width: 200px;
}

@media screen and (min-width: 46em) {
	.c-Masthead-logo--secondary__img {
		margin-top: initial;
	}
}

.mv-rho-button model-viewer {
	outline: 0;
	width: 100%;
}

.c-Navigation {
	float: right;
	line-height: initial;
	margin-top: inherit;
}

@media screen and (min-width: 46em) {
	.c-Navigation--alt {
		float: right;
	}
}

.c-Notification {
	background-color: #e5e5e5;
	border-radius: 5px;
	display: table;
}

.c-Notification,
.c-Notification__icon {
	min-height: 50px;
}

.c-Notification__icon,
.c-Notification__text {
	display: table-cell;
}

.c-Notification__text {
	font-weight: bold;
	vertical-align: middle;
}

.c-Notification__icon {
	width: 50px;
}

.c-Notification__icon--success {
	background-color: #066cad;
}

.c-Notification__icon--alert {
	background-color: #ff9b00;
}

.c-Notification__icon--failure {
	background-color: #b5121b;
}

.c-Notification__icon--info {
	background-color: #1a3555;
}

.c-Notification__icon--close {
	background-color: transparent;
	border: 0;
}

.c-Notification__icon:first-child {
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	text-align: center;
	vertical-align: middle;
}

.c-Notification__icon:last-child {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
	cursor: pointer;
	float: right;
}

.c-Pipelist .c-Pipelist__item {
	border-right: 0.0625em solid #aaa;
	display: inline-block;
	margin-right: 0.32681em;
	padding-right: 0.52446em;
}

.c-Pipelist .c-Pipelist__item:first-child {
	padding-left: 0;
}

.c-Pipelist .c-Pipelist__item:last-child {
	border: 0;
}

.c-ppccont {
	margin: auto;
	max-width: 1200px;
	padding: 1em;
}

.c-ppcFormList,
.c-ppcFormList__item {
	list-style-type: none;
}

.c-ccpWrap {
	box-shadow: 0 0 20px #5a5a5a;
}

.c-ppcSub-Button {
	background-color: #008473;
	border: 2px solid #008473;
	border-radius: 5px;
	color: #fff;
	display: block;
	font-size: 16px;
	margin: 40px auto;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
}

.c-ppcSub-Button:hover {
	background-color: #007667;
}

.c-ppcSub-Button-clicked {
	background-color: transparent;
	color: #008473;
}

.c-ppcSub-Button-clicked:hover {
	background-color: #007667;
	color: #fff;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.c-powerPack-c-dollar-sign {
	color: #aaa;
	font-size: 1rem;
	position: absolute;
	z-index: 2;
}

.c-ppcInfo {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	width: 100%;
}

.c-ppcInfo .c-ppcForm {
	margin-top: 10px;
	padding: 1em;
	width: 50%;
}

.c-ppcInfo .c-ppcForm label {
	color: #008473;
}

.c-ppcInfo .c-ppcForm .c-ppcInput {
	border-bottom: 1px solid #aaa;
	padding-left: 0.75rem;
	width: 100%;
}

.c-ppcInfo .c-ppcForm .c-ppcInputError {
	border-color: #b5121b;
}

.c-ppcInfo .c-ppcForm .c-ppcErrorMessage {
	color: #b5121b;
	font-size: 12px;
	margin-left: 7px;
	padding-top: 0;
	position: relative;
}

.c-ppcCard {
	background-color: #dadada;
	padding: 1em;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 50%;
}

.c-ppcCard .c-ppcCardCont .c-ppcInfoLab {
	background-color: #008473;
	color: #fff;
	font-size: 1.5em;
	font-weight: bold;
	padding: 0.5rem;
	text-align: center;
	width: 100%;
}

.c-ppcCard .c-ppcCardCont .c-ppcResultsTitle {
	color: #222;
	font-weight: normal;
	margin-top: 1rem;
	text-align: center;
	width: 100%;
}

.c-ppcCard .c-ppcCardCont .c-ppcCount {
	color: #008473;
	font-size: 1.5rem;
	text-align: center;
	width: 100%;
}

.c-ppcCard .c-ppcCardCont .c-ppcCallNow {
	font-size: 1rem;
	margin: 1rem auto;
	text-align: center;
	width: 50%;
}

.c-ppcCard .c-ppcCardCont .c-ppcCallNow a {
	color: #222;
	text-decoration: none;
}

.c-ppcCard .c-ppcCardCont .c-ppcCallNow a:hover {
	color: #007667;
	text-decoration: underline;
}

.c-ppcCard .c-ccpResult {
	display: none;
	margin: auto;
	position: relative;
}

.c-ppcCard .c-ccpResult label {
	color: #008473;
}

.c-ppcCard .c-ppcSpace {
	background-color: transparent;
	border-bottom: 1px solid #aaa;
	width: 100%;
}

@media (max-width: 950px) {
	.c-ppcInfo {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
	.c-ppcInfo .c-ppcForm {
		width: 95%;
	}
	.c-ppcInfo .c-ppcCard {
		margin-top: 25px;
		width: 100%;
	}
}

@media (max-width: 530px) {
	.c-ppcCard .c-ppcCardCont .c-ppcInfoLab {
		font-size: 1.2em;
	}
}

.c-ProgressPad {
	padding: 0 1em;
}

.c-ProgressPad__wrapper {
	border: 4px solid #1a3555;
	margin: 1em auto 0;
	max-width: 100%;
	overflow: hidden;
	width: 54em;
}

.c-ProgressPad__af-scene {
	height: 14em;
	position: relative;
}

@media screen and (min-width: 46em) {
	.c-ProgressPad__af-scene {
		height: 24em;
	}
}

.c-ProgressPie {
	height: 7.5rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: -3.75rem;
	width: 7.5rem;
}

@media screen and (max-width: 46em) {
	.c-ProgressPie {
		margin-top: 1.75rem;
	}
}

.c-ProgressPie__progress {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.c-ProgressPie__text {
	fill: #1a3555;
	text-anchor: middle;
}

.c-rho_container {
	-webkit-box-align: center;
	align-items: center;
	background-image: url("/l2/assets/imgs/jpg/rockethomes_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	min-height: 90vh;
	width: 100%;
}

@media (max-width: 800px) {
	.c-rho_container {
		background-image: none;
		min-height: 0;
	}
}

.c-rho_content-container {
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 1rem 1rem 4rem #222;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 1rem;
	min-height: 40vh;
	opacity: 1;
	padding: 1rem;
	width: 60%;
}

@media (max-width: 1700px) {
	.c-rho_content-container {
		width: 70%;
	}
}

@media (max-width: 1460px) {
	.c-rho_content-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
		width: 75%;
	}
}

@media (max-width: 1000px) {
	.c-rho_content-container {
		width: 80%;
	}
}

@media (max-width: 800px) {
	.c-rho_content-container {
		border-radius: 0;
		box-shadow: none;
		margin: 0;
		opacity: 1;
		width: 100%;
	}
}

.c-rho_sweepstakes {
	border-right: 2px solid #e5e5e5;
	-webkit-box-flex: 1;
	flex: 1;
	flex-basis: auto;
	flex-grow: 1;
	flex-shrink: 1;
	padding: 1rem;
}

@media (max-width: 1400px) {
	.c-rho_sweepstakes {
		border-right: 0;
		border-top: 2px solid #e5e5e5;
	}
}

.c-rho_form-container {
	-webkit-box-flex: 2;
	flex: 2;
}

.c-Slider {
	overflow-x: hidden;
}

.c-Slider,
.c-Slider__slide {
	width: 20em;
}

@media screen and (min-width: 40em) {
	.c-Slider,
	.c-Slider__slide {
		width: 35em;
	}
}

.c-Slider--single {
	min-height: 21em;
}

@media screen and (min-width: 51em) {
	.c-Slider--single {
		width: 50.25em;
	}
}

.c-Slider__container {
	position: relative;
	width: 100%;
}

.c-Slider__slide {
	float: left;
	position: relative;
}

.c-Slider__slide--single {
	padding: 0.49168em;
}

@media screen and (min-width: 40em) {
	.c-Slider__slide--single {
		padding: 1em 6.93205em;
	}
}

@media screen and (min-width: 51em) {
	.c-Slider__slide--single {
		width: 50em;
	}
}

.c-Slider__slide--quad {
	width: 25%;
}

@media screen and (min-width: 61em) {
	.c-Slider__slide--quad {
		padding-bottom: 3em;
		padding-top: 3em;
	}
}

.c-rmta_hero {
	background: #222;
	min-height: 90vh;
	min-width: 100%;
	position: relative;
	width: 100%;
}

.c-rmta_hero::before {
	background-image: url("/l2/assets/imgs/jpg/textapp-hero_bg.jpg");
	background-position: center;
	background-size: cover;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0.4;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.c-rmta_hero .c-rmta_hero-content {
	-webkit-box-align: center;
	align-items: center;
	color: #fff;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	height: 90vh;
	-webkit-box-pack: center;
	justify-content: center;
	position: relative;
	width: 100%;
	z-index: 3;
}

@media (max-width: 1000px) {
	.c-rmta_hero .c-rmta_hero-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_green-button {
	background-color: #008473;
	border: 0 solid #222;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 1.5rem;
	font-weight: inherit;
	line-height: normal;
	margin: 0;
	overflow: visible;
	padding: 16px 32px;
	position: relative;
	text-align: center;
	top: -8px;
	-webkit-transform: all 1s ease-in-out;
	transform: all 1s ease-in-out;
	vertical-align: middle;
	white-space: normal;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_green-button:hover {
	background-color: #007667;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_green-button {
		margin: 1rem 1rem auto;
	}
}

@media (max-width: 700px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_green-button {
		margin: auto;
		margin-top: 3rem;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_left-column {
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-pack: center;
	justify-content: center;
}

@media (max-width: 1000px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_left-column {
		display: none;
		-webkit-box-flex: 0;
		flex: 0;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_left-column .c-rmta_the-phone {
	text-align: center;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_left-column .c-rmta_the-phone img {
	height: 70vh;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_left-column .c-rmta_the-phone small {
	color: #aaa;
	display: block;
	text-align: center;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column {
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-pack: start;
	justify-content: start;
}

@media (max-width: 1000px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column {
		-webkit-box-align: center;
		align-items: center;
		-webkit-box-flex: 0;
		flex: 0;
		-webkit-box-pack: center;
		justify-content: center;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form h2 {
	color: #fff;
	font-size: 3rem;
	font-weight: normal;
	margin-bottom: 0;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form h2 {
		font-size: 3rem;
		text-align: center;
	}
}

@media (max-width: 700px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form h2 {
		font-size: 2.5rem;
		text-align: center;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form p {
	font-size: 1.4rem;
	width: 50%;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form p {
		margin: auto;
		text-align: center;
	}
}

@media (max-width: 700px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form p {
		font-size: 1rem;
		margin: auto;
		text-align: center;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form {
	position: relative;
	width: 60%;
	z-index: 3;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form {
		margin: auto;
		text-align: center;
		width: 80%;
	}
}

@media (max-width: 700px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form {
		text-align: center;
		width: 95%;
	}
}

@media (max-width: 500px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form {
		width: 95%;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form input {
	border-bottom: 2px solid #fff;
	border-radius: 0;
	color: #fff;
	font-size: 2rem;
	margin-right: 1rem;
	padding: 3px;
	text-align: center;
	width: 100%;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form input:focus {
	outline: 0;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form input {
		margin: auto;
		width: 70%;
	}
}

@media (max-width: 700px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form input {
		margin: auto;
		width: 80%;
	}
}

@media (max-width: 500px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form input {
		width: 90%;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form label {
	color: #aaa;
	margin-top: 0;
	padding-bottom: 1.5rem;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form .c-rmta_message {
	background: #c8102e;
	border-radius: 5px;
	color: #fff;
	padding: 5px 10px;
	text-align: center;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form form .c-rmta_message a {
	color: #fff;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container {
	display: none;
	height: 80vh;
	position: relative;
	width: 100%;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message {
		-webkit-box-align: center;
		align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-pack: center;
		justify-content: center;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_the-check-circle {
	justify-self: end;
	overflow: hidden;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_the-check-circle {
		justify-self: center;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_success-check {
	background: #008473;
	border-radius: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	height: 200px;
	margin: 2rem auto;
	position: relative;
	width: 200px;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_success-check i {
	align-self: center;
	color: #fff;
	font-size: 6rem;
	justify-self: center;
	text-align: center;
	text-shadow: 2px 2px 6px #222;
	width: 100%;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_success-check i path {
	stroke: #fff;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_success-text {
	-webkit-box-flex: 1;
	flex: 1;
	text-align: center;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_success-text h1 {
	color: #fff;
	font-size: 3rem;
	font-weight: normal;
	margin-bottom: 0;
	padding-left: 20px;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_success-text h1 {
		text-align: center;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_success-text p {
	color: #fff;
	font-size: 1.3rem;
	font-weight: normal;
	margin: auto;
	padding: 10px 20px;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_success-text p {
		margin: auto;
		text-align: center;
		width: 80%;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_success-text .c-rmta_light-green {
	color: #008473;
}

@media (max-width: 1440px) {
	.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_awwsnap {
		margin: auto;
		text-align: center;
		width: 80%;
	}
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_awwsnap a {
	color: #aaa;
	margin-bottom: 0;
	margin-left: 10px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_awwsnap a:hover {
	color: #008473;
	text-decoration: underline;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_awwsnap .c-rmta_awwsnap_icon {
	height: 1rem;
	padding-right: 0.5rem;
	width: 1rem;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_awwsnap .c-rmta_awwsnap_icon svg {
	height: 1rem;
	width: 1rem;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_awwsnap .c-rmta_awwsnap_icon circle {
	fill: #008473;
	stroke: #fff;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_awwsnap .c-rmta_awwsnap_icon path {
	stroke: #fff;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_right-column .c-rmta_the-form .c-rmta_text-message-sent-container .c-rmta_success-message .c-rmta_awwsnap .c-rmta_awwsnap_icon .c-rmta-fill-green {
	fill: #008473;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_mobile-container {
	color: #fff;
	margin: auto;
	text-align: center;
	width: 90%;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_mobile-container h3 {
	border-bottom: 2px solid #008473;
	color: #fff;
	font-size: 2rem;
	font-weight: normal;
	padding-bottom: 2rem;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_mobile-container p {
	color: #aaa;
	font-size: 1.4rem;
	margin-bottom: 50px;
	padding: 10px;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_mobile-container .c-rmta-unknown {
	font-size: 1.5rem;
	padding: 1rem;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_mobile-container .c-rmta-unknown a {
	color: #fff;
	font-size: 1rem;
	text-decoration: none;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_mobile-container .c-rmta-unknown a:hover {
	cursor: pointer;
	text-decoration: underline;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_mobile-container a {
	text-decoration: none;
}

.c-rmta_hero .c-rmta_hero-content .c-rmta_mobile-container .c-rmta_mobile_button {
	background-color: #d3ef8d;
	border: 0 solid #222;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: inherit;
	font-weight: inherit;
	line-height: normal;
	margin: 0;
	overflow: visible;
	padding: 16px 32px;
	position: relative;
	text-align: center;
	top: -8px;
	vertical-align: middle;
	white-space: normal;
}

.c_refer-tagline h2 {
	background-color: #0c4569;
	border-bottom: 1px solid #1a3555;
	color: #fff;
	font-size: 3rem;
	margin-bottom: 0.5rem;
	padding: 0 1rem;
	text-align: center;
}

@media (max-width: 700px) {
	.c_refer-tagline h2 {
		font-size: 2rem;
	}
}

.c_refer-tagline p {
	font-size: 1.5rem;
	padding: 0 1rem;
	text-align: center;
	width: 100%;
}

.c_refer-column-container {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	margin-top: 3rem;
	width: 90%;
}

@media (max-width: 1300px) {
	.c_refer-column-container {
		display: block;
		margin: auto;
	}
}

.c_refer-column-container .c_refer-left-column {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}

.c_refer-column-container .c_refer-right-column {
	-webkit-box-flex: 1;
	flex: 1;
}

@media (max-width: 1300px) {
	.c_refer-column-container .c_refer-right-column {
		width: 80%;
	}
}

@media (max-width: 1000px) {
	.c_refer-column-container .c_refer-right-column {
		width: 100%;
	}
}

.c_refer-thankyou {
	margin: auto;
	width: 90%;
}

.c_refer-thankyou .c_refer-centerTheSvg {
	text-align: center;
}

.c_refer-thankyou div {
	padding: 1rem;
}

.c_refer-thankyou div:first-child {
	-webkit-box-flex: 1;
	flex: 1;
}

.c_refer-thankyou div:last-child {
	-webkit-box-flex: 2;
	flex: 2;
}

.c_refer-thankyou svg {
	fill: #066cad;
	max-width: 40%;
	stroke: #fff;
}

.c_refer-thankyou h3 {
	font-size: 2rem;
	margin-bottom: 0;
}

.c_refer-thankyou p {
	font-size: 1.5rem;
}

@media (max-width: 800px) {
	.c_refer-thankyou p {
		font-size: 1rem;
	}
}

.c_refer-main-left-content {
	width: 80%;
}

@media (max-width: 1000px) {
	.c_refer-main-left-content {
		width: 100%;
	}
}

.c_refer-main-left-content .c_refer-main-content-header {
	text-align: center;
}

.c_refer-main-left-content .c_refer-main-content-header img {
	width: 100%;
}

.c_refer-main-left-content .c_refer-main-content-copy h3 {
	background-color: #0c4569;
	color: #fff;
	font-size: 2rem;
	padding-left: 1rem;
}

@media (max-width: 1600px) {
	.c_refer-main-left-content .c_refer-main-content-copy h3 {
		font-size: 1.5rem;
	}
}

.c_refer-main-left-content .c_refer-main-content-copy p {
	color: #222;
	font-size: 1.5rem;
}

@media (max-width: 700px) {
	.c_refer-main-left-content .c_refer-main-content-copy p {
		font-size: 1.2rem;
	}
}

.c_refer-form p {
	color: #222;
	font-size: 1.2rem;
	font-weight: bold;
}

.c_refer-form .c_refer-input-group {
	display: -webkit-box;
	display: flex;
	padding: 1rem;
}

.c_refer-form .c_refer-input-group div:last-child {
	-webkit-box-flex: 1;
	flex-grow: 1;
	margin-left: 1rem;
}

.c_refer-form .c_refer-input-group svg {
	fill: none;
	height: 50px;
	stroke: #0c4569;
	width: 50px;
}

.c_refer-form .c_refer-input-group label {
	color: #aaa;
}

.c_refer-form .c_refer-input-group .c_refer-as-label {
	color: #0c4569;
	margin-top: 15px;
}

.c_refer-form .c_refer-input-group input {
	border-bottom: 2px solid #e5e5e5;
	font-size: 1rem;
	line-height: 2rem;
	width: 100%;
}

.c_refer-form .c_refer-input-group input::-webkit-input-placeholder {
	color: #e5e5e5;
}

.c_refer-form .c_refer-input-group input::-moz-placeholder {
	color: #e5e5e5;
}

.c_refer-form .c_refer-input-group input:-ms-input-placeholder {
	color: #e5e5e5;
}

.c_refer-form .c_refer-input-group input::-ms-input-placeholder {
	color: #e5e5e5;
}

.c_refer-form .c_refer-input-group input::placeholder {
	color: #e5e5e5;
}

.c_refer-button-and-messages {
	text-align: center;
}

.c_refer-button-and-messages button {
	width: 50%;
}

@media (max-width: 800px) {
	.c_refer-button-and-messages button {
		margin: 1rem auto;
		width: 100%;
	}
}

.c_refer-form-error {
	color: #b5121b;
	padding: 1rem;
	text-align: center;
}

hr {
	background: #f5be40;
}

.c_refer-video-container {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	padding-top: 30px;
	position: relative;
}

.c_refer-video-container iframe,
.c_refer-video-container object,
.c_refer-video-container embed {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.c_refer-video-variant {
	width: 80%;
}

@media (max-width: 1000px) {
	.c_refer-video-variant {
		width: 100%;
	}
}

.c_refer-tac {
	padding: 1rem 0;
}

.c_refer-subButton {
	background-color: #066cad;
	border: 2px solid #066cad;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	margin: 1rem;
	outline: none;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
}

.c_refer-subButton:hover {
	background-color: #3c7814;
}

.c_sb-video-padding {
	padding: 2rem;
}

.c_sb--mobile-video {
	border-radius: 10px;
	display: none;
	margin: 2rem auto;
	min-height: 300px;
	width: 90%;
}

@media (max-width: 1300px) {
	.c_sb--mobile-video {
		display: block;
	}
}

.c_sb-redBar {
	background: #c8102e;
	height: 10px;
	width: 6rem;
}

.c_sb--video-container {
	height: 0;
	padding-bottom: 56.25%;
	padding-top: 30px;
	position: relative;
	width: 100%;
}

.c_sb--video-container iframe,
.c_sb--video-container object,
.c_sb--video-container embed {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.c_sb--right {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 4rem;
	position: relative;
}

@media (max-width: 1000px) {
	.c_sb--right {
		display: block;
		-webkit-box-flex: 2;
		flex: 2;
		margin: auto;
		text-align: center;
		width: 80%;
	}
}

@media (max-width: 1300px) {
	.c_sb--right {
		-webkit-box-flex: 1;
		flex: 1;
	}
}

.c_sb--right img {
	border-radius: 10px;
	width: 80%;
}

@media (max-height: 800px) {
	.c_sb--right img {
		width: 100%;
	}
}

.c_sb-carousel-copy {
	-webkit-box-align: start;
	align-items: flex-start;
}

@media (max-width: 1000px) {
	.c_sb-carousel-copy {
		margin: 2rem;
		width: auto;
	}
}

.c_sb-carousel-copy h3 {
	color: #333;
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 1rem;
	text-align: left;
	width: 100%;
}

@media (max-width: 1440px) {
	.c_sb-carousel-copy h3 {
		font-size: 2.5rem;
	}
}

.c_sb-carousel-copy p {
	color: #333;
	font-size: 1.5rem;
	font-weight: 200;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	padding-top: 1rem;
	width: 70%;
}

@media (max-width: 1440px) {
	.c_sb-carousel-copy p {
		text-align: left;
		width: 100%;
	}
}

@media (max-width: 700px) {
	.c_sb-wereHere-right img {
		width: 100%;
	}
}

.c_sb-cta-group {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	justify-items: center;
	width: 100%;
}

.c_sb-cta-group a {
	-webkit-box-flex: 1;
	flex: 1;
	margin: 1rem;
}

@media (max-width: 600px) {
	.c_sb-cta-group {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
	.c_sb-cta-group a {
		width: 100%;
	}
}

.u-rocketButton-m2 {
	background-color: #008473;
	border: 2px solid #008473;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
}

.u-rocketButton-sb-inverse {
	background-color: #fff;
	border: 2px solid #fff;
	border-radius: 5px;
	color: #333;
	font-size: 1rem;
	margin: 0;
	outline: none;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
}

.u-rocketButton-sb-inverse:hover {
	background-color: #f7f7f7;
	border: 2px solid #008473;
}

.c_sb-lowerTagline2 {
	height: 45vh;
	position: relative;
	width: 100%;
	z-index: 1;
}

@media (max-width: 1000px) {
	.c_sb-lowerTagline2 {
		height: auto;
	}
}

@media (max-height: 700px) {
	.c_sb-lowerTagline2 {
		height: auto;
	}
}

.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container {
	background-color: #007dba;
	bottom: 0;
	height: 40vh;
	position: absolute;
	width: 100%;
	z-index: 2;
}

@media (max-width: 1300px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container {
		height: 43vh;
	}
}

@media (max-height: 750px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container {
		height: 45vh;
	}
}

@media (max-height: 700px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container {
		height: 60vh;
		position: relative;
	}
}

@media (max-height: 500px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container {
		height: 80vh;
	}
}

@media (max-width: 1000px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container {
		display: -webkit-box;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		height: auto;
		position: relative;
		text-align: center;
	}
}

.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy {
	align-self: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: center;
	justify-content: center;
	margin-left: 10%;
	padding: 1rem;
	text-align: center;
	width: 50%;
}

@media (max-width: 1300px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy {
		margin-left: 0;
		width: 60%;
	}
}

@media (max-width: 1000px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy {
		margin: auto;
		width: 90%;
	}
}

.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.5rem;
	margin: 0;
	padding: 0.5rem;
}

@media (max-width: 1300px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy h2 {
		font-size: 1.8rem;
	}
}

@media (max-width: 1000px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy h2 {
		font-size: 2rem;
		line-height: 2rem;
	}
}

.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy p {
	color: #fff;
	font-size: 1.3rem;
	margin: auto;
	padding: 1rem;
	text-align: center;
	width: 60%;
}

@media (max-width: 1300px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy p {
		font-size: 1.2rem;
	}
}

@media (max-width: 1000px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy p {
		font-size: 1.3rem;
		width: 80%;
	}
}

@media (max-width: 700px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-blue-container .c_sb-lowerTagline2-copy p {
		font-size: 1.3rem;
		width: 100%;
	}
}

.c_sb-lowerTagline2 .c_sb-lowerTagline2-image-container {
	bottom: 0;
	position: absolute;
	right: 20%;
	z-index: 3;
}

@media (max-width: 1300px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-image-container {
		right: 10%;
	}
}

@media (max-width: 1000px) {
	.c_sb-lowerTagline2 .c_sb-lowerTagline2-image-container {
		position: relative;
		right: auto;
	}
}

.c_sbmm--left {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 4rem;
	position: relative;
}

@media (max-width: 1000px) {
	.c_sbmm--left {
		display: block;
		-webkit-box-flex: 2;
		flex: 2;
		margin: auto;
		text-align: center;
		width: 80%;
	}
}

@media (max-width: 1300px) {
	.c_sbmm--left {
		-webkit-box-flex: 1;
		flex: 1;
	}
}

.c_sbmm--left img {
	border-radius: 10px;
	width: 80%;
}

@media (max-height: 800px) {
	.c_sbmm--left img {
		width: 100%;
	}
}

.c_traditions-dflex {
	display: -webkit-box;
	display: flex;
}

@media (max-width: 1000px) {
	.c_traditions-dflex {
		display: block;
	}
}

.c_traditions-hero {
	-webkit-box-align: center;
	align-items: center;
	background: url("/l2/assets/imgs/jpg/D-Static-MTH-1280x854-Traditions-LandingPage-P1486330.jpg") no-repeat center -120px / cover;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	padding-bottom: 2rem;
	padding-top: 2rem;
	position: relative;
}

@media (max-width: 1000px) {
	.c_traditions-hero {
		background-position: center top;
	}
}

.c_traditions-hero .c_traditions-hero-content {
	-webkit-box-align: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.4);
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-box-pack: center;
	justify-content: center;
	max-width: 1300px;
	padding: 1rem;
	width: 90%;
}

@media (max-width: 500px) {
	.c_traditions-hero .c_traditions-hero-content {
		padding: 0;
	}
}

@media (max-width: 1000px) {
	.c_traditions-hero .c_traditions-hero-content {
		height: 100%;
		padding-bottom: 0;
		padding-top: 0;
	}
}

.c_traditions-hero .c_traditions-hero-content .c_traditions-hero-left {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 1rem;
}

@media (max-width: 500px) {
	.c_traditions-hero .c_traditions-hero-content .c_traditions-hero-left {
		display: block;
		padding: 0;
		text-align: center;
	}
}

.c_traditions-hero .c_traditions-hero-content .c_traditions-hero-right {
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}

@media (max-width: 1300px) {
	.c_traditions-hero .c_traditions-hero-content .c_traditions-hero-right {
		display: none;
	}
}

.c_traditions-hero .c_traditions-hero-content h2 {
	color: #fff;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
	margin: 0;
	padding: 1rem;
	text-align: center;
}

@media (max-width: 1000px) {
	.c_traditions-hero .c_traditions-hero-content h2 {
		font-size: 2rem;
	}
}

@media (max-width: 700px) {
	.c_traditions-hero .c_traditions-hero-content h2 {
		font-size: 1.5rem;
	}
}

.c_traditions-hero .c_traditions-hero-content h4 {
	color: #f5be40;
	font-size: 2rem;
	padding: 0 1rem;
	text-align: center;
}

@media (max-width: 700px) {
	.c_traditions-hero .c_traditions-hero-content h4 {
		font-size: 1.2rem;
	}
}

.c_traditions-hero .c_traditions-hero-content p {
	color: #fff;
	font-size: 1.5rem;
	margin: 2rem;
	text-align: center;
}

@media (max-width: 700px) {
	.c_traditions-hero .c_traditions-hero-content p {
		font-size: 1rem;
	}
}

.c_traditions-hero .c_traditions-video-container {
	min-height: 300px;
	width: 80%;
}

.c_traditions-video-bg {
	background-image: url("/l2/assets/imgs/jpg/video-bg-traditions.jpg");
}

.c_college-basketball-dflex {
	display: -webkit-box;
	display: flex;
}

@media (max-width: 1000px) {
	.c_college-basketball-dflex {
		display: block;
	}
}

.c_college-basketball-hero {
	-webkit-box-align: center;
	align-items: center;
	background: url("/l2/assets/imgs/jpg/hero-college-basketball.jpg") no-repeat center bottom/cover;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	padding-bottom: 2rem;
	padding-top: 2rem;
	position: relative;
}

@media (max-width: 1000px) {
	.c_college-basketball-hero {
		background-position: center top;
	}
}

.c_college-basketball-hero .c_college-basketball-hero-content {
	-webkit-box-align: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.4);
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-box-pack: center;
	justify-content: center;
	max-width: 1300px;
	padding: 1rem;
	width: 90%;
}

@media (max-width: 500px) {
	.c_college-basketball-hero .c_college-basketball-hero-content {
		padding: 0;
	}
}

@media (max-width: 1000px) {
	.c_college-basketball-hero .c_college-basketball-hero-content {
		height: 100%;
		padding-bottom: 0;
		padding-top: 0;
	}
}

.c_college-basketball-hero .c_college-basketball-hero-content .c_college-basketball-hero-left {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 1rem;
}

@media (max-width: 500px) {
	.c_college-basketball-hero .c_college-basketball-hero-content .c_college-basketball-hero-left {
		display: block;
		padding: 0;
		text-align: center;
	}
}

.c_college-basketball-hero .c_college-basketball-hero-content .c_college-basketball-hero-right {
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}

@media (max-width: 1300px) {
	.c_college-basketball-hero .c_college-basketball-hero-content .c_college-basketball-hero-right {
		display: none;
	}
}

.c_college-basketball-hero .c_college-basketball-hero-content h2 {
	color: #fff;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
	margin: 0;
	padding: 1rem;
	text-align: center;
}

@media (max-width: 1000px) {
	.c_college-basketball-hero .c_college-basketball-hero-content h2 {
		font-size: 2rem;
	}
}

@media (max-width: 700px) {
	.c_college-basketball-hero .c_college-basketball-hero-content h2 {
		font-size: 1.5rem;
	}
}

.c_college-basketball-hero .c_college-basketball-hero-content h4 {
	color: #f5be40;
	font-size: 2rem;
	padding: 0 1rem;
	text-align: center;
}

@media (max-width: 700px) {
	.c_college-basketball-hero .c_college-basketball-hero-content h4 {
		font-size: 1.2rem;
	}
}

.c_college-basketball-hero .c_college-basketball-hero-content p {
	color: #fff;
	font-size: 1.5rem;
	margin: 2rem;
	text-align: center;
}

@media (max-width: 700px) {
	.c_college-basketball-hero .c_college-basketball-hero-content p {
		font-size: 1rem;
	}
}

.c_college-basketball-hero .c_college-basketball-video-container {
	min-height: 300px;
	width: 80%;
}

.c_brand_page_t1--video-bg.c_college-basketball-video-bg {
	background-image: url("/l2/assets/imgs/jpg/video-bg-college-basketball.jpg");
	background-position: center -100px;
}

@media (max-width: 900px) {
	.c_brand_page_t1--video-bg.c_college-basketball-video-bg {
		background-position: center;
	}
}

.c_college-football-dflex {
	display: -webkit-box;
	display: flex;
}

@media (max-width: 1000px) {
	.c_college-football-dflex {
		display: block;
	}
}

.c_college-football-hero {
	-webkit-box-align: center;
	align-items: center;
	background: url("/l2/assets/imgs/jpg/hero-college-football.jpg") no-repeat center bottom/cover;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	padding-bottom: 2rem;
	padding-top: 2rem;
	position: relative;
}

@media (max-width: 1000px) {
	.c_college-football-hero {
		background-position: center top;
	}
}

.c_college-football-hero .c_college-football-hero-content {
	-webkit-box-align: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.4);
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-box-pack: center;
	justify-content: center;
	max-width: 1300px;
	padding: 1rem;
	width: 90%;
}

@media (max-width: 500px) {
	.c_college-football-hero .c_college-football-hero-content {
		padding: 0;
	}
}

@media (max-width: 1000px) {
	.c_college-football-hero .c_college-football-hero-content {
		height: 100%;
		padding-bottom: 0;
		padding-top: 0;
	}
}

.c_college-football-hero .c_college-football-hero-content .c_college-football-hero-left {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 1rem;
}

@media (max-width: 500px) {
	.c_college-football-hero .c_college-football-hero-content .c_college-football-hero-left {
		display: block;
		padding: 0;
		text-align: center;
	}
}

.c_college-football-hero .c_college-football-hero-content .c_college-football-hero-right {
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}

@media (max-width: 1300px) {
	.c_college-football-hero .c_college-football-hero-content .c_college-football-hero-right {
		display: none;
	}
}

.c_college-football-hero .c_college-football-hero-content h2 {
	color: #fff;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
	margin: 0;
	padding: 1rem;
	text-align: center;
}

@media (max-width: 1000px) {
	.c_college-football-hero .c_college-football-hero-content h2 {
		font-size: 2rem;
	}
}

@media (max-width: 700px) {
	.c_college-football-hero .c_college-football-hero-content h2 {
		font-size: 1.5rem;
	}
}

.c_college-football-hero .c_college-football-hero-content h4 {
	color: #f5be40;
	font-size: 2rem;
	padding: 0 1rem;
	text-align: center;
}

@media (max-width: 700px) {
	.c_college-football-hero .c_college-football-hero-content h4 {
		font-size: 1.2rem;
	}
}

.c_college-football-hero .c_college-football-hero-content p {
	color: #fff;
	font-size: 1.5rem;
	margin: 2rem;
	text-align: center;
}

@media (max-width: 700px) {
	.c_college-football-hero .c_college-football-hero-content p {
		font-size: 1rem;
	}
}

.c_college-football-hero .c_college-football-video-container {
	min-height: 300px;
	width: 80%;
}

.c_brand_page_t1--cornhole-game {
	border-radius: 10px;
	display: block;
	margin: 2rem auto;
	min-height: 56.25rem;
	width: 50%;
}

@media (max-width: 1300px) {
	.c_brand_page_t1--cornhole-game {
		width: 80%;
	}
}

.c_brand_page_t1--video-bg.c_college-football-video-bg {
	background-image: url("/l2/assets/imgs/jpg/video-bg-college-football.jpg");
	background-position: center -100px;
}

@media (max-width: 1150px) {
	.c_brand_page_t1--video-bg.c_college-football-video-bg {
		background-position: center;
	}
}

.c_cavs-dflex {
	display: -webkit-box;
	display: flex;
}

@media (max-width: 1000px) {
	.c_cavs-dflex {
		display: block;
	}
}

.c_cavs-background-v1 {
	background-image: url("/l2/assets/imgs/jpg/activity-bucket-costumes-1406352.jpg");
}

.c_cavs-background-v2 {
	background-image: url("/l2/assets/imgs/jpg/D-Static-Cavs-1280x854-BrandLandingPage-P1459632.jpg");
}

.c_cavs-hero {
	-webkit-box-align: center;
	align-items: center;
	background-position: right;
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	min-height: 90vh;
	position: relative;
	width: 100%;
}

.c_cavs-hero-content {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-box-pack: center;
	justify-content: center;
	padding-bottom: 2rem;
	padding-top: 2rem;
	width: 100%;
}

@media (max-width: 500px) {
	.c_cavs-hero-content {
		height: 100%;
	}
}

.c_cavs-hero-content .c_cavs-hero-left {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
}

@media (max-width: 1000px) {
	.c_cavs-hero-content .c_cavs-hero-left {
		-webkit-box-align: start;
		align-items: flex-start;
		display: block;
		padding: 1rem;
		text-align: left;
	}
}

.c_cavs-hero-content .c_cavs-hero-right {
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
}

@media (max-width: 1300px) {
	.c_cavs-hero-content .c_cavs-hero-right {
		display: none;
	}
}

.c_cavs-hero-content h2 {
	color: #fff;
	font-size: 4rem;
	font-weight: 400;
	line-height: 4rem;
	margin: 0;
	padding: 0 3rem;
	text-align: center;
	width: 100%;
}

@media (max-width: 1000px) {
	.c_cavs-hero-content h2 {
		font-size: 2.5rem;
		line-height: 2.5rem;
		padding: 0;
		text-align: left;
	}
}

.c_cavs-hero-content h4 {
	color: #f5be40;
	font-size: 2rem;
	padding-top: 1rem;
	text-align: center;
}

@media (max-width: 1000px) {
	.c_cavs-hero-content h4 {
		text-align: left;
		text-shadow: 1px 1px #222;
	}
}

.c_cavs-hero-content p {
	color: #fff;
	font-size: 1.5rem;
	margin: 2rem;
	text-align: center;
	width: 60%;
}

@media (max-width: 1000px) {
	.c_cavs-hero-content p {
		margin: 50% 0 0;
		text-align: left;
		width: 90%;
	}
}

.t-Insider-side {
	max-width: 555px;
}

.t-Insider-side-l {
	margin-right: 0;
}

@media screen and (min-width: 61.25em) {
	.t-Insider-side-l {
		margin-right: 2.03384em;
	}
}

.t-Insider-side-r {
	margin-left: 0;
}

@media screen and (min-width: 61.25em) {
	.t-Insider-side-r {
		margin-left: 2.03384em;
	}
}

.t-Insider-middle {
	max-width: 1115px;
}

@media screen and (max-width: 61.25em) {
	.t-Insider-header-r {
		float: right;
	}
}

.t-Logo {
	max-width: 17.1875em;
	min-width: 10.1875em;
}

.t-Logo--main {
	max-height: 2.18em;
}

.t-LogoRocket {
	max-height: 4.25em;
	max-width: 14.375em;
	min-width: 9.0625em;
}

.t-LogoFsbo {
	max-height: 3.125em;
	max-width: 14.0625em;
}

.t-smart-form {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 2;
	flex: 2;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	width: 100%;
}

.t_smart-form-page {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	width: 100%;
}

.t_smart-form-wrap {
	flex-wrap: wrap;
}

.t_smart-form-pages-container {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	width: 100%;
}

.t_smart-form-question-row {
	-webkit-box-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	margin: auto;
	width: 50%;
}

@media (max-width: 800px) {
	.t_smart-form-question-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		width: 100%;
	}
}

.t_smart-form-question-container {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	justify-items: center;
	width: 100%;
}

.t_smart-form-question-container p {
	font-size: 1.5rem;
	text-align: center;
}

.t_smart-form-question-container .t_smart-form-sub-text {
	font-size: 1.2rem;
}

.t_smart-form-question-container .t_smart-form-head-text {
	font-size: 2rem;
	font-weight: bold;
	margin-top: 2rem;
}

.t_smart-form-answer-container {
	align-content: space-between;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-box-pack: space-evenly;
	justify-content: space-evenly;
	margin: auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.t_smart-form-answer-container .t-smart-form-answer:hover .t_smart-form-answer-text,
.t_smart-form-answer-container .t-smart-form-answer:hover .t_smart-form-answer-text-no-radio {
	background: #333;
	border-color: #fff;
	border-radius: 30px;
	color: #fff;
}

@media screen and (min-width: 40em) {
	.t_smart-form-answer-container .t-smart-form-answer:hover .t_smart-form-answer-text,
	.t_smart-form-answer-container .t-smart-form-answer:hover .t_smart-form-answer-text-no-radio {
		background: #333;
		border-color: #fff;
		color: #fff;
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
}

.t_smart-form-answer-container .t-smart-form-answer:hover .t_smart-form-answer-text::before,
.t_smart-form-answer-container .t-smart-form-answer:hover .t_smart-form-answer-text-no-radio::before {
	border: 1px solid #fff;
}

.t_smart-form-answer-container .t-smart-form-answer {
	cursor: pointer;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1 0 0;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 1rem;
	max-width: 170px;
	min-height: 100px;
	min-width: 130px;
	position: relative;
	text-align: center;
}

.t_smart-form-answer-container .t-smart-form-answer .t_smart-form-answer-text,
.t_smart-form-answer-container .t-smart-form-answer .t_smart-form-answer-text-no-radio {
	-webkit-box-align: center;
	align-items: center;
	background: #fff;
	border: 2px solid #333;
	bottom: -17px;
	color: #333;
	display: -webkit-box;
	display: flex;
	font-weight: normal;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 0.3rem 2rem;
	position: relative;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: background-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
	width: 100%;
}

.t_smart-form-answer-container .t-smart-form-answer .t_smart-form-answer-text::before {
	background: #fff;
	border: 1px solid #333;
	border-radius: 5px;
	bottom: auto;
	content: "";
	display: block;
	height: 1em;
	left: 0.5em;
	position: absolute;
	top: auto;
	width: 1em;
}

.t_smart-form-answer-container .t-smart-form-answer .t_smart-form-answer-text:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.t_smart-form-answer-container .t-smart-form-answer .t_smart-form-answer-text-no-radio {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	font-weight: bold;
}

.t_smart-form-answer-container .t-smart-form-answer .rh-number {
	font-size: 1.25rem;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox {
	margin: 1rem;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox input {
	font-size: 1.3rem;
	font-weight: normal;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox input::-webkit-input-placeholder {
	color: #e5e5e5;
	font-weight: normal;
	opacity: 1;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox input::-moz-placeholder {
	color: #e5e5e5;
	font-weight: normal;
	opacity: 1;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox input:-ms-input-placeholder {
	color: #e5e5e5;
	font-weight: normal;
	opacity: 1;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox input::-ms-input-placeholder {
	color: #e5e5e5;
	font-weight: normal;
	opacity: 1;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox input::placeholder {
	color: #e5e5e5;
	font-weight: normal;
	opacity: 1;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox .t_smart-form-currency-input {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	margin: 0 auto;
	max-width: 20em;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox .t_smart-form-currency-input input {
	padding-left: 1.2rem;
}

.t_smart-form-answer-container .t-smart-form-answer-textbox .t_smart-form-dollar-sign {
	color: #aaa;
	font-size: 1.3rem;
	font-weight: normal;
	margin-left: 6px;
	margin-top: 8px;
	position: absolute;
	z-index: 2;
}

.t_smart-form-answer-container .t-smart-form-answer-w-icon-3d {
	border: 1px solid #e5e5e5;
	cursor: pointer;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 1rem;
	min-width: 180px;
	position: relative;
	text-align: center;
}

.t_smart-form-answer-container .t-smart-form-answer-w-icon-3d .t_smart-form-answer-text {
	background: #1a3555;
	border-radius: 10px;
	bottom: -17px;
	color: #fff;
	font-weight: normal;
	padding: 0.3rem 2rem;
	position: absolute;
}

.t_smart-form-answer-container .t-smart-form-answer-w-icon-3d .t_smart-form-answer-text:hover {
	background: #0c4569;
}

.t_smart-form-answer-container .t-smart-form-answer-w-icon-2d {
	-webkit-box-align: start;
	align-items: flex-start;
	background: #fff;
	border: 2px solid #333;
	color: #333;
	cursor: pointer;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 1rem;
	max-width: 170px;
	padding: 0.32681em;
	position: relative;
	text-align: center;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
	width: 100%;
}

@media screen and (min-width: 40em) {
	.t_smart-form-answer-container .t-smart-form-answer-w-icon-2d {
		padding: 0.49168em 0.32681em;
	}
}

@media (max-width: 800px) {
	.t_smart-form-answer-container .t-smart-form-answer-w-icon-2d {
		max-width: 138px;
	}
}

.t_smart-form-answer-container .t-smart-form-answer-w-icon-2d:hover {
	border-radius: 30px;
	-webkit-transform: scale(1);
	transform: scale(1);
}

@media screen and (min-width: 40em) {
	.t_smart-form-answer-container .t-smart-form-answer-w-icon-2d:hover {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@media screen and (min-width: 40em) {
	.t_smart-form-answer-container .t-smart-form-answer-w-icon-2d:hover svg {
		-webkit-transform: scale(1.1) translateY(-0.5em);
		transform: scale(1.1) translateY(-0.5em);
	}
}

.t_smart-form-answer-container .t-smart-form-answer-w-icon-2d .t_smart-form-answer-text {
	background: #fff;
	border: 2px solid #333;
	border-radius: 10px;
	bottom: -17px;
	display: block;
	font-weight: normal;
	margin: 0 auto;
	padding: 0 0.32681em;
	position: absolute;
	text-align: center;
	-webkit-transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

@media screen and (min-width: 40em) {
	.t_smart-form-answer-container .t-smart-form-answer-w-icon-2d .t_smart-form-answer-text {
		border: 2px solid #333;
		border-radius: 5px;
		bottom: -10%;
		left: 0;
		position: absolute;
		right: 0;
		width: 7.8em;
	}
}

.t_smart-form-answer-container .t-smart-form-answer-w-icon-2d svg {
	fill: #333;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: -webkit-transform 0.2s ease-out;
	transition: -webkit-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
	transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.t_smart-form-answer-container .t-smart-form-answer-active.t-smart-form-answer-w-icon-2d {
	background: #333;
}

.t_smart-form-answer-container .t-smart-form-answer-active.t-smart-form-answer-w-icon-2d .t_smart-form-answer-text {
	background: #333;
	border-color: #fff;
	color: #fff;
}

.t_smart-form-answer-container .t-smart-form-answer-active.t-smart-form-answer-w-icon-2d svg {
	fill: #fff;
}

.t_smart-form-answer-container .t-smart-form-answer-active .t_smart-form-answer-text,
.t_smart-form-answer-container .t-smart-form-answer-active .t_smart-form-answer-text-no-radio {
	background: #333;
	color: #fff;
}

.t_smart-form-answer-container .t-smart-form-answer-active .t_smart-form-answer-text::before {
	background: #333;
	border: 1px solid #fff;
}

.t_smart-form-answer-container .t-smart-form-answer-active svg {
	fill: #0c4569;
}

.t_smart-form-answer-container svg {
	display: block;
	width: 100%;
}

.t_smart-form-navigation-container {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1 1 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 2rem;
}

@media (max-width: 800px) {
	.t_smart-form-navigation-container {
		background-color: #e5e5e5;
		bottom: 0;
		margin-left: -16px;
		opacity: 1;
		padding: 0;
		position: fixed;
		width: 100%;
		z-index: 2;
	}
}

.t_smart-form-navigation-container .t_smart-form-nav-buttons {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}

@media (max-width: 800px) {
	.t_smart-form-navigation-container .t_smart-form-nav-buttons {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		flex-direction: row-reverse;
	}
}

.t_smart-form-navigation-container .t_sf-disabled {
	background-color: #bfece5;
	border: 0;
	color: #aaa;
	cursor: not-allowed;
}

.t_smart-form-navigation-container .t_sf-disabled:hover {
	background-color: #bfece5;
	border: 0;
	color: #aaa;
	cursor: not-allowed;
}

.t_smart-form-navigation-container button {
	background-color: #008473;
	border: 2px solid #008473;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	margin: 1rem;
	outline: none;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
}

.t_smart-form-navigation-container button:hover {
	background-color: #007667;
}

.t_sf-loader,
.t_sf-loader::before,
.t_sf-loader::after {
	-webkit-animation: load1 1s infinite ease-in-out;
	animation: load1 1s infinite ease-in-out;
	background: #fff;
	height: 1em;
	width: 1em;
}

.t_sf-loader {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
	color: #fff;
	font-size: 2px;
	margin: 88px auto;
	position: relative;
	text-indent: -9999em;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.t_sf-loader::before,
.t_sf-loader::after {
	content: "";
	position: absolute;
	top: 0;
}

.t_sf-loader::before {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
	left: -1.5em;
}

.t_sf-loader::after {
	left: 1.5em;
}

@-webkit-keyframes load1 {
	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

@keyframes load1 {
	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

.t_sf-tcpa-container {
	margin: auto;
	width: 60%;
}

.t_sf_progress-bar-container {
	width: 100%;
}

@media (max-width: 800px) {
	.t_sf_progress-bar-container {
		margin-bottom: 4px;
	}
}

.t_sf_progress-bar {
	background: #e5e5e5;
	border-radius: 3px;
	box-shadow: inset 0 1px 3px #333;
	height: 5px;
	margin-top: 3px;
	padding: 3px;
	width: calc(100% - 6px);
}

@media (max-width: 800px) {
	.t_sf_progress-bar {
		height: 25px;
		margin: auto;
	}
}

.t_sf_progress-bar-fill {
	background: #008473;
	border-radius: 3px;
	display: block;
	height: 5px;
	left: -3px;
	position: relative;
	top: -3px;
	-webkit-transition: width 1s ease-in-out;
	transition: width 1s ease-in-out;
}

@media (max-width: 800px) {
	.t_sf_progress-bar-fill {
		height: 25px;
	}
}

.t_sf_progress-number {
	background-color: #333;
	border-radius: 3px;
	color: #fff;
	font-size: 0.8rem;
	left: -16px;
	margin-left: 100%;
	min-width: 35px;
	padding: 3px;
	position: relative;
	text-align: center;
	top: -30px;
}

@media (max-width: 800px) {
	.t_sf_progress-number {
		left: -28px;
		top: 0;
	}
}

.t_sf_arrow-down {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #333;
	height: 0;
	left: 5px;
	position: absolute;
	top: 20px;
	width: 0;
}

@media (max-width: 800px) {
	.t_sf_arrow-down {
		display: none;
	}
}

.t-Wham-b-InputContainer {
	margin-bottom: 1em;
}

.t-Wham-b-InputContainer:last-child {
	margin-bottom: 0;
}

.t-Wham-c-ProgressPie {
	margin-top: 0;
}

.t-Wham-c-Slider {
	text-align: center;
}

@media screen and (min-width: 50em) {
	.t-Wham-c-Slider {
		width: 45em;
	}
}

@media screen and (min-width: 71em) {
	.t-Wham-c-Slider {
		width: 70.25em;
	}
}

@media screen and (min-width: 50em) {
	.t-Wham-c-Slider__slide {
		width: 45em;
	}
}

@media screen and (min-width: 71em) {
	.t-Wham-c-Slider__slide {
		width: 71em;
	}
}

.t-Wham-c-currencyInput {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	margin: 0 auto;
	max-width: 20em;
}

.t-Wham-c-currencyInput input {
	padding-left: 1rem;
}

.t-Wham-c-dollar-sign {
	color: #aaa;
	font-size: 1.3rem;
	margin-left: 6px;
	margin-top: 2px;
	position: absolute;
	z-index: 2;
}

.t-Wham-Criteria-Container {
	width: 100%;
}

.t-Wham-Criteria-Container .t-Wham-Criteria-Row {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 1rem;
}

.t-Wham-Criteria-Container .t-Wham-Criteria-Row .t-Wham-Criteria {
	color: #aaa;
	line-height: 1rem;
}

.t-Wham-Criteria-Container .t-Wham-Criteria-Row .t-Wham-Criteria-Successful {
	color: #222;
	line-height: 1rem;
}

.t-Wham-Criteria-Container .t-Wham-Criteria-Row .t-Wham-Criteria > svg {
	fill: #aaa;
	float: left;
	margin-left: 1rem;
	margin-right: 4px;
	width: 16px;
}

.t-Wham-Criteria-Container .t-Wham-Criteria-Row .t-Wham-Criteria-Successful > svg {
	fill: #008473;
	float: left;
	margin-left: 1rem;
	margin-right: 4px;
	width: 16px;
}

.t-Privacy-By-Design-Container {
	background: #e5e5e5;
	border-radius: 3px;
	margin: auto;
	padding: 0.5rem;
	width: 50%;
}

@media (max-width: 700px) {
	.t-Privacy-By-Design-Container {
		width: 80%;
	}
}

@media (max-width: 500px) {
	.t-Privacy-By-Design-Container {
		width: 90%;
	}
}

.t-Privacy-By-Design-Container small {
	margin: 1rem;
	text-align: left;
}

.t-Marketing-Consent-Container {
	background: #e5e5e5;
	border-radius: 3px;
	margin: auto;
	margin-top: 2rem;
	padding: 0.5rem;
	width: 50%;
}

@media (max-width: 700px) {
	.t-Marketing-Consent-Container {
		width: 80%;
	}
}

@media (max-width: 500px) {
	.t-Marketing-Consent-Container {
		width: 90%;
	}
}

.t-Marketing-Consent-Container label {
	font-weight: normal;
	margin: 1rem;
	text-align: left;
}

.t-Terms-Container {
	margin: auto;
	width: 50%;
}

@media (max-width: 700px) {
	.t-Terms-Container {
		width: 80%;
	}
}

@media (max-width: 500px) {
	.t-Terms-Container {
		width: 90%;
	}
}

.t-Terms-Container small {
	margin: 1rem;
	text-align: left;
}

.bc-whamesp label .sublabel {
	font-size: 0.75rem;
}

@media screen and (min-width: 40em) {
	.bc-whamesp label .sublabel {
		font-size: 1rem;
		width: 10em;
	}
}

.c_brand_page_t1--mobile-video {
	border-radius: 10px;
	display: none;
	margin: 2rem auto;
	min-height: 300px;
	width: 80%;
}

@media (max-width: 1300px) {
	.c_brand_page_t1--mobile-video {
		display: block;
	}
}

.c_brand_page_t1--tri-column-bottom {
	background-color: #e5e5e5;
	display: none;
	padding: 2rem 0;
	width: 100%;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--tri-column-bottom {
		display: block;
	}
}

.c_brand_page_t1--tri-column {
	background-color: #e5e5e5;
	padding: 2rem 0;
	width: 100%;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--tri-column {
		display: none;
	}
}

.c_brand_page_t1--icons {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-box-pack: space-evenly;
	justify-content: space-evenly;
	margin: auto;
	width: 80%;
}

@media (max-width: 1440px) {
	.c_brand_page_t1--icons {
		width: 100%;
	}
}

@media (max-width: 1000px) {
	.c_brand_page_t1--icons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
}

.c_brand_page_t1--icons div {
	margin: 3rem;
	text-align: center;
}

@media (max-width: 1440px) {
	.c_brand_page_t1--icons div {
		margin: 2rem;
	}
}

.c_brand_page_t1--icons div h5 {
	color: #222;
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

.c_brand_page_t1--icons div p {
	color: #aaa;
	font-size: 1.2rem;
	font-style: italic;
	font-weight: normal;
	line-height: 1.8rem;
	width: 100%;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--icons div p {
		margin: auto;
		width: 80%;
	}
}

.c_brand_page_t1--lowerTagline {
	-webkit-box-align: center;
	align-items: center;
	background-color: #008473;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 3rem 0;
}

.c_brand_page_t1--lowerTagline h2 {
	color: #fff;
	font-size: 3rem;
	font-weight: 300;
	line-height: 3rem;
	margin: 0;
	padding: 0.5rem;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--lowerTagline h2 {
		font-size: 2rem;
		text-align: center;
	}
}

.c_brand_page_t1--home-buying-guide {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin-bottom: 6rem;
	margin-top: 6rem;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--home-buying-guide {
		display: block;
	}
}

.c_brand_page_t1--left {
	-webkit-box-flex: 1;
	flex: 1;
	margin: 6rem;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--left {
		margin: 2rem;
	}
}

@media (max-height: 800px) {
	.c_brand_page_t1--left {
		margin: 2rem;
	}
}

.c_brand_page_t1--left .u-rocketButton {
	margin: 0;
}

.c_brand_page_t1--left h3 {
	color: #222;
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

@media (max-width: 1440px) {
	.c_brand_page_t1--left h3 {
		font-size: 2.5rem;
	}
}

.c_brand_page_t1--left h4 {
	color: #aaa;
	font-size: 2rem;
	font-weight: 300;
	line-height: 2.2rem;
	margin-bottom: 2rem;
	width: 60%;
}

@media (max-width: 1440px) {
	.c_brand_page_t1--left h4 {
		width: 100%;
	}
}

@media (max-width: 1000px) {
	.c_brand_page_t1--left h4 {
		margin: auto;
		text-align: left;
		width: 100%;
	}
}

.c_brand_page_t1--left p {
	color: #222;
	font-size: 1.5rem;
	font-weight: 200;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	padding-top: 1rem;
	width: 70%;
}

@media (max-width: 1440px) {
	.c_brand_page_t1--left p {
		width: 100%;
	}
}

@media (max-width: 1000px) {
	.c_brand_page_t1--left p {
		margin: 1rem auto;
		width: 100%;
	}
}

.c_brand_page_t1--left a {
	color: #fff;
	margin-top: 2rem;
}

.c_brand_page_t1--right {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 4rem;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--right {
		display: block;
		-webkit-box-flex: 2;
		flex: 2;
		text-align: center;
	}
}

@media (max-width: 1300px) {
	.c_brand_page_t1--right {
		-webkit-box-flex: 1;
		flex: 1;
	}
}

@media (max-width: 1000px) {
	.c_brand_page_t1--right {
		-webkit-box-flex: 1;
		flex: 1;
		margin: 0;
	}
}

.c_brand_page_t1--right img {
	border-radius: 10px;
	width: 80%;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--right img {
		display: none;
		height: auto;
		width: 90%;
	}
}

.c_brand_page_t1--refinance-guide {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin-bottom: 6rem;
	margin-top: 6rem;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--refinance-guide {
		display: block;
	}
}

.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left {
	-webkit-box-flex: 1;
	flex: 1;
	margin: 6rem;
	text-align: left;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left {
		margin: 2rem;
	}
}

.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left h3 {
	color: #222;
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left h3 {
		font-size: 2.5rem;
	}
}

.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left h4 {
	color: #aaa;
	font-size: 2rem;
	font-weight: 300;
	line-height: 2.2rem;
	margin-bottom: 2rem;
	width: 60%;
}

@media (max-width: 1440px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left h4 {
		width: 100%;
	}
}

@media (max-width: 1000px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left h4 {
		margin: auto;
		text-align: left;
		width: 100%;
	}
}

.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left p {
	color: #222;
	font-size: 1.5rem;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	padding-top: 1rem;
	width: 70%;
}

@media (max-width: 1440px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left p {
		width: 100%;
	}
}

@media (max-width: 1000px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left p {
		margin: 1rem auto;
		width: 100%;
	}
}

.c_brand_page_t1--refinance-guide > .c_brand_page_t1--left a {
	color: #fff;
	margin-top: 2rem;
}

.c_brand_page_t1--refinance-guide > .c_brand_page_t1--right {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 4rem;
	text-align: center;
}

@media (max-width: 1440px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--right {
		-webkit-box-flex: 2;
		flex: 2;
	}
}

@media (max-width: 1300px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--right {
		-webkit-box-flex: 1;
		flex: 1;
	}
}

@media (max-width: 1000px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--right {
		-webkit-box-flex: 1;
		flex: 1;
		margin: 0;
	}
}

.c_brand_page_t1--refinance-guide > .c_brand_page_t1--right img {
	border-radius: 10px;
	width: 80%;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--refinance-guide > .c_brand_page_t1--right img {
		display: block;
		height: auto;
		width: 90%;
	}
}

.c_brand_page_t1--modal-bg {
	-webkit-box-align: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.4);
	bottom: 0;
	-webkit-box-pack: center;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1;
}

.c_brand_page_t1--modal-bg .c_brand_page_t1--modal-container {
	background: #fff;
	border-radius: 10px;
	max-height: 720px;
	width: 80%;
}

@media (max-width: 1000px) {
	.c_brand_page_t1--modal-bg .c_brand_page_t1--modal-container {
		margin: 25% auto;
	}
}

.c_brand_page_t1--modal-bg .c_brand_page_t1--modal-container .c_brand_page_t1--modal-video-container {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	padding-top: 30px;
	position: relative;
	text-align: center;
}

.c_brand_page_t1--modal-bg .c_brand_page_t1--modal-container .c_brand_page_t1--modal-video-container iframe,
.c_brand_page_t1--modal-bg .c_brand_page_t1--modal-container .c_brand_page_t1--modal-video-container object,
.c_brand_page_t1--modal-bg .c_brand_page_t1--modal-container .c_brand_page_t1--modal-video-container embed {
	height: 100%;
	left: 0;
	max-height: 700px;
	position: absolute;
	top: 0;
	width: 100%;
}

.c_brand_page_t1--modal-bg .c_brand_page_t1--modal-container .c_brand_page_t1--modal-body {
	padding: 10px;
}

.c_brand_page_t1--modal-bg .c_brand_page_t1--modal-container .c_brand_page_t1--modal-footer {
	position: absolute;
	right: 10%;
}

.t_easyStart-logo img {
	position: relative;
	top: -0.5rem;
	width: 155px;
}

.t_easyStart-lowerThirds {
	background: #f7f7f7;
	display: -webkit-box;
	display: flex;
	margin-bottom: 2rem;
	padding: 2rem 4rem;
	width: 100%;
}

@media (max-width: 700px) {
	.t_easyStart-lowerThirds {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
}

.t_easyStart-lowerThirds .t_easyStart-lowerThirdBox {
	-webkit-box-flex: 1;
	flex: 1;
	text-align: center;
}

.t_easyStart-lowerThirds svg {
	margin: 1rem;
	max-height: 80px;
	stroke: #41b2b1;
}

@media (max-width: 700px) {
	.t_easyStart-lowerThirds svg {
		max-height: 80px;
	}
}

.t_easyStart-lowerThirds .t_easyStart-lowerThirdText {
	margin: auto;
	padding: 1rem;
}

@media (max-width: 700px) {
	.t_easyStart-lowerThirds .t_easyStart-lowerThirdText {
		width: 80%;
	}
}

.t_easyStart-footerLegalLinks {
	height: 100%;
}

@media (max-width: 700px) {
	.t_easyStart-footerLegalLinks {
		text-align: center;
		width: 100%;
	}
}

.t_easyStart-footerLegalLinks a {
	color: #201d1e;
	padding-right: 1rem;
	text-decoration: none;
}

.t_easyStart-footerCopyright {
	float: right;
	height: 100%;
}

@media (max-width: 700px) {
	.t_easyStart-footerCopyright {
		float: none;
		padding-bottom: 1rem;
		text-align: center;
		width: 100%;
	}
}

.t_easyStart-thankYouPage {
	-webkit-box-align: center;
	align-items: center;
	display: -webkit-box;
	display: flex;
	height: 70vh;
	-webkit-box-pack: center;
	justify-content: center;
}

.t_easyStart-thankYouPage h1 {
	color: #41b2b1;
	font-size: 3rem;
}

.c_edison-consent-links {
	padding: 1rem;
}

.t-Edison-marketing-consent {
	margin: 2rem auto;
	width: 70%;
}

@media (max-width: 700px) {
	.t-Edison-marketing-consent {
		width: 100%;
	}
}

.t-Edison-marketing-consent label {
	font-weight: normal;
}

.t-assumptions-content ul {
	margin-bottom: 1em;
	padding-left: 2.99563em;
}

.legal__copy--title {
	display: block;
	font-weight: bold;
	margin-top: 1em;
}

.u-Block {
	display: block;
}

.u-InlineBlock {
	display: inline-block;
}

.u-Hide,
.js .u-Hide-if-js {
	display: none;
}

@media screen and (min-width: 46em) {
	.u-Hide\@md {
		display: none;
	}
}

@media screen and (min-width: 70em) {
	.u-Hide\@x-lg {
		display: none;
	}
}

@media screen and (min-width: 46em) {
	.u-Block\@md {
		display: block;
	}
}

@media screen and (min-width: 70em) {
	.u-Block\@x-lg {
		display: block;
	}
}

@media screen and (min-width: 46em) {
	.u-DisplayInherit\@md {
		display: inherit;
	}
}

@media screen and (min-width: 61.25em) {
	.u-DisplayInherit\@lg {
		display: inherit;
	}
}

.u-HideShowFlex {
	display: none;
}

@media screen and (min-width: 46em) {
	.u-HideShowFlex {
		display: -webkit-box;
		display: flex;
	}
}

.u-ShowHideFlex {
	display: -webkit-box;
	display: flex;
}

@media screen and (min-width: 46em) {
	.u-ShowHideFlex {
		display: none;
	}
}

.u-HideShow {
	display: none;
}

@media screen and (min-width: 46em) {
	.u-HideShow {
		display: block;
	}
}

.u-ShowHide {
	display: block;
}

@media screen and (min-width: 46em) {
	.u-ShowHide {
		display: none;
	}
}

.u-Center {
	margin: 0 auto;
}

.u-Circle {
	border-radius: 50%;
}

@media screen and (min-width: 61.25em) {
	.u-pah\@md {
		padding: 2.99563em;
	}
}

@media all and (min-width: 61.25em) {
	.u-pll\@lg {
		padding-left: 2.03384em;
	}
}

@media all and (min-width: 61.25em) {
	.u-prl\@lg {
		padding-right: 2.03384em;
	}
}

@media screen and (min-width: 61.25em) {
	.u-mah\@md {
		margin: 2.99563em;
	}
}

.u-mlauto {
	margin-left: auto;
}

.u-mrxs {
	margin-right: 0.32681em;
}

.u-NoWrap {
	white-space: nowrap;
}

.u-RocketLogo-mTop {
	margin-top: 1rem;
}

.u-BoxShadow--gray {
	box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}

.u-flex-li-CenterContent {
	align-self: center;
}

.u-rocketButton {
	background-color: #008473;
	border: 2px solid #008473;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	margin: 1rem;
	outline: none;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
}

.u-rocketButton:hover {
	background-color: #007667;
}

.u-rocketButton-inverse {
	background: #fff;
	border: 0;
	border-radius: 5px;
	color: #008473;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 1rem 4rem;
}

.u-rocketButton-inverse:hover {
	background: #e6e6e6;
	color: #222;
	cursor: pointer;
}

@media (max-width: 1000px) {
	.u-rocketButton-inverse {
		padding: 1rem 2rem;
	}
}

.u-PhoneText {
	font-weight: bold;
	padding-right: 1rem;
}

.c-ProgressPie__value {
	stroke-dasharray: 339.29200658769764;
	stroke-dashoffset: 339.29200658769764;
}

.c-ProgressPie__value--slide2 {
	animation: slide0 2s forwards;
	stroke-dashoffset: 288.39820559954296;
}

@media screen and (min-width: 40em) {
	form input[type="radio"]:checked + label .sublabel {
		background: #1a3555;
		border-color: #fff;
	}
}

form input[type="radio"]:focus + label {
	border-radius: 20px;
}

form input[type="radio"]:hover + label {
	border-radius: 30px;
	-webkit-transform: scale(1);
	transform: scale(1);
	z-index: 10;
}

@media screen and (min-width: 40em) {
	form input[type="radio"]:hover + label {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@media screen and (min-width: 40em) {
	form input[type="radio"]:hover + label svg {
		-webkit-transform: scale(1.1) translateY(-1em);
		transform: scale(1.1) translateY(-1em);
	}
}

@media screen and (min-width: 40em) {
	form input[type="radio"]:hover + label .sublabel {
		background: #1a3555;
		border-color: #fff;
		color: #fff;
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
}

form input[type="radio"] + label {
	background: #fff;
	border: 2px solid #1a3555;
	color: #1a3555;
	display: inline-block;
	max-width: 8em;
	padding: 0.32681em;
	position: relative;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
	width: 100%;
}

@media screen and (min-width: 40em) {
	form input[type="radio"] + label {
		max-width: 13.4em;
		padding: 0.49168em 0.32681em;
	}
}

form input[type="radio"] + label svg {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: -webkit-transform 0.2s ease-out;
	transition: -webkit-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
	transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

form input[type="radio"] + label .sublabel {
	display: block;
	margin: 0 auto;
	padding: 0 0.32681em;
	text-align: center;
	-webkit-transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

@media screen and (min-width: 40em) {
	form input[type="radio"] + label .sublabel {
		background: #fff;
		border: 2px solid #1a3555;
		border-radius: 5px;
		bottom: -10%;
		left: 0;
		position: absolute;
		right: 0;
		width: 7.8em;
	}
}

form {
	color: #1a3555;
}

form h1,
form .sls-b-H2,
form .sls-b-FormLabel,
form label {
	color: #1a3555;
}

form .c-ProgressPie__text,
form .c-ProgressPie__icon {
	fill: #008473;
}

form .c-ProgressPie__value {
	stroke: #008473;
}

form .t-Wham-c-Button {
	background: #008473;
}

form .t-Wham-c-Button:hover {
	background: #007667;
}

form form input[type="radio"].fat:checked + label {
	background: #1a3555;
}

form form input[type="radio"].fat:checked + label::before {
	border-color: #fff;
}

form form input[type="radio"].fat:hover + label {
	background: #1a3555;
}

form form input[type="radio"].fat + label {
	border: 2px solid #1a3555;
}

form form input[type="radio"].fat + label::before {
	border: 2px solid #1a3555;
}

form input[type="radio"]:checked + label {
	background: #1a3555;
}

form input[type="radio"]:checked + label .fill-manually {
	fill: #1a3555;
}

@media screen and (min-width: 40em) {
	form input[type="radio"]:checked + label .sublabel {
		background: #1a3555;
		border-color: #fff;
	}
}

@media screen and (min-width: 40em) {
	form input[type="radio"]:hover + label .sublabel {
		background: #1a3555;
		border-color: #fff;
	}
}

@media screen and (min-width: 40em) {
	form input[type="radio"] + label .sublabel {
		border-color: #1a3555;
	}
}

form input[type="radio"] + label {
	border: 2px solid #1a3555;
}

/******** carousel **********/
.carousel {
	margin: 40px 0px;
}
.carousel-inner .item {
	width: 100%;
	/*
	height: 800px;
	*/
	height: auto;
}
.carousel-inner .item .item-in {
	/*
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	left: 0;
	*/
	position: relative;
	text-align: center;
}
.carousel-inner .item .item-in h3 {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0px;
}
.carousel-inner .item .item-in .item-row {
	margin: 50px 0px;
}
.carousel-inner .item .item-in .nav a.btn {
	display: block;
	width: 100px;
	background: #066cad;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 45px;
	padding: 0px 30px;
	margin: 0 auto 10px auto;
	text-decoration: none;
}
.carousel-inner .item .item-in .nav a.btn:hover {
	opacity: 0.85;
}
.carousel-inner .item .item-in .nav a.btn + a {
	font-size: 12px;
}

/****** form labels *******/
form label {
	display: block;
	font-weight: bold;
	margin: 15px 0px 5px 0px;
}

/****** form text fields *******/
form input[type="text"],
form input[type="password"] {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	width: 350px;
	max-width: 100%;
}

/****** form fat radio buttons ******/
form input[type="radio"] {
	opacity: 0;
	position: absolute;
}
form input[type="radio"].fat:checked + label {
	background: #1a3555;
	color: #fff;
}
form input[type="radio"].fat:checked + label::before {
	background: transparent;
	border-color: #fff;
}
form input[type="radio"].fat:focus + label {
	border-radius: 20px;
}
form input[type="radio"].fat:hover + label {
	background: #1a3555;
	border-color: #fff;
	border-radius: 30px;
	color: #fff;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 10;
}
form input[type="radio"].fat:hover + label::before {
	border-color: #fff;
}
form input[type="radio"].fat + label {
	background: #fff;
	border: 2px solid #1a3555;
	color: #1a3555;
	display: block;
	margin: 0 auto 0.49168em;
	max-width: 400px;
	padding: 1em 2.03384em;
	text-align: left;
	-webkit-transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out, border-radius 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
form input[type="radio"].fat + label::before {
	background: #fff;
	border: 2px solid #1a3555;
	border-color: #1a3555;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 0.8em;
	margin-right: 0.49168em;
	-webkit-transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
	transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
	width: 0.8em;
}
form input[type="radio"]:checked + label {
	background: #1a3555;
	color: #fff;
}
form label svg {
	fill: currentColor;
}
form strong {
	color: #ff0000;
}

form input[type="submit"] {
	display: block;
	width: 150px;
	background: #1a3555;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 45px;
	padding: 0px 30px;
	margin: 0 auto 10px auto;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	border-radius: 3px;
	border: 0;
}

form input[type="submit"]:hover {
	opacity: 0.85;
}
