/*Fonts starts here*/

@font-face {
	font-family: 'MetLifeCircularNormal';
	src: url('../fonts/MetLifeCircularNormal.eot');
	src: url('../fonts/MetLifeCircularNormal.eot') format('embedded-opentype'), url('../fonts/MetLifeCircularNormal.woff2') format('woff2'), url('../fonts/MetLifeCircularNormal.woff') format('woff'), url('../fonts/MetLifeCircularNormal.ttf') format('truetype'), url('../fonts/MetLifeCircularNormal.svg#MetLifeCircularNormal') format('svg');
}

@font-face {
	font-family: 'MetLifeCircularMedium';
	src: url('../fonts/MetLifeCircularMedium.eot');
	src: url('../fonts/MetLifeCircularMedium.eot') format('embedded-opentype'), url('../fonts/MetLifeCircularMedium.woff2') format('woff2'), url('../fonts/MetLifeCircularMedium.woff') format('woff'), url('../fonts/MetLifeCircularMedium.ttf') format('truetype'), url('../fonts/MetLifeCircularMedium.svg#MetLifeCircularMedium') format('svg');
}

@font-face {
	font-family: 'MetLifeCircularBold';
	src: url('../fonts/MetLifeCircularBold.eot');
	src: url('../fonts/MetLifeCircularBold.eot') format('embedded-opentype'), url('../fonts/MetLifeCircularBold.woff2') format('woff2'), url('../fonts/MetLifeCircularBold.woff') format('woff'), url('../fonts/MetLifeCircularBold.ttf') format('truetype'), url('../fonts/MetLifeCircularBold.svg#MetLifeCircularBold') format('svg');
}


/**/


/*  ****** Forms ****** */

.ml-form {
	padding: 20px;
	position: relative;
}

.ml-form-field {
	margin-bottom: 20px;
	display: block;
	width: 100%;
	max-width: 500px;
	position: relative;
	border: 0px;
	padding: 0;
}

.mym-tool .ml-form-field {
	margin-bottom: 0;
}


/*  ****** Legend ****** */

.ml-form-field legend {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 13px;
	color: #333333;
}


/*  ****** Label ****** */

.ml-form-field label {
	position: relative;
	display: block;
	text-align: left;
	font-size: 13px;
	color: #333333;
}

.ml-form-field label span {
	display: inline;
	padding: 5px 2px 2px 2px;
}


/*  ****** Form Field  ****** */

.ml-form-field input,
.ml-form-field textarea {
	padding: 10px;
	font: inherit;
	outline: none;
	border: 1px solid #BBBBBB;
	font-size: 13px;
	color: #333333;
	width: 100%;
	border-radius: 2px;
}

.ml-form-field input:focus,
.ml-form-field textarea:focus {
	border: solid 1px #007abc;
}

.ml-form-field input:focus+span,
.ml-form-field textarea:focus+span {
	color: #666666;
}

.ml-form-field span {
	background: #fff;
	color: #333;
}


/*  ******  Dropdown  ****** */

.ml-form-field-select .select-hidden {
	opacity: 0;
	padding-right: 10px;
	font-size: 13px;
}

.ml-form-field-select .select-hidden:focus {
	border: solid 1px red;
}

.ml-form-field-select .select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	font-size: 13px;
	color: #0061a0;
	width: 100%;
	height: 30px;
	text-align: left;
}

.ml-form-field-select .select-styled {
	position: absolute;
	top: -7px;
	right: 0;
	bottom: 0;
	left: 0;
	line-height: 20px;
	font-size: 24px;
	border-bottom: 2px solid #0061a0;
	padding: 10px 0;
}

.ml-form-field-select .select-styled:after {
	content: "";
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-color: #0061a0 transparent transparent transparent;
	position: absolute;
	top: 17px;
	right: 2px;
}

.ml-form-field-select .select-styled:focus {
	outline: 0;
}

.ml-form-field-select .select-styled:focus,
.ml-form-field-select .select-styled:hover {
	border-bottom: 2px solid #007abc;
}

.ml-form-field-select .select-styled:hover:after,
.ml-form-field-select .select-styled:focus:after {
	border-color: #007abc transparent transparent transparent;
}

.ml-form-field-select .select-options {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 24px;
	left: 0;
	z-index: 999;
	margin: 0;
	padding: 0;
	border-top: 0px;
	list-style: none;
	background-color: #ffffff;
	text-align: left;
	max-height: 225px;
	overflow-y: auto;
	overflow-x: hidden;
	color: #333333;
}

.fifth-step .ml-form-field-select .select-options {
	max-height: 200px;
}

.ml-form-field-select .select-options li {
	margin: 0;
	padding: 10px 0;
	font-size: 24px;
	text-indent: 15px;
}

.ml-form-field-select .select-options li:hover,
.ml-form-field-select .select-options li:focus {
	color: #007abc;
	background: rgba(59, 172, 252, 0.3);
}

.ml-form-field-select .select-options li[rel="hide"] {
	display: none;
}

.ml-form-field-select .select-options li:first-child {
	border-top: 0;
}

.ml-form-field-select .select-hidden {
	display: none;
}


/* ******  Error   ****** */

.ml-form-field-errortext {
	display: none;
	font-size: 12px;
	color: #DB1818;
	margin-top: 5px;
}

.ml-form-field-select .select {
	width: 200px;
}

.nopad {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.noscroll {
	overflow: hidden;
}


/*  ****** Radio buttons  ****** */

.ml-form-field-radio-group {
	width: auto;
	height: 18px;
	position: relative;
	margin: 20px auto;
	-webkit-transition: all 250ms;
	-o-transition: all 250ms;
	transition: all 250ms;
	text-align: left;
}

.ml-form-field-radio-group input {
	position: absolute;
	z-index: 5;
}

.ml-form-field-radio-group label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 90%;
	height: 16px;
	cursor: pointer;
	position: absolute;
	padding: 0px 0 0 40px;
	font-size: 16px;
	font-family: 'MetLifeCircularNormal';
	text-align: left;
}

.ml-form-field-radio-group label:before {
	content: '';
	width: 22px;
	height: 22px;
	position: absolute;
	top: -3px;
	left: 2px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 1px solid #d3d3d3;
}

.ml-form-field-radio-group label:after {
	content: '\2713';
	width: 22px;
	height: 22px;
	position: absolute;
	top: -2px;
	left: 2px;
	background-color: #007abc;
	border-radius: 50%;
	opacity: 0;
	color: #ffffff;
}

.ml-form-field-radio-group input[type=radio] {
	opacity: 0;
}

.ml-form-field-radio-group input[type=radio]:checked+label:after {
	opacity: 1;
	font-size: 12px;
	padding-top: 5px;
	padding-left: 5px;
}

.ml-form-field-radio-group input[type=radio]:focus+label:before,
.ml-form-field-radio-group input[type=radio]:checked+label:before {
	/*border: solid 1px #007abc;*/
}


/* ****** Check Boxes  ******  */

.ml-form-field-checkboxes-group {
	width: auto;
	height: 18px;
	position: relative;
	margin: 20px auto;
	border-radius: 2px;
	text-align: left;
}

.ml-form-field-checkboxes-group input {
	position: absolute;
}

.ml-form-field-checkboxes-group label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 100%;
	height: 16px;
	cursor: pointer;
	position: absolute;
	padding: 0px 0 0 40px;
	font-size: 16px;
	font-family: 'MetLifeCircularNormal';
	text-align: left;
	/* -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 90%;
    height: 16px;
    cursor: pointer;
    position: absolute;
    padding: 0px 0 0 25px;*/
}

.ml-form-field-checkboxes-group label:before {
	content: '';
	width: 22px;
	height: 22px;
	position: absolute;
	top: -2px;
	left: 2px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 1px solid #d3d3d3;
	/*content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    top: -3px;
    left: 2px;
    border: solid 2px #BBBBBB;*/
}

.ml-form-field-checkboxes-group label:after {
	content: '\2713';
	width: 22px;
	height: 22px;
	position: absolute;
	top: -2px;
	left: 2px;
	background-color: #007abc;
	border-radius: 50%;
	opacity: 0;
	color: #ffffff;
}

.ml-form-field-checkboxes-group input[type=checkbox] {
	opacity: 0;
}

.ml-form-field-checkboxes-group input[type=checkbox]+label.radio-button-selected:after {
	opacity: 1;
	font-size: 12px;
	padding-top: 5px;
	padding-left: 5px;
}

.ml-form-field-checkboxes-group input[type=checkbox]:focus+label:before,
.ml-form-field-checkboxes-group input[type=checkbox]:checked+label:before {
	/*border-color: #007abc;*/
}


/* ******  Error   ****** */

.ml-form-field-errortext {
	display: none;
	font-size: 12px;
	color: #DB1818;
	margin-top: 5px;
}


/* ****** Form field Error input ******* */

.ml-form-field.error input,
.ml-form-field.error select {
	border: solid 1px #DB1818;
	background-color: #FDE8E8;
}

.ml-form-field.error input:focus,
.ml-form-field.error select:focus {
	background-color: #fff;
}

.ml-form-field.error input:focus+span,
.ml-form-field.error select:focus+span {
	background-color: #fff;
	color: #DB1818;
}

.mym-tool .input-holder .form-user-grp.dropdown-focus,
.mym-tool .input-holder.input-focus {
	border: 2px solid #55bdf2;
	padding: 0 5px;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0 1px 0;
	-moz-box-shadow: rgba(0, 0, 0, 0.5) 0 0 1px 0;
}

.mym-tool .input-holder.input-focus {
	padding: 5px;
}

.mym-tool .ml-form-field-checkboxes-group input[type=checkbox]:focus+label:before {
	border: solid 1px #007abc;
}

.mym-tool .ml-form-field-checkboxes-group.checkbox-focus input[type=checkbox]:focus+label:before {
	outline: solid 2px #55bdf2;
	outline-offset: 4px;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0 1px 0;
	-moz-box-shadow: rgba(0, 0, 0, 0.5) 0 0 1px 0;
}

.ml-form-field.error span {
	background-color: #FDE8E8;
	color: #333333;
}

.ml-form-field.error .ml-form-field-errortext {
	display: block;
}


/*  ******  Floating Label   ****** */

.ml-form[data-forms="floating-label"] input+span,
.ml-form[data-forms="floating-label"] input[value=""]+span,
.ml-form[data-forms="floating-label"] textarea+span,
.ml-form[data-forms="floating-label"] textarea[value=""]+span {
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	-webkit-transform: translateY(-0.5em);
	-ms-transform: translateY(-0.5em);
	transform: translateY(-0.5em);
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 10px;
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	margin-top: 13px;
	font-size: 13px;
	width: 90%;
	font-weight: normal;
}

.ml-form[data-forms="floating-label"] input:focus+span,
.ml-form[data-forms="floating-label"] input:not([value=""])+span,
.ml-form[data-forms="floating-label"] textarea:focus+span,
.ml-form[data-forms="floating-label"] textarea:not([value=""])+span {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	font-weight: bold;
	font-size: 13px;
	visibility: visible;
	top: -5px;
	margin-top: 13px;
	width: auto;
	background-color: #fff;
	/*    text-shadow: -4px 2px 0 0 #FFFFFF, 3px 0 1px 0 #FFFFFF, -2px 0 0 0 #FFFFFF, -3px 1px 2px 0 #FFFFFF, 6px 0 0 0 #FFFFFF, 4px 2px 0 0 #FFFFFF, 1px 1px 0 0 #FFFFFF;*/
	font-weight: normal;
}


/*Alert Mesage*/

.ml-msg {
	font-family: 'MetLifeCircularNormal';
	font-size: 13px;
	font-weight: bold;
	min-height: auto;
	line-height: normal;
	padding: 10px 0px;
	text-align: left;
	color: #333333;
	margin-bottom: 20px;
}

.ml-msg-txt {
	display: inline-block;
	margin-left: 15px;
	margin-right: 10px;
}


/* ============ for mobile =========== */

.msg-indent {
	text-align: left;
	top: 0;
	margin-top: -15px;
	margin-bottom: 15px;
	padding: 0px 15px 0px 15px;
}

.ml-msg img {
	vertical-align: middle;
	margin-top: -5px;
	height: 20px;
}

.ml-msg-msg {
	background: #D8EEF9;
}

.ml-msg-error {
	background: #FDE8E8;
}

.ml-msg-error-text {
	color: #333333/*#DB1818*/
	;
	font-weight: 700;
}

.high-priority {
	color: #DB1818;
	font-size: 18px;
	padding-right: 5px;
}

.low-priority {
	color: #0061A0;
	font-size: 18px;
	padding-right: 5px;
}


/*MYM Tool Global Styles*/

.mym-tool .wrapper {
	width: 100%;
	max-width: 1200px;
}

.mym-tool fieldset {
	margin: 0;
}

.bgWhite {
	background-color: #ffffff;
}

.bgGrey {
	background-color: #f2f2f2;
}

.mym-tool .mym-wrapper {
	padding: 40px;
}

.mym-tool #mymStepForm input[type=text],
.mym-tool #mymStepForm select,
.mym-tool #mymStepForm textarea {
	border: 0;
	font-family: 'MetLifeCircularNormal';
	font-size: 24px;
	font-weight: 500;
	border-bottom: 2px solid #0061a0;
	border-radius: 0;
	color: #0061a0;
	background: none;
	text-align: left;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	outline: none;
	padding: 0;
	height: 30px;
	width: 100%;
	line-height: normal;
	margin-left: 0;
}

.mym-tool #mymStepForm input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #666666;
}

.mym-tool #mymStepForm input::-moz-placeholder {
	/* Firefox 19+ */
	color: #666666;
}

.mym-tool #mymStepForm input:-ms-input-placeholder {
	/* IE 10+ */
	color: #666666;
}

.mym-tool #mymStepForm input:-moz-placeholder {
	/* Firefox 18- */
	color: #666666;
}

.mym-tool #mymStepForm select option {
	padding: 15px;
}

.mym-tool .form-icon-wrapper select::-ms-expand {
	display: none;
}

.mym-tool .form-user-grp select option {
	background-color: transparent !important;
}

.mym-tool .mym-cta-button {
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.cta-button-next-back,
	.cta-button-review-back {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-flow: column;
		        flex-flow: column;
	}
	.mym-tool .mym-cta-button {
		width: 100%;
	}
	.mym-tool .mym-cta-button button.btnBack {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}
	.mym-tool .mym-cta-button #btnNext {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	.mym-tool .mym-cta-button #btnReview {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
}

.mym-tool .ml-form-field label span {
	display: inline;
	padding: 0;
}

.mym-tool .mym-cta-button .btn {
	text-transform: uppercase;
}

.mym-tool .mym-cta-button button,
.mym-tool .mym-cta-button a {
	font-family: 'MetLifeCircularBold';
	font-size: 14px;
	line-height: 24px;
	font-style: normal;
	font-stretch: normal;
	letter-spacing: normal;
	height: 45px;
	padding: 12.5px 30px;
	margin-bottom: 0;
}

.mym-tool .mym-cta-button a {
	white-space: nowrap;
}

.mym-tool .mym-cta-button a sup {
	display: inline-block;
	line-height: 1.1em;
	text-decoration: none;
}

.mym-tool .mym-cta-button button.btnBack {
	background: transparent;
	border: 2px solid #0061a0;
	color: #0061a0;
	line-height: 20px;
	padding: 12.5px 20px;
}

.mym-tool .mym-cta-button #btnReview,
.mym-tool .mym-cta-button #btnNext {
	border: 2px solid transparent;
	line-height: 20px;
}

.padTop {
	padding-top: 40px;
}

.padBotLarge {
	padding-bottom: 69px;
}

.errSpan {
	position: relative;
	clear: both;
	background: none;
	color: #666666;
	white-space: normal;
	padding-top: 5px;
	display: none;
	z-index: 2;
	width: 100%;
	margin-left: 2px;
	font-size: 15px;
	text-align: left;
}

.errSpanShow {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.errSpanShow.abs {
	padding-top: 0;
}

.mym-tool .progress-container {
	margin: auto;
	text-align: center;
	top: 20px;
	position: relative;
	height: 15px;
}

.mym-tool .progress {
	height: 15px;
	width: 250px;
	overflow: hidden;
	background-color: #d8d8d8;
	border-radius: 7.5px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	display: inline-block;
}

.mym-tool .progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	background-color: #0090da;
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	-webkit-transition: width .6s ease;
	-o-transition: width .6s ease;
	transition: width .6s ease;
	border-radius: 7.5px;
}

.mym-tool .progress-container .label {
	display: inline-block;
	font-family: 'MetLifeCircularNormal';
	font-size: 12px;
	line-height: 14px;
	color: #333333;
	overflow: hidden;
}

.mym-tool .campaign-card-filmstrip {
	/*position: fixed;
    bottom: 0;*/
	width: 100%;
	z-index: 9999;
}

@media screen and (max-width: 767px) {
	.mym-tool .mym-wrapper {
		padding: 20px;
	}
	.mym-tool.review .mym-wrapper {
        padding: 20px 30px;
    }
	.padTop {
		padding-top: 30px;
	}
	.mym-tool #mymStepForm input[type=text],
	.mym-tool #mymStepForm select,
	.mym-tool #mymStepForm textarea {
		font-size: 16px;
		font-weight: normal;
		height: 22px;
	}
	.mym-tool .mym-cta-button button,
	.mym-tool .mym-cta-button a {
		font-size: 13px;
		/*width: 100%;*/
	}
	.mym-tool .mym-cta-button button.btnPrimary {
		margin-bottom: 15px;
	}
	.mym-tool .progress-container {
		top: 0;
	}
	.mym-tool .progress-container span.label {
		top: -1px;
		position: relative;
	}
	.mym-tool #mymStepForm select#annualIncome {
		width: 159px;
	}
	.mym-tool #mymStepForm .annualIncome {
		margin-left: 0;
	}
	.mym-tool #mymStepForm select#primaryBreadWinner,
	.mym-tool #mymStepForm select#diseaseHistory {
		width: 56px;
	}
	.mym-tool #mymStepForm select#highInsurancePlan {
		width: 32px;
	}
}

@media screen and (min-width: 768px) {
	.mym-tool .mym-wrapper {
		padding: 30px;
	}
	.padTop {
		padding-top: 40px;
	}
	.mym-tool .mym-steps .padTop {
		padding-top: 20px;
	}
	.mym-tool #mymStepForm input[type=text],
	.mym-tool #mymStepForm select,
	.mym-tool #mymStepForm textarea {
		font-size: 24px;
		font-weight: 500;
	}
	.mym-tool .mym-steps {
		min-height: 565px;
	}
	.mym-tool.step-one .mym-steps {
		min-height: 565px;
		margin-bottom: 256px;
	}
	.mym-tool .mym-steps .mym-cta-button button+button {
		margin-left: 10px;
	}
	.mym-tool #mymStepForm select#annualIncome {
		width: 231px;
	}
	.mym-tool #mymStepForm select#primaryBreadWinner,
	.mym-tool #mymStepForm select#diseaseHistory {
		width: 75px;
	}
	.mym-tool #mymStepForm select#highInsurancePlan {
		width: 65px;
	}
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .mym-tool .ie-width-150.row > div{
        min-width: 70px;
    }
}

@media screen and (min-width: 1024px) {
	.mym-tool .mym-wrapper {
		padding: 20px;
	}
	.mym-tool .mym-steps {
		min-height: auto;
		margin-bottom: 95px;
	}
	.mym-tool #mymStepForm input::-webkit-input-placeholder {
		/* Chrome/Opera/Safari */
		color: #6f6e6f;
	}
	.mym-tool #mymStepForm input:hover::-webkit-input-placeholder {
		/* Chrome/Opera/Safari */
		color: #0061a0;
	}
	.mym-tool #mymStepForm input::-moz-placeholder {
		/* Firefox 19+ */
		color: #6f6e6f;
	}
	.mym-tool #mymStepForm input:hover::-moz-placeholder {
		/* Firefox 19+ */
		color: #0061a0;
	}
	.mym-tool #mymStepForm input:-ms-input-placeholder {
		/* IE 10+ */
		color: #6f6e6f;
	}
	.mym-tool #mymStepForm input:hover:-ms-input-placeholder {
		/* IE 10+ */
		color: #0061a0;
	}
	.mym-tool #mymStepForm input:-moz-placeholder {
		/* Firefox 18- */
		color: #6f6e6f;
	}
	.mym-tool #mymStepForm input:hover:-moz-placeholder {
		/* Firefox 18- */
		color: #0061a0;
	}
	.mym-tool .progress-container {
		top: 25px;
	}
}

.mym-tool #mymStepForm input:focus {
	color: #0061a0;
	background: none;
	outline: none;
}

.mym-tool #mymStepForm input:hover {
	color: #007abc;
	background: none;
	outline: none;
}

.error {
	color: #0061a0;
	fill: transparent;
	border-color: transparent;
	background-color: transparent !important;
}

.errorMsg {
	font-size: 15px;
	line-height: normal;
	color: #666666;
	margin-left: 10px;
	text-align: left;
}


/*MYM Tool Styles for "INTRODUCTION" Screen*/

.mym-tool .mym-container {
	background-color: #ffffff;
	position: relative;
}

.bg-brand-gray-4th.mym-tool .mym-container {
	background-color: #f2f2f2;
	overflow: hidden;
}

.landing-page.mym-tool .mym-container {
	background-color: #f8f8f8;
}

.mym-tool .mym-card {
	background-color: #f2f2f2;
	padding: 40px;
}

.mym-tool .mym-hero-image .banner-text-container {
	height: 100%;
}

.mym-tool .mym-hero-image .banner-text {
	width: 60%;
	display: table-cell;
	vertical-align: middle;
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.06;
	letter-spacing: normal;
	text-align: left;
	color: #333333;
	overflow: hidden;
}

.mym-tool .mym-hero-image .banner-text b {
	font-family: 'MetLifeCircularNormal';
	font-weight: bold;
	color: #0061a0;
}

.mym-tool .mym-hero-image .banner-image {
	width: 100%;
}

.mym-tool .introduction-title {
	font-family: Georgia;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.15;
	letter-spacing: normal;
	text-align: center;
	color: #333333;
	margin-bottom: 16px;
}

.mym-tool .introduction-subtitle {
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.2;
	letter-spacing: normal;
	text-align: center;
	color: #333333;
	margin: auto;
}

@media screen and (max-width: 767px) {
	.mym-tool .wrapper {
		padding: 0;
	}
	.mym-tool .mym-hero-image {
		height: 200px;
		background: url('../images/Hero-Mobile.jpg') no-repeat 100% 0;
		background-size: contain;
	}
	.mym-tool .mym-hero-image .banner-text {
		height: 200px;
		width: auto;
		font-size: 24px;
		padding: 0;
	}
	.mym-tool .introduction-title {
		font-size: 18px;
		margin-top: 10px;
	}
	.mym-tool .introduction-subtitle {
		font-size: 16px;
	}
	.mym-tool .call-to-action-button {
		margin: 30px 0 80px 0;
	}
}

@media screen and (min-width: 768px) {
	.mym-tool .mym-hero-image {
		height: 330px;
		background: url('../images/Hero-Tablet.jpg') no-repeat 100% 0;
		background-size: contain;
	}
	.mym-tool .mym-hero-image .banner-text {
		height: 330px;
		font-size: 44px;
		padding: 0;
	}
	.mym-tool .introduction-title {
		width: 551px;
		font-size: 26px;
		margin-top: 20px;
	}
	.mym-tool .introduction-subtitle {
		font-size: 16px;
		width: 643px;
	}
	.mym-tool .call-to-action-button {
		margin: 30px 0 70px 0;
		text-align: center;
	}
}

@media screen and (min-width: 1024px) {
	.mym-tool .mym-hero-image {
		height: 400px;
		background: url('../images/Hero-Desktop.jpg') no-repeat 100% 0;
		background-size: contain;
	}
	.mym-tool .mym-hero-image .banner-text {
		height: 400px;
		font-size: 54px;
		padding: 0;
	}
	.mym-tool .introduction-title {
		width: 578px;
		font-size: 26px;
		margin-top: 20px;
	}
	.mym-tool .introduction-subtitle {
		font-size: 20px;
		width: 813px;
	}
	.mym-tool .call-to-action-button {
		margin: 40px 0 60px 0;
		text-align: center;
	}
}


/*MYM Tool Styles for "PROGRESSING" Screen*/

.mym-tool .progressing-container {
	background: #f2f2f2;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.mym-tool .progressing-container h2 {
	font-family: Georgia;
	line-height: 1;
	color: #333333;
	margin-bottom: 0;
}

.mym-tool .progressing-container span {
	display: inline-block;
	font-size: 15px;
	line-height: 24px;
	color: #333333;
}

@media screen and (max-width: 767px) {
	.mym-tool .progressing-container h2 {
		font-size: 24px;
		padding: 40px 0px 0 0px;
	}
	.mym-tool .progressing-container span {
		margin-top: 30px;
		margin-bottom: 100px;
	}
}

@media screen and (min-width: 768px) {
	.mym-tool .progressing-container h2 {
		font-size: 30px;
		width: 600px;
	}
	.mym-tool .progressing-container span {
		margin-top: 30px;
		margin-bottom: 100px;
	}
}

@media screen and (min-width: 1024px) {
	.mym-tool .progressing-container h2 {
		font-size: 35px;
		width: 900px;
	}
	.mym-tool .progressing-container span {
		margin-top: 30px;
		margin-bottom: 100px;
	}
}


/*MYM Tool Styles for "START" Screen*/

.mym-tool .content-header {
	margin: 0 auto;
}

.mym-tool .content-header h2 {
	font-family: 'Georgia', 'Times New Roman', 'Times', 'serif';
	font-size: 44px;
	line-height: normal;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	letter-spacing: normal;
	text-align: center;
	color: #333333;
	margin-bottom: 0;
	padding: 40px 0;
	width: 100%;
	margin-bottom: 20px;
}

.mym-tool .mym-review .content-header h2 {
	margin-bottom: 0px;
}

.mym-tool .mym-form {
	font-family: 'MetLifeCircularNormal';
	font-size: 24px;
	line-height: normal;
	text-align: center;
	color: #333333;
	margin-bottom: 0;
	font-style: normal;
	font-stretch: normal;
	letter-spacing: normal;
	min-height: 240px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.mym-tool .mym-form--buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 100%;
	max-width: none;
	margin: 0;
}

.mym-tool.step-five .mym-form {
	min-height: 276px;
}

.width-100{
    width: 100%;
}

.mym-tool .steps-container:not(.fifth-step) .mym-form .mym-form-group {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-top: 15px;
	width: auto;
	position: relative;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.mym-tool .fifth-step .mym-form .mym-form-group {
	display: inline-block;
	margin-top: 15px;
	width: auto;
	position: relative;
}

.mym-tool .mym-form .mym-form-group.d-block {
	display: block;
}

.mym-tool .mym-form .row:first-child .mym-form-group {
	margin-top: 0;
}

.mym-tool .mym-form .mym-form-group span,
.mym-tool .mym-form .mym-form-group .input-holder {
	margin: 0 5px;
}

.mym-tool .mym-form .mym-form-group span {
	white-space: nowrap;
	margin: 0;
}

.mym-tool .input-holder .form-user-grp {
	padding: 0;
}

.mym-tool .input-holder .form-icon-wrapper {
	min-height: 25px;
}

.mym-tool .input-holder .form-icon-wrapper svg {
	top: 10px;
	right: 0;
	width: 16px;
	height: 12px;
	fill: #0061a0;
}

.mym-tool .input-holder .form-icon-wrapper svg:focus,
.mym-tool .input-holder .form-icon-wrapper svg:hover {
	fill: #007abc;
}

#fname,
#fnameAge {
	text-transform: capitalize;
}

@media screen and (max-width: 767px) {
	.mym-tool .content-header h2 {
		font-size: 24px;
		padding: 20px 0 30px 0;
	}
	.mym-tool .mym-form {
		font-size: 16px;
		min-height: 182px;
	}
	.mym-tool.step-five .mym-form {
		font-size: 16px;
		min-height: 261px;
	}
	.mym-tool .input-holder .form-icon-wrapper svg {
		top: 4px;
	}
}

@media screen and (min-width: 768px) {
	.mym-tool .content-header {
		max-width: 470px;
		margin-top: 30px;
	}
	.mym-tool .content-header h2 {
		padding: 30px 0 60px 0;
		font-size: 30px;
	}
}

@media screen and (min-width: 1024px) {
	.mym-tool .content-header {
		max-width: 650px;
		margin-top: 0;
	}
	.mym-tool .content-header h2 {
		font-size: 35px;
		padding: 65px 0 10px 0;
	}
}


/*Step 1 to 5 Styles*/

.mym-tool .mym-steps {
	position: relative;
}

.mym-tool .steps-container .animateproxy,
.mym-tool .steps-container.animateproxy {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
}

.mym-tool .mym-form .mym-form-group .input-holder:last-child {
	margin-right: 0;
}
#firstNameError{
    margin-left: 35px;
}

.keyboard-active .product-row__tile.active .product-row__tile__top > div:focus {
     outline-color: #fff;
     outline-offset: -2px;
     outline-style: solid;
     outline-width: 2px;
 }

.keyboard-active .product-row.on_sticky .product-row__tile .product-row__tile__top > div:focus {
    outline-offset: 8px;
}
.mym-tool.step-five .mym-form .mym-form-group .input-holder {
    top: 8px;
}
@media screen and (max-width: 767px) {
	.mym-tool .mym-form .mym-form-group .input-holder {
		margin: 0 10px;
	}
	.mym-tool .steps-container .animateproxy {
		padding: 20px 0;
	}
	.mym-tool .mym-form .mym-form-group #firstName {
		width: 190px;
		margin-left: 10px;
	}
	#firstNameError{
        margin-left: 40px;
    }
	.mym-tool .mym-form .mym-form-group #fAge {
		width: 20px;
	}
	.mym-tool .mym-form .mym-form-group #fGender,
	.mym-tool .mym-form .mym-form-group .fGender .select {
		width: 115px;
	}
	.mym-tool .mym-form .mym-form-group #fRelationship {
		width: 140px;
	}
	.mym-tool .mym-form .mym-form-group #fPet {
		width: 100px;
	}
	.mym-tool .mym-form .mym-form-group ##fHome {
		width: 100px;
	}
	.mym-tool .mym-form .mym-form-group #fAuto {
        width: 100px;
    }
	.mym-tool .mym-form .mym-form-group #fChild,
	.mym-tool .mym-form .mym-form-group #fChildInCollege,
	.mym-tool .mym-form .mym-form-group .fChild .select,
	.mym-tool .mym-form .mym-form-group .fChildInCollege .select {
		width: 35px;
	}
	.mym-tool .mym-form .mym-form-group .ml-form-field-select .select {
		height: 22px;
	}
	.mym-tool .steps-container:not(.fifth-step) .mym-form .mym-form-group .ml-form-field-select .select-options {
		font-size: 16px;
		max-height: 170px;
		position: static;
        margin-top: 20px;
	}
	.mym-tool .mym-form .mym-form-group .highInsurancePlan .ml-form-field-select .select-options {
	    position: absolute;
        margin-top: 22px;
	}
	.mym-tool .mym-form .mym-form-group .ml-form-field-select .select-options li {
		font-size: 16px;
		text-indent: 7px;
	}
	.mym-tool .mym-form .mym-form-group .ml-form-field-select .select-styled {
		position: absolute;
		top: -7px;
		right: 0;
		bottom: 0;
		left: 0;
		line-height: 30px;
		font-size: 16px;
		border-bottom: 2px solid #0061a0;
		padding: 2px 0;
	}
	.mym-tool .mym-form .mym-form-group .ml-form-field-select .select-styled:after {
		top: 14px;
		border-width: 5px !important;
	}
	.mym-tool .mym-form .mym-form-group .errSpan.abs {
		padding-top: 0;
		font-size: 14px;
	}
	.mym-tool.step-five .mym-form .mym-form-group span {
		float: none;
		display: inline;
		line-height: 24px;
		white-space: normal;
		text-align: left;
	}
	.mym-tool.step-five .mym-form .mym-form-group span.bread-winner {
       width: 55px;
    }
	.mym-tool.step-five .mym-form .mym-form-group .input-holder {
		float: none;
		display: inline-block;
		line-height: 24px;
		white-space: normal;
		position: relative;
		top: 8px;
	}

    .fifth-step{
        margin-left: 20px;
        margin-right: 20px;
    }
}

.mym-tool .mym-form .mym-form-group #fPet,
.mym-tool .mym-form .mym-form-group .fPet .select {
    width: 100px;
}
.mym-tool .mym-form .mym-form-group #fHome,
.mym-tool .mym-form .mym-form-group .fHome .select,
.mym-tool .mym-form .mym-form-group #Auto,
.mym-tool .mym-form .mym-form-group .fAuto .select{
    width: 100px;
}

@media screen and (min-width: 768px) {
	.mym-tool .mym-form .mym-form-group .input-holder {
		margin: 0 15px;
	}
	.mym-tool .mym-form .mym-form-group #firstName {
		width: 240px;
		margin-left: 10px;
	}
	.mym-tool .mym-form .mym-form-group #fAge {
		width: 32px;
		margin-left: 10px;
	}
	.mym-tool .mym-form .mym-form-group #fGender {
		width: 200px;
	}
	.mym-tool .mym-form .mym-form-group #fRelationship,
	.mym-tool .mym-form .mym-form-group .fRelationship .select {
		width: 200px;
	}

	.mym-tool .mym-form .mym-form-group #fChild,
	.mym-tool .mym-form .mym-form-group #fChildInCollege,
	.mym-tool .mym-form .mym-form-group .fChild .select,
	.mym-tool .mym-form .mym-form-group .fChildInCollege .select {
		width: 45px;
	}
	.mym-tool .mym-form .mym-form-group .fChild .ml-form-field-select .select-options li,
	.mym-tool .mym-form .mym-form-group .fChildInCollege .ml-form-field-select .select-options li {
		text-indent: 7px;
	}
	.mym-tool.step-five .mym-form .mym-form-group {
		margin-top: 30px;
	}
	.mym-tool.step-five .mym-form .mym-form-group span {
		float: none;
		display: inline;
		line-height: 24px;
		white-space: normal;
	}
	.mym-tool.step-five .mym-form .mym-form-group .input-holder {
		float: none;
		display: inline-block;
		line-height: 24px;
		white-space: normal;
		top: -1px;
		position: relative;
	}

	.mym-tool.step-five .mym-form .mym-form-group .input-holder {
        top: 8px;
    }

    .mym-tool.step-five .mym-form .mym-form-group .input-holder.annualIncome{
        top: -1px;
    }
	.mym-tool.step-five .steps-container {
		min-height: 422px;
	}
	.mym-tool.step-five .padTop {
		padding-top: 0;
	}
	.mym-tool .nopad.botMargin {
		margin-bottom: 34px;
	}
}

@media screen and (min-width: 1024px) {
	.mym-tool.step-five .steps-container {
		min-height: 468px;
	}
}


/*Step 2 - Styles*/

.mym-tool .step-two-content,
.mym-tool .step-three-content,
.mym-tool .step-four-content {
	margin: auto;
	clear: both;
}

.mym-tool .nopad {
	min-height: 154px;
	margin-bottom: 20px;
	/*overflow: hidden;*/
	display: inline-block;
}

.mym-tool .on-focus-height .nopad {
	min-height: 200px;
}

.mym-tool .icon-holder {
	min-height: 122px;
}


/*image gallery*/

.mym-tool .image-checkbox {
	cursor: pointer;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 0;
	outline: 0;
	height: 100px;
	width: 100px;
	background-color: #e6e6e6;
	border-radius: 50%;
	display: inline-block;
	padding: 20px;
}

.mym-tool .image-checkbox img {
	margin: auto;
	width: 40px;
}

.mym-tool .image-checkbox input[type="checkbox"] {
	display: none;
}

.mym-tool .image-checkbox-checked,
.mym-tool .image-checkbox-focus {
	background-color: #fff;
	-webkit-transition: transform 0.2s ease-in;
	-webkit-transform: scale(1.1);
	-ms-transition: transform 0.2s ease-in;
	-ms-transform: scale(1.1);
	-moz-transition: transform 0.2s ease-in;
	-moz-transform: scale(1.1) rotate(0.03deg);
	-webkit-transition: -webkit-transform 0.2s ease-in;
	transition: -webkit-transform 0.2s ease-in;
	-o-transition: transform 0.2s ease-in;
	transition: transform 0.2s ease-in;
	transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
	transform: scale(1.1);
	height: 110px;
	width: 110px;
}

.mym-tool .icon-getting-married img {
	width: 54px;
}

.mym-tool .icon-having-baby img {
	width: 58px;
	margin-top: 5px;
}

.mym-tool .icon-vision-care img {
	width: 60px;
	margin-top: 20px;
}

.mym-tool .icon-dental-work img {
	width: 44px;
	margin-top: 6px;
}

.mym-tool .icon-buying-home img {
	width: 50px;
	margin-top: 3px;
}

.mym-tool .icon-medical-expenses img {
	width: 55px;
}

.mym-tool .icon-buying-car img {
	width: 54px;
	margin-top: 5px;
}

.mym-tool .icon-estate-planning img {
	width: 54px;
}

.mym-tool .icon-getting-married.image-checkbox-checked img,
.mym-tool .icon-getting-married.image-checkbox-focus img {
	margin-top: 5px;
}

.mym-tool .icon-having-baby.image-checkbox-checked img,
.mym-tool .icon-having-baby.image-checkbox-focus img {
	margin-top: 10px;
}

.mym-tool .icon-vision-care.image-checkbox-checked img,
.mym-tool .icon-vision-care.image-checkbox-focus img {
	margin-top: 25px;
}

.mym-tool .icon-dental-work.image-checkbox-checked img,
.mym-tool .icon-dental-work.image-checkbox-focus img {
	margin-top: 11px;
}

.mym-tool .icon-buying-home.image-checkbox-checked img,
.mym-tool .icon-buying-home.image-checkbox-focus img {
	margin-top: 8px;
}

.mym-tool .icon-medical-expenses.image-checkbox-checked img,
.mym-tool .icon-medical-expenses.image-checkbox-focus img {
	margin-top: 5px;
}

.mym-tool .icon-buying-car.image-checkbox-checked img,
.mym-tool .icon-buying-car.image-checkbox-focus img {
	margin-top: 10px;
}

.mym-tool .icon-estate-planning.image-checkbox-checked img,
.mym-tool .icon-estate-planning.image-checkbox-focus img {
	margin-top: 5px;
}


/*Step 4 Icons*/

.mym-tool .icon-reducing-debt img {
	width: 40px;
}

.mym-tool .icon-increasing-savings img {}

.mym-tool .icon-career-progression img {
	width: 50px;
	margin-top: 6px;
}

.mym-tool .icon-time-with-family img {
	width: 56px;
	margin-top: 6px;
}

.mym-tool .icon-eating-healthy img {
	width: 45px;
}

.mym-tool .icon-retirement img {
	width: 56px;
	margin-top: 2px;
}

.mym-tool .icon-staying-active img {
	width: 20px;
	margin-top: 1px;
}

.mym-tool .icon-large-purchase-planning img {
	width: 44px;
	margin-top: 0px;
}

.mym-tool .icon-reducing-debt.image-checkbox-checked img,
.mym-tool .icon-reducing-debt.image-checkbox-focus img {
	margin-top: 5px;
}

.mym-tool .icon-increasing-savings.image-checkbox-checked img,
.mym-tool .icon-increasing-savings.image-checkbox-focus img {
	margin-top: 5px;
}

.mym-tool .icon-career-progression.image-checkbox-checked img,
.mym-tool .icon-career-progression.image-checkbox-focus img {
	margin-top: 11px;
}

.mym-tool .icon-time-with-family.image-checkbox-checked img,
.mym-tool .icon-time-with-family.image-checkbox-focus img {
	margin-top: 11px;
}

.mym-tool .icon-eating-healthy.image-checkbox-checked img,
.mym-tool .icon-eating-healthy.image-checkbox-focus img {
	margin-top: 5px;
}

.mym-tool .icon-retirement.image-checkbox-checked img,
.mym-tool .icon-retirement.image-checkbox-focus img {
	margin-top: 7px;
}

.mym-tool .icon-staying-active.image-checkbox-checked img,
.mym-tool .icon-staying-active.image-checkbox-focus img {
	margin-top: 7px;
}

.mym-tool .icon-large-purchase-planning.image-checkbox-checked img,
.mym-tool .icon-large-purchase-planning.image-checkbox-focus img {
	margin-top: 5px;
}
.mym-tool .icon-pets img {
    height: 60px;
    width: 60px;
	margin-top: 0;
}

.mym-tool .checkbox-label-title {
	font-family: 'MetLifeCircularNormal';
	font-size: 13px;
	font-weight: 500;
	line-height: normal;
	color: #0061a0;
	text-align: center;
	padding: 0;
	margin: auto;
	width: 100%;
	cursor: pointer;
}

.mym-tool .checkbox-label-title.xs {
	width: 40%;
}

.mym-tool .checkbox-label-title.md {
	width: 50%;
}

.mym-tool .checkbox-label-title.lg {
	width: 60%;
}

.mym-tool .checkbox-label-title.xlg {
	width: 80%;
}

.mym-tool .holder-checked .checkbox-label-title,
.mym-tool .holder-focused .checkbox-label-title {
	text-decoration: underline;
	font-weight: bold;
}

.mym-tool .checkbox-label-title:hover {
	text-decoration: underline;
	font-weight: bold;
	color: #0090da;
}

.mym-tool .ml-form-field-checkboxes-group {}

.mym-tool .fifth-step .step-five-error {
	font-family: 'MetLifeCircularNormal';
	font-size: 15px;
	line-height: 17px;
	color: #666666;
	white-space: normal;
	text-align: center;
	padding-bottom: 11px;
	width: 80%;
	margin: auto;
}

.mym-tool .image-holder-focused {
	border: 2px solid #55bdf2;
	padding: 12px 5px 5px;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0 1px 0;
	-moz-box-shadow: rgba(0, 0, 0, 0.5) 0 0 1px 0;
}

@media screen and (max-width: 767px) {
	.mym-tool .ml-form-field-checkboxes-group:last-child {
		margin-bottom: 0;
	}
	.mym-tool .step-one #btnNext {
		margin-left: 0;
	}
	.mym-tool .second-step .content-header,
	.mym-tool .third-step.content-header,
	.mym-tool .fourth-step .content-header {
		max-width: 275px;
	}
	.mym-tool .second-step .content-header h2,
	.mym-tool .third-step .content-header h2,
	.mym-tool .fourth-step .content-header h2 {
		padding-bottom: 10px
	}
	.mym-tool .step-two-content,
	.mym-tool .step-three-content,
	.mym-tool .step-four-content {
		width: 275px;
	}
	.mym-tool .step-three-content {
		width: 100%;
	}
	.mym-tool .step-three-content .ml-form-field {
		margin-bottom: 0;
		margin: 0;
		max-width: 100%;
	}
	.mym-tool .step-three-content .ml-form-field .ml-form-field-checkboxes-group label {
		font-size: 14px;
	}
	.mym-tool .step-two-content h3,
	.mym-tool .step-three-content h3,
	.mym-tool .step-four-content h3,
	.mym-tool .third-step h3 {
		font-size: 16px;
		font-weight: normal;
		padding-bottom: 30px;
		margin-bottom: 0;
	}
	.mym-tool .third-step h3 {
		text-align: center;
		padding-bottom: 10px;
	}
	.mym-tool .fifth-step .content-header.err h2 {
		padding-bottom: 15px;
	}
	.mym-tool .fifth-step .step-five-error {
		padding-bottom: 10px;
	}
	.mym-tool .icon-holder {
		min-height: 120px;
	}
}

@media screen and (min-width: 768px) {
	.mym-tool .second-step .content-header,
	.mym-tool .third-step .content-header,
	.mym-tool .fourth-step .content-header {
		max-width: 565px;
	}
	.mym-tool .second-step .content-header h2,
	.mym-tool .third-step .content-header h2,
	.mym-tool .fourth-step .content-header h2 {
		padding-bottom: 20px
	}
	.mym-tool .step-two-content,
	.mym-tool .step-four-content {
		max-width: 565px;
	}
	.mym-tool .third-step .mym-form {
		min-height: 200px;
	}
	.mym-tool .step-three-content {
		margin-top: 30px;
		margin-bottom: 20px;
	}
	.mym-tool .step-two-content h3,
	.mym-tool .step-three-content h3,
	.mym-tool .step-four-content h3,
	.mym-tool .third-step h3 {
		font-size: 24px;
		font-weight: normal;
		margin-bottom: 50px;
	}
	.mym-tool .third-step h3 {
		text-align: center;
		margin-bottom: 0;
	}
	.mym-tool .ml-form-field-checkboxes-group:first-child {
		margin-top: 0;
	}
	.mym-tool .ml-form-field-checkboxes-group:last-child {
		margin-bottom: 0;
	}
	.mym-tool .mym-form .step-three-content .ml-form-field-checkboxes-left,
	.mym-tool .mym-form .step-three-content .ml-form-field-checkboxes-right {
		padding: 0;
	}
	.mym-tool .fifth-step .content-header.err h2 {
		padding-bottom: 15px;
	}
	.mym-tool .fifth-step .step-five-error {
		padding-bottom: 11px;
	}
}

@media screen and (min-width: 1024px) {
	.mym-tool .second-step .content-header,
	.mym-tool .third-step .content-header,
	.mym-tool .fourth-step .content-header {
		max-width: 800px;
	}
	.mym-tool .fifth-step .content-header.err h2 {
		padding-bottom: 20px;
	}
	.mym-tool .second-step .content-header h2,
	.mym-tool .third-step .content-header h2,
	.mym-tool .fourth-step .content-header h2 {
		padding-bottom: 10px
	}
}


/*Step 5 Styles*/

@media screen and (max-width: 767px) {
	.mym-tool .mym-form .mym-form-group #annualIncome,
	.mym-tool .mym-form .mym-form-group .annualIncome .select {
		width: 180px;
	}
	.mym-tool .mym-form .mym-form-group #primaryBreadWinner,
	.mym-tool .mym-form .mym-form-group .primaryBreadWinner .select,
	.mym-tool .mym-form .mym-form-group #diseaseHistory,
	.mym-tool .mym-form .mym-form-group .diseaseHistory .select {
		width: 65px;
	}
	.mym-tool .mym-form .mym-form-group #highInsurancePlan,
	.mym-tool .mym-form .mym-form-group .highInsurancePlan .select {
		width: 50px;
	}
}

@media screen and (min-width: 768px) {
	.mym-tool .mym-form .mym-form-group #annualIncome,
	.mym-tool .mym-form .mym-form-group .annualIncome .select {
		width: 280px;
	}
	.mym-tool .mym-form .mym-form-group #primaryBreadWinner,
	.mym-tool .mym-form .mym-form-group .primaryBreadWinner .select,
	.mym-tool .mym-form .mym-form-group #diseaseHistory,
	.mym-tool .mym-form .mym-form-group .diseaseHistory .select {
		width: 106px;
	}
	.mym-tool .mym-form .mym-form-group #highInsurancePlan,
	.mym-tool .mym-form .mym-form-group .highInsurancePlan .select {
		width: 70px;
	}
}


/* *** Loader *** */

.ml-loader-container {
	width: 60px;
	margin: auto;
	text-align: center;
}

.ml-loader {
	height: 14px;
	width: 60px;
	position: static;
	margin-top: 0px;
	margin-left: -10px;
	/* css3 transform - scale */
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	    transform: scale(0.5);
}

.ml-loader>div {
	background-color: transparent;
	height: 25px;
	width: 25px;
	position: absolute;
	/* css3 radius */
	border-radius: 15px;
	/* css3 animation */
	-webkit-animation-name: ml-loader;
	-webkit-animation-duration: 1.04s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: linear;
	-moz-animation-name: ml-loader;
	-moz-animation-duration: 1.04s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: linear;
	-o-animation-name: ml-loader;
	-o-animation-duration: 1.04s;
	-o-animation-iteration-count: infinite;
	-o-animation-direction: linear;
	animation-name: ml-loader;
	animation-duration: 1.04s;
	animation-iteration-count: infinite;
	animation-direction: linear;
}

.ml-loader>div:nth-child(1) {
	left: 0;
	top: 0px;
	/* css3 animation */
	-webkit-animation-delay: 0.39s;
	animation-delay: 0.39s;
}

.ml-loader>div:nth-child(2) {
	left: 40px;
	top: 0px;
	/* css3 animation */
	-webkit-animation-delay: 0.52s;
	animation-delay: 0.52s;
}

.ml-loader>div:nth-child(3) {
	left: 80px;
	top: 0;
	/* css3 animation */
	-webkit-animation-delay: 0.65s;
	animation-delay: 0.65s;
}


/* ml-loader styles for processing screen */

.ml-loader-processing-container {
	width: 140px;
	margin: auto;
	margin-top: -10px;
}

.ml-loader-processing-container .ml-loader-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: -20px;
}

.ml-loader-processing-container .ml-loader {
	height: 140px;
	width: 140px;
	position: static;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	    transform: scale(0.5);
}

.ml-loader-processing-container .ml-loader>div {
	background-color: transparent;
	height: 25px;
	width: 25px;
	position: absolute;
	border-radius: 15px;
	-webkit-animation-name: ml-loader;
	-webkit-animation-duration: 1.04s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: linear;
	-moz-animation-name: ml-loader;
	-moz-animation-duration: 1.04s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: linear;
	-o-animation-name: ml-loader;
	-o-animation-duration: 1.04s;
	-o-animation-iteration-count: infinite;
	-o-animation-direction: linear;
	animation-name: ml-loader;
	animation-duration: 1.04s;
	animation-iteration-count: infinite;
	animation-direction: linear;
}

.ml-loader-processing-container .ml-loader>div:nth-child(1) {
	left: 0;
	top: 57px;
	-webkit-animation-delay: 0.39s;
	animation-delay: 0.39s;
}

.ml-loader-processing-container .ml-loader>div:nth-child(2) {
	left: 17px;
	top: 17px;
	-webkit-animation-delay: 0.52s;
	animation-delay: 0.52s;
}

.ml-loader-processing-container .ml-loader>div:nth-child(3) {
	left: 57px;
	top: 0;
	-webkit-animation-delay: 0.65s;
	animation-delay: 0.65s;
}

.ml-loader-processing-container .ml-loader>div:nth-child(4) {
	right: 17px;
	top: 17px;
	-webkit-animation-delay: 0.78s;
	animation-delay: 0.78s;
}

.ml-loader-processing-container .ml-loader>div:nth-child(5) {
	right: 0;
	top: 57px;
	-webkit-animation-delay: 0.91s;
	animation-delay: 0.91s;
}

.ml-loader-processing-container .ml-loader>div:nth-child(6) {
	right: 17px;
	bottom: 17px;
	-webkit-animation-delay: 1.04s;
	animation-delay: 1.04s;
}

.ml-loader-processing-container .ml-loader>div:nth-child(7) {
	left: 57px;
	bottom: 0;
	-webkit-animation-delay: 1.17s;
	animation-delay: 1.17s;
}

.ml-loader-processing-container .ml-loader>div:nth-child(8) {
	left: 17px;
	bottom: 17px;
	-webkit-animation-delay: 1.3s;
	animation-delay: 1.3s;
}

.ml-loader-processing-container .ml-loader-label p {
	font-size: 15px;
	line-height: 1.6;
	font-family: 'MetLifeCircularNormal';
}


/* css3 keyframes - ml-loader */

@-webkit-keyframes ml-loader {
	0% {
		-webkit-transform: scale(1.0);
		background-color: #0061a0;
	}
	70% {
		background-color: #0090da;
	}
	100% {
		-webkit-transform: scale(0.5);
		background-color: #a3cd4d;
	}
}

@keyframes ml-loader {
	0% {
		-webkit-transform: scale(1.0);
		        transform: scale(1.0);
		background-color: #0061a0;
	}
	70% {
		background-color: #0090da;
	}
	100% {
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		background-color: #a3cd4d;
	}
}


/*MYM Tools - Steps BG Image on conditional class*/

@media screen and (max-width: 767px) {
	.step-bg-img .tl,
	.step-bg-img .tr,
	.step-bg-img .bl,
	.step-bg-img .br,
	.step-bg-img img {
		display: none;
	}
}

@media screen and (min-width: 768px) {
	.step-bg-img .tl,
	.step-bg-img .tr,
	.step-bg-img .bl,
	.step-bg-img .br,
	.step-bg-img img {
		display: none;
	}
	/* Start Page */
	.start .step-bg-img .tr {
		position: absolute;
		right: -20px;
		top: -10px;
		width: 190px;
		height: 254px;
	}
	.start .step-bg-img .tr,
	.start .step-bg-img .tr img.img-1 {
		display: block;
	}
	/* Start Page - Step One*/
	/*.step-one .step-bg-img .tl, .step-one .step-bg-img .br { display: none;}*/
	.step-one .step-bg-img .tr,
	.step-one .step-bg-img .tr img.img-1,
	.step-one .step-bg-img .bl,
	.step-one .step-bg-img .bl img.img-1 {
		display: block;
	}
	.step-one .step-bg-img .tr {
		position: absolute;
		right: -20px;
		top: -10px;
		width: 190px;
		height: 254px;
	}
	.step-one .step-bg-img .bl {
		position: absolute;
		left: 0;
		bottom: 55px;
		width: 228px;
		height: 265px;
	}
	/* Start Page - Step Three*/
	.step-three .step-bg-img .tr,
	.step-three .step-bg-img .tr img.img-3,
	.step-three .step-bg-img .bl,
	.step-three .step-bg-img .bl img.img-3,
	.step-three .step-bg-img .br,
	.step-three .step-bg-img .br img.img-3,
	.step-three .step-bg-img .br img.img-3a,
	.step-three .step-bg-img .br img.img-3b {
		display: block;
	}
	.step-three .step-bg-img .tr {
		position: absolute;
		right: -23px;
		top: 54px;
		width: 60px;
		height: 85px;
	}
	.step-three .step-bg-img .bl {
		position: absolute;
		left: 0;
		bottom: -65px;
		width: 229px;
		height: 316px;
	}
	.step-three .step-bg-img .br {
		position: absolute;
		right: 0;
		bottom: 40px;
		width: 161px;
		height: 300px;
	}
	.step-three .step-bg-img .br img.img-3a {
		position: absolute;
		height: 120px;
		width: 120px;
		right: 122px;
		bottom: 20px;
	}
	.step-three .step-bg-img .br img.img-3b {
		position: absolute;
		bottom: -50px;
		right: 30px;
		height: 120px;
		width: 120px;
	}
	.step-three .step-bg-img .tr img.img-3 {
		-webkit-transform: rotate(-37deg);
		-ms-transform: rotate(-37deg);
		    transform: rotate(-37deg);
	}
	/* Start Page - Step Five*/
	.step-five .step-bg-img .tl,
	.step-five .step-bg-img .tl img.img-5 {
		display: block;
	}
	.step-five .step-bg-img .tl {
		position: absolute;
		left: -5px;
		bottom: 50px;
		width: 197px;
		height: 179px;
	}
	/* Review Page*/
	.review .step-bg-img .tl,
	.review .step-bg-img .tl img.img-5,
	.review .step-bg-img .br,
	.review .step-bg-img .br img.img-review {
		display: block;
	}
	.review .step-bg-img .tl {
		position: absolute;
		left: -25px;
		top: -31px;
		width: 182px;
		height: 180px;
	}
	.review .step-bg-img .br {
		position: absolute;
		bottom: 80px;
		right: 0px;
		height: 410px;
		width: 280px;
	}
}

@media screen and (min-width: 1024px) {
	/* Start Page - Step One*/
	.step-one .step-bg-img .bl {
		bottom: 76px;
	}
	/* Start Page - Step Three*/
	.step-three .step-bg-img .bl {
		position: absolute;
		left: 0;
		bottom: 60px;
		width: 229px;
		height: 316px;
	}
	.step-three .step-bg-img .br {
		position: absolute;
		right: 0;
		top: 60px;
		width: 161px;
		height: 300px;
	}
	.step-three .step-bg-img .br img.img-3a {
		position: absolute;
		height: 120px;
		width: 120px;
		right: 36px;
		top: 240px;
	}
	.step-three .step-bg-img .br img.img-3b {
		position: absolute;
		top: 308px;
		right: -53px;
		height: 120px;
		width: 120px;
	}
	/* Start Page - Step Five*/
	.step-five .step-bg-img .tl {
		position: absolute;
		left: -15px;
		top: -34px;
		width: 197px;
		height: 179px;
	}
	/* Review Page*/
	.review .step-bg-img .tl {
		position: absolute;
		left: -15px;
		top: -34px;
		width: 197px;
		height: 179px;
	}
	.review .step-bg-img .br {
		position: absolute;
		bottom: 80px;
		right: 0;
		height: 520px;
		width: 340px;
	}
}


/*MYM Tool Styles for "YOUR COVERAGES" Screen*/

.mym-tool .page-title {
	padding: 25px 20px;
	text-align: center;
	position: relative
}

.mym-page-title__heading {
	width: 100%;
	font-family: 'Georgia', 'Times New Roman', 'Times', 'serif';
	font-size: 28px;
	line-height: normal;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	letter-spacing: normal;
	text-align: center;
	margin-bottom: 0;
}

.mym-page-title__subtitle {
	width: 100%;
	font-size: 24px;
	line-height: normal;
	margin: auto;
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	letter-spacing: normal;
}

.mym-page-title__subtitle>* {
	margin: 0 auto 20px
}

.mym-page-title__subtitle>*:last-child {
	margin-bottom: 0
}

.mym-cta-button {
	text-align: center;
}

.mym-tool .product-row {
	font-family: 'MetLifeCircularNormal';
	text-align: center;
	cursor: pointer;
}

.mym-tool .product-row .icon-arrow-down-triangle {
	position: absolute;
	z-index: 999;
	height: 20px !important;
	width: 20px !important;
	bottom: -20px;
	left: 50%;
	font-size: 24px;
	fill: #0061a0;
	margin-left: -10px;
	top: auto;
	overflow: hidden;
}

.mym-tool .product-row.on_sticky .icon-arrow-down-triangle {
	bottom: -16px;
}

.mym-tool .product-row__tile {
	border-bottom: 5px solid #0061a0;
	padding-bottom: 15px;
	display: block;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	position: relative;
}

.mym-tool .product-row__tile__title {
	font-family: MetLifeCircularMedium;
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
}
.mym-tool .product-row__tile.active {
	position: relative;
	background-color: #0061a0;
	color: #fff;
	outline: 1px solid #0061a0;
}


.mym-tool .icon-arrow-down-triangle.show_on {
	display: none;
}

.mym-tool .product-row__tile__copy {}

.mym-tool .product-row__tile__copy,
.mym-tool .product-row__tile__head,
.mym-tool .product-row__tile__list li {
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-size: 16px;
	line-height: 16px;
	text-align: center;
}

.mym-tool .product-row__tile__list li {
	font-weight: bold;
	line-height: normal;
}

.mym-tool .product-row__tile__bottom {
	position: absolute;
	bottom: 5px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	width: 100%;
}

.mym-tool .product-row__tile.active .product-row__tile__bottom {
	display: none;
}

.mym-tool .product-card {
	margin-bottom: 1px;
	border-bottom: 1px solid #e3e3e3;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.mym-tool .product-card:last-child {
	margin-bottom: 0;
	border-bottom: 0px solid #e3e3e3;
}

.mym-tool .product-tile-content {
	-webkit-box-shadow: 1px 3px 5px 0 #ccc;
	        box-shadow: 1px 3px 5px 0 #ccc;
}

.mym-tool .coverage-tab .heading {
	font-family: MetLifeCircularMedium;
	font-size: 28px;
	font-weight: normal;
	line-height: normal;
	color: #333333;
	margin-bottom: 30px;
}

.mym-tool .coverage-tab .heading .coverage-prod-icon {
	width: 40px;
	float: left;
}

.mym-tool .coverage-tab .heading .coverage-prod-text {
	padding-left: 15px;
	margin: 10px 0 0 0;
	float: left;
	width: auto;
}

.mym-tool .coverage-tab .heading .coverage-prod-icon img {
	margin-top: 5px;
}

.mym-tool .coverage-tab .heading .coverage-prod-icon.icon-vision img {
	margin-top: 15px;
}

.mym-tool .coverage-tab .intro {
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-size: 20px;
	line-height: normal;
	color: #333333;
}

.mym-tool .coverage-tab .product-card .content p,
.mym-tool .coverage-tab .product-card .content li {
	font-family: 'MetLifeCircularNormal';
	font-size: 16px;
	line-height: normal;
}

.mym-tool .coverage-tab .product-card .content .list-heading {
	font-family: MetLifeCircularMedium;
	font-weight: normal;
	font-size: 18px;
	line-height: normal;
	color: #333333;
}

.mym-tool .related-content-image .media-card__tag {
	position: absolute;
	font-family: 'MetLifeCircularNormal';
	font-size: 10px;
	line-height: normal;
	padding: 10px 25px;
	margin-top: 20px;
	background: #fff;
	color: #333;
}

.mym-tool .related-content-image img {
	max-height: 220px;
}

.mym-tool .related-content .title {
	font-family: MetLifeCircularMedium;
	font-weight: normal;
	font-size: 24px;
	line-height: 24px;
	color: #333333;
	margin-bottom: 30px;
}

.mym-tool .related-content p {
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	color: #333333;
	margin-bottom: 20px;
}

.mym-tool .related-content p {
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-size: 16px;
	line-height: normal;
	color: #333333;
	margin-bottom: 20px;
}

.mym-tool .related-content .media-card__content__title {
	font-family: 'MetLifeCircularNormal';
	font-size: 16px;
	color: #0061a0;
	text-decoration: underline;
	line-height: normal;
}

.mym-tool .related-content .media-card__content__title:hover {
	color: #007abc;
	text-decoration: none;
}

.mym-tool .related-content .media-card__content__title:active,
.mym-tool .related-content .media-card__content__title:focus {
	color: #0061a0;
	text-decoration: underline;
	-webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
	        box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
	border: solid 2px #55bdf2;
}

.mym-tool .social-alignment {
	background: #fff;
	padding: 5px 20px;
}

.mym-tool .social__label {
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-size: 12px;
	line-height: normal;
	color: #333333;
	margin-top: 12px;
}

.mym-tool .product-row.on_sticky {
	display: none;
	border-bottom: 1px solid #f2f2f2;
}

.mym-tool .product-row.on_sticky,
.mym-tool .product-row.on_sticky.enabled {
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: top .55s ease-in;
	-o-transition: top .55s ease-in;
	transition: top .55s ease-in;
	top: 0;
}

.mym-tool .product-row.on_sticky.enabled {
	opacity: 1;
	filter: alpha(opacity=100);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	top: 40px;
	z-index: 2000;
	background: #fff;
}

@media screen and (min-width: 768px) {
	.mym-tool .product-row.on_sticky.enabled {
		top: 70px;
	}
}

.mym-tool .product-row.on_sticky .product-row__tile {
	padding: 20px;
	min-height: auto;
	border-bottom: none;
	/*margin-right: 0;
    width: 33.333%;*/
}

.mym-tool .product-row.on_sticky .product-row__tile__title {
	font-size: 20px;
	min-height: auto;
}

.mym-tool .product-row.on_sticky .product-row__tile__top,
.mym-tool .product-row.on_sticky .product-row__tile__title {
	margin-bottom: 0;
}

.mym-tool .product-row__tile__top,
.mym-tool .product-row__tile__bottom {
	display: block;
}

.mym-tool .footer-social {
	text-align: right;
	padding-top: 32px;
	padding-right: 15px
}
.mym-tool .future-reference{
    background-image: -o-linear-gradient(top, #007abc, #0061a0);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#007abc), to(#0061a0));
    background-image: linear-gradient(to bottom, #007abc, #0061a0);
    color: #fff;
}


@media screen and (max-width: 767px) {
	.mym-tool .page-title {
		padding: 40px 20px;
	}
	.mym-page-title__heading {
		width: auto;
		font-size: 24px;
	}
	.mym-tool .product-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		width: 100%;
	}
	.mym-tool .coverage-tab-content {
		padding-bottom: 30px;
	}
	.your-coverages .mym-cta-button {
		padding: 0 20px 35px;
	}
	.mym-tool .product-row__tile {
		width: 33.333%;
		margin-top: 0;
		margin-bottom: 0;
		padding: 8px 15px;
		min-height: 50px;
	}
	.mym-tool .product-row__tile.active {
		outline: 0 solid #0061a0;
	}
	.mym-tool .product-row__tile:not(:last-child),
	.product-row__tile--img-tile:not(:last-child) {
		margin-right: 0;
	}
	.mym-tool .product-row__tile:nth-child(3n) {
		margin-right: 0
	}
	.mym-tool .product-row__tile:first-child:nth-last-child(2) {
		margin-left: 17%
	}
	.mym-tool .product-row__tile__top {
		margin-bottom: 0;
	}
	.mym-tool .product-row__tile__title {
		font-size: 13px;
		line-height: 18px;
		max-width: 80px;
		margin-bottom: 0;
	}
	.mym-tool .product-row__tile__copy,
	.mym-tool .product-row__tile__head,
	.mym-tool .product-row__tile__list,
	.mym-tool .product-row__tile__bottom {
		display: none;
	}
	.mym-tool .coverage-tab .heading .coverage-prod-icon {
		max-width: 40px;
		width: 20%;
	}
	.mym-tool .coverage-tab .heading .coverage-prod-text {
		padding-left: 15px;
		width: 80%;
	}

	.mym-tool .future-reference .row{
        padding: 30px 20px;
    }
    .mym-tool .future-reference .row .col-md-10:last-of-type{
         padding-top: 40px;
     }
	.mym-tool .future-reference span {
		font-family: 'MetLifeCircularNormal';
		font-weight: normal;
		font-size: 24px;
		line-height: 24px;
		margin-bottom: 15px;
		display: block;
	}
	.mym-tool .future-reference .btn-brand-4th {
		/*width: 100%;*/
		margin-bottom: 0;
	}
	.mym-tool .product-card .content-body {
		padding: 20px 35px;
	}
	.mym-tool .related-content {
		margin-bottom: 10px;
		padding: 0 20px;
		margin-top: 30px;
	}
	.mym-tool .disclaimer {
		margin: 0 0 10px;
	}
	.mym-tool .related-content .media-card {
		margin-bottom: 0;
		background: transparent;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
	.mym-tool .related-content .media-card__content {
		padding: 20px 0;
	}
	.mym-tool .social__label {
		display: inline-block;
		margin-top: 0;
	}
	.mym-tool .footer-social {
		text-align: center;
		position: relative;
		bottom: 0;
		right: 0;
		padding: 0;
		float: none;
		z-index: 6000;
		width: 100%;
	}
	.mym-tool .social-alignment {
		float: none;
		padding: 10px 20px;
	}
	.mym-tool .product-row.on_sticky .product-row__tile {
		padding: 10px 20px;
	}
	.mym-tool .product-row.on_sticky .product-row__tile .product-row__tile__title {
		font-size: 13px;
	}
	.mym-tool .product-row.on_sticky .icon-arrow-down-triangle {
		bottom: -15px;
	}
	.mym-tool .product-row__tile.active .icon-arrow-down-triangle.show_on {
		display: block;
	}
}

@media screen and (min-width: 768px) {
	.mym-tool .page-title {
		padding: 90px 0 30px;
	}
	.mym-page-title__heading {
		width: 565px;
		font-size: 30px;
		line-height: normal;
		margin-bottom: 20px;
	}
	.mym-page-title__subtitle {
		width: 580px;
		font-size: 24px;
		line-height: 28px
	}
	.your-coverages .mym-cta-button {
		padding-bottom: 54px;
	}
	.mym-tool .product-row__tile {
		padding: 30px 20px 25px;
	}
	.mym-tool .product-row__tile__title {
		/*min-height: 102px;*/
		margin-bottom: 20px;
	}
	.mym-tool .product-row__tile__copy {
		/*min-height: 50px;*/
		margin-bottom: 20px;
	}
	.mym-tool .product-row__tile__head {
		margin-bottom: 20px;
	}
	.mym-tool .product-tile__action--link,
	.mym-tool .product-tile__action--text {
		font-family: 'MetLifeCircularNormal';
		font-size: 16px;
		line-height: normal;
	}
	.mym-tool .product-tile__action--link .icon-arrow-down-triangle {
		position: relative;
		right: 0;
		left: auto;
		display: inline;
		bottom: auto;
		margin-left: 0;
		top: 3px;
		width: 14px !important;
		height: 14px !important;
	}
	.mym-tool .product-row__tile.active .icon-arrow-down-triangle.show_on {
		display: block;
	}
	.mym-tool .coverage-tab {
		padding: 0 20px;
	}
	.mym-tool .coverage-tab .heading {}
	.mym-tool .coverage-tab .intro {
		font-size: 20px;
		font-weight: normal;
	}
	.mym-tool .coverage-tab-content {
		padding-bottom: 40px;
	}
	.mym-tool .product-card .content {
		width: 30%;
	}
	.mym-tool .product-card .content-body {
		padding-top: 20px;
	}
	.mym-tool .product-card .action {
		padding: 30px 20px;
		width: 15%;
	}
	.mym-tool .product-card .action p {
		font-family: 'MetLifeCircularMedium';
		font-size: 28px;
		font-weight: 500;
		line-height: normal;
	}
	.mym-tool .product-card .action a:hover {
		box-shadow: none;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
	}
	.mym-tool .media-card {
		width: 49%;
		margin-right: 2%;
		background-color: transparent;
	}
	.mym-tool .media-card:last-of-type {
		margin-right: 0;
	}
	.mym-tool .future-reference {
		margin-bottom: 40px;
	}
	.mym-tool .future-reference .row{
        padding: 40px 0;
     }
     .mym-tool .future-reference .row .col-md-10:last-of-type{
         padding-top: 40px;
     }
	.mym-tool .future-reference span {
		font-family: 'MetLifeCircularNormal';
		font-weight: normal;
		font-size: 24px;
		line-height: 16px;
		margin-right: 15px;
	}
	.mym-tool .future-reference .btn-brand-4th {
		margin-bottom: 0;
	}
	.mym-tool .related-content {
		margin-bottom: 50px;
	}
	.mym-tool .disclaimer {
		margin-bottom: 80px;
	}
	.mym-tool .related-content-image .media-card__tag {
		position: absolute;
		font-family: 'MetLifeCircularNormal';
		font-size: 10px;
		line-height: normal;
		padding: 10px 25px;
		margin-top: 20px;
		background: #fff;
		color: #333;
	}
	.mym-tool .related-content-image img {
		max-height: 220px;
	}
	.mym-tool .related-content .title {
		font-family: 'MetLifeCircularMedium';
		font-weight: normal;
		font-size: 24px;
		line-height: 24px;
		color: #333333;
		margin-bottom: 30px;
	}
	.mym-tool .related-content p {
		font-family: 'MetLifeCircularNormal';
		font-weight: normal;
		font-size: 16px;
		line-height: normal;
		color: #333333;
		margin-bottom: 20px;
	}
	.mym-tool .related-content p {
		font-family: 'MetLifeCircularNormal';
		font-weight: normal;
		font-size: 16px;
		line-height: normal;
		color: #333333;
		margin-bottom: 20px;
	}
	.mym-tool .footer-social {
		text-align: right;
		position: fixed;
		bottom: 0;
		right: 0;
		padding-right: 0;
		z-index: 6000;
	}
	.mym-tool .product-row__tile__list {
		/*min-height: 80px;*/
	}
	.mym-tool .product-row.on_sticky .product-row__tile {
		font-size: 20px;
		min-height: 65px;
	}
	.mym-tool .product-row.on_sticky .product-row__tile__top,
	.mym-tool .product-row.on_sticky .product-row__tile__title {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1024px) {
	.mym-page-title__heading {
		font-size: 35px;
		line-height: 40px;
		width: 800px;
		margin-bottom: 10px;
	}
	.mym-page-title__subtitle {
		font-size: 24px;
		line-height: normal;
		width: 750px;
	}
	.mym-tool .product-row__tile {
		padding: 40px 20px 25px;
	}
	.mym-tool .product-row__tile__title {
		/*min-height: 68px;*/
	}
	.mym-tool .product-row__tile__copy {
		/*min-height: 75px;*/
	}
	.mym-tool .product-card .content {
		width: 34%;
	}
	.mym-tool .product-card .action {
		padding: 30px 40px;
	}
	.mym-tool .related-content {
		/*margin-bottom: 140px;*/
	}
	.mym-tool .disclaimer {
		margin-bottom: 140px
	}
	.mym-tool .product-row.on_sticky .product-row__tile {
		/*min-height: 65px;*/
	}
	.mym-tool .product-tile__action--link .icon-arrow-down-triangle {
		display: inline-block;
	}
	.mym-tool .product-row__tile.active .icon-arrow-down-triangle.show_on {
		display: inline-block;
	}
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
	.mym-tool .product-row.on_sticky .product-row__tile__title {
		min-height: 28px;
	}
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
	.mym-tool .product-row.on_sticky .product-row__tile__title {
		min-height: 48px;
	}
}


/*Review Screen Styles Here*/

.mym-tool .mym-form .mym-form-group .input-holder span.text-bold {
	float: none;
	font-family: 'MetLifeCircularBold';
}

.mym-tool .review-content {
	display: inline-block;
	margin-top: 20px;
	width: auto;
	position: relative;
}

.mym-tool.review .row:first-child>.review-content {
	margin-top: 0;
}

.mym-tool .mym-review-table {
	margin: 30px auto 0;
	border: 1px solid #9b9b9b;
	table-layout: fixed;
}
.mym-tool tbody,
.mym-tool thead{
	padding: 0;
}
.mym-tool .table-header,
.mym-tool .table-row {
	width: 100%;
	height: 60px;

	font-size: 16px;
	line-height: 1.14;
	letter-spacing: normal;
	text-align: center;
	color: #333333;
	padding: 0;
	margin: 0;
	background: #ffffff;
}

.mym-tool .table-row:nth-child(2n+1) {
	background: #e7f0f5;
}

.mym-tool .mym-review-table .col-sm-4 {
	padding: 0;
}

.mym-tool .table-header {
	background-color: #0061a0;
	font-size: 22px;
	color: #fff;
	border-top: solid 1px #9b9b9b;
}

.mym-tool .mym-form .mym-form-group span.childrenText {
	float: none;
}

#btnCustomizedCov {
	margin-bottom: 20px;
}

.mym-tool .mym-review-table tr th:nth-of-type(2),
.mym-tool .mym-review-table tr td:nth-of-type(2){
    border-left: 1px solid #9b9b9b;
    border-right: 1px solid #9b9b9b;
}

@media screen and (min-width: 768px) {

	#btnCustomizedCov {
		display: block;
	}
	.mym-tool .mym-review {
		margin: 0 10px 126px;
	}
	.mym-tool .mym-review-table {
		z-index: 500;
		position: relative;
	}
	.mym-tool .mym-review-table.mobile {
       display: none;
    }
	.mym-tool .review-content .primaryBreadWinnerText {
		display: block;
	}
}

@media screen and (min-width:1024px) {
	.mym-tool .mym-review {
		margin: 0 0 25px;
	}
	.mym-tool .mym-review-table {
		width: 800px;
	}
}


/*Step 3 Styles*/

@media screen and (max-width: 767px) {
   .mym-tool .mym-review-table.desktop {
       display: none;
   }
   .mym-tool .mym-review-table.year{
         border-bottom: none;
       }
   .mym-tool .mym-review-table.passions{
        border-top: none;
        border-bottom: none;
      }
      .mym-tool .mym-review-table.future{
               border-top: none;
             }
   .mym-tool .mym-review-table.passions,
   .mym-tool .mym-review-table.future{
      margin-top: 0;
    }
	.step-three-content {
		margin: 0 auto;
		width: auto
	}
	.mym-tool .disclaimer .container {
		padding: 0 20px;
	}
}

@media screen and (min-width: 768px) {
	.step-three-content {
		margin: 0 auto;
		width: 575px
	}
	.mym-tool .disclaimer .container {
		padding: 0 25px;
	}
}


/*Email Overlay*/

.oe-tool .emailSidebar .ml-form {
	padding: 0;
	font-family: 'MetLifeCircularNormal';
}

.oe-tool .emailSidebar .ml-form .ml-form-field {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
}

.oe-tool .email-container--global {
	position: fixed;
	right: -640px;
	max-height: 100%;
	height: 100%;
	top: 0;
	overflow-y: auto;
	background-color: transparent;
	width: 370px;
	z-index: 9999;
	-webkit-box-shadow: 0 1px 4px 1px rgba(74, 74, 74, 0.49);
	        box-shadow: 0 1px 4px 1px rgba(74, 74, 74, 0.49);
}

.oe-tool .emailSliderOuterCon {
	color: #666;
	padding: 30px;
	text-transform: none;
	overflow: visible;
	background-color: #fff;
	font-size: 13px;
	line-height: 16px;
	min-height: 100%;
	position: relative;
	padding-bottom: 100px;
}

.oe-tool .emailSidebar p {
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-size: 14px;
	line-height: 18px;
	color: #333333;
	margin-bottom: 20px;
}

.oe-tool .emailSidebar p.ml-form-field-errortext {
	display: none;
	font-size: 12px;
	line-height: 16px;
	color: #DB1818;
	margin-top: 5px;
	margin-bottom: 0;
}

.oe-tool .emailSidebar .form__title {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-weight: bold;
	font-size: 18px;
	color: #333333;
	margin-bottom: 30px;
}

.oe-tool .emailSidebar .form__subtitle {
	font-family: 'MetLifeCircularMedium';
	font-weight: normal;
	font-size: 14px;
	line-height: 18px;
	font-style: normal;
	margin-bottom: 15px;
	font-weight: bold;
}

.oe-tool .emailSidebar .btnLink {
	font-family: 'MetLifeCircularNormal';
	font-weight: normal;
	font-size: 13px;
	line-height: 18px;
	padding-right: 15px;
}

.oe-tool .emailSidebar .btn {
	padding: 12.5px 20px;
	line-height: 20px;
}

.oe-tool .emailSidebar .errorSpan {
	background-color: #fde8e8;
	border: 0;
	font-family: 'MetLifeCircularNormal';
	font-size: 13px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	/*static/images/form/icon_form_error.png*/
}

.oe-tool .emailSidebar .errorSpan:after {
	border: none;
}

.bg-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
}

body.overlay-on {
	overflow: hidden;
	position: fixed;
}

.oe-tool .emailSidebar .ml-msg {
	position: relative;
	line-height: 20px;
	padding: 9px 0;
	border-radius: 2px;
}

.oe-tool .emailSidebar .ml-msg-txt {
	display: inline-block;
	margin-left: 35px;
	margin-right: 10px;
}

.oe-tool .emailSidebar .fa-exclamation-circle {
	position: absolute;
	left: 15px;
}

.oe-tool .emailSidebar .high-priority {
	color: #DB1818;
	font-size: 20px;
	padding-right: 5px;
}

.oe-tool .emailSidebar .high-priority img {
	width: 20px;
	height: 19px;
	margin-top: 0px;
	display: inline-block;
}

.oe-tool .emailSidebar .form-row:nth-child(2) .ml-form-field label,
.oe-tool .emailSidebar #mymEmailMsg {
	height: 162px;
}
.mym-tool .future-reference .btn-brand-4th {
	margin-top: 20px;
}
@media screen and (max-width: 419px) {
	.oe-tool .email-container--global {
		width: 275px;
	}
	.mym-tool .mym-cta-button button,
	.mym-tool .mym-cta-button a {
		width: 100%;
	}
	.mym-tool .future-reference .btn-brand-4th {
		width: 100%;
	}
	.mym-tool .product-card .action .btn-brand-1st {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.mym-tool .product-card .action .btn-brand-1st {
		width: 100%;
	}
}

@media screen and (min-width: 420px) {
	.mym-tool .mym-steps .mym-cta-button button+button {
		margin-left: 10px;
	}
	#btnCustomizedCov {
		display: block;
	}
}

.mym-tool .disclaimer {
	font-size: 13px;
	color: #6f6e6f;
	font-family: 'MetLifeCircularNormal';
}

.mym-tool .disclaimer p {
	margin-bottom: 7px;
	word-wrap: break-word;
}

.mym-tool .disclaimer p.disclaimerText {
	margin-top: 26px;
}

.mym-tool.your-coverages sup {
	font-size: 55%;
	top: -0.9em;
}


/*Step Screen Animation CSS for Next and Back Button*/

@-webkit-keyframes bounce {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounce {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}


/*Back Animation*/

@-webkit-keyframes bounce__back {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounce__back {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.bounce__back {
	-webkit-animation-name: bounce__back;
	animation-name: bounce__back;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media screen and (min-width: 420px) {
	.cta-button-next-back {
		width: 210px;
		margin: 0 auto;
	}
	.cta-button-review-back {
		width: 234px;
		margin: 0 auto;
	}
}

.mym-filmstrip {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 15px
}

.mym-filmstrip .mym-filmstrip__barOne {
	width: 75%;
	background-color: #0090da
}

.mym-filmstrip .mym-filmstrip__barTwo {
	width: 10%;
	background-color: #0061a0
}

.mym-filmstrip .mym-filmstrip__barThree {
	width: 15%;
	background-color: #a4ce4e
}

@media screen and (max-width: 767px) {
	.mym-filmstrip {
		padding-left: 0;
		padding-right: 0
	}
}

.introduction-container .container-fluid {
	padding: 0;
}

.mym-tool .footer-social .icon {
	position: relative;
	height: 20px;
	width: 20px;
}

.mym-tool .social__link {
	display: inline-block
}

.mym-tool .social__link:not(:first-of-type) {
	margin-left: 10px
}

.mym-tool .social__link svg {
	height: 16px;
	width: 16px;
	fill: #0061a0
}

.mym-tool a.social__link:hover svg {
	fill: #007abc
}

.mym-tool a.social__link:focus svg {
	display: block;
	fill: #007abc;
	outline-color: #0061a0;
	outline-offset: -2px;
	outline-style: solid;
	outline-width: 2px
}

@media screen and (min-width: 768px) {
	.mym-tool .social__link {
		margin-top: 8px;
		margin-left: 10px
	}
	.mym-tool .social__link:not(:first-of-type) {
		margin-left: 15px
	}
	.mym-tool .social__link svg {
		height: 19px;
		width: 19px
	}
	.mym-tool .social__link svg.icon-gplus,
	.social__link svg.icon-weibo {
		width: 23px;
		height: 23px
	}
}

@media screen and (min-width: 1024px) {
	.mym-tool .social__link svg {
		height: 18px;
		width: 18px
	}
}

.mym-tool sup {
	top: -.5em;
}

.mym-tool sub,
.mym-tool sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

@media screen and (max-width: 1023px) {
	.coverage-tab .tile-container .container {
		padding: 0;
	}
	.coverage-tab .tile-container .container .row {
		margin: 0;
	}
}

.contact-close {
	top: 10px;
	right: 30px;
	position: absolute;
}

.contact-close .icon {
	width: 16px;
	height: 16px;
	font-size: 1.2em;
	fill: #000;
}

.form__title {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	display: block;
	margin-bottom: 6px;
}

.form__subtitle {
	font-weight: 400;
	font-style: italic;
	color: #333;
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 5px;
	display: block;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	#mymStepForm {
		margin-bottom: 225px;
	}
}

.mym-tool .mym-form .mym-form-group .input-holder.fRelationship,
.mym-tool .mym-form .mym-form-group .input-holder.fGender{
    margin-right: 0px;
}

.email-overlay-close:focus, .email-overlay-close:hover{
    outline-color: #0061a0;
    outline-offset: -2px;
    outline-style: solid;
    outline-width: 2px;
}
.keyboard-active .btn-brand-1st:focus {
    color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline-offset: 3px;
    outline-width: 3px;
    text-decoration: none;
    outline-style: solid;
    outline-color: #007abc;
}
.keyboard-active .btn-brand-2nd:focus {
    outline-color: #007abc;
}
.keyboard-active #sectionheaderEmailButtom:focus {
    outline-color: #fff;
}
