/*
 * Global Ignite Variables
 *
 * 1. Ignite custom typography settings for prose (See _prose.scss for explanation).
 *
 * 2. Establish custom spacing variables based on line height to
 *    facilitate vertical rhythm
 *
 * 3. Black/white colour variables
 *
 * 4. Brand visited & focused styles
 *
 * 5. Brand border
 *
 */
/* [1] */
/* [2] */
/* [3] */
/* [4] */
/* [5] */
/*
 * Mixins
 *
 * 1. Intrinsic ratios (eg: Used by _responsive-ratio)
 *
 * 2. Cross browser opacity
 *
 * 3. Font smoothing
 *
 * 4. Px to Em https://web-design-weekly.com/snippets/converts-pixels-to-ems-with-sass/
 *
 * 5. WebKit-style focus
 */
/*
 * Helpers
 *
 * 1. Useful within Display suite for removing margin from headings.
 *
 * 2. https://github.com/twbs/bootstrap/pull/12679
 *    Use in conjunction with .sr-only to only display content when it's focused.
 *    Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 *
 * 3. Bootstrap gutter killer
 *
 * 4. See Bootstrap. http://getbootstrap.com/css/#type-lists. Repeated here
 *    because it is a common 'helper'.
 *    Remove the default list-style and left margin on list items
 *    (immediate children only). This only applies to immediate children list
 *    items, meaning you will need to add the class for any nested lists as well.
 *
 * 5. Responsive margin top OOCSS spacing helpers.
 *    Ideally always using margin above your site building blocks for consistency.
 *
 * 6. Responsive padding top OOCSS spacing helpers.
 *    If a border is required above your site building block then use padding instead.
 *
 * 7. Use to offset elements within main body area.
 *
 */
/* line 28, ../scss/generic/_helpers.scss */
.has-no-margin-top {
  /* [1] */
  margin-top: 0 !important;
}

/* line 32, ../scss/generic/_helpers.scss */
.sr-only-focusable {
  /* [2] */
}
/* line 33, ../scss/generic/_helpers.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 44, ../scss/generic/_helpers.scss */
.no-gutter {
  /* [3] */
}
/* line 45, ../scss/generic/_helpers.scss */
.no-gutter[class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

/* line 51, ../scss/generic/_helpers.scss */
.list-unstyled {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* [4] */
/* [5] */
/* line 58, ../scss/generic/_helpers.scss */
.has-margin-top-base, .tool {
  margin-top: 0.75em;
  margin-top: 1.5em;
}

/* line 65, ../scss/generic/_helpers.scss */
.has-margin-top-and-half {
  margin-top: 1.5em;
  margin-top: 2.25em;
}

/* line 72, ../scss/generic/_helpers.scss */
.has-margin-top-double {
  margin-top: 1.5em;
  margin-top: 3em;
}

/* line 79, ../scss/generic/_helpers.scss */
.has-margin-top-triple {
  margin-top: 1.5em;
  margin-top: 3em;
  margin-top: 4.5em;
}

/* line 89, ../scss/generic/_helpers.scss */
.has-margin-top-half {
  margin-top: 0.75em;
}

/* [6] */
/* line 94, ../scss/generic/_helpers.scss */
.has-padding-top-base {
  padding-top: 0.75em;
  padding-top: 1.5em;
}

/* line 101, ../scss/generic/_helpers.scss */
.has-margin-top-and-half {
  padding-top: 1.5em;
  padding-top: 2.25em;
}

/* line 108, ../scss/generic/_helpers.scss */
.has-padding-top-double {
  padding-top: 1.5em;
  padding-top: 3em;
}

/* line 115, ../scss/generic/_helpers.scss */
.has-padding-top-triple {
  padding-top: 1.5em;
  padding-top: 3em;
  padding-top: 4.5em;
}

/* line 125, ../scss/generic/_helpers.scss */
.has-padding-top-half {
  padding-top: 0.75em;
}

/* line 129, ../scss/generic/_helpers.scss */
.has-border-top {
  border-top: 1px solid #dddfe0;
}

/* line 133, ../scss/generic/_helpers.scss */
.has-border-bottom {
  border-bottom: 1px solid #dddfe0;
}

/* line 137, ../scss/generic/_helpers.scss */
.has-offset-right {
  position: relative;
  margin-right: -40px !important;
  margin-right: -60px !important;
}

/* line 147, ../scss/generic/_helpers.scss */
.has-offset-left {
  position: relative;
  margin-left: -40px !important;
  margin-left: -60px !important;
}

/*
 * Breakpoints
 *
 * Map Bootstrap breakpoints to nice mixins
 */
/* line 1, ../scss/component/_more.scss */
.tool--more {
  margin: 30px 0;
}
/* line 4, ../scss/component/_more.scss */
.block:last-child > .tool--more {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  /* line 1, ../scss/component/_more.scss */
  .tool--more {
    margin: 50px 0;
  }
  /* line 11, ../scss/component/_more.scss */
  .block:last-child > .tool--more {
    margin-bottom: 25px;
  }
}

/* line 1, ../scss/component/_teaser.scss */
.tool__teaser {
  display: block;
  padding: 20px;
  color: #1f2c33;
  border-bottom: 1px solid rgba(82, 103, 115, 0.7);
}
@media (min-width: 768px) {
  /* line 1, ../scss/component/_teaser.scss */
  .tool__teaser {
    width: 50%;
    border: none;
    display: inline-block;
    vertical-align: top;
    padding: 10px 20px;
  }
}
@media (min-width: 992px) {
  /* line 1, ../scss/component/_teaser.scss */
  .tool__teaser {
    width: 25%;
    display: table-cell;
  }
  /* line 19, ../scss/component/_teaser.scss */
  .tool__teaser ~ .tool__teaser {
    border-left: 1px solid rgba(82, 103, 115, 0.7);
  }
}
@media (min-width: 1200px) {
  /* line 1, ../scss/component/_teaser.scss */
  .tool__teaser {
    padding: 15px 30px;
  }
}
/* line 28, ../scss/component/_teaser.scss */
.tool__teaser > h3 {
  margin: 0 0 12px 0;
  font-style: italic;
  font-size: 2.9rem;
}
/* line 33, ../scss/component/_teaser.scss */
.tool__teaser > h3:before {
  content: '';
  display: block;
  width: 100%;
  min-height: 120px;
  background-repeat: no-repeat;
  background-position: center;
}
/* line 43, ../scss/component/_teaser.scss */
.tool__teaser > p {
  margin: 0;
  font-size: 1.65rem;
}
/* line 48, ../scss/component/_teaser.scss */
.tool__teaser:hover, .tool__teaser:focus {
  text-decoration: none;
}
/* line 51, ../scss/component/_teaser.scss */
.tool__teaser:hover > h3, .tool__teaser:focus > h3 {
  text-decoration: underline;
}

/* line 57, ../scss/component/_teaser.scss */
.tool__teaser--calculator > h3:before {
  background-image: url('../images/tool-teaser--calculator.svg?1498701117');
  background-size: 80% auto;
}

/* line 58, ../scss/component/_teaser.scss */
.tool__teaser--bodyeffects > h3:before {
  background-image: url('../images/tool-teaser--bodyeffects.svg?1498701117');
  background-size: auto 70%;
}

/* line 59, ../scss/component/_teaser.scss */
.tool__teaser--cigarette > h3:before {
  background-image: url('../images/tool-teaser--cigarette.svg?1498701117');
  background-size: 50% auto;
}

/* line 60, ../scss/component/_teaser.scss */
.tool__teaser--history > h3:before {
  background-image: url('../images/tool-teaser--history.svg?1498701117');
  background-size: auto 70%;
}

/* line 1, ../scss/component/_cigarette.scss */
.tool__cigarette {
  position: relative;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  z-index: 100;
  max-width: 200px;
}
/* line 9, ../scss/component/_cigarette.scss */
.tool__cigarette + .tool__markers {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 200;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* line 19, ../scss/component/_cigarette.scss */
.tool__cigarette .tool__cigarette-ash {
  fill: #526773;
  -moz-animation-name: light;
  -webkit-animation-name: light;
  animation-name: light;
  -moz-animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* line 29, ../scss/component/_cigarette.scss */
.tool__cigarette-lit {
  max-width: 300px;
  height: 100%;
  position: relative;
  left: 50%;
  top: 42px;
  display: block;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  /* line 29, ../scss/component/_cigarette.scss */
  .tool__cigarette-lit {
    max-width: 75%;
    height: 120px;
  }
}
@media (min-width: 1200px) {
  /* line 29, ../scss/component/_cigarette.scss */
  .tool__cigarette-lit {
    height: 142px;
  }
}

/* line 50, ../scss/component/_cigarette.scss */
.no-borderimage .tool__cigarette-lit {
  height: 200px;
  top: 0;
}

/* line 55, ../scss/component/_cigarette.scss */
.tool__cigarette-lit-ash {
  fill: #526773;
  -moz-animation-name: light;
  -webkit-animation-name: light;
  animation-name: light;
  -moz-animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* line 64, ../scss/component/_cigarette.scss */
.tool__question {
  margin-bottom: 60px;
}
/* line 67, ../scss/component/_cigarette.scss */
.tool__question > .apply-currency ~ .tool__question-axis > li span {
  text-indent: -5px;
}
/* line 71, ../scss/component/_cigarette.scss */
.tool__question > .apply-currency ~ .tool__question-axis > li span:before, .tool__question:first-child > strong:before {
  content: '$';
}

/* line 1, ../scss/component/_popup.scss */
.tool__popup {
  overflow: hidden;
  background-color: rgba(241, 244, 246, 0.95);
  border: 1px solid #d5e0e6;
  padding: 20px;
  position: absolute;
  top: 60px;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  width: 100%;
  max-height: inherit;
  overflow: visible;
  height: auto;
  background-color: #f1f4f6;
  padding: 35px;
}
@media (min-width: 768px) {
  /* line 1, ../scss/component/_popup.scss */
  .tool__popup {
    max-width: 330px;
    left: 0;
    border-top: none;
    border-bottom: none;
    border-right: 7px solid rgba(178, 199, 210, 0.5);
  }
  /* line 23, ../scss/component/_popup.scss */
  .tool__popup:before, .tool__popup:after {
    content: '';
    width: calc(100vw - 20px);
    position: absolute;
    left: -1px;
    background: url('../images/tool__body-effect.svg?1498701117') no-repeat top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  /* line 23, ../scss/component/_popup.scss */
  .tool__popup:before, .tool__popup:after {
    width: 330px;
  }
}

@media (min-width: 1200px) {
  /* line 1, ../scss/component/_popup.scss */
  .tool__popup {
    left: 35px;
  }
}
@media (min-width: 1420px) {
  /* line 1, ../scss/component/_popup.scss */
  .tool__popup {
    left: 135px;
  }
}
/* line 47, ../scss/component/_popup.scss */
.js .tool__popup {
  opacity: 0;
  z-index: 0;
}
/* line 52, ../scss/component/_popup.scss */
.touch .tool__popup {
  z-index: -1000;
}
/* line 56, ../scss/component/_popup.scss */
.tool--body-effects .tool__popup {
  padding: 20px 28px;
}
/* line 60, ../scss/component/_popup.scss */
.tool__popup.js-active, .cancer-is-revealed .tool__popup.body-effect--cancer {
  opacity: 1;
  z-index: 499;
}
/* line 66, ../scss/component/_popup.scss */
.tool__popup:before {
  height: 30px;
  background-position: top center;
  top: -30px;
}
/* line 72, ../scss/component/_popup.scss */
.tool__popup:after {
  height: 30px;
  bottom: -30px;
  background-position: bottom center;
}
/* line 78, ../scss/component/_popup.scss */
.tool__popup h3, .tool__popup h4 {
  font-style: italic;
  margin: 5px 0 12px 0;
  text-align: center;
}
/* line 84, ../scss/component/_popup.scss */
.tool__popup h3 {
  font-size: 2rem;
  border-top: 1px rgba(82, 103, 115, 0.7) solid;
  padding-top: 18px;
}
@media (min-width: 768px) {
  /* line 84, ../scss/component/_popup.scss */
  .tool__popup h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
/* line 94, ../scss/component/_popup.scss */
.tool__popup h3 + h4 {
  margin: -12px 0 15px 0;
}
/* line 99, ../scss/component/_popup.scss */
.tool__popup h4 {
  color: #91a7aa;
  font-size: 2rem;
  margin: 0 0 15px 0;
}
/* line 105, ../scss/component/_popup.scss */
.tool__popup p {
  font-size: 1.4rem;
  margin-bottom: 0;
}
/* line 109, ../scss/component/_popup.scss */
.tool__popup p ~ p {
  margin-top: 10px;
}
@media (min-width: 768px) {
  /* line 105, ../scss/component/_popup.scss */
  .tool__popup p {
    font-size: 1.66rem;
  }
}
/* line 118, ../scss/component/_popup.scss */
.tool__popup ul {
  margin: 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  /* line 118, ../scss/component/_popup.scss */
  .tool__popup ul {
    font-size: 1.66rem;
  }
}
/* line 127, ../scss/component/_popup.scss */
.tool__popup * + ul {
  margin-top: 10px;
}
/* line 131, ../scss/component/_popup.scss */
.tool__popup img {
  max-width: 100%;
  height: auto;
}
/* line 135, ../scss/component/_popup.scss */
.tool__popup img + h3 {
  margin-top: 15px;
}
/* line 140, ../scss/component/_popup.scss */
.tool__popup a {
  text-decoration: underline;
}

/* line 1, ../scss/component/_overlay.scss */
.tool__overlay {
  width: 100%;
  height: 100%;
  background-color: #1f2c33;
  color: #ffffff;
  z-index: 499;
  padding: 1.5em;
}
/* line 9, ../scss/component/_overlay.scss */
.tool__overlay > .btn--close {
  z-index: 299;
  position: absolute;
  top: 20px;
  right: 20px;
}
/* line 16, ../scss/component/_overlay.scss */
.no-js .tool__overlay > .btn--close {
  display: none;
}
/* line 20, ../scss/component/_overlay.scss */
.js .tool__overlay {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}
/* line 25, ../scss/component/_overlay.scss */
.js .tool__overlay.js-active {
  display: block;
}

/* Create a positioning context */
/* line 20, ../scss/tool.scss */
.tool__inner {
  position: relative;
}
