/**
 * Main Css for all styling of Retirement Planner App
 * for calculating all the values.
 *
 * @author Anuj Sood
 */
 /*Fonts Family*/
@font-face {
    font-family: 'Open Sans',sans-serif; font-weight: 300;
    src:url("../fonts/opensans/OpenSans-Regular.eot");
    src:url("../fonts/opensans/OpenSans-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/opensans/OpenSans-Regular.woff") format("woff"),
    url("../fonts/opensans/OpenSans-Regular.ttf") format("truetype"),
    url("../fonts/opensans/OpenSans-Regular.svg#OpenSans") format("svg");

}

@font-face {
    font-family: 'Open Sans', sans-serif;font-weight: 600;
    src:url("../fonts/opensans/OpenSans-Regular.eot");
    src:url("../fonts/opensans/OpenSans-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/opensans/OpenSans-Regular.woff") format("woff"),
    url("../fonts/opensans/OpenSans-Regular.ttf") format("truetype"),
    url("../fonts/opensans/OpenSans-Regular.svg#OpenSans") format("svg");    
}

@font-face {
    font-family: 'Open Sans',sans-serif; font-weight: 700;
    src:url("../fonts/opensans/OpenSans-Regular.eot");
    src:url("../fonts/opensans/OpenSans-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/opensans/OpenSans-Regular.woff") format("woff"),
    url("../fonts/opensans/OpenSans-Regular.ttf") format("truetype"),
    url("../fonts/opensans/OpenSans-Regular.svg#OpenSans") format("svg");    
}
@font-face {
    font-family: 'Open Sans', sans-serif;font-weight: 400;
    src:url("../fonts/opensans/OpenSans-Regular.eot");
    src:url("../fonts/opensans/OpenSans-Regular.eot?#iefix")format("embedded-opentype"),
    url("../fonts/opensans/OpenSans-Regular.woff") format("woff"),
    url("../fonts/opensans/OpenSans-Regular.ttf") format("truetype"),
    url("../fonts/opensans/OpenSans-Regular.svg#OpenSans") format("svg");

}


@font-face {
    font-family: 'Open Sans',sans-serif; font-weight: 600;
    src:url("../fonts/opensans/OpenSans-Regular.eot");
    src:url("../fonts/opensans/OpenSans-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/opensans/OpenSans-Regular.woff") format("woff"),
    url("../fonts/opensans/OpenSans-Regular.ttf") format("truetype"),
    url("../fonts/opensans/OpenSans-Regular.svg#OpenSans") format("svg");
}

/*Font Icons*/

@font-face {
  font-family: "iconfonts";
  src:url("../fonts/iconfonts.eot");
  src:url("../fonts/iconfonts.eot?#iefix") format("embedded-opentype"),
    url("../fonts/iconfonts.woff") format("woff"),
    url("../fonts/iconfonts.ttf") format("truetype"),
    url("../fonts/iconfonts.svg#iconfonts") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "iconfonts" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="rp-"]:before,
[class*=" rp-"]:before {
  font-family: "iconfonts" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rp-helps:before {
  content: "a";
}
.rp-help:before {
  content: "a";
}
.rp-close:before {
  content: "c";
}
.rp-cpf:before {
  content: "d";
}
.rp-financial:before {
  content: "e";
}
.rp-back:before {
  content: "f";
}
.rp-investment:before {
  content: "g";
}
.rp-next:before {
  content: "h";
}
.rp-info:before {
  content: "i";
}
.rp-additional:before {
  content: "j";
}
.rp-lumpsum:before {
  content: "k";
}
.rp-omale:before {
  content: "l";
}
.rp-ofemale:before {
  content: "m";
}
.rp-planner:before {
  content: "n";
}
.rp-male:before {
  content: "o";
}
.rp-female:before {
  content: "p";
}
.rp-summary:before {
  content: "q";
}
.rp-view:before {
  content: "v";
}
.rp-edit:before {
  content: "w";
}
.rp-cash:before {
  content: "B";
}


/*Reset CSS*/

html,body,div,span,h1,h2,h3,h4,h5,h6,p,a,em,img,sub,sup,ol,ul,li,form,label,header,section,footer
{
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
}

a,a:visited {
  outline: 0;
  text-decoration: none;  
}

*:not(input) {
  -webkit-user-select: none;
}
*{
  box-sizing:border-box;
}

*:focus {
  outline: none;
}

a:hover,a:focus{
  color:#c00;
  text-decoration: none;
}
a:link {
  outline: none;
}
/*Animation Styling*/

/*--------left to Right animaiton--------*/
.leftAnimation.ng-enter,.leftAnimation.ng-leave,.rightAnimation.ng-enter,.rightAnimation.ng-leave
  {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: fixed;
  width: 100%;
  height: 100%;
}

.leftAnimation.ng-enter {
  z-index: 100;
  left: 100%;
}

.leftAnimation.ng-enter.ng-enter-active {
  left: 0;
  right: 0;
}

.leftAnimation.ng-leave {
  z-index: 101;
  left: 0%;
}

.leftAnimation.ng-leave.ng-leave-active {
  left: -100%;
}

.rightAnimation.ng-enter {
  z-index: 100;
  left: -100%;
}

.rightAnimation.ng-enter.ng-enter-active {
  left: 0;
}

.rightAnimation.ng-leave {
  z-index: 101;
  left: 0%;
}

.rightAnimation.ng-leave.ng-leave-active {
  left: 100%;
}

/*----Home bottom to top slide animation------*/
/* retirement-planner ---------------------- */
.page-animate-up.ng-enter {
  -webkit-animation: slideInUp 0.3s both ease-in;
  -moz-animation: slideInUp 0.3s both ease-in;
  animation: slideInUp 0.3s both ease-in;
  position: fixed;
  width: 100%;
  height: 100%;
}
.page-animate-up.ng-leave {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* slide in from the bottom */
@keyframes slideInUp {
 from {
transform:translateY(100%);
}
 to {
transform: translateY(0);
}
}
@-moz-keyframes slideInUp {
 from {
-moz-transform:translateY(100%);
}
 to {
-moz-transform: translateY(0);
}
}
@-webkit-keyframes slideInUp {
 from {
-webkit-transform:translateY(100%);
}
 to {
-webkit-transform: translateY(0);
}
}
/*-----------Page fade effect-------------*/
.page-fade-effect {
  -webkit-animation: fadein 0s;
  -moz-animation: fadein 0s;
  animation: fadein 0s;
}

@keyframes fadein {
 from {
opacity: 0;
}
 to {
opacity: 1;
}
}
/* Firefox */
@-moz-keyframes fadein {
 from {
opacity: 0;
}
 to {
opacity: 1;
}
}
/* Safari and Chrome */
@-webkit-keyframes fadein {
 from {
opacity: 0;
}
 to {
opacity: 1;
}
}

/*---page down effect----------*/
/* retirement-planner ---------------------- */
.page-animate-down.ng-enter {
  -webkit-animation: slideInDown 0.3s both ease-in;
  -moz-animation: slideInDown 0.3s both ease-in;
  animation: slideInDown 0.3s both ease-in;
  position: fixed;
  width: 100%;
  height: 100%;
}
.page-animate-down.ng-leave {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* slide in from the bottom */
@keyframes slideInDown {
 from {
transform:translateY(0);
}
 to {
transform: translateY(100%);
}
}
@-moz-keyframes slideInDown {
 from {
-moz-transform:translateY(0);
}
 to {
-moz-transform: translateY(100%);
}
}
@-webkit-keyframes slideInDown {
/* from {
-webkit-transform:translateY(0);
}
 to {
-webkit-transform: translateY(100%);
}*/
}

/*Default Styling*/
body {
  background: url('../images/gray-background.jpg') 0 0 repeat;
  min-width: 320px;
  overflow-x: hidden;
}
.content {
  margin-top: 120px;
  margin-bottom: 30px;
  background: #f9f7f4;
  padding: 50px 40px;
}
.paddngBot20{padding-bottom:20px;}
.contentedit {
  margin-top: 120px;
  background: #f9f7f4;
  padding: 50px 40px;
}

.container{
  max-width: 1000px;
}
.content.no-breadcrumb{
   margin-top: 80px;
   margin-top: 80px\9;
   margin-bottom: 20px\9;
   padding-top:20px\9;
   padding-bottom:20px\9;
}

.tooltip.in {
  opacity: 1;
  filter:alpha(opacity=100);
  box-shadow: none;

}
.tooltip-hover{
  position: relative;
}
a#ico-help .custom-tooltip{
  display: none;
}
a#ico-help:hover .custom-tooltip{
  display: block;
  top:-5px !important;
}
.tooltip-inner {
  padding: 10px;
  color: #fcfcfc;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  background-color: #545456;
  border-radius: 0;
  word-wrap: normal;
  box-shadow: none;
  border-bottom: 3px solid #ccc6c6; 
  min-width: 150px;
  max-width: 350px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow{
  border-top-color: #545456;
  left: 50%;
  margin-left: -15px;
  border-width: 15px 15px 0;
  border-top-color: #545456;
}

/*No Ui Slider Tooltip*/
.ui-tooltip{
  background-color: #545456;
  min-height: 20px;
  max-width: 100px;
  width: 85px;
  position: absolute;
  top: -70px;
  left:-23px;
  z-index: 9999;
}
.ui-tooltipinner{
  color:#fff;  
  text-align: center;
  font-size: 24px;  
  padding:10px 10px;
  border-bottom: 3px solid #ccc6c6;
  text-decoration: none;
}
.ui-tooltip-arrow{
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-bottom-color: #545456;
  bottom: -10px;
  left: 50%;
  margin-left: -15px;
  border-width: 15px 15px 0;
  border-top-color: #545456;
}
.ui-tooltip.actnow{
    left:-23px
}
.ui-tooltip.actnow .ui-tooltipinner{
  padding:10px 10px;
  width: 85px;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn-red { 
  border-radius: 0;
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
  margin: 10px 0px 0 0;
  padding: 28px 40px;
  max-width: 420px;
  line-height: 25px;
  min-width: 420px;
  max-height: 80px;

  border: 0px solid rgba(0, 0, 0, 0);
 
}
.content a.btn-red i{
  color:#fff;
}
.btn-red:hover, .btn-red:focus {
  color: #fff;
}
.save-changes[disabled]{
  color:#999494;
}
.text-black {
  color: #100f0f;
}
input[type="text"], input[type="number"], input[type="tel"] {
  height: 60px;
  border: none;
  border-top: 3px solid #ccc6c6 !important;
  padding: 10px;
  width: 100%;
  color: #ccc6c6;
  font-size: 36px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
 margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
select {
  width: 90px;
  height: 60px;
  border: none;
  border-bottom: 3px solid #ccc6c6!important;
  padding: 10px;
  font-size: 36px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  color: #ccc6c6;
  text-overflow: '';
  position: relative;
  background: url('../images/up-down-arrow.jpg') no-repeat 70px center #fff;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.input-box, .select-box {
  border: 1px solid #f9f7f4;
}
.select-box {
  display: inline-block;
}
.focus-ele, .input-active {
  border: 1px solid #f3bd00 !important;
}
.invalid  {
  border: 1px solid #7f0000 !important;
}
.alert-text, .error-text {
  color: #7f0000;
  font-size: 14px;
  margin-top: 10px;
  display: block;
  font-family: 'Open Sans',sans-serif; font-weight: 700;
}
.invalid input.text-color-changed{
  color: #7f0000;
  }
input.text-color-changed,
select.text-color-changed{
  color:#100f0f;
}
.form-row {
  margin-bottom: 50px;
}
.form-row label {
  font-size: 22px;
  display: block;
  margin-bottom: 20px;
  
  font-family: 'Open Sans',sans-serif; font-weight: 300;
  font-weight: 300;
  color: #100f0f;
  position: relative;
}
.change-to-input{
  position: relative;
  border:1px solid #f9f7f4;
}
label i, label a{
  
  position: relative;
  top: 2px
}
label i{
  margin-left: 5px;
}
.change-to-input .add-on-left{
  position: absolute;
  left:10px;
  font-size: 36px;
  font-weight: 400;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
  line-height: 60px;
}
input.addon{
  padding-left: 75px;
}
header,nav,section,aside,footer {
  display: block;
}

/*Header & Footer*/
header {
  height: 60px;
  border-bottom: 1px solid #ccc6c6;
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
  color: #666363;
  left:0;
}
header .row {
  margin: 0 -35px;
}
header .logo{
  margin-top: 19px;
}
header a, header button{
  font-size: 24px;
  line-height: 60px;
}
header .page-title{
  display: inline;
  line-height: 60px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  color: #666363;
  font-size: 18px;
}
header i.rp-planner {  
  margin-right: 10px;
  display: inline;
}
header a.next, header button {
  margin-right: 4px;
}
header button{
  border:none;
  background: none;
  box-shadow: none;
}
header a.back{
  color: #999494
}
.content a i{
  color: #ccc6c6;
  position: relative;
  top: 2px;
}
header a i {
  float: none;
  font-size: 0.6em;
  margin-right: 0;
}
footer.landing-footer{
  height: 80px;
  box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.03);
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1;
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.00) \9;
}
footer h2.startnow {
  font-size: 30px;
  line-height: 20px;
  padding: 28px 0;
}
footer h2.startnow a {
  font-family: 'Open Sans', sans-serif;font-weight: 600;
}
footer h2.startnow i {
  font-size: 0.55em;
  margin-left: 5px;
}

/*Landing Page*/
.landing-page {
	font-family: 'Open Sans',sans-serif; font-weight: 300;
	position: fixed;
	width: 100%;
	height: 100%; 
	background: url('../images/gradBackground.png') 0 0 no-repeat;
	background-size: cover;
	background: url('../images/gradBackground.png')\9;
	background-repeat:no-repeat \9;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
	src='images/gradBackground.png',
	sizingMethod='scale');
	
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(
	src='images/gradBackground.png',
	sizingMethod='scale')";
}


.landing-page h1 {
  font-size: 2.25em; /*36px;*/
  line-height: 40px;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
  margin: 0 auto;
  width: 65%;
  margin-top: 90px;
  margin-bottom: 20px
}
.landing-page figure {
  position: fixed;
  width: 100%;
  bottom: 70px;
}
.landing-page figure img {
  margin: 0 auto;
  width: 30%
}
.thankyou figure {
  bottom: 50px;
}
.thankyou figure img {
  width: 27%
}
.landing-image{
  position: fixed;
  width: 100%;
  bottom:70px;
  text-align: center;
}
.alert-refresh{
  font-size: 14px;
  color:#999494;
  margin: 70px 0 -80px 0;
  color:#cc0000;
}
/*Breadcrumb*/
.breadcrumb>li+li:before {
  content: '';
  display: none;
}
.breadcrumb>li {
  margin-left: 0;
  line-height: 20px !important
}
.breadcrumb-wrapper {
    background: #f9f7f4;
  border-bottom: 1px solid #ccc6c6;
  position: fixed;
  top: 60px;
  z-index: 2;
  left: 0;
  width: 100%
}
.breadcrumb {
  height: 35px;
  margin-bottom: 0;
  background: none;
}
.breadcrumb li a {
  font-family: 'Open Sans',sans-serif; font-weight: 700;
  color: #b8b6b4;
  text-decoration: none;
  font-size: 14px;
}
.breadcrumb a em {
  font-style: normal; 
}
.breadcrumb a span{
  margin-left: -2px;
}
.breadcrumb a span em{
   margin-right: 2px;
}
.breadcrumb li i {
  font-size:10px;
  margin: 0 20px;
  color: #b8b6b4;
}
.breadcrumb > .active a {
  color: #666363;
  cursor: default;
}
.extrapadding-left {
  padding-left: 40px;
}
.extrapadding-right {
  padding-right: 40px;
}
/*Personal Details*/
.gender-options .form-row{
  margin-bottom: 0;
}
.genContainer {
  height: 170px;
  width: 170px;
  padding-top: 36px;
  padding-bottom: 30px;
  background: #e9e9e9;  
  margin: 0px 15px 0px 0;
  line-height: 40px;
  color: #999494;
  text-align: center;
  float: left;
  cursor: pointer;
}
.genContainer i {
  font-size: 79px;
}
.genContainer p {
  font-size: 20px;
  font-weight: 300;  
  line-height: 20px;
  margin-top: 10px;
}
.myStyleMale i, .myStyleFemale i {
  color: #e8b526;
}
.myStyleMale, .myStyleFemale {
  background-color: #fff;
}

/*----Carousal for Retirement Goals-----*/
.desktopVisible {
	display: block !important;
}
.mobileVisible {
	display: none !important;
}

/*-----------Popup---------------*/
.fade-body,.fade-body-index {
  position: absolute;
  height: 100%;
  width: 100%;
  background: url('../images/transparentPixel.png') repeat 0 0;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
}
.popup {
  position: relative;   
  margin: 0 auto;  
  top: 100px; 
  top: 20px\9; 
  display: none;
  z-index: 10;
  padding-bottom: 50px;
}
.popup-content{
  background: #f4f0ea;
  padding: 50px;
  margin: 0 auto;
  max-width: 980px;
  border-bottom: 2px solid #9e9999;
  margin: 0 10px;
  position: relative;
}
.close-popup {
  position: absolute;
  display: block;
  right: 20px;
  top: 17px;
  z-index: 1;
  font-size: 26px;
  color: #999494;
}
.popup h1 {
  font-size: 36px; 
  font-weight: 300;
  color: #100f0f;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
  margin-bottom: 20px;
}
.popup .male, .popup .female{
  float: left;
  text-align: left;
  background-color: #FCFCFC;
  padding:20px 30px;
  margin-top: 30px;
}
.popup .male i, .popup .female i{
  font-size: 60px;
   display: block;
}
.popup .male i{
    color: #8fb0c4;
}
.popup .female i{
  color: #c492b4;
}
.popup h2{
  color: #999494;
  font-size: 56px; 
  font-family: 'Open Sans',sans-serif; font-weight: 600;
}
.popup p {
  font-size: 22px;
  line-height: 30px;
  color:#100f0f;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
  margin-top: 15px;
}
.popup .source{
  font-size: 14px;
  color: #666363;
  margin-top: 15px;
  font-family: 'Open Sans', sans-serif;font-weight: 600;
}
/*Input Monthly Retirement Income*/
.noUi-stacking .noUi-handle {
	z-index:9 !important;
}
.montlyretincome h1{
  font-size: 36px;
  font-size: 300;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
  margin-bottom: 15px;
}
.montlyretincome h2{
  font-size: 36px;
  font-size: 300;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  margin-bottom: 15px;
}
.expressed{
    font-size: 20px;    
    color: #999494;
    font-family: 'Open Sans',sans-serif; font-weight: 600;
    margin-top: 50px;
    margin-bottom: -20px;
}
.slider {
  background: #f5f0ec;
  padding: 50px 15px;
  margin: 0 0;
}
.income-mapping {
  background: #fff;
  border-bottom: 3px solid #ccc6c6;
  padding: 25px;
  margin-bottom: 20px;
  color: #666363;
}
.income-mapping h2{
    margin-top: 0;
    font-size: 20px;
    font-family: 'Open Sans',sans-serif; font-weight: 600;
    margin-bottom: 15px;
    color:#100f0f;
}
.separator{
  border-right: 1px dotted #ccc6c6;
}
.income-mapping p{
  margin-bottom: 15px;
}
.income-mapping h3{
  font-size: 36px;
  word-break: break-word;  
  font-family: 'Open Sans',sans-serif; font-weight: 300;
}
.income-mapping h3 span{
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  margin-left: 5px;
}
.circle{
    background-color: #f2bc26;
    border-radius: 50%;
    color:#fff;
    text-align: center;
    vertical-align: middle;
    font-size: 64px;
    height: 180px;
    line-height: 180px;
    width: 180px;
    margin-top: 20px;
    float: left;
}
.circle-info{
  padding-left: 230px;
  margin-top: 35px;
  line-height: 26px;
}
#HowWeCalculate p {
  font-size: 20px;
  color: #999494;
}
/*Fund Source*/
.fund-source-page-title{
    font-size: 36px;
    font-family: 'Open Sans',sans-serif; font-weight: 300;
    margin-bottom: 47px;
    margin-top: 140px;
    color: #100f0f;
}
.no-margintop{
  margin-top: 0 !important
}

.red-text{
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 24px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
}
.source-title {
  margin-top: 40px;
  padding-right: 0;
  line-height: 65px;
}
.summary-edit-section label a,
.summary-edit-section label a i{
  margin-left: 0
}
.source-title.two-liner{
  line-height: normal;
}
.source-title a{
  font-size: 24px;
  margin-left: 10px;
}
.source-data-row {
  margin-bottom: 20px;
  border-bottom: 1px solid #cccccc;
  margin-top: 30px;
}
.source-data-row .col-sm-7.col-xs-8 {
  padding-right: 0;
}
.source-data-row .col-sm-5.col-xs-4 {
  padding-right: 0;
}
.source-title i{
  font-size: 64px;
  margin-right: 20px;
  float: left;  
}
.source-title i.rp-info{
  font-size: 24px;
  float: none;
}
.source-title span {
  font-size: 2em;
  line-height: 65px;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
}
.source-data-row .two-liner span {
  line-height: normal;
  float: left;
  margin-top: 0;
  width: 66%;
}
.source-title span.icon {
  color: #999494;
  font-size: 24px;
  margin-left: 10px;
}
.source-data-row.last {
  border-bottom: none;
  margin-bottom: 0px;
}
.source-data-row.last .form-row{
  margin-bottom: 0
}

#infoCPF .desc, #infoCPF p{
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 25px;
  color: #999494;
   font-family: 'Open Sans',sans-serif; font-weight: 300;
   margin-top: 0;
}
#infoCPF h3{
    font-size: 18px;
  font-weight: bold;
  padding-bottom: 12px;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
}
#infoCPF li{
  list-style-type: disc;
  margin-left: 15px;
  color:#8db0c4;
}
#infoCPF li  span{
  color: #999494;
}
/*Graph Page*/
.graphholder {  
  padding: 20px;
  margin-top: 40px;
}
.fund-report {
  margin-bottom: 10px;
  font-family: Open Sans,sans-serif; font-weight: 300;
}
.bullet{
  width: 8px;
  height: 8px;
  margin-right: 10px;
  float: left;
  margin-top: 5px
}

.bullet-yellow{
    background: #ffe082;
}
.bullet-pink{
    background: #F9BDBB;
}
.light-red{
    background: #f36f53;
}
.light-red-text{
  color: #f36f53;
}
.text-red{
  color: #f36f53;
}
.text-green, .green-tag, .light-green-text{
  color:#6BCB78
}
.light-green{
   background: #6BCB78;
}
.bullet-blue{
    background: #8fb0c4;
}
.bullet-blue.circle{
  width: 8px;
  height: 8px;
  margin-right: 10px;
  float: left;
  margin-top: 5px
}
/*Act Now*/
.delay h1 {
  font-size: 36px;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
  margin: 50px 0 20px 0;
}
.delay h2{
  font-size: 28px;
  color:#100f0f;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
}
.slider {
  background: #f5f0ec;
  padding: 50px 15px;
  margin: 0;
}
.slider-box{
  margin-top: 30px;
}
.delay-cost {
  background: #fff;
  border-bottom: 3px solid #ccc6c6;
  padding: 25px;
  margin-bottom: 20px;
}
.delay-cost h2 {
  color: #100f0f;
  font-size: 20px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
}
.delay-figure {
  font-size: 36px;
  color: #666363;
  margin-top: 15px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;  
}
.delay-figure em{
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  font-style: normal;
}
.delay-figure span {
  color: #cc0000;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
}
.note{
  font-size: 20px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  margin-top: 50px;
  margin-bottom: -25px;
  color: #999494;
}
/*Slider Pips*/
.pips{
  font-size: 16px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  color:#100f0f; 
  margin: 10px 0 0px -20px;
  width: 40px;
  position: absolute;
  text-align: center;
}
.pip1{
  left: 0%
}
.pip2{
  left: 50%
}
.act_now .pip2{
	margin-left: -25px;
}
.pip3{
  left: 100%
}
/**Thankyou*/
.thankyou.landing-page figure{
  bottom:0;
}
.thankyou.landing-page figure img{
  width: 30%;
}
/*Edit Summary*/
.summary input[type="number"],
.summary input[type="text"], .summary input[type="tel"]{
  border:none !important;
  padding: 0; padding-top:3px\9;
}
.summary-bg {background: rgba(0, 0, 0, .7); background-image:url(../images/transparentPixel.png)\9;}
.padding-top-80 {
  padding-top:80px;         
  padding-top: 80px\9;
  padding-bottom: 20px\9;
}
.summary .section-title{
    font-size: 16px;
    color: #666363;
    text-transform: uppercase;
    font-family: 'Open Sans',sans-serif; font-weight: 600;
    margin: 30px -15px 15px -15px;
}
.summary .section-title i{
  margin-right: 10px;
}
.summary .col-sm-6.col-xs-12{
  padding: 0;  
}
.summary .col-left{
  border-right:2px solid #f9f7f4;
}
.summary .col-right{
  border-left:2px solid #f9f7f4;
}
.summary .input-holder {
  background: #fff; 
  padding: 10px;
  border:1px solid #f9f7f4;
}
.summary .input-holder h3 {
  color: rgba(102, 99, 99, .5);
  font-size: 16px;
  font-family: Open Sans,sans-serif; font-weight: 300;  
}
.summary .input-section{
  position: relative;
}
.summary .add-on-right{
  position: absolute;
    color: #999494;
    font-size: 24px;
    line-height: 43px;
    left: 65px;
    top: 10px;
}
.summary .add-on-left{
  position: absolute;
    color: #999494;
    font-size: 24px;
    line-height: 43px;
    left: 0;
    top: 10px;
}
.summary .addon-left{
  padding-left: 60px !important;
}
.summary .alert-text{
    position: absolute;
    bottom: 2px;
    right: 20px;
}
.block-title{
  text-transform: uppercase;
  color:#100f0f;
  margin-bottom: 00px;
  margin-top: 40px;
  font-size: 28px;
}

/*View Report*/
.report-head{
  margin-bottom: 20px;
}
.graph-container{
  position: relative;
  margin: 35px 0;
  display: block;
  background: none;
  box-sizing: border-box;
  padding: 20px;
  background: #F1EEE4;
}
.red-tag{
  color:#cc0000;
}
ul.list li span{
    color: #666363;
    font-size: 16px;
}
.gray-shade{
    color: #656462;
    font-size: 30px;
    font-family: 'Open Sans',sans-serif; font-weight: 600;
    margin-bottom: 25px;
}
.details{
  margin-bottom: 30px;
}
.details p{
  font-size: 14px;
  color: #666363;
  line-height: 20px;
}

hr{margin:0; border:0; border-top: 1px dotted black;}

.report footer{
  
    padding: 20px 0 0;
    color: #656462
}
.report .goals{
  color: #656462;
  font-size: 24px;
  margin-bottom: 15px;
}
.report li{
  list-style-type: none;
}
.more-detail{
    background: #F1EEE4 !important;
    padding: 15px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.more-detail h1{
    font-size: 32px;
    font-family: 'Open Sans',sans-serif; font-weight: 300;
    margin-bottom: 15px;
}
.more-detail h4{
  margin-bottom: 15px;
  font-size: 14px;
  color:#999494;
  margin-top: 10px;
  line-height: 20px;
}
.more-detail ul{
  margin-top: 20px;
  margin-left: 0;
}
.notice{
  margin-bottom: 30px;
  margin-top: 30px;
}
.notice h5{
  font-size: 14px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  margin-bottom: 10px;
}
.notice li{
  list-style-type: decimal;
  font-size: 12px;
  margin-left: 20px;
}
.position-left h5{
  margin-top: 16px;
  color: #656462;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;

}
.position-left h5 i{
  margin-right: 5px;
  float:left;
}

.position-left h5 span{
  display:block;
  padding-left:20px;
}

.position-left p{
    line-height: 14px;
    margin-top: 10px;
    font-size: 13px;
    font-family: 'Open Sans',sans-serif; font-weight: 300;
    margin-bottom:5px;
    margin-left: 20px;
}
.position-left p strong{
  display: block;
  font-family: Open Sans,sans-serif; font-weight: 600;
}
.report .highcharts-container, .highcharts-container svg{
  width: 100% !important;
}

/******************************Medium Desktop Screens**********************/
@media screen and (min-width: 768px) and (max-width: 990px) {
  .extrapadding-right{
    padding-right: 20px;
  }
  .extrapadding-left{
    padding-left: 20px;
  }
  .form-row label{
    font-size: 18px;
  }
  /***********************************Personal Details***********************/
  .genContainer{
    width: 140px;
    height: 140px;
    padding: 20px;
  }
  .genContainer i{
    font-size: 50px;
  }
  .source-data-row .two-liner span{
    width: 68%;
  }
  .source-title span {
    font-size: 24px;
  }
}
/****************************Tab/iPad Portraid Mode************************/
@media screen and (min-width: 0) and (max-width: 767px) {
  
  .content {
    padding: 25px 15px;
    margin-bottom: 50px
  }
  .extrapadding-left {
    padding-left: 15px;
  }
  .extrapadding-right {
    padding-right: 15px;
  }
  header .row {
    margin: 0 -20px;
  }
  .breadcrumb li i{
    margin:0 20px;
  }
  input[type="text"], input[type="number"], input[type="tel"], .summary .form-row input.small {
    height: 40px;
    font-size: 20px;
  }
  select{
    font-size: 20px;
  }
  .form-row label {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .landing-page figure {
    bottom: 90px;
  }
  .landing-page figure{
    bottom: 45px;
  }
  .landing-page figure img{
    width: 30%;
  }
  footer.landing-footer{
    height: 55px;  
  }
  footer h2.startnow{
    font-size: 20px;
    line-height: 55px;
    padding: 0;
  }
  footer.col-sm-6{
	text-align: left
  }
  .genContainer p{
  	margin-top: 0
  }
  .form-row, .gender-options .form-row{
    margin-bottom: 30px;
  }
  .change-to-input .add-on-left{
    line-height: 45px;
    font-size: 28px;
  }
  /*Retirement Goals*/
  .popup .male, .popup .female{
    float: none;
  }
  
  .circle{
    font-size: 40px;
    height: 140px;
    line-height: 140px;
    width: 140px;
  }
  .circle-info{
    padding-left: 180px;
    margin-top: 45px;
  }
  #HowWeCalculate p{
    font-size: 18px;
    line-height: 24px;
  }

  /*Edit Summary*/
   
  .summary .add-on-right{
    top: -2px;
    font-size: 20px;
    left: 35px;
  }
  .summary .add-on-left{
    top: -2px;
    font-size: 20px;
  }
  .summary .col-left, .summary .col-right{
    border:none;
  }
  .summary .section-title{
    margin: 30px 15px 0 15px;
  }
  .popup p{
    font-size:16px;
    line-height: 20px;
  }
  .circle{
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .col-clear{
    clear: both;
  }
  /*Edit Summary*/
    .summary .col-sm-6.col-xs-12{
    padding: 0 15px 0 15px;  
  }
  .summary .section-title {
	margin: 30px 0px 5px 0px;
	}
  /*Income source*/
  .source-data-row .col-sm-5.col-xs-4{
    padding-right: 15px;
  }
  .col-clear{
    clear: both;
  }

}
@media screen and (min-width: 568px) and (max-width: 630px) {
  .source-data-row .col-sm-5.col-xs-4{
    padding-right: 15px;    
  }
  .form-row label{
    font-size: 18px;
  }
  

}
@media screen and (min-width: 0) and (max-width: 600px) {
  .landing-page h1{
    font-size: 24px;
    width: 100%;
    line-height: 30px;
  }
  .landing-page figure img{
    width: 85%
  }
  /*Personal Details*/
  .genContainer{
    width: 120px;
    height: 120px;
    padding: 20px;
  }
  .genContainer i{
    font-size: 50px;
  }
  /*Popup*/
  .popup-content{
    padding: 30px 15px;
    margin: 0 10px;
  }
  .popup h1{
      font-size: 24px;
      margin: 0 30px 20px 30px;
  }
  .popup h2{
    font-size: 40px;
  }
  .popup p{
    font-size: 14px;
    line-height: 18px;
  }
  /**Income Retirement*/
  .montlyretincome h1{
    font-size: 17px;
  }
  .montlyretincome h2{
    font-size: 20px;
  }
  .expressed{
    font-size: 16px;
    position: relative;
  }
  .expressed i{
    position: relative;
    top: 3px
  }
  .sepraterBlock h1{
    font-size: 16px;
  }
  .income-mapping p{
    font-size: 12px;
    margin-bottom: 10px;
  }
  .income-mapping h3{
      font-size: 24px;
  }
  /*Income Sources*/
  .fund-source-page-title{
    font-size: 20px;
    margin: 140px 10px 25px 10px;
  }
  .red-text{
    font-size: 20px;
    margin-bottom: 0;
  }
  .source-data-row{
    margin-top: 0
  }
  .source-title i{
    font-size: 50px;
  }
  .source-title span{
    font-size: 24px;
    float: left;
    
  }
  .circle{
      font-size: 40px;
    height: 140px;
    line-height: 140px;
    width: 140px;
    float: none;
    margin-bottom: 0;
  }
  .circle-info{
    padding-left: 0;
    margin-top: 45px;
    margin: 0 15px;

  }
  #HowWeCalculate p{
    font-size: 14px;
    line-height: 20px;
  }

  /*Income source*/
  .form-row label{
    font-size: 18px;
  }
  #infoCPF .desc{
    display: none;
  }
  #infoCPF .desc, #infoCPF p{
    font-size: 14px;
    padding-bottom: 0;
    margin-top: 10px;
  }
  #infoCPF h3{
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-size: 14px;
  }
  /*Grpah Page*/
  .graph-hld {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  /*Act Now*/
  .delay-figure{
    font-size: 24px;
  }
  .note {
  font-size: 14px;
  }
  .delay-cost h2 {
    font-size: 16px;
  }
  .delay h1 {
    font-size: 22px;
  }
  .delay h2 {
    font-size: 20px;
    font-family: Open Sans,sans-serif; font-weight: 600;
  }
  .print{
    display: none;
  }
  .noUi-handle{
  	background:url('../images/controlcircle_knobm.png') no-repeat;
  }
  .noUi-horizontal .noUi-handle{
  	width: 24px;
	height: 24px;
	top: -8px;
  }
  .ui-tooltipinner{
  	font-size: 16px;
  	top:-55px;
  	left:-17px;	
  }

  .ui-tooltip, .ui-tooltip.actnow .ui-tooltipinner{
  	width: 60px;  	
  }
  .ui-tooltip{
  	top: -55px;
  }
  .ui-tooltip.actnow{
  	left: -18px;
  }
  .ui-tooltip-arrow{
  	margin-left: -10px;
	border-width: 10px 10px 0;
	bottom: -7px;
  }
  .source-title i.rp-info{
  	font-size: 18px;
  }

  
}
@media screen and (min-width: 0) and (max-width: 568px) {
	.source-title span{
		font-size: 20px;
	}
	header a, header button{
		font-size: 20px;
	}

}
@media screen and (min-width: 480px) and (max-width: 568px) {
  /*.source-data-row .col-sm-7.col-xs-8{
    width: 54.666667%;
  }
  .source-data-row .col-sm-5.col-xs-4{
    margin-left: -10px;
      width: 41.333333%;
  }*/
  .income-mapping h3 span{
    display: block;
    margin-left: 0
  }
   .expressed{
    font-size: 13px;    
  }
}
@media screen and (min-width: 400px) and (max-width: 465px) {
.form-row label {
	font-size: 18px;
}
}
@media screen and (min-width: 0) and (max-width: 480px) {
  .btn-red{
    min-width: 280px;
      padding: 20px 20px;
      font-size: 18px;
  }
  .expressed{
    font-size: 12px;    
    font-weight: 300;
  }
  /**/
}

@media screen and (min-width: 0) and (max-width: 770px) {
	.mobileVisible {
		display: block !important;
	}
	.desktopVisible {
		display: none !important;
	}
	.section .icon {
	    padding-top: 13px;
	}
	.section .icon {
	    font-size: 4em;
	}
	.carousel-inner .icon {
	    color: #8fb0c4;
	}
	.men-section .icon, .women-section .icon {
	    margin-left: -10px;
	}
	#LifeExpectancy .section h2 {
	    font-size: 45px;    
	}
	
	.popup h1 {
	    font-size: 24px;
	    padding: 10px 30px 20px !important;
		margin:0px !important;
	}
	#LifeExpectancy .ageLeft {
	    float: left;
	    margin-right: 10px;
	    text-align: left;
	    width: calc(50% - 10px);
	}
	#LifeExpectancy .ageLeft {
	    margin-right: 0;
	    width: 100%;
	}
	.section {
	    padding: 0 30px;
	}
	.section {
	    background-color: #fcfcfc;
	    padding: 0 25px;
	}
	.carousel-indicators{		
		z-index: 15;
		left: 0;
		display: block;			
		list-style: none;
		text-align: center;
		margin-top: 40px;
		position: relative;
		width: 100%;
		margin-left: 0;
	}
	.carousel-indicators .active {
		background-color: #999;
		border-color: #999;
	}
		.carousel-indicators li {
		background: #CCC;
		border-color: #CCC;
		}   
	.popup .source {
		font-size: 12px;
		margin-top: -50px;
		}           
	#LifeExpectancy .section p {
	    padding-bottom: 16px;
	}
	#LifeExpectancy .section p {
	    padding-left: 0;
	}
	#LifeExpectancy .section p {
	    font-size: 14px;
	}
	#LifeExpectancy .section p {
	    padding: 7px 10px 27px 0;
	}
	.section p {
	    line-height: inherit;
	}
	.section p {
	    font-size: 21.48px;
	    line-height: 22px;
	}
	.section p {
	    color: #100f0f;
	    font-size: 2em;
	    padding: 20px 0 50px;
	}
}

@media screen and (min-width: 0) and (max-width: 465px) {
  .source-data-row .form-row label{
    font-size: 15px;
  }
  .source-data-row .col-sm-7.col-xs-8{
    width: 60%
  }
  .source-data-row .col-sm-5.col-xs-4{
    width: 40%;
    padding-left: 5px;
  }
  .breadcrumb li i{
    margin: 0 10px;
  }
}
@media screen and (min-width: 300px) and (max-width: 400px) {
  .source-data-row .form-row label{
    font-size: 15px;
  }

}
@media screen and (min-width: 320px) and (max-width: 370px) {
  .source-data-row .col-sm-7.col-xs-8{
    width: 55%
  }
  .source-data-row .col-sm-5.col-xs-4{
    width: 45%;
    padding-left: 5px;
  }
}
@media screen and (min-width: 320px) and (max-width: 360px) {
  .btn-red{
      padding: 20px 30px;
      font-size: 18px;
  }
  header .page-title{
    font-size: 16px;
  }
  .source-data-row .form-row label{
    font-size: 15px;
  }
}

@media (max-device-width: 600px) and (orientation: portrait){
.breadcrumb li i {
  margin: 0 10px;
}
}

@media (max-device-width: 740px) and (orientation: landscape){
.landing-page figure img{
	width: 20%																
}

.landing-page h1 {
	font-size: 24px;
	width: 100%;
	line-height: 30px;
	margin-top: 70px;
}

.thankyou.landing-page figure img {
	width: 25%;
}

.breadcrumb li i {
	margin: 0 20px;
}
}
/** Samsung S5 graph image media query -->*/
@media (min-device-width:360px) and (max-device-width: 640px) and (orientation: portrait){
.report .highcharts-container, .highcharts-container svg
{zoom:80% !important;}
}
@media (min-device-width:360px) and (max-device-width: 640px) and (orientation: landscape){
.report .highcharts-container, .highcharts-container svg
{zoom:100% !important;}
}
@media screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2){
.report .highcharts-container, .highcharts-container svg
{zoom:80% !important;}
}
/** Samsung S5 graph image media query -->*/

@media only screen and (min-device-width:320px) and (max-device-width:568px) and (orientation:landscape) and (-webkit-min-device-pixel-ratio:2) {
.form-row label{ font-size:13px;}
.genContainer p{ font-size:13px;}
input[type="text"], input[type="number"], input[type="tel"] {
	border-top: 2px solid #ccc6c6 !important;
   -webkit-appearance: none;
}
.landing-page figure {
  bottom: 30px;
}
.landing-page figure img {
  width: 15%;
}
.content{
  margin-top: 60px;
}
header {
  height: 30px;
  border-bottom: 1px solid #ccc6c6;
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
  color: #666363;
  left: 0;
  line-height: 40px;
}
header .logo img{
  width: 50%;
}

header a.next, header button {
  line-height: 0px;
  position: absolute;
  top: 11px;
  right: 20px;
  font-size: 13px;
  padding: 0px !important;
  margin: 0px !important;
}
header a.back, header button {
  line-height: 0px;
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 13px;
  padding: 0px !important;
  margin: 0px !important;
}
header .page-title {
  display: inline;
  line-height: 30px;
  font-family: 'Open Sans',sans-serif; font-weight: 600;
  color: #666363;
  font-size: 12px;
}
.landing-page h1 {
  font-size: 10px;
  line-height: 10px;
  font-family: 'Open Sans',sans-serif; font-weight: 300;
  margin: 0 auto;
  width: 65%;
  margin-top: 40px;
  margin-bottom: 20px;
}
header .logo{
  margin-top: 0;
  line-height: 30px;
}
.breadcrumb{
  height: 23px !important;
  padding: 0px 15px;
}
.breadcrumb-wrapper{
  top:30px;
  
}
.breadcrumb li a{
  font-size: 10px;
}
.breadcrumb li i{
  font-size: 6px;
}
.alert-refresh{
  margin: 50px 0 -30px 0;
}
footer.landing-footer {
  height: 30px;
}
footer h2.startnow {
  font-size: 14px;
  line-height: 30px;
  padding: 0;
}
}
/******************************ipad portrait Screens**********************/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) { 
input[type="text"], input[type="number"], input[type="tel"] {
	border-top: 3px solid #ccc6c6 !important;
   -webkit-appearance: none;
}
.landing-page figure img {
  margin: 0 auto;
  width: 50% !important;
}
.thankyou.landing-page figure img{
  width: 45%;
}
}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) { 
input[type="text"], input[type="number"], input[type="tel"] {
	border-top: 3px solid #ccc6c6 !important;
   -webkit-appearance: none;
}
}


/**** New CSS for IPAD ****/

.rp-infoo:before {
  content: "i";
}

.source-title i.rp-infoo{
  font-size: 24px;
  float: none;
}

.source-title i.rp-infoo{
  font-size: 24px;
  float: none;
}

.greyBackground {
   color: #ccc6c6 !important;
    }




/**** New CSS for IPAD ****/
