/* 
 * 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: "open_sansregular";
  font-size: 15px;
  background: #ffffff;
  color: #000000;
  line-height: 22px;
}

a {
  text-decoration: none !important;
  color: inherit;
}
a:hover {
  color: #ff9323;
}

.black {
  color: #000000 !important;
}

.blue {
  color: #005598 !important;
}

.orange {
  color: #ff9323 !important;
}

.white {
  color: #ffffff !important;
}

.green {
  color: #06539b !important;
}

.yellow {
  color: #ffe001 !important;
}

.grey {
  color: #999999 !important;
}

.terquais {
  color: #07c8b8 !important;
}

.dark-green {
  color: #008788 !important;
}

.brown {
  color: #675140 !important;
}

.color-prime {
  color: #005598;
}

.color-secondry {
  color: #ff9323;
}

.grey-blue {
  color: #0c3152;
}

.dark-grey {
  color: #797979;
}

.red {
  color: #ff9323 !important;
}

.purple {
  color: #2d5391 !important;
}

.turquois-light {
  color: #53b9d0 !important;
}

.turquois-dark {
  color: #008e89 !important;
}

.green-light {
  color: #8be411 !important;
}

.rupee {
  font-family: "rupee_foradianregular";
}

.roboto-reg {
  font-family: "robotoregular", Roboto;
}

.roboto-light {
  font-family: "robotolight";
}

.roboto-med {
  font-family: "robotomedium";
}

.roboto-bold {
  font-family: "robotobold";
}

.opensans-reg {
  font-family: "open_sansregular";
}

.opensans-semibold {
  font-family: "open_sanssemibold";
}

.opensans-bold {
  font-family: "open_sansbold";
}

.poppins-reg {
  font-family: "poppinsregular";
}

.poppins-med {
  font-family: "poppinsmedium";
}

.poppins-semibold {
  font-family: "poppinssemibold";
}

.ptsans-bold {
  font-family: "PTSans-Bold";
}

.merrisans-reg {
  font-family: "MerriweatherSans-Regular";
}

.merrisans-bold {
  font-family: "MerriweatherSans-Bold";
}

.merrisans-light {
  font-family: "MerriweatherSans-Light";
}

.bg-black {
  background: #000000;
}

.bg-blue {
  background: #005598;
}

.bg-yellow {
  background: #ffe001;
}

.bg-green {
  background: #008788;
}

.bg-light-green {
  background: #8dc023;
}

.bg-white {
  background: #ffffff;
}

.bg-grey {
  background: #56595c;
}

.bg-color-prime {
  background: #005598;
}

.bg-color-secondry {
  background: #ff9323;
}

.bg-brown {
  background: #675140;
}

.bg-turquois {
  background: #52c8b9;
}

.bg-red {
  background: #ff9323;
}

.bg-orange {
  background: #ff9323;
}

.bg-green-light {
  background: #8be411;
}

.bg-color-prime-border {
  border-color: #003865;
}

.bg-color-secondry {
  border-color: #ef7a00;
}

.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 #ftr-section-2 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;
  }

  .sm-margin-top-20 {
    margin-top: 20px;
  }
}
@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: #005598;
  font-weight: 700;
}

.va-table {
  display: table;
  width: 100%;
  min-height: 100vh;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.btn-custom {
  padding: 15px 15px;
  border-radius: 100vw;
  outline: none;
}
.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);
  outline: none;
}
.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;
  outline: none;
}

.font-300 {
  font-weight: 300;
}

.font-400, body {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-700 {
  font-weight: 700;
}

.font-size-58 {
  font-size: 58px;
  line-height: 58px;
}

.font-size-53 {
  font-size: 53px;
  line-height: 53px;
}

.font-size-40 {
  font-size: 40px;
  line-height: 40px;
}

.font-size-38 {
  font-size: 38px;
  line-height: 38px;
}

.font-size-36 {
  font-size: 36px;
  line-height: 36px;
}

.font-size-34 {
  font-size: 34px;
  line-height: 34px;
}

.font-size-33 {
  font-size: 33px;
  line-height: 33px;
}

.font-size-32 {
  font-size: 32px;
  line-height: 32px;
}

.font-size-30 {
  font-size: 30px;
  line-height: 30px;
}

.font-size-28 {
  font-size: 28px;
  line-height: 28px;
}

.font-size-26 {
  font-size: 26px;
  line-height: 26px;
}

.font-size-25 {
  font-size: 25px;
  line-height: 25px;
}

.font-size-24 {
  font-size: 24px;
  line-height: 24px;
}

.font-size-23 {
  font-size: 23px;
  line-height: 23px;
}

.font-size-22 {
  font-size: 22px;
  line-height: 22px;
}

.font-size-20 {
  font-size: 20px;
  line-height: 27px;
}

.font-size-18 {
  font-size: 19px;
  line-height: 19px;
}

.font-size-18 {
  font-size: 18px;
  line-height: 18px;
}

.font-size-17 {
  font-size: 17px;
  line-height: 17px;
}

.font-size-16 {
  font-size: 16px;
  line-height: 16px;
}

.font-size-15 {
  font-size: 15px;
  line-height: 15px;
}

.font-size-14 {
  font-size: 14px;
  line-height: 14px;
}

.font-size-13 {
  font-size: 13px;
  line-height: 13px;
}

.font-size-12 {
  font-size: 12px;
  line-height: 12px;
}

.font-size-11 {
  font-size: 11px;
  line-height: 11px;
}

.font-size-10 {
  font-size: 10px;
}

.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-35 {
  margin-top: 35px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-100 {
  margin-top: 100px;
}

.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;
}

.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-top-30 {
  padding-top: 30px;
}

.padding-top-60 {
  padding-top: 60px;
}

.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;
}

.padding-left-5 {
  padding-left: 5px;
}

.padding-left-10 {
  padding-left: 10px;
}

.padding-left-25 {
  padding-left: 25px;
}

.padding-right-5 {
  padding-right: 5px;
}

.padding-right-10 {
  padding-right: 10px;
}

.padding-right-25 {
  padding-right: 25px;
}

.padding-left-right40 {
  padding-left: 40px;
  padding-right: 40px;
}

/*@import '../modules/_navigation.scss';*/
/* 	Planning Web Area */
/* Planning Web Area Entry */
#entry {
  width: 100%;
  height: 95px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #8b755a;
}
#entry .img-container {
  width: 100%;
  height: inherit;
  background: url(/images/bg.jpg) no-repeat center top;
  background-color: #816d53;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
  background-size: cover;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#entry .btn-custom {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
}
#entry .bg-blue {
  background: rgba(0, 85, 152, 0.83);
  float: right;
}
#entry .bg-yellow {
  background: rgba(255, 224, 1, 0.83);
  float: left;
}
@media (min-width: 0) and (max-width: 991px) {
  #entry .bg-blue, #entry .bg-yellow {
    width: 100%;
    float: none;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
#entry .blur {
  -moz-filter: blur(20px);
  -o-filter: blur(20px);
  -ms-filter: blur(20px);
  -webkit-filter: blur(20px);
  filter: blur(20px);
  overflow: hidden;
}
@media (min-width: 0) and (max-width: 991px) {
  #entry .navbar-header {
    min-height: 95px;
  }
  #entry .navbar-fixed-top .navbar-collapse {
    background-color: #000000;
    max-height: 400px;
  }
  #entry .navbar-fixed-top .navbar-collapse .navbar-nav {
    margin-top: 0px;
  }
  #entry .navbar-fixed-top .navbar-collapse .navbar-nav li {
    text-align: left;
  }
}

#planning-type {
  min-height: calc(100vh - 70px);
  margin-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 768px) {
  #planning-type {
    margin-top: 130px;
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #planning-type {
    padding-top: 50px;
  }
}
#planning-type .va-table {
  min-height: calc(100vh - 70px);
}
#planning-type .margin-bottom-30 {
  margin-bottom: 100px;
}
@media (min-width: 0px) and (max-width: 768px) {
  #planning-type .margin-bottom-30 {
    margin-bottom: 50px;
  }
}
#planning-type a .icon {
  width: 126px;
  height: 67px;
  border-radius: 126px;
  position: relative;
  margin: 0 auto;
  letter-spacing: 10;
}
#planning-type a .icon + div {
  letter-spacing: 10;
}
#planning-type a .icon + div + div {
  letter-spacing: 5px;
}
#planning-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: 9px;
  left: 9px;
  content: '';
  z-index: 0;
}
#planning-type a .icon img {
  position: relative;
  z-index: 100;
}
#planning-type a:hover .icon:after {
  width: 96px;
  height: 96px;
  top: 14px;
  left: 14px;
}

/* Planning Web Area Entry Ends */
/* Planning */
.blur {
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  -webkit-filter: blur(10px);
  filter: blur(10px);
  overflow: hidden;
}

#planning .row {
  margin-top: 22px;
  margin-bottom: 10px;
}
#planning .btn-custom {
  font-style: italic;
  padding: 10px 100px;
  border-radius: 50px;
}
@media screen and (max-width: 425px) {
  #planning .btn-custom {
    padding: 8px  10px;
  }
}
@media screen and (max-width: 425px) {
  #planning .custom {
    padding: 8px 14px;
  }
}
#planning .carousel-inner > .item {
  padding: 10px 0px;
  box-sizing: border-box;
}

#planning-type {
  min-height: calc( 100vh - 95px);
}

#planning-type .va-table {
  min-height: calc( 100vh - 95px);
}

#planning-type .margin-bottom-30 {
  margin-bottom: 45px;
}

rzslider {
  margin: 0 auto;
  height: 18px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  rzslider {
    margin-top: 10px;
  }
}
@media screen and (min-width: 767px) and (max-width: 991px) {
  rzslider {
    margin-top: 10px;
  }
}
rzslider .rz-bar {
  height: 6px;
}
rzslider .rz-bubble {
  display: none;
}
rzslider .rz-pointer {
  width: 14px;
  height: 23px;
  top: -8px;
  backgrount: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 11px;
}
rzslider .rz-pointer:after {
  display: none;
}

rzslider.terquais-bar .rz-bar {
  background-color: #dedede;
}
rzslider.terquais-bar .rz-selection {
  background-color: #2d5391;
}
rzslider.terquais-bar .rz-pointer {
  background-color: #7457be;
}

rzslider.blue-bar .rz-bar {
  background-color: #dedede;
}
rzslider.blue-bar .rz-selection {
  background-color: #005598;
}
rzslider.blue-bar .rz-pointer {
  background-color: #1a6eda;
}

rzslider.black-bar .rz-bar {
  background-color: #dedede;
}
rzslider.black-bar .rz-selection {
  background-color: #000000;
}
rzslider.black-bar .rz-pointer {
  background-color: #000;
}

rzslider.purple-bar .rz-bar {
  background-color: #dedede;
}
rzslider.purple-bar .rz-selection {
  background-color: #ff9323;
}
rzslider.purple-bar .rz-pointer {
  background-color: #af001c;
}

rzslider.orange-bar .rz-bar {
  background-color: #dedede;
}
rzslider.orange-bar .rz-selection, rzslider.orange-bar .rz-pointer {
  background-color: #ff9323;
}

rzslider.red-bar .rz-bar {
  background-color: #dedede;
}
rzslider.red-bar .rz-selection, rzslider.red-bar .rz-pointer {
  background-color: #ff9323;
}

rzslider.yellow-bar .rz-bar {
  background-color: #dedede;
}
rzslider.yellow-bar .rz-selection, rzslider.yellow-bar .rz-pointer {
  background-color: #ffe001;
}

rzslider.green-bar .rz-bar {
  background-color: #dedede;
}
rzslider.green-bar .rz-selection, rzslider.green-bar .rz-pointer {
  background-color: #005598;
}

rzslider.prime-bar .rz-bar {
  background-color: #dedede;
}
rzslider.prime-bar .rz-selection, rzslider.prime-bar .rz-pointer {
  background-color: #005598;
}

#plannning-type-select .navbar-default {
  border-bottom: none;
  border-bottom: 1px solid #d6d6d6;
  box-shadow: 0 4px 5px -2px #e6e4e5;
}

#planning .navbar-default {
  border-bottom: none;
  border-bottom: 1px solid #d6d6d6;
  box-shadow: 0 4px 5px -2px #e6e4e5;
}
#planning .navnavgation {
  position: fixed !important;
  z-index: 9999;
}

#planning-your-goal {
  min-height: calc( 100vh - 110px );
  margin-top: 70px;
  box-sizing: border-box;
}
#planning-your-goal .va-table {
  min-height: calc( 100vh - 83px );
}
#planning-your-goal .margin-bottom-30 {
  margin-bottom: 50px;
}
#planning-your-goal .carousel-control {
  width: auto;
  color: #cccccc;
}
#planning-your-goal .carousel-control.left, #planning-your-goal .carousel-control.right {
  background-image: none;
}
@media (min-width: 0) and (max-width: 991px) {
  #planning-your-goal .carousel-control.left, #planning-your-goal .carousel-control.right {
    display: none;
  }
}
#planning-your-goal .result-box {
  width: 100%;
  min-height: 135px;
  background-color: #ffffff;
  border-radius: 11px;
  border: solid 3px rgba(163, 163, 163, 0.67);
  box-sizing: border-box;
}
#planning-your-goal .nav-pills > li > a:hover:after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: -10px;
  border-top: solid 10px transparent;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
#planning-your-goal .nav > li > a {
  padding: 8px 10px;
}

.input-container {
  margin: 15px 0;
}

.radio {
  margin: 0 auto;
  list-style: none;
  padding: 0;
  width: 100%;
}
.radio input[type=radio] {
  display: none;
}
.radio input[type=radio] + label {
  border: solid 1px #f6e6b7;
  background: rgba(255, 219, 113, 0.16);
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  border-radius: 3px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 5px 6px;
  position: relative;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
}
.radio input[type=radio] + label .check {
  display: none;
  background: url("/images/check.png") no-repeat;
  position: absolute;
  top: 2px;
  left: 50%;
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .radio {
    margin-left: 0px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 767px) and (max-width: 991px) {
  .radio {
    margin-top: 10px;
    margin-left: 105px;
  }
}
.radio li {
  float: left;
  padding: 0 5px;
}
@media (min-width: 0px) and (max-width: 991px) {
  .radio li {
    width: auto;
    padding: 0 5px;
    margin-bottom: 10px;
  }
}
.radio li input:checked + label {
  background: #e8f9f6;
  border: 1px solid #ade6da;
}
.radio li input:checked + label .check {
  display: block;
  background: url("/images/check.png") no-repeat;
  position: absolute;
  top: -8px;
  left: -6px;
  width: 16px;
  height: 16px;
}
.radio li:last-of-type {
  padding-right: 0px;
}

.inr-prefix {
  width: 100%;
  outline: none;
  border: none;
  border-bottom: solid 1px #e6e6e6;
  position: relative;
  padding-left: 35px;
  background: none;
}
.inr-prefix + lable {
  position: absolute;
  content: 'INR';
  font-size: 18px;
  color: #ff9323;
  top: 2px;
  left: 15px;
}

#planning-result {
  display: none;
  z-index: 110000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#planning-result .banner {
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  margin-bottom: 0px;
  display: table;
}

.form-area {
  width: 100%;
  height: 430px;
}
.form-area header {
  background: #005598;
  width: 100%;
  min-height: 105px;
  text-align: center;
  box-sizing: border-box;
  padding: 15px;
  color: #ffffff;
  position: relative;
}
.form-area header h2 {
  font-family: "open_sansregular";
  color: #ffffff;
  margin-bottom: 0px;
  margin-top: 0px;
}
@media (min-width: 991px) {
  .form-area header h2 {
    line-height: 75px;
  }
}
.form-area header a {
  text-align: center;
  color: #f2e8c5;
  text-decoration: underline;
  font-size: 13px;
}
.form-area header #close_form {
  position: absolute;
  right: 10px;
  top: 10px;
  border: solid 2px #ffffff;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
}
.form-area #main-form {
  height: 325px;
  background: #ffffff;
  padding: 15px;
}
.form-area #main-form tr {
  margin-top: 15px;
}
.form-area #main-form td {
  position: relative;
  padding-bottom: 20px;
}
.form-area #main-form input {
  width: 100%;
  border: none;
  border-bottom: solid 1px #e6e6e6;
  color: #675140;
  font-size: 13px;
  position: relative;
  outline: none;
  padding: 20px 0px 7px 0px;
  z-index: 10;
  background: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-area #main-form input + label {
  position: absolute;
  font-size: 13px;
  top: 0px;
  left: 0px;
  width: 100%;
  color: gray;
  font-weight: normal;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 20px 0;
  margin: 0;
}
.form-area #main-form input + label:after {
  content: '';
  position: absolute;
  bottom: 14px;
  margin: 0 auto;
  left: 0px;
  width: 0%;
  height: 2px;
  background: #ff9323;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-area #main-form input:focus {
  outline: none;
}
.form-area #main-form input:focus + label {
  font-size: 10px;
  padding: 0px;
  z-index: 20;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-area #main-form input:focus + label:after {
  bottom: -22px;
  width: 100%;
}
.form-area #main-form input:valid {
  background: #ffffff;
}
.form-area #main-form input:valid + label {
  font-size: 10px;
  padding: 0px;
  z-index: 20;
}
.form-area #main-form input:valid + label:after {
  bottom: -26px;
  width: 0%;
}
.form-area #main-form input[type=submit] {
  width: 200px;
  height: 50px;
  font-family: "open_sansregular";
  font-size: 18px;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  margin: 0 auto;
  background: #008788;
  padding: 0px;
}
.form-area #main-form tr:nth-child(3) input {
  width: 90%;
}
.form-area #main-form tr:nth-child(3) input + label {
  width: 90%;
}
.form-area #main-form tr:nth-child(4) td {
  padding-top: 15px;
}

/* Footer */
footer {
  position: relative;
}
footer #ftr-section-2 {
  background: #000000;
  min-height: 60px;
  color: #4d4d4d;
  font-size: 12px;
  line-height: 12px;
}
footer #ftr-section-2 .va-table {
  min-height: 60px;
}
footer #ftr-section-2 a {
  display: initial;
}
footer #ftr-section-2 ul {
  list-style: none;
}
footer #ftr-section-2 ul li {
  float: left;
  list-style: none;
  border-left: solid 1px gray;
  box-sizing: border-box;
  color: gray;
  padding: 0 10px;
  line-height: 12px;
}
footer #ftr-section-2 ul li:first-of-type {
  border-left: none;
}

/* 	Planning Web Area 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;
  /* 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";
}
#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";
}
#basket-type .font-fam2 {
  font-family: "poppinssemibold";
  font-weight: 600;
}
#basket-type .btn-custom {
  padding: 15px 30px;
  border-radius: 25px;
  background: #005598;
  border: 0px;
}
#basket-type .btn-custom:hover {
  outline: none;
  background: #ff9323;
  box-shadow: none;
}
#basket-type .btn-custom:focus {
  outline: none;
  background: #ff9323;
  box-shadow: none;
}
#basket-type .btn-custom-theme {
  padding: 7px 60px;
  margin-right: 10px;
  border-radius: 25px;
  background: #ff9323;
  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 #06539b;
}
#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 #06539b;
}
#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";
  font-size: 18px;
}
#basket-type .baskbgstrip1 {
  background: #005598;
  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: #ff9323;
  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: #005598;
  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: #008e89;
  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: #53b9d0;
  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: "robotoregular", Roboto;
  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-robotoreg', arial, helvetica, sans-serif;
  font-size: 10pt;
  color: #000000;
  font-weight: bold;
  BACKGROUND-COLOR: #52c8b9;
  border: 1px solid #008e89;
}

.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: 'robotoregular';
}
#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: "open_sansregular";
}
#basket-type2 .font-fam2 {
  font-family: "open_sanssemibold";
  font-weight: 600;
}
#basket-type2 .btn-custom {
  padding: 15px 30px;
  border-radius: 25px;
  background: #005598;
  border: 0px;
}
#basket-type2 .btn-custom:focus {
  outline: none;
  background: #ff9323;
  box-shadow: none;
}
#basket-type2 .btn-custom-theme {
  padding: 7px 60px;
  margin-right: 10px;
  border-radius: 25px;
  background: #ff9323;
  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";
}
#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: #005598;
  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: #005598;
  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: #005598;
  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: #008e89;
  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: #06539b;
  text-decoration: underline !important;
}
#basket-type2 .basket-type a.lnk:hover {
  color: #ff9323;
  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: "poppinssemibold";
  font-size: 16px;
  color: #333333 !important;
}
#basket-type2 a .risk-type-head p {
  font-family: "poppinsregular";
  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: #53b9d0;
  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: "robotoregular", Roboto;
  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: #005598;
  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: "robotomedium";
}
#trans_login .no-acc:hover {
  text-decoration: none;
  color: #000000;
}

/* Planning Web Area Entry Ends */

/*# sourceMappingURL=planning.css.map */
