/* 
 * Main styles, written in SCSS.
 * Examples taken from http://sass-lang.com/guide
 *
 */
/* 
 * Variables and optional mixins, written in SCSS.
 * Examples taken from http://sass-lang.com/guide
 *
 */
/*
@mixin border-radius($radius...)
{
  @if lenght($radius) == 1
  {
    border-radius: nth($radius, 1);   
  }
  @else
  {
    border-radius: nth($radius, 1), nth($radius, 2), nth($radius, 3), nth($radius, 4);   
  }
}
*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* 	Base Classied Didn't Need to Modify */
body {
  font-family: "poppins", sans-serif;
  font-size: 15px;
  /*background:url('/images/bg.jpg') repeat;*/
  color: #000000;
  line-height: 22px;
}

* {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none !important;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: #000000;
}

.black {
  color: #000000 !important;
}

.blue {
  color: #8dc8ff !important;
}

.dark-grey {
  color: #373839 !important;
}

.orange {
  color: #f66805 !important;
}

.white {
  color: #ffffff !important;
}

.green {
  color: #46902b !important;
}

.yellow {
  color: #f39c12 !important;
}

.grey {
  color: #999999 !important;
}

.terquais {
  color: #54c5d3 !important;
}

.brown {
  color: #675140;
}

.purple {
  color: #f1612e;
}

.color-prime {
  color: #a60000;
}

.color-secondry {
  color: #337ab7;
}

.dark-blue {
  color: #1f51b0;
}

.brown {
  color: #675140 !important;
}

.red {
  color: #cb0b0b !important;
}

.dark-green {
  color: #06662c;
}

.bg-grey-dim {
  background: #67686c;
}

.bg-black {
  background: #000000;
}

.bg-blue {
  background: #1f51b0;
}

.bg-yellow {
  background: #f39c12;
}

.bg-green {
  background: #46902b;
}

.bg-orange {
  background: #f66805;
}

.bg-white {
  background: #ffffff;
}

.bg-grey {
  background: #56595c;
}

.bg-purple {
  background: #f1612e;
}

.bg-color-prime {
  background: #a60000;
}

.bg-color-secondry {
  background: #a60000;
}

.bg-color-prime-border {
  border-color: #810000;
}

.bg-color-secondry {
  border-color: #c45304;
}

.rupee {
  font-family: "rupee_foradianregular";
}

.no-border {
  border: none !important;
}

.no-border-top {
  border-top: none !important;
}

.no-border-right {
  border-right: none !important;
}

.no-border-bottom {
  border-bottom: none !important;
}

.no-border-left {
  border-left: none !important;
}

.no-radius {
  border-radius: 0px !important;
}

.no-mar-pad {
  margin: 0 !important;
  padding: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-right {
  padding-right: 0;
}
@media (min-width: 0) and (max-width: 768px) {
  .no-padding-right {
    padding-right: 10px;
  }
}

.no-padding-left, footer #lower ul {
  padding-left: 0 !important;
}

.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.hcentre {
  margin: 0 auto;
}

.no-border {
  border: none !important;
}

.no-border-top {
  border-top: none !important;
}

.no-border-right {
  border-right: none !important;
}

.no-border-bottom {
  border-bottom: none !important;
}

.no-border-left {
  border-left: none !important;
}

.no-radius {
  border-radius: 0px !important;
}

@media (min-width: 771px) {
  .logo {
    min-height: 1px !important;
  }
}
@media (min-width: 1200px) {
  .lg-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .lg-no-padding {
    padding: 0 !important;
  }

  .lg-no-padding-right {
    padding-right: 0;
  }

  .lg-no-padding-left {
    padding-left: 0 !important;
  }

  .lg-no-padding-top {
    padding-top: 0;
  }

  .lg-no-padding-bottom {
    padding-bottom: 0;
  }

  .lg-no-margin {
    margin: 0 !important;
  }

  .lg-no-margin-right {
    margin-right: 0 !important;
  }

  .lg-no-margin-left {
    margin-left: 0 !important;
  }

  .lg-no-margin-top {
    margin-top: 0 !important;
  }

  .lg-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .lg-position-absolute {
    position: absolute;
  }

  .lg-position-relative {
    position: relative;
  }

  .lg-hcentre {
    margin: 0 auto;
  }

  .lg-no-border {
    border: none !important;
  }

  .lg-no-border-top {
    border-top: none !important;
  }

  .lg-no-border-right {
    border-right: none !important;
  }

  .lg-no-border-bottom {
    border-bottom: none !important;
  }

  .lg-no-border-left {
    border-left: none !important;
  }

  .lg-no-radius {
    border-radius: 0px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .md-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .md-no-padding {
    padding: 0 !important;
  }

  .md-no-padding-right {
    padding-right: 0;
  }

  .md-no-padding-left {
    padding-left: 0 !important;
  }

  .md-no-padding-top {
    padding-top: 0;
  }

  .md-no-padding-bottom {
    padding-bottom: 0;
  }

  .md-no-margin {
    margin: 0 !important;
  }

  .md-no-margin-right {
    margin-right: 0 !important;
  }

  .md-no-margin-left {
    margin-left: 0 !important;
  }

  .md-no-margin-top {
    margin-top: 0 !important;
  }

  .md-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .md-position-absolute {
    position: absolute;
  }

  .md-position-relative {
    position: relative;
  }

  .md-hcentre {
    margin: 0 auto;
  }

  .md-no-border {
    border: none !important;
  }

  .md-no-border-top {
    border-top: none !important;
  }

  .md-no-border-right {
    border-right: none !important;
  }

  .md-no-border-bottom {
    border-bottom: none !important;
  }

  .md-no-border-left {
    border-left: none !important;
  }

  .md-no-radius {
    border-radius: 0px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .sm-no-padding {
    padding: 0 !important;
  }

  .sm-no-padding-right {
    padding-right: 0;
  }

  .sm-no-padding-left {
    padding-left: 0 !important;
  }

  .sm-no-padding-top {
    padding-top: 0;
  }

  .sm-no-padding-bottom {
    padding-bottom: 0;
  }

  .sm-no-margin {
    margin: 0 !important;
  }

  .sm-no-margin-right {
    margin-right: 0 !important;
  }

  .sm-no-margin-left {
    margin-left: 0 !important;
  }

  .sm-no-margin-top {
    margin-top: 0 !important;
  }

  .sm-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .sm-position-absolute {
    position: absolute;
  }

  .sm-position-relative {
    position: relative;
  }

  .sm-no-border {
    border: none !important;
  }

  .sm-no-border-top {
    border-top: none !important;
  }

  .sm-no-border-right {
    border-right: none !important;
  }

  .sm-no-border-bottom {
    border-bottom: none !important;
  }

  .sm-no-border-left {
    border-left: none !important;
  }

  .sm-no-radius {
    border-radius: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .xs-no-mar-pad {
    margin: 0 !important;
    padding: 0 !important;
  }

  .xs-no-padding {
    padding: 0 !important;
  }

  .xs-no-padding-right {
    padding-right: 0;
  }

  .xs-no-padding-left {
    padding-left: 0 !important;
  }

  .xs-no-padding-top {
    padding-top: 0;
  }

  .xs-no-padding-bottom {
    padding-bottom: 0;
  }

  .xs-no-margin {
    margin: 0 !important;
  }

  .xs-no-margin-right {
    margin-right: 0 !important;
  }

  .xs-no-margin-left {
    margin-left: 0 !important;
  }

  .xs-no-margin-top {
    margin-top: 0 !important;
  }

  .xs-no-margin-bottom {
    margin-bottom: 0 !important;
  }

  .xs-position-absolute {
    position: absolute;
  }

  .xs-position-relative {
    position: relative;
  }

  .xs-no-border {
    border: none !important;
  }

  .xs-no-border-top {
    border-top: none !important;
  }

  .xs-no-border-right {
    border-right: none !important;
  }

  .xs-no-border-bottom {
    border-bottom: none !important;
  }

  .xs-no-border-left {
    border-left: none !important;
  }

  .xs-no-radius {
    border-radius: 0px !important;
  }
}
/*  Heading Font-Size */
h1 {
  font-size: 26px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: #a60000;
  font-weight: 700;
}

.va-table {
  display: table;
  width: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.btn-custom {
  padding: 15px 15px;
  border-radius: 100vw;
}
.btn-custom:hover {
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
}
.btn-custom:focus {
  box-shadow: inset 0px 0px 10px black;
  -moz-box-shadow: inset 0px 0px 10px black;
  -webkit-box-shadow: inset 0px 0px 10px black;
}

.font-300 {
  font-weight: 300;
}

.font-400, body {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-700 {
  font-weight: 700;
}

.font-size-40 {
  font-size: 40px;
}

.font-size-38 {
  font-size: 38px;
}

.font-size-36 {
  font-size: 36px;
}

.font-size-34 {
  font-size: 34px;
}

.font-size-32 {
  font-size: 32px;
  line-height: 35px;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-26 {
  font-size: 26px;
}

.font-size-25 {
  font-size: 25px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-22 {
  font-size: 22px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-13 {
  font-size: 13px;
}

.font-size-12 {
  font-size: 12px;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-25 {
  margin-top: 25px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-15 {
  padding-top: 15px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #f66805;
  border-color: #f66805;
  outline: none;
}

/* Home Page Starts*/
section {
  position: relative;
}

.calc-head {
  font-family: "poppinsbold";
  font-size: 25px;
  line-height: 26px;
  color: #034f9b;
  margin-bottom: 20px;
}
.calc-head p {
  font-family: 'poppinsregular';
  color: #6d6d6d;
  font-size: 14px;
  line-height: 18px;
}

.calc-body {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 10px;
  min-height: 463px;
  border-radius: 6px;
}
.calc-body:after {
  content: '';
  position: absolute;
  background: #737477;
  min-height: 465px;
  width: 98%;
  left: 0;
  top: 0px;
  z-index: -1;
  -ms-transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  transform: rotate(3deg);
  border-radius: 7px;
}
.calc-body .lastpara {
  font-family: 'poppinsregular';
  font-size: 13px;
  color: #383838;
  line-height: 20px;
  border-top: 1px solid #c4c4c4;
  padding-top: 20px;
  margin-top: 10px;
}

#inflation_value {
  display: none;
}

.start-sip {
  background: #0a54a0;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 6px;
  font-family: 'poppinsregular';
  font-size: 14px;
  border: 0;
  cursor: pointer;
}
.start-sip:hover {
  background: #000000;
  color: #ffffff;
  outline: none;
}

#sip-calc {
  /*background:#ffffff;
  border:1px solid #eeeeee;
  min-height:263px;
  font-size:15px;
  font-family: $robotoreg;
  color:#353535;
  padding-top:10px;*/
}
#sip-calc input[type=number] {
  width: 105px;
  background: none;
  border: none;
  outline: none;
  padding-left: 0px;
  text-align: right;
}
#sip-calc label {
  position: absolute;
  top: 7px;
  left: 80px;
  font-weight: normal;
}
#sip-calc rzslider {
  margin: 0 auto;
  height: 20px;
  padding-top: 3px;
  border-radius: 20px;
}
#sip-calc rzslider .rz-bar {
  height: 10px;
}
#sip-calc rzslider .rz-bubble {
  display: none;
}
#sip-calc rzslider .rz-pointer {
     width: 15px;
    height: 15px;
    top: 0px;
  border-radius: 50px;
}
#sip-calc rzslider .rz-pointer:before {
  background: #ffffff;
  width: 7px;
  height: 7px;
  position: absolute;
  content: '';
  top: 4px;
  left: 4px;
  border-radius: 25px;
}
#sip-calc rzslider .rz-pointer:after {
  display: none;
}
#sip-calc rzslider.blue-bar .rz-bar {
  background-color: #f1f1f1;
}
#sip-calc rzslider.blue-bar .rz-selection, #sip-calc rzslider.blue-bar .rz-pointer {
  background-color: #a60000;
}
#sip-calc rzslider.green-bar .rz-bar {
  background-color: #dddddd;
  border-radius: 25px;
}
#sip-calc rzslider.green-bar .rz-selection {
  background-color: #278727;
}
#sip-calc rzslider.green-bar .rz-pointer {
  background-color: #0665a8;
  border: 2px solid #ffffff;
}
#sip-calc rzslider.red-bar .rz-bar {
  background-color: #f1f1f1;
}
#sip-calc rzslider.red-bar .rz-selection, #sip-calc rzslider.red-bar .rz-pointer {
  background-color: #df6c4f;
}
#sip-calc rzslider.yellow-bar .rz-bar {
  background-color: #f1f1f1;
}
#sip-calc rzslider.yellow-bar .rz-selection, #sip-calc rzslider.yellow-bar .rz-pointer {
  background-color: #e9c858;
}
#sip-calc input[type=number]::-webkit-inner-spin-button,
#sip-calc input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
#sip-calc .switch {
  display: inline-block;
  vertical-align: top;
  width: 55px;
  height: 17px;
  padding: 3px;
  top: -1px;
  left: auto;
  background-color: white;
  border-radius: 25px;
  cursor: pointer;
}
#sip-calc .switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#sip-calc .switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 11px;
  background: #0b3d7b;
  border-radius: inherit;
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
#sip-calc .switch-label:before, #sip-calc .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
#sip-calc .switch-input:checked ~ .switch-label {
  background: #47a8d8;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
#sip-calc .switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
#sip-calc .switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
#sip-calc .switch-handle {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 13px;
  background: white;
  border-radius: 25px;
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}
#sip-calc .switch-input:checked ~ .switch-handle {
  left: 20px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
#sip-calc .switch-green > .switch-input:checked ~ .switch-label {
  background: #0b3d7b;
}
#sip-calc .shadow-bg {
  background: url(/images/shadow-bg.png) top no-repeat;
  min-width: 213px;
  min-height: 226px;
  text-align: center;
  padding-top: 40px;
}
#sip-calc .shadow-bg .head {
  font-family: 'Poppins-Medium';
  font-size: 16px;
  color: #3e3e3e;
  line-height: 22px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  #sip-calc .shadow-bg .head {
    padding: 20px 50px;
  }
}
#sip-calc .input-bg {
  background: #5269b0;
  padding: 5px 15px;
  border-top: 3px solid #3d5087;
  border-left: 3px solid #3d5087;
  border-right: 1px solid #3d5087;
  border-bottom: none;
  border-radius: 5px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
}
#sip-calc .amount {
  color: #0665a8;
  font-family: 'poppinsbold';
  font-size: 16px;
  text-align: right;
  	 /*background: #fab612;
  	  padding: 10px;
      line-height: 22px;*/
}
#sip-calc .resultamount {
  color: #0665a8;
  font-family: 'poppinsbold';
  font-size: 23px;
}
#sip-calc #inflationRate {
  color: #000;
  display: none;
  /*width: 50px;
  padding-left: 10px;*/
}
#sip-calc #inflationRate + label {
  margin-left: 30px;
  display: none;
}
@media (min-width: 321px) and (max-width: 425px) {
  #sip-calc #inflationRate + label {
    margin-left: 40px;
  }
}
@media (min-width: 0) and (max-width: 320px) {
  #sip-calc #inflationRate + label {
    margin-left: 0px;
    top: initial;
  }
}
#sip-calc select {
  background: none;
  padding: 0px;
  border-radius: 5px;
  font-size: 14px;
  color: #ffffff;
  border: 0px;
  outline: none;
  margin-left: -5px;
}
#sip-calc select:focus {
  outline: none;
}
#sip-calc select option {
  color: #000000;
}

#ekyc_bg {
  background: url(/images/kyc.png) center no-repeat;
  background-size: cover;
  min-height: 600px;
  padding-top: 80px;
  padding-bottom: 30px;
}
@media (min-width: 0) and (max-width: 768px) {
  #ekyc_bg {
    background: url(/images/about-bg.png) right no-repeat;
    background-size: cover;
  }
}
#ekyc_bg .ekyc-heading {
  font-family: 'poppinsregular';
  font-size: 31px;
  color: #050505;
  line-height: 32px;
  margin-bottom: 20px;
}
#ekyc_bg .ekyc-subheading {
  font-family: 'poppinsregular';
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  margin-top: 20px;
}
#ekyc_bg .ekyc-heading-para {
  font-family: 'poppinslight';
  font-size: 14px;
  color: #ffffff;
  line-height: 27px;
  padding: 10px 10px;
}
#ekyc_bg ul {
  margin: 0 auto;
}
#ekyc_bg ul li {
  list-style: url(/images/list-tick.png);
  font-family: 'poppinsregular';
  font-size: 14px;
  color: #000000;
  text-align: left;
  padding: 2px;
  margin-bottom: 15px;
  margin-left: -15px;
}
#ekyc_bg .plan-btn {
  background: #014b8a;
  font-family: 'poppinsregular';
  font-size: 14px;
  color: #ffffff;
  padding: 10px 20px;
  transition: all 0.5s ease;
  text-shadow: none;
  border-radius: 3px;
  border: 0;
}
#ekyc_bg .plan-btn:hover {
  background: #1b1b1b;
  color: #ffffff;
}

#solutions-plan .tile-block {
  height: 187px;
  position: relative;
  background: none;
  overflow: hidden;
  margin-bottom: 5px;
}
#solutions-plan .tile-block .bg-img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#solutions-plan .tile-block .bg-img:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 10px;
  background: none;
}
#solutions-plan .tile-block .va-table {
  min-height: inherit;
}
#solutions-plan .tile-block:hover .bg-img {
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

a .head-text {
  font-family: 'poppinsregular';
  font-size: 16px;
  color: #055576;
  text-decoration: none;
  margin-top: 5px;
  margin-bottom: 10px;
}
a .headtext-para {
  font-family: 'poppinsregular';
  font-size: 14px;
  color: #5d5d5d;
  text-decoration: none;
  line-height: 18px;
  margin-top: 10px;
  margin-bottom: 20px;
}
a:hover .head-text {
  color: #ff6c00;
}

#but-css .baskbgstrip1 {
  background: none;
  color: #606060;
  font-family: "poppinsmedium";
  font-size: 18px;
  border-radius: 8px;
}
#but-css .baskbgstrip1 input {
  background: #a60000;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 15px;
  padding: 5px 0;
  line-height: 20px;
  font-family: "poppinsmedium";
  color: #ffffff;
}
#but-css .baskbgstrip1 input:hover, #but-css .baskbgstrip1 input:focus {
  outline: none;
}
#but-css .baskbgstrip1 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 6px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  margin-left: 10px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  #invest-cal {
    margin-top: 0;
  }
}
#invest-cal rzslider {
  margin: 0 auto;
  height: 18px;
  border: 6px solid transparent;
  cursor: pointer;
}
#invest-cal rzslider .rz-bar {
  height: 3px;
}
#invest-cal rzslider .rz-bubble {
  display: none;
  bottom: 21px;
  z-index: 10;
  padding: 0px 9px;
  color: #ffffff;
  cursor: default;
  font-size: 11px;
  font-family: 'poppinsregular';
  background: #f04846;
  margin-left: 9px;
  border-radius: 2px;
}
#invest-cal rzslider .rz-bubble:after {
  position: absolute;
  content: '';
  bottom: -6px;
  left: 35%;
  border-top: 6px solid #f04846;
  border-right: 6px solid transparent;
}
#invest-cal rzslider .rz-pointer {
  width: 21px;
  height: 21px;
  top: -9px;
  margin-left: 5px;
  border-radius: 50px;
}
#invest-cal rzslider .rz-pointer:after {
  width: 0px;
  height: 0px;
}
#invest-cal rzslider .rz-bubble.rz-limit {
  left: 100% !important;
}
#invest-cal rzslider.blue-bar .rz-bar {
  background-color: #ebebeb;
}
#invest-cal rzslider.blue-bar .rz-selection {
  background-color: #458ff0;
}
#invest-cal rzslider.blue-bar .rz-pointer {
  background-color: #458ff0;
  -webkit-box-shadow: -1px 3px 9px 0px #929292;
  -moz-box-shadow: -1px 3px 9px 0px #929292;
  box-shadow: -1px 3px 9px 0px #929292;
}
#invest-cal .calc-heading {
  font-family: "poppinsregular", poppins;
  font-size: 18px;
  color: #000000;
  line-height: 30px;
  padding-top: 20px;
}
#invest-cal span.calcvalue {
  color: #458ff0;
  font-family: 'poppinsbold';
}
#invest-cal .calcvalue2 {
  padding: 5px 10px;
  color: #458ff0;
  font-family: 'poppinsbold';
  font-size: 18px;
  line-height: 24px;
  text-align: right;
}
#invest-cal select {
  background: #fafafa;
  border-radius: 3px;
  width: 80px;
  font-family: 'poppinsregular';
  font-size: 18px;
}
#invest-cal .lastline-result {
  font-family: "poppinsregular", poppins;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 20px;
}

/* Home Page Ends
#nav_lvl-1 {
  display: block;
}
#nav_lvl-1 li {
  display: block;
}
#nav_lvl-1 li.active > a, #nav_lvl-1 li.active > a:hover, #nav_lvl-1 li.active > a:focus {
  border: none;
  border-radius: 0px;
  border-bottom: solid 2px #a60000;
  color: #a60000;
  background: none;
}
#nav_lvl-1 li > a {
  color: #56595c;
  border: none;
  text-transform: uppercase;
  font-family: 'poppinsbold';
  font-size: 13px;
}
#nav_lvl-1 li > a:hover, #nav_lvl-1 li > a:focus {
  color: #a60000;
  background: none;
}
#nav_lvl-1 li.first {
  padding-left: 8%;
}
@media (min-width: 0) and (max-width: 1024px) {
  #nav_lvl-1 li.first {
    padding-left: 0%;
  }
}
 */
/* Internal Pages */
#inner-pages #entry {
  height: 250px;
  overflow: hidden;
}
#inner-pages #entry .navbar-default {
  z-index: 100;
  margin-bottom: 0;
}
#inner-pages #entry .va-table {
  min-height: 153px;
}
#inner-pages #entry h2 {
  color: #ffffff;
}
#inner-pages #entry .container {
  position: relative;
}
#inner-pages .site-map {
  color: #ffffff;
}
#inner-pages .site-map a {
  display: initial;
  color: #ffffff;
}
#inner-pages .site-map a:hover {
  color: #ffffff;
}
#inner-pages .entrty-fixer {
  z-index: 99999 !important;
  height: 95px !important;
}
#inner-pages .page-content-fixer {
  margin-top: 300px;
}
#inner-pages #foot {
  background: #000000;
  min-height: 80px;
  padding: 10px;
  color: #727272;
  font-size: 12px;
  font-family: 'poppinsmedium';
}
#inner-pages #foot a {
  text-decoration: none;
  color: #727272;
  text-transform: uppercase;
  padding: 10px;
}
#inner-pages #foot a:hover {
  text-decoration: underline;
  color: #ffffff;
}

@media (min-width: 0) and (max-width: 991px) {
  .responsive-pane-bg {
    background-color: #a60000;
    z-index: 999;
  }
  .responsive-pane-bg img {
    margin: 0px auto;
    margin-top: 15px;
  }
}
/* OOPS Classes */
#page-heading {
  width: 100%;
  background: url(/images/mf-banner.jpg) no-repeat center;
  background-size: cover;
  min-height: 190px;
    position: relative;
    z-index: 100;
    padding-top: 4%;
    margin-top: 6%;
  /*.va-table{
  	min-height: 250px;
  @include break(0, 768px){
  	min-height: 300px;
  }
  
  }*/
  /*&:after{
  	width: 100%;
  	height: 250px;
  @include break(0, 768px){
  	min-height: 300px;
  }
  	background:transparentize($light-black, .52);
  	position:absolute;
  	top:0;
  	left:0;
  	content:'';
  }*/
	
	
	
}
@media (min-width: 992px) and (max-width: 1300px) {
  #page-heading {
   min-height: 170px;
    padding-top: 6%;
  }
}

@media (min-width: 0) and (max-width: 768px) {
  #page-heading {
   min-height: 180px;
    position: relative;
    z-index: 100;
    padding-top: 15%;
    margin-top: 6%;
  }
}
#page-heading .container {
  position: relative;
  z-index: 100;
}
#page-heading h2 {
  color: #ffffff;
}

#page-content {
  margin: 25px 0px;
  min-height: 400px;
  margin-bottom: 0px;
  overflow: hidden;
}
#page-content .va-table {
  min-height: 100px;
}

.tile-block {
  height: 250px;
  position: relative;
  background: #07a9f4;
  overflow: hidden;
  margin-bottom: 30px;
}
.tile-block .bg-img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.tile-block .bg-img:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.48);
}
.tile-block .va-table {
  height: 100%;
}
.tile-block:hover .bg-img {
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#nav_lvl_2 {
  display: inline-block;
}
#nav_lvl_2 li {
  display: inline-block;
}
#nav_lvl_2 li.active > a, #nav_lvl_2 li.active > a:hover, #nav_lvl_2 li.active > a:focus {
  border: none;
  border-radius: 0px;
  border-bottom: solid 2px #a60000;
  color: #a60000;
}
#nav_lvl_2 li > a {
  color: #000000;
  border: none;
}
#nav_lvl_2 li > a:hover, #nav_lvl_2 li > a:focus {
  color: #a60000;
  background: none;
}

/* OOPS Classes Ends*/
#aboutus {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#aboutus .tile-block {
  height: 200px;
}

#Online-investment {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }
  #page-content{
  	margin-top: 250px;
  	.pane-left{
  	 	min-height: calc( 100vh - 173px );
  	}
  }*/
}
#Online-investment .right-head {
  font-family: 'poppinsmedium';
  font-size: 20px;
  line-height: 30px;
  color: #525252;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#Online-investment .right-head img {
  margin-top: -5px;
}
#Online-investment a .ser-icon {
  padding-top: 20px;
}
#Online-investment a .ser-icon img {
  padding-bottom: 20px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#Online-investment a .ser-icon .iconhead {
  line-height: 22px;
  font-family: 'poppinsmedium';
  font-size: 15px;
  color: #000000;
  text-transform: uppercase;
}
#Online-investment a .ser-icon p {
  font-size: 14px;
  padding-left: 50px;
  padding-right: 50px;
}
#Online-investment a:hover .ser-icon img {
  padding-bottom: 20px;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#investment {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#investment .tile-block {
  height: 300px;
}

#mutual_funds {
  /*#page-heading{
  	background:url(/images/mutual-fund-head.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#mutual_funds .icon-heading {
  font-family: 'poppinsregular';
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 25px;
}
#mutual_funds .start-btn {
  background: #a60000;
  color: #ffffff;
  font-family: 'poppinsregular';
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 3px;
  border: 0;
  outline: none;
}
@media (min-width: 0) and (max-width: 425px) {
  #mutual_funds .start-btn {
    margin-top: 0px;
  }
}
#mutual_funds .start-btn:hover {
  background: #000000;
  color: #fff;
  outline: none;
}
#mutual_funds .start-btn:focus {
  background: #000000;
  color: #fff;
  outline: none;
}

#mutual_funds2 {
  	/*#page-heading{
  		width:100%;
  		min-height:270px;
  		background:url(/images/mf-banner.png) no-repeat center;
  		background-size:cover;
  		@include break (0, 768px){
  		min-height: 270px;
  		}
  		position: relative;
  		z-index:100;
  		.va-table{
  			min-height: 270px;
  			@include break (0, 768px){
  			min-height: 320px;
  			}
  		}
  		&:after{
  			width: 100%;
  			height: 270px;
  			background:transparentize($black, .52);
  			position:absolute;
  			top:0;
  			left:0;
  			content:'';
  			@include break (0, 768px){
  			height: 320px;
  			}
  		}
  }*/
}
#mutual_funds2 #page-content .nav > li > a {
  text-decoration: none;
  color: #000000;
  background-color: none;
  border: 1px solid #a60000;
  border-radius: 3px;
}
#mutual_funds2 #page-content .nav-pills > li.active > a, #mutual_funds2 #page-content .nav-pills > li.active > a:focus, #mutual_funds2 #page-content .nav-pills > li.active > a:hover {
  color: #fff;
  background-color: #a60000 !important;
}
#mutual_funds2 #page-content .nav > li > a:focus, #mutual_funds2 #page-content .nav > li > a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #a60000 !important;
}

#sipbanner #page-heading {
  background: url(/images/sipbanner.jpg) no-repeat center;
  background-size: cover;
}
#sipbanner .tile-block {
  height: 300px;
}

#capitalgain {
  /*#page-heading{
  	background:url(/images/capitalbg.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#capitalgain .tile-block {
  height: 300px;
}

#fixed_deposits {
  /*#page-heading{
  	background:url(/images/fixed-income-head.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#fixed_deposits #page-content .pane-left {
  min-height: 570px;
}

#equity {
  /*#page-heading{
  	background:url(/images/equity-head.jpg) no-repeat center;
  	background-size:cover;
  }*/
}

#insurance {
  /*#page-heading{
  	background:url(/images/insurance.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#insurance .tile-block {
  height: 300px;
}

#life_Insurance {
  /*#page-heading{
  	background:url(/images/life-insurance-head.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#life_Insurance .form-area {
  overflow: hidden;
}
#life_Insurance #page-content {
  margin-top: 250px;
}
#life_Insurance #page-content img {
  padding: 5px 10px;
}

#general_insurance {
  /*#page-heading{
  	background:url(/images/general-insurance-head.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#general_insurance .form-area {
  overflow: hidden;
}
#general_insurance .form-area p {
  text-align: left !important;
}
#general_insurance #page-content .pane-left {
  min-height: 555px;
}

#downloads {
  /*#page-heading{
  	background:url(/images/download-head.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#downloads #page-content {
  min-height: calc( 100vh - 335px );
  margin-top: 25px;
  margin-bottom: 25px;
}
#downloads #page-content #online_forms {
  /*--------Table Starts---------*/
  /* Zebra striping */
  /*	 
  	Max width before this PARTICULAR table gets nasty
  	This query will take effect for any screen smaller than 760px
  	and also iPads specifically.
  	*/
  /*--------------Table Ends---------*/
  /*--------------online MF Forms Table------------*/
  /*-----------------*/
}
#downloads #page-content #online_forms .download-btn {
  background: #0f5998;
  border-radius: 3px;
  padding: 10px 15px;
  font-family: 'poppinsregular';
  color: #ffffff;
  border: 0;
  margin-bottom: 30px;
}
#downloads #page-content #online_forms table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #ebebeb;
  font-family: 'poppinsregular';
  color: #000000;
}
#downloads #page-content #online_forms .table-curved {
  border-collapse: separate;
  border-radius: 6px;
  overflow: hidden;
}
#downloads #page-content #online_forms .table > thead > tr > th {
  border-bottom: 0px solid #ddd;
  border-top: 0px solid #ddd;
  padding-top: 15px;
  padding-bottom: 15px;
  border-right: 1px solid #0573a0;
}
@media (min-width: 0) and (max-width: 768px) {
  #downloads #page-content #online_forms .table > thead > tr > th {
    border-right: 0px solid #0573a0;
  }
}
#downloads #page-content #online_forms .table > tbody > tr > td {
  border-bottom: 0px solid #ddd;
  border-top: 0px solid #ddd;
  text-align: left;
  border-right: 1px solid #ddd;
}
@media (min-width: 0) and (max-width: 425px) {
  #downloads #page-content #online_forms .table > tbody > tr > td {
    text-align: right;
    padding-right: 20px;
    padding-left: 170px;
  }
}
@media (min-width: 0) and (max-width: 768px) {
  #downloads #page-content #online_forms .table > tbody > tr > td {
    text-align: center;
    border-right: 0px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
}
#downloads #page-content #online_forms tr:nth-of-type(odd) {
  background: #f6f6f6;
}
#downloads #page-content #online_forms th {
  background: #357bd8;
  color: white;
  border-bottom: 0px solid #ccc;
  font-family: 'poppinsbold';
  font-size: 15px;
  font-weight: normal;
  letter-spacing: .1px;
}
#downloads #page-content #online_forms th:nth-of-type(odd) {
  background: #3d89ef;
}
#downloads #page-content #online_forms td, #downloads #page-content #online_forms th {
  border: 0px solid #ccc;
  text-align: left;
  border-top: 0px solid #cccccc;
  text-align: left;
  font-size: 15px;
  padding: 15px 10px;
}
#downloads #page-content #online_forms .table > tbody > tr > td, #downloads #page-content #online_forms .table > tbody > tr > th, #downloads #page-content #online_forms .table > tfoot > tr > td, #downloads #page-content #online_forms .table > tfoot > tr > th, #downloads #page-content #online_forms .table > thead > tr > td, #downloads #page-content #online_forms .table > thead > tr > th {
  /* padding:15px 6px !important; */
  padding: 15px 6px;
}
@media (min-width: 0) and (max-width: 768px) {
  #downloads #page-content #online_forms .table > tbody > tr > td, #downloads #page-content #online_forms .table > tbody > tr > th, #downloads #page-content #online_forms .table > tfoot > tr > td, #downloads #page-content #online_forms .table > tfoot > tr > th, #downloads #page-content #online_forms .table > thead > tr > td, #downloads #page-content #online_forms .table > thead > tr > th {
    padding-top: 30px;
  }
}
#downloads #page-content #online_forms tr td:nth-of-type(odd) {
  background: #e5e5e5;
  padding: 15px 6px;
}
#downloads #page-content #online_forms tr td:nth-of-type(even) {
  background: #ebebeb;
  padding: 15px 6px;
}
#downloads #page-content #online_forms tr:nth-of-type(odd) td {
  background: #f6f6f6;
  border-top: 0px solid #ccc;
  font-size: 16px;
  padding: 8px 6px;
}
@media only screen and (max-width: 760px), (min-device-width: 0px) and (max-device-width: 768px) {
  #downloads #page-content #online_forms {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*
    Label the data
    */
  }
  #downloads #page-content #online_forms table, #downloads #page-content #online_forms thead, #downloads #page-content #online_forms tbody, #downloads #page-content #online_forms th, #downloads #page-content #online_forms td, #downloads #page-content #online_forms tr {
    display: block;
  }
  #downloads #page-content #online_forms thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #downloads #page-content #online_forms tr {
    border: 1px solid #ccc;
  }
  #downloads #page-content #online_forms td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  #downloads #page-content #online_forms td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 100%;
    padding-right: 10px;
    white-space: nowrap;
    font-family: 'poppinsbold';
    color: #056288;
    text-align: center;
  }
  #downloads #page-content #online_forms td, #downloads #page-content #online_forms th {
    border: 0px solid #ccc;
    text-align: left;
    border-top: 0px solid #cccccc;
    text-align: center;
    width: 100%;
  }
  #downloads #page-content #online_forms td:nth-of-type(1):before {
    content: "SL No";
  }
  #downloads #page-content #online_forms td:nth-of-type(2):before {
    content: "Documentation required";
  }
  #downloads #page-content #online_forms td:nth-of-type(3):before {
    content: "If, Yes";
  }
  #downloads #page-content #online_forms td:nth-of-type(4):before {
    content: "If, No";
  }
}
#downloads #page-content #online_forms a.oi-linked-text {
  color: #1676b9;
  font-family: 'poppinsregular';
  font-size: 14px;
}
#downloads #page-content #online_forms a:hover.oi-linked-text {
  color: #c03929;
}
#downloads #page-content #online_forms .oi-download-btn-kyc {
  background: #f66805;
  color: #000000;
  /* padding: 20px; */
  text-align: center;
  padding-top: 10px;
  padding-bottom: 14px;
  font-size: 16px;
  border-radius: 5px;
  width: 290px;
  margin-bottom: 13px;
  margin-top: 10px;
}
@media (min-width: 0) and (max-width: 375px) {
  #downloads #page-content #online_forms .oi-download-btn-kyc {
    width: 100%;
  }
}
#downloads #page-content #online_forms .oi-download-btn-kyc a {
  color: #000000;
  font-size: 14px;
}
#downloads #page-content #online_forms .oi-download-btn-kyc a:hover {
  color: #a60000;
}
#downloads #page-content #online_forms .oi-download-list {
  text-align: left;
  /*font-family:'poppinsregular';
  font-size:14px;*/
  line-height: 25px;
  color: #000;
  padding-bottom: 0px;
}
#downloads #page-content #online_forms .oi-download-list ul {
  -webkit-padding-start: 22px;
}
#downloads #page-content #online_forms .oi-download-list li {
  list-style-type: none;
}
#downloads #page-content #online_forms .oi-download-list li:before {
  /* content: '\2022'; */
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  background: #a60000;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 25px;
}
#downloads #page-content #online_forms .oi-download-btn {
  background: #f66805;
  color: #000000;
  /* padding: 20px; */
  text-align: center;
  padding-top: 10px;
  padding-bottom: 14px;
  font-size: 16px;
  border-radius: 5px;
  width: 290px;
  margin-bottom: 13px;
  margin-top: 10px;
  border: 0;
}
@media (min-width: 0) and (max-width: 375px) {
  #downloads #page-content #online_forms .oi-download-btn {
    width: 100%;
  }
}
#downloads #page-content #online_forms .oi-download-btn:hover {
  background: #a60000;
  color: #ffffff;
}
#downloads #page-content #online_forms .oi-mail a {
  color: #1676b9;
  font-family: 'poppinsmedium';
  font-size: 16px;
  padding-left: 17px;
}
#downloads #page-content #online_forms .oi-mail a:hover {
  color: #c03929;
}
#downloads #page-content ul.instruction li {
  list-style: url(/images/instruction.png);
  margin-left: -20px;
  padding: 8px 5px;
}
#downloads #page-content ul.instruction2 li {
  list-style: url(/images/check.png);
  margin-left: 0px;
  padding: 5px;
}
#downloads #page-content .one-btn {
  background: #2262c2;
  border-radius: 4px;
  color: #ffffff;
  padding: 10px 15px;
}
#downloads #page-content .one-btn:before {
  content: '';
  position: absolute;
  background: #999999;
  width: 905px;
  height: 2px;
  top: -37px;
  left: 110px;
}
@media (min-width: 768px) and (max-width: 1025px) {
  #downloads #page-content .one-btn:before {
    width: 746px;
    left: 91px;
  }
}
@media (min-width: 0) and (max-width: 768px) {
  #downloads #page-content .one-btn:before {
    display: none;
  }
}
#downloads #page-content .one-btn:after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 28px;
  top: -36px;
  left: 50%;
}
#downloads #page-content .section1 {
  background: #f6f6f6;
  min-height: 331px;
  color: #56595c;
  /*:after {
  			content: '';
  			position: absolute;
  			background: #999999;
  			width: 2px;
  			height: 25px;
  			bottom: -14px;
  			left: 50%;
  		}*/
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section1 {
    min-height: 240px;
  }
}
#downloads #page-content .section1 .section-heading {
  background: #da4b4c;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section1 .form-head {
  font-family: 'poppinsregular';
  font-size: 16px;
  color: #da4b4c;
  margin-top: 10px;
}
#downloads #page-content .section1 p {
  padding: 10px;
  min-height: 115px;
}
#downloads #page-content .section1 span:after {
  content: '';
  position: absolute;
  display: none;
}
#downloads #page-content .section2 {
  background: #e0e8f5;
  min-height: 331px;
  color: #56595c;
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section2 {
    min-height: 240px;
  }
}
#downloads #page-content .section2 .section-heading {
  background: #008cc4;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section2 .form-head {
  font-family: 'poppinsregular';
  font-size: 16px;
  color: #008cc4;
  margin-top: 10px;
}
#downloads #page-content .section2 p {
  padding: 10px;
}
#downloads #page-content .section2 :after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 25px;
  bottom: -14px;
  left: 50%;
}
#downloads #page-content .section3 {
  background: #f2e3da;
  min-height: 331px;
  color: #56595c;
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section3 {
    min-height: 240px;
  }
}
#downloads #page-content .section3 .section-heading {
  background: #7c4223;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section3 .form-head {
  font-family: 'poppinsregular';
  font-size: 16px;
  color: #7c4223;
  margin-top: 10px;
}
#downloads #page-content .section3 p {
  padding: 10px;
}
#downloads #page-content .section3 :after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 25px;
  bottom: -14px;
  left: 50%;
}
#downloads #page-content .section4 {
  background: #e3f0e9;
  min-height: 331px;
  color: #56595c;
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section4 {
    min-height: 240px;
  }
}
#downloads #page-content .section4 .section-heading {
  background: #00b1b0;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section4 .form-head {
  font-family: 'poppinsregular';
  font-size: 16px;
  color: #00b1b0;
  margin-top: 10px;
}
#downloads #page-content .section4 p {
  padding: 10px;
}
#downloads #page-content .section4 :after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 25px;
  bottom: -14px;
  left: 50%;
}
#downloads #page-content .section5 {
  background: #f3e9d9;
  min-height: 331px;
  color: #56595c;
}
@media (min-width: 425px) and (max-width: 769px) {
  #downloads #page-content .section5 {
    min-height: 240px;
  }
}
#downloads #page-content .section5 .section-heading {
  background: #d68900;
  color: #ffffff;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#downloads #page-content .section5 .form-head {
  font-family: 'poppinsregular';
  font-size: 16px;
  color: #d68900;
  margin-top: 10px;
}
#downloads #page-content .section5 p {
  padding: 10px;
}
#downloads #page-content .section5 :after {
  content: '';
  position: absolute;
  background: #999999;
  width: 2px;
  height: 25px;
  bottom: -14px;
  left: 50%;
}

/*#taxation{
	#page-heading{
		background:url(/images/taxation-head.jpg) no-repeat center;
		background-size:cover;
	}
	#page-content{
		min-height: calc( 100vh - 335px );
	}
}*/
#Our-Recommendation {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }*/
}

#sip-planning {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#sip-planning #page-content {
  margin-top: 250px;
}

#sip-planning {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }*/
}

#porfolio_tracker {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#porfolio_tracker .login {
  background: url(/images/login-panel.jpg) no-repeat right;
  background-color: #fefefe;
  min-height: 286px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
}
@media (min-width: 0) and (max-width: 991px) {
  #porfolio_tracker .login {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
#porfolio_tracker .login label {
  float: left;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  width: 75px;
}
#porfolio_tracker .login label + input {
  float: left;
}
#porfolio_tracker .login input, #porfolio_tracker .login select {
  width: 80%;
  height: 45px;
  padding: 5px;
  line-height: 45px;
  margin-left: 10px;
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
  border-radius: 2px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
#porfolio_tracker .login input:focus, #porfolio_tracker .login select:focus, #porfolio_tracker .login button:focus {
  outline: none;
}
#porfolio_tracker .login select {
  width: 200px;
}
#porfolio_tracker .benefits-ico {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
}
#porfolio_tracker .benefit-text {
  width: 330px;
  margin-top: 15px;
}

#register {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#register .finn-plan-text {
  background: url(/images/financial-planning-bg.png) no-repeat right;
  background-color: #fefefe;
  min-height: 227px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  margin-bottom: 15px;
}
@media (min-width: 0) and (max-width: 991px) {
  #register .finn-plan-text {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
#register .register {
  background: url(/images/register-bg.png) no-repeat right bottom;
  background-color: #fefefe;
  min-height: 425px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
}
#register .register .bg-color-secondry {
  position: relative;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  margin-left: -15px;
  width: 95%;
}
@media (min-width: 992px) {
  #register .register .bg-color-secondry:after {
    content: '';
    position: absolute;
    top: 0px;
    right: -22px;
    border-left: solid 23px #f66805;
    border-top: solid 21px transparent;
    border-bottom: solid 19px transparent;
  }
}
@media (min-width: 0) and (max-width: 991px) {
  #register .register {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
#register .register label {
  float: left;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  width: 75px;
}
#register .register label + input {
  float: left;
}
#register .register input, #register .register select {
  width: 80%;
  height: 35px;
  padding: 5px;
  line-height: 35px;
  margin-bottom: 10px;
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
  border-radius: 2px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
#register .register input:focus, #register .register select:focus, #register .register button:focus {
  outline: none;
}
#register .register select {
  width: 200px;
}
#register .benefits-ico {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
}
#register .benefit-text {
  width: 330px;
  margin-top: 15px;
}

#financial_plannning {
  /*#page-heading{
  	background:url(/images/about-us.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#financial_plannning .finn-plan-text {
  background: url(/images/financial-planning-bg.png) no-repeat right;
  background-color: #fefefe;
  min-height: 227px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  margin-bottom: 15px;
}
@media (min-width: 0) and (max-width: 991px) {
  #financial_plannning .finn-plan-text {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
#financial_plannning .user-area {
  background-color: #fafafa;
  min-height: 170px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  margin-bottom: 15px;
}
@media (min-width: 0) and (max-width: 991px) {
  #financial_plannning .user-area {
    background-image: none;
    min-height: 315px;
  }
}
#financial_plannning .financial-planning-objective {
  background-color: #fafafa;
  min-height: 285px;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 15px 0;
  margin-bottom: 15px;
}
@media (min-width: 0) and (max-width: 991px) {
  #financial_plannning .financial-planning-objective {
    background-image: none;
    min-height: 315px;
  }
}
#financial_plannning .financial-planning-objective ul {
  padding-left: 25px;
}

#Contact_Us {
  /*#page-heading{
  	background:url(/images/contact_banner.png) no-repeat center;
  	background-size:cover;
  }*/
}
#Contact_Us #map {
  width: 100%;
  min-height: 400px;
}
#Contact_Us .contact-ico {
  height: 90px;
  line-height: 90px;
}
#Contact_Us .contact-txt {
  min-height: 100px;
  margin-bottom: 0px;
}

#disclaimer1 {
  /*#page-heading{
  	background:url(/images/disclaimer-head.jpg) no-repeat center;
  	background-size:cover;
  }*/
}
#disclaimer1 #page-content {
  margin-top: 250px;
}

#page-content .pane-left {
  position: relative;
}
@media (min-width: 992px) {
  #page-content .pane-left {
    min-height: 600px;
  }
}
#page-content .pane-left:before {
  position: absolute;
  content: '';
  background: #a60000;
  right: 100%;
  top: 0;
  height: 100%;
  width: calc( 100% + ( 100vw - 1140px));
  z-index: 0;
}
@media (min-width: 0) and (max-width: 991px) {
  #page-content .pane-left:before {
    background: none;
  }
}
#page-content .pane-left:after {
  position: absolute;
  content: '';
  background-color: #f7f7f7;
  left: 0;
  top: 0;
  height: 100%;
  width: calc( 100% + ( 100vw - 1140px));
  z-index: 0;
}
@media (min-width: 0) and (max-width: 1024px) {
  #page-content .pane-left:after {
    width: 100%;
  }
}
#page-content .position-relative {
  z-index: 100;
  margin-bottom: 30px;
}
#page-content .tab-content {
  margin-top: 15px;
}
#page-content .tab-content p {
  text-align: justify;
}
#page-content img {
  max-width: 100%;
}
#page-content #knowed {
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 12px;
  line-height: 18px;
  padding-top: 10px;
}

#mutual_funds #Safety {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Safety .pane-left {
  padding-left: 15px;
}
#mutual_funds #Safety .pane-left:after {
  background-size: cover;
}
#mutual_funds #Advantage {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Advantage .pane-left {
  padding-left: 15px;
}
#mutual_funds #Advantage .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}
#mutual_funds #Product_List {
  padding: 15px 0;
  box-sizing: border-box;
}
#mutual_funds #Product_List .pane-left {
  padding-left: 15px;
}
#mutual_funds #Product_List .pane-left:after {
  background-size: cover;
}

#Loans .pane-left {
  padding-left: 15px;
  min-height: calc( 100vh - 250px );
}

#nri #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#nri #page-content {
  margin-top: 250px;
}
#nri #page-content .pane-left {
  min-height: calc( 100vh - 310px );
}
#nri .faqtxt {
  font-weight: bold;
}

/* Contact Us */
/* Internal Pages Ends */
/* Planning web Area Footer */
footer a:hover {
  color: #a60000;
}
footer .social-links {
  padding: 0 5px;
}
footer #upper {
  background: url(/images/ftr-bg-section-1.jpg) repeat-y top center;
  min-height: 333px;
  height: 100%;
  color: #a6a6a6;
}
footer #upper .icon {
  width: auto;
  height: 100%;
  float: left;
  padding-right: 15px;
  overflow: hidden;
}
footer #upper .text {
  width: auto;
  height: 100%;
  overflow: hidden;
  margin-bottom: 5px;
  color: #a6a6a6;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
}
footer .va-table {
  box-sizing: border-box;
  padding: 25px 0;
}
footer #lower {
  min-height: 110px;
  background: #000000;
  color: #a6a6a6;
  font-size: 12px;
}
footer #lower .va-table {
  min-height: 110px;
  box-sizing: border-box;
  padding: 25px 0;
}
@media (min-width: 0px) and (max-width: 991px) {
  footer #lower .text-right {
    text-align: left;
  }
}
footer #lower a {
  display: initial;
}
footer #lower ul {
  list-style: none;
  margin-top: 10px;
}
footer #lower ul li {
  float: left;
  list-style: none;
  border-left: solid 1px gray;
  box-sizing: border-box;
  color: gray;
  padding: 0 7px;
  line-height: 11px;
  text-transform: uppercase;
}
footer #lower ul li:first-of-type {
  border-left: none;
}
@media (min-width: 0) and (max-width: 991px) {
  footer #lower ul {
    margin: 20px 0;
  }
  footer #lower ul li {
    float: none;
    border: none;
    margin: 10px 0;
    text-align: center;
  }
}

.form-area header {
  background: #f1612e;
}

/*Footer*/
footer#type-2 {
  margin: 0px 0 0 0;
  background: #303030;
  color: #bfbfbf;
  font-size: 13px;
  box-sizing: border-box;
  padding: 10px 0;
}
footer#type-2 .margin-20 {
  margin: 0px 0 20px 0px;
}
footer#type-2 a {
  color: #b3b3b3;
  font-size: 12px;
  text-decoration: none;
  display: initial;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
footer#type-2 a:hover {
  color: #f66805;
  text-decoration: none;
}
footer#type-2 img {
  margin-bottom: 10px;
}
footer#type-2 .nav li {
  padding-right: 8px;
}
footer#type-2 .nav li a {
  text-transform: uppercase;
  padding: 0px 0px;
}
footer#type-2 .nav li a:hover {
  background: none;
}
footer#type-2 .nav li + li {
  padding: 0 8px;
  position: relative;
}
footer#type-2 .nav li + li:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 11px;
  background: #b3b3b3;
  top: 5px;
  left: 0px;
}
footer#type-2 .powered-by {
  text-align: right;
}
@media (min-width: 0px) and (max-width: 768px) {
  footer#type-2 .powered-by {
    text-align: center;
  }
}

/* Footer Ends */
/* Planning web Area Footer Ends*/
/* Planning Web Area Entry */
#basket {
  /*.navbar-default {
      border-bottom: 1px solid #dadada;
  }
  	
  	.navbar-default .navbar-nav > li > a {
      padding: 24px 14px;
  	@include break(0, 768px){
  	padding: 15px 14px;
  	}
  	@include break(426px, 768px){
  	    padding: 15px 10px;
  		font-size: 13px;
  	}
  	@include break(769px, 1024px){
  	    padding: 24px 9px;
  	}
  	}*/
}

#basket-type {
  min-height: 400px;
  margin-top: 1px;
  /* Risk Profile Radio Buttons Starts*/
  /* Risk Profile Radio Buttons Ends*/
  /*  Low and moderately low table starts */
}
#basket-type a {
  text-decoration: none;
}
#basket-type a:hover {
  color: #000000;
  outline: none;
}
#basket-type a:focus {
  color: #000000;
  outline: none;
}
#basket-type .va-table {
  min-height: 400px;
  font-family: "poppinsregular", poppins;
}
#basket-type .margin-bottom-30 {
  margin-bottom: 60px;
}
#basket-type .margin-top-80 {
  margin-top: 140px;
}
#basket-type .line-height-35 {
  line-height: 35px;
}
#basket-type .font-fam {
  font-family: "poppinsregular", poppins;
}
#basket-type .font-fam2 {
  font-family: "poppinsbold";
  font-weight: 600;
}
#basket-type .btn-custom {
  padding: 15px 30px;
  border-radius: 25px;
  background: #a60000;
  border: 0px;
}
#basket-type .btn-custom:hover {
  outline: none;
  background: #f66805;
  box-shadow: none;
}
#basket-type .btn-custom:focus {
  outline: none;
  background: #f66805;
  box-shadow: none;
}
#basket-type .btn-custom-theme {
  padding: 7px 60px;
  margin-right: 10px;
  border-radius: 25px;
  background: #f66805;
  border: 0px;
}
#basket-type .btn-custom-theme:focus {
  outline: none;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#basket-type .elss_info-bg {
  background: url(/images/tax-plan.png) top right no-repeat;
  min-height: 210px;
}
@media (min-width: 0) and (max-width: 425px) {
  #basket-type .elss_info-bg {
    background: none;
  }
}
#basket-type .btn-custom-padd {
  padding: 15px 60px;
}
#basket-type .carousel-inner .item {
  min-height: 250px;
}
#basket-type .carousel-control.left {
  background-image: none;
}
#basket-type .carousel-control.right {
  background-image: none;
}
#basket-type .table > tbody > tr > td, #basket-type .table > tbody > tr > th, #basket-type .table > tfoot > tr > td, #basket-type .table > tfoot > tr > th, #basket-type .table > thead > tr > td, #basket-type .table > thead > tr > th {
  padding: 5px;
}
#basket-type .risk {
  /* hide input */
  /* style label */
  /* toggle hover */
  /* toggle on */
  /* radio focus */
}
#basket-type .risk label {
  border-radius: 3px;
  border: 1px solid #D1D3D4;
  padding: 0px 10px 0 10px;
  text-align: center;
  font-weight: 200 !important;
  font-family: "poppinsmedium";
}
#basket-type .risk input.radio:empty {
 /* margin-left: -999px;*/
    display: none;
}
#basket-type .risk input.radio:empty ~ label {
  position: relative;
  width: 200px;
  float: left;
  line-height: 40px;
  text-indent: 30px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 376px) and (max-width: 425px) {
  #basket-type .risk input.radio:empty ~ label {
    margin-left: 80px;
  }
}
@media (min-width: 0) and (max-width: 375px) {
  #basket-type .risk input.radio:empty ~ label {
    margin-left: 15%;
  }
}
#basket-type .risk input.radio:empty ~ label:before {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 38px;
  background: #D1D3D4;
  border-radius: 3px 0 0 3px;
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
}
#basket-type .risk input.radio:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #06662c;
}
#basket-type .risk input.radio:hover:not(:checked) ~ label {
  color: #000;
  border: 1px solid #46902b;
}
#basket-type .risk input.radio:checked ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #06662c;
}
#basket-type .risk input.radio:checked ~ label {
  border: 1px solid #46902b;
}
#basket-type .risk input.radio:focus ~ label:before {
  box-shadow: 0 0 0 0px #999;
}
#basket-type .low-content {
  min-height: 100px;
  background: #f9f9f9;
  color: #000000;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
#basket-type .low-content .va-table {
  min-height: 100px;
  font-family: "poppinsregular", poppins;
  font-size: 18px;
}
#basket-type .baskbgstrip1 {
  background: #a60000;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type .baskbgstrip1 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 18px;
  color: #f66805;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
}
#basket-type .baskbgstrip1 input:hover, #basket-type .baskbgstrip1 input:focus {
  outline: none;
}
#basket-type .baskbgstrip1 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  margin-left: 10px;
}
#basket-type .baskbgstrip2 {
  background: none;
  color: #a60000;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type .baskbgstrip2 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 22px;
  color: #49817a;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#basket-type .baskbgstrip2 input:hover, #basket-type .baskbgstrip2 input:focus {
  outline: none;
}
#basket-type .baskbgstrip2 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  margin-left: 10px;
}
#basket-type .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type .table {
  margin-bottom: 0px;
}
#basket-type .disclaimer {
  border-right: 1px solid #959595;
  min-height: 60px;
  font-size: 15px;
  line-height: 60px;
  color: #000000;
}
@media (min-width: 0) and (max-width: 425px) {
  #basket-type .disclaimer {
    border-right: 0px solid #959595;
    border-bottom: 1px solid #959595;
  }
}
#basket-type .disclaimer img {
  margin-top: -12px;
}
#basket-type .disclaimer-para {
  font-size: 11px;
  font-color: #666666;
  line-height: 20px;
}
#basket-type a {
  cursor: pointer;
}
#basket-type a .icon {
  width: 141px;
  height: 141px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type a .icon:after {
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 104px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type a .icon img {
  position: relative;
  z-index: 100;
}
#basket-type a .icon1 {
  width: 162px;
  height: 136px;
  position: relative;
  margin: 0 auto;
}
#basket-type a .icon-basket1 {
  background: url(/images/invest-icon1.png) center no-repeat;
}
#basket-type a .icon-basket-inner1 {
  background: url(/images/invest-icon1_hvr.png) center no-repeat;
}
#basket-type a .icon-basket2 {
  background: url(/images/invest-icon2.png) center no-repeat;
}
#basket-type a .icon-basket-inner2 {
  background: url(/images/invest-icon2_hvr.png) center no-repeat;
}
#basket-type a .icon-basket3 {
  background: url(/images/invest-icon3.png) center no-repeat;
}
#basket-type a .icon-basket-inner3 {
  background: url(/images/invest-icon2_hvr.png) center no-repeat;
}
#basket-type a .icon2 {
  width: 130px;
  height: 109px;
  position: relative;
  margin: 0 auto;
}
#basket-type a .icon-type1 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner1 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type2 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner2 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type3 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner3 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type4 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner4 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type5 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner5 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type a .icon-type6 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type a .icon-type-inner6 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type a label {
  display: none;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-size: 13px;
}
#basket-type a .rd {
  margin-top: 10px;
  margin-bottom: 10px;
}
#basket-type a input[type=radio] {
  display: none;
}
#basket-type a label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background-color: #e4e4e4;
  border: 3px solid #959595;
}
#basket-type a .rd label:before {
  border-radius: 8px;
}
#basket-type a input[type=radio]:checked + label:before {
  content: "\2022";
  color: #79c396;
  font-size: 35px;
  text-align: center;
  line-height: 10px;
  padding-left: 0px;
  border: 3px solid #00430b;
}
#basket-type #nav_baskt_1 {
  display: inline-block;
  border-bottom: 0px solid #ddd;
}
#basket-type #nav_baskt_1 li {
  display: inline-block;
}
#basket-type #nav_baskt_1 li.active > a, #basket-type #nav_baskt_1 li.active > a:hover, #basket-type #nav_baskt_1 li.active > a:focus {
  border: none;
  border-radius: 0px;
  color: #f47301;
}
#basket-type #nav_baskt_1 li.active > a > .icon-b, #basket-type #nav_baskt_1 li.active > a:focus > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type #nav_baskt_1 li.active > a > .icon-b:after, #basket-type #nav_baskt_1 li.active > a:focus > .icon-b:after {
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 104px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type #nav_baskt_1 li.active > a > .icon-b img, #basket-type #nav_baskt_1 li.active > a:focus > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 {
  background-color: #b6ede6;
  border: solid 4px #52c8b9;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1:after, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1:after, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1:after {
  background-color: #ffffff;
  background-image: url(/images/tick.png);
  background-repeat: no-repeat;
  background-position: 50% 100% !important;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1 img, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 img, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1 .tick, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 .tick, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 .tick {
  display: block;
  background: url(/images/tick.png);
  position: absolute;
  bottom: 0px;
  left: 50px;
  z-index: 99;
}
#basket-type #nav_baskt_1 li.active > a > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 li.active > a:hover > .icon-b:after {
  width: 96px;
  height: 96px;
  top: 12px;
  left: 12px;
}
#basket-type #nav_baskt_1 li > a {
  color: #000000;
  border: none;
  padding: 30px;
}
#basket-type #nav_baskt_1 li > a:hover, #basket-type #nav_baskt_1 li > a:focus {
  color: #000000;
  background: none;
}
#basket-type #nav_baskt_1 .nav li > a {
  padding: 25px;
}
#basket-type #nav_baskt_1 li > a > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type #nav_baskt_1 li > a > .icon-b:after {
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 104px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type #nav_baskt_1 li > a > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type #nav_baskt_1 li > a > .icon-basket-inner1 {
  background: #f6f6f6;
  border: solid 4px #e8e8e8;
}
#basket-type #nav_baskt_1 li > a > .icon-basket-inner1:after {
  background: #ffffff;
}
#basket-type #nav_baskt_1 li > a > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type #nav_baskt_1 li > a:hover > .icon-b:after {
  width: 96px;
  height: 96px;
  top: 12px;
  left: 12px;
}
#basket-type .description-header {
  background: #f6f6f6;
  border: 1px solid #e2e2e2;
  min-height: 77px;
  box-shadow: 3px 3px 5px #e4e4e4;
  font-family: "poppinsregular", poppins;
  font-size: 17px;
  padding: 10px;
  line-height: 27px;
}
#basket-type .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type .table {
  margin-bottom: 0px;
}

.nsetoolhdr {
  font-family: '$font-robototreg', arial, helvetica, sans-serif;
  font-size: 10pt;
  color: #000000;
  font-weight: bold;
  BACKGROUND-COLOR: #52c8b9;
  border: 1px solid #49817a;
}

.nsetoolbody {
  font-family: '$font-robotoreg', arial, helvetica, sans-serif;
  font-size: 10pt;
  color: #000000;
  font-weight: normal;
  BACKGROUND-COLOR: #ffffff;
  border-bottom: 1px solid #d2d2d3;
}

.nsetoolbutton {
  font-family: '$font-robotoreg', arial, helvetica, sans-serif;
  font-size: 10pt;
  color: #000000;
  font-weight: normal;
}

/* --------------Debt Fund Page--------------- */
#basket-type2 {
  min-height: 300px;
  margin-top: 120px;
  /* Risk Profile Radio Buttons Starts*/
  /* Risk Profile Radio Buttons Ends*/
  /*  Low and moderately low table starts */
  /* Debt Basket */
}
#basket-type2 a {
  text-decoration: none;
}
#basket-type2 a:hover {
  color: #000000;
  outline: none;
}
#basket-type2 a:focus {
  color: #000000;
  outline: none;
}
#basket-type2 .va-table {
  min-height: 400px;
  font-family: 'poppinsregular';
}
#basket-type2 .margin-bottom-30 {
  margin-bottom: 60px;
}
#basket-type2 .margin-top-80 {
  margin-top: 140px;
}
#basket-type2 .line-height-35 {
  line-height: 35px;
}
#basket-type2 .font-fam {
  font-family: "poppinsregular";
}
#basket-type2 .font-fam2 {
  font-family: "poppinssemibold";
  font-weight: 600;
}
#basket-type2 .btn-custom {
  padding: 15px 30px;
  border-radius: 25px;
  background: #a60000;
  border: 0px;
}
#basket-type2 .btn-custom:focus {
  outline: none;
  background: #f66805;
  box-shadow: none;
}
#basket-type2 .btn-custom-theme {
  padding: 7px 60px;
  margin-right: 10px;
  border-radius: 25px;
  background: #f66805;
  border: 0px;
}
#basket-type2 .btn-custom-theme:focus {
  outline: none;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#basket-type2 .elss_info-bg {
  background: url(/images/tax-plan.png) top right no-repeat;
  min-height: 210px;
}
@media (min-width: 0) and (max-width: 425px) {
  #basket-type2 .elss_info-bg {
    background: none;
  }
}
#basket-type2 .btn-custom-padd {
  padding: 15px 50px;
}
#basket-type2 .carousel-inner .item {
  min-height: 250px;
}
#basket-type2 .carousel-control.left {
  background-image: none;
}
#basket-type2 .carousel-control.right {
  background-image: none;
}
#basket-type2 .table > tbody > tr > td, #basket-type2 .table > tbody > tr > th, #basket-type2 .table > tfoot > tr > td, #basket-type2 .table > tfoot > tr > th, #basket-type2 .table > thead > tr > td, #basket-type2 .table > thead > tr > th {
  padding: 5px;
}
#basket-type2 .risk {
  /* hide input */
  /* style label */
  /* toggle hover */
  /* toggle on */
  /* radio focus */
}
#basket-type2 .risk label {
  border-radius: 3px;
  border: 1px solid #D1D3D4;
  padding: 0px 10px 0 10px;
  text-align: center;
  font-weight: 200 !important;
  font-family: "poppinsregular", poppins;
}
#basket-type2 .risk input.radio:empty {
  margin-left: -999px;
}
#basket-type2 .risk input.radio:empty ~ label {
  position: relative;
  width: 200px;
  float: left;
  line-height: 40px;
  text-indent: 30px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#basket-type2 .risk input.radio:empty ~ label:before {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 38px;
  background: #D1D3D4;
  border-radius: 3px 0 0 3px;
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
}
#basket-type2 .risk input.radio:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #1a9901;
}
#basket-type2 .risk input.radio:hover:not(:checked) ~ label {
  color: #000;
  border: 1px solid #d1d1d1;
}
#basket-type2 .risk input.radio:checked ~ label:before {
  content: '\2714';
  text-indent: 1px;
  color: #ffffff;
  background-color: #1a9901;
}
#basket-type2 .risk input.radio:checked ~ label {
  border: 1px solid #d1d1d1;
}
#basket-type2 .risk input.radio:focus ~ label:before {
  box-shadow: 0 0 0 0px #999;
}
#basket-type2 .low-content {
  min-height: 100px;
  background: #f9f9f9;
  color: #000000;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
#basket-type2 .low-content .va-table {
  min-height: 100px;
  font-family: "open_sansregular";
  font-size: 18px;
}
#basket-type2 .baskbgstrip1 {
  background: #a60000;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type2 .baskbgstrip1 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 20px;
  color: #a60000;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
}
#basket-type2 .baskbgstrip1 input:hover, #basket-type2 .baskbgstrip1 input:focus {
  outline: none;
}
#basket-type2 .baskbgstrip1 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  margin-left: 10px;
}
#basket-type2 .baskbgstrip2 {
  background: none;
  color: #a60000;
  padding: 12px 20px;
  border-radius: 8px;
}
#basket-type2 .baskbgstrip2 input {
  background: #ffffff;
  border: 0px;
  border-radius: 3px;
  width: 150px;
  text-align: center;
  font-size: 22px;
  color: #49817a;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#basket-type2 .baskbgstrip2 input:hover, #basket-type2 .baskbgstrip2 input:focus {
  outline: none;
}
#basket-type2 .baskbgstrip2 button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  margin-left: 10px;
}
#basket-type2 .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type2 .table {
  margin-bottom: 0px;
}
#basket-type2 .disclaimer {
  border-right: 1px solid #959595;
  min-height: 60px;
  font-size: 15px;
  line-height: 60px;
  color: #000000;
}
@media (min-width: 0) and (max-width: 425px) {
  #basket-type2 .disclaimer {
    border-right: 0px solid #959595;
    border-bottom: 1px solid #959595;
  }
}
#basket-type2 .disclaimer img {
  margin-top: -12px;
}
#basket-type2 .disclaimer-para {
  font-size: 11px;
  font-color: #666666;
  line-height: 20px;
}
#basket-type2 .basket-type .carousel-inner .item {
  min-height: 380px;
}
#basket-type2 .basket-type .carousel-caption {
  top: 0px;
  width: 80%;
  left: 10%;
  right: 10%;
  text-shadow: none;
  color: #000000;
}
#basket-type2 .basket-type .item:nth-of-type(2) > .carousel-caption {
  top: 0px;
  width: 100%;
  left: 0%;
  right: 0%;
  text-shadow: none;
  color: #000000;
}
#basket-type2 .basket-type a.lnk {
  color: #46902b;
  text-decoration: underline !important;
}
#basket-type2 .basket-type a.lnk:hover {
  color: #f66805;
  text-decoration: underline !important;
}
#basket-type2 a {
  cursor: pointer;
}
#basket-type2 a .icon {
  width: 141px;
  height: 141px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 a .icon:after {
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 104px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type2 a .icon img {
  position: relative;
  z-index: 100;
}
#basket-type2 a .icon1 {
  width: 76px;
  height: 71px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 a .icon-basket1 {
  background: url(/images/debt-fund1.png) center no-repeat;
}
#basket-type2 a .icon-basket-inner1 {
  background: url(/images/debt-fund1.png) center no-repeat;
}
#basket-type2 a .icon-basket2 {
  background: url(/images/debt-fund2.png) center no-repeat;
}
#basket-type2 a .icon-basket-inner2 {
  background: url(/images/debt-fund2.png) center no-repeat;
}
#basket-type2 a .icon-basket3 {
  background: url(/images/debt-fund3.png) center no-repeat;
}
#basket-type2 a .icon-basket-inner3 {
  background: url(/images/debt-fund3.png) center no-repeat;
}
#basket-type2 a .risk-type-head {
  font-family: "poppinsbold";
  font-size: 16px;
  color: #333333 !important;
}
#basket-type2 a .risk-type-head p {
  font-family: "poppinsregular", poppins;
  font-size: 14px;
}
#basket-type2 a .icon2 {
  width: 130px;
  height: 109px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 a .icon-type1 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner1 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type2 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner2 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type3 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner3 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type4 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner4 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type5 {
  background: url(/images/sip-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner5 {
  background: url(/images/sip-icon_hvr.png) center no-repeat;
}
#basket-type2 a .icon-type6 {
  background: url(/images/lumpsum-icon.png) center no-repeat;
}
#basket-type2 a .icon-type-inner6 {
  background: url(/images/lumpsum-icon_hvr.png) center no-repeat;
}
#basket-type2 a label {
  display: none;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  font-size: 13px;
}
#basket-type2 a .rd {
  margin-top: 10px;
  margin-bottom: 10px;
}
#basket-type2 a input[type=radio] {
  display: none;
}
#basket-type2 a label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background-color: #e4e4e4;
  border: 3px solid #959595;
}
#basket-type2 a .rd label:before {
  border-radius: 8px;
}
#basket-type2 a input[type=radio]:checked + label:before {
  content: "\2022";
  color: #79c396;
  font-size: 35px;
  text-align: center;
  line-height: 10px;
  padding-left: 0px;
  border: 3px solid #00430b;
}
#basket-type2 #nav_baskt_1 {
  display: inline-block;
  border-bottom: 0px solid #ddd;
}
#basket-type2 #nav_baskt_1 li {
  display: inline-block;
}
#basket-type2 #nav_baskt_1 li.active > a, #basket-type2 #nav_baskt_1 li.active > a:hover, #basket-type2 #nav_baskt_1 li.active > a:focus {
  border: none;
  border-radius: 0px;
  color: #f47301;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-b, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-b:after, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-b:after {
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 104px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-b img, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 {
  background-color: #b6ede6;
  border: solid 4px #52c8b9;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1:after, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1:after, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1:after {
  background-color: #ffffff;
  background-image: url(/images/tick.png);
  background-repeat: no-repeat;
  background-position: 50% 100% !important;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1 img, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 img, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1 .tick, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 .tick, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 .tick {
  display: block;
  background: url(/images/tick.png);
  position: absolute;
  bottom: 0px;
  left: 50px;
  z-index: 99;
}
#basket-type2 #nav_baskt_1 li.active > a > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type2 #nav_baskt_1 li.active > a:hover > .icon-basket-inner1 li.active > a:hover > .icon-b:after, #basket-type2 #nav_baskt_1 li.active > a:focus > .icon-basket-inner1 li.active > a:hover > .icon-b:after {
  width: 96px;
  height: 96px;
  top: 12px;
  left: 12px;
}
#basket-type2 #nav_baskt_1 li > a {
  color: #000000;
  border: none;
  padding: 30px;
}
#basket-type2 #nav_baskt_1 li > a:hover, #basket-type2 #nav_baskt_1 li > a:focus {
  color: #000000;
  background: none;
}
#basket-type2 #nav_baskt_1 .nav li > a {
  padding: 25px;
}
#basket-type2 #nav_baskt_1 li > a > .icon-b {
  width: 128px;
  height: 126px;
  border-radius: 128px;
  position: relative;
  margin: 0 auto;
}
#basket-type2 #nav_baskt_1 li > a > .icon-b:after {
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 104px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 8px;
  left: 8px;
  content: '';
  z-index: 0;
}
#basket-type2 #nav_baskt_1 li > a > .icon-b img {
  position: relative;
  z-index: 100;
}
#basket-type2 #nav_baskt_1 li > a > .icon-basket-inner1 {
  background: #f6f6f6;
  border: solid 4px #e8e8e8;
}
#basket-type2 #nav_baskt_1 li > a > .icon-basket-inner1:after {
  background: #ffffff;
}
#basket-type2 #nav_baskt_1 li > a > .icon-basket-inner1 img {
  margin-top: 40px;
}
#basket-type2 #nav_baskt_1 li > a:hover > .icon-b:after {
  width: 96px;
  height: 96px;
  top: 12px;
  left: 12px;
}
#basket-type2 .description-header {
  background: #f6f6f6;
  border: 1px solid #e2e2e2;
  min-height: 77px;
  box-shadow: 3px 3px 5px #e4e4e4;
  font-family: "poppinsregular", poppins;
  font-size: 17px;
  padding: 10px;
  line-height: 27px;
}
#basket-type2 .border-table {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
#basket-type2 .table {
  margin-bottom: 0px;
}

/* Transaction Login */
@media (min-width: 426px) and (max-width: 768px) {
  #trans_login .navbar-default .navbar-nav > li > a {
    padding: 15px 20px;
    font-size: 13px;
  }
}
#trans_login #page-heading {
  background: url(/images/about-us.jpg) no-repeat center;
  background-size: cover;
}
#trans_login #page-content {
  min-height: 575px;
  padding-top: 150px;
}
@media (min-width: 426px) and (max-width: 768px) {
  #trans_login #page-content {
    padding-top: 125px;
  }
}
#trans_login #page-content .va-table {
  min-height: 442px;
}
#trans_login .green-bgstrip {
  background: #a60000;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
}
#trans_login .login {
  background: url(/images/transaction_Login_bg.png) no-repeat right;
  background-color: #fcfcfc;
  min-height: 296px;
  border: solid 1px #e6e6e6;
  border-radius: 6px;
  box-sizing: border-box;
  padding: 15px 0;
}
@media (min-width: 0) and (max-width: 991px) {
  #trans_login .login {
    background-image: none;
    min-height: 415px;
    margin-bottom: 15px;
  }
}
#trans_login .login label {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  width: 75px;
}
#trans_login .login label + input {
  float: left;
}
#trans_login .login input, #trans_login .login select {
  width: 80%;
  height: 45px;
  padding: 5px;
  line-height: 45px;
  margin-left: 0px;
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #e6e6e6;
  border-radius: 2px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
#trans_login .login input:focus, #trans_login .login select:focus, #trans_login .login button:focus {
  outline: none;
}
#trans_login .login select {
  width: 200px;
}
#trans_login .login button {
  background: #ff993f;
  background: -moz-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: -webkit-linear-gradient(top, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  background: linear-gradient(to bottom, #ff993f 50%, #ff7801 50%, #ff993f 50%, #ff7801 50%, #ff7801 50%);
  border: 0px;
  border-radius: 3px;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
  margin-left: 0px;
}
#trans_login .login button:focus {
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#trans_login .no-acc {
  text-decoration: none;
  color: #ee6a00;
  font-family: "poppinsmedium";
}
#trans_login .no-acc:hover {
  text-decoration: none;
  color: #000000;
}

/* Planning Web Area Entry Ends */

/*# sourceMappingURL=style.css.map */
