@charset "UTF-8";
/**
To quickly centre a block element without having to worry about if there is any 
top or bottom margin already applied
*/
/**
When using ::before and ::after you'll always need these three, 
so we're saving two lines of code every time you use this.

Example:
div::after {
    @include pseudo;
    top: -1rem;
    left: -1rem;
    width: 1rem;
    height: 1rem;
}
*/
/**
Css triangle
This mixin takes all the hassle out of creating that triangle you'll see coming out of 
most traditional tooltips, all without images, you just specify it's colour,
how big you want it,
the direction it's going to come out of your element and you're done !
*/
/**
Placeholders
Example:
input,
textarea {
    @include input-placeholder {
        color: $grey;
    }
}
*/
/**
Media queries
Example:
.site-header {
    padding: 2rem;
    font-size: 1.8rem;
    @include mq('tablet-wide') {
        padding-top: 4rem;
        font-size: 2.4rem;
    }
}
*/
/**
Border Radius
*/
/**
Box Shadow
*/
/**
Box Sizing
*/
/**
Font Face
@param {Font} $fontFamily [myFont] - Font Family
@param {String} $eotFileSrc ['myFont.eot'] - Eot File Source
@param {String} $woffFileSrc ['myFont.woff'] - Woff File Source
@param {String} $ttfFileSrc ['myFont.ttf'] - Ttf File Source
@param {String} $svgFileSrc ['myFont.svg'] - Svg File Source
*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bold;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
  font-weight: 400;
}

h2 {
  font-size: 35px;
  font-weight: 300;
  text-align: center;
  letter-spacing: -0.93px;
}

@media screen and (min-width: 768px) {
  h2 {
    line-height: 60px;
    font-size: 56px;
  }
}
p, label {
  text-align: center;
  line-height: 30px;
  letter-spacing: 0.56px;
  margin-bottom: 10px;
  display: block;
  font-weight: 300;
  font-size: 15px;
}
@media screen and (max-width: 449px) {
  p, label {
    font-size: 16px;
  }
}

label {
  text-align: left;
}

@media screen and (min-width: 768px) {
  p, label {
    font-size: 20px;
  }
}
.card .row,
.form-section .row {
  margin-bottom: 50px;
}
.card input[type=text],
.card input[type=number],
.card input[type=email],
.form-section input[type=text],
.form-section input[type=number],
.form-section input[type=email] {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background: rgba(0, 0, 0, 0);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 3px solid;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  padding: 0 20px;
  font-weight: 300;
  margin-bottom: 20px;
}
.card input[type=text].placeholder,
.card input[type=number].placeholder,
.card input[type=email].placeholder,
.form-section input[type=text].placeholder,
.form-section input[type=number].placeholder,
.form-section input[type=email].placeholder {
  color: #fff;
  opacity: 0.5;
}
.card input[type=text]:-moz-placeholder,
.card input[type=number]:-moz-placeholder,
.card input[type=email]:-moz-placeholder,
.form-section input[type=text]:-moz-placeholder,
.form-section input[type=number]:-moz-placeholder,
.form-section input[type=email]:-moz-placeholder {
  color: #fff;
  opacity: 0.5;
}
.card input[type=text]::-moz-placeholder,
.card input[type=number]::-moz-placeholder,
.card input[type=email]::-moz-placeholder,
.form-section input[type=text]::-moz-placeholder,
.form-section input[type=number]::-moz-placeholder,
.form-section input[type=email]::-moz-placeholder {
  color: #fff;
  opacity: 0.5;
}
.card input[type=text]:-ms-input-placeholder,
.card input[type=number]:-ms-input-placeholder,
.card input[type=email]:-ms-input-placeholder,
.form-section input[type=text]:-ms-input-placeholder,
.form-section input[type=number]:-ms-input-placeholder,
.form-section input[type=email]:-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
}
.card input[type=text]::-webkit-input-placeholder,
.card input[type=number]::-webkit-input-placeholder,
.card input[type=email]::-webkit-input-placeholder,
.form-section input[type=text]::-webkit-input-placeholder,
.form-section input[type=number]::-webkit-input-placeholder,
.form-section input[type=email]::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.5;
}
.card input[type=text]:focus,
.card input[type=number]:focus,
.card input[type=email]:focus,
.form-section input[type=text]:focus,
.form-section input[type=number]:focus,
.form-section input[type=email]:focus {
  /* Rectangle: */
  outline: none;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 2px 0 #FF3FB4, 0 0 4px 0 #FF3FB4, 0 0 10px 0 #FF3FB4, 0 0 8px 0 #FF3FB4, 0 0 4px 0 #FF3FB4, inset 0 0 2px 0 #FF3FB4, inset 0 0 4px 0 #FF3FB4, inset 0 0 10px 0 #FF3FB4, inset 0 0 8px 0 #FF3FB4, inset 0 0 4px 0 #FF3FB4;
}
.card input[type=text].complete,
.card input[type=number].complete,
.card input[type=email].complete,
.form-section input[type=text].complete,
.form-section input[type=number].complete,
.form-section input[type=email].complete {
  background-color: #fff;
  color: #152A6D;
}
.card .radio-wrapper label.active .radio, .card .radio-wrapper label.active .checkbox,
.card .list-wrapper label.active .radio,
.card .list-wrapper label.active .checkbox,
.card .checkbox-wrapper label.active .radio,
.card .checkbox-wrapper label.active .checkbox,
.form-section .radio-wrapper label.active .radio,
.form-section .radio-wrapper label.active .checkbox,
.form-section .list-wrapper label.active .radio,
.form-section .list-wrapper label.active .checkbox,
.form-section .checkbox-wrapper label.active .radio,
.form-section .checkbox-wrapper label.active .checkbox {
  box-shadow: 0 0 2px 0 #FF3FB4, 0 0 4px 0 #FF3FB4, 0 0 10px 0 #FF3FB4, 0 0 8px 0 #FF3FB4, 0 0 4px 0 #FF3FB4, inset 0 0 2px 0 #FF3FB4, inset 0 0 4px 0 #FF3FB4, inset 0 0 10px 0 #FF3FB4, inset 0 0 8px 0 #FF3FB4, inset 0 0 4px 0 #FF3FB4;
  opacity: 1;
}
.card .radio-wrapper label.active .radio::after, .card .radio-wrapper label.active .checkbox::after,
.card .list-wrapper label.active .radio::after,
.card .list-wrapper label.active .checkbox::after,
.card .checkbox-wrapper label.active .radio::after,
.card .checkbox-wrapper label.active .checkbox::after,
.form-section .radio-wrapper label.active .radio::after,
.form-section .radio-wrapper label.active .checkbox::after,
.form-section .list-wrapper label.active .radio::after,
.form-section .list-wrapper label.active .checkbox::after,
.form-section .checkbox-wrapper label.active .radio::after,
.form-section .checkbox-wrapper label.active .checkbox::after {
  opacity: 1;
}
.card .checkbox-wrapper label,
.form-section .checkbox-wrapper label {
  position: relative;
  padding-left: 36px;
}
.card .checkbox-wrapper label .checkbox,
.form-section .checkbox-wrapper label .checkbox {
  position: absolute;
  left: 0;
  top: 0;
}
.card .radio::after,
.form-section .radio::after {
  background-color: #fff;
}
.card .checkbox, .card .radio,
.form-section .checkbox,
.form-section .radio {
  margin-right: 10px;
  border: 3px solid #fff;
  display: inline-block;
  position: relative;
  cursor: pointer;
  opacity: 0.15;
}
.card .checkbox input, .card .radio input,
.form-section .checkbox input,
.form-section .radio input {
  position: absolute;
  width: 100%;
  height: 100%;
  appearance: none;
  opacity: 0;
}
.card .checkbox::after, .card .radio::after,
.form-section .checkbox::after,
.form-section .radio::after {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: absolute;
  content: "";
  height: 18px;
  display: block;
  width: 18px;
  border-radius: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.card .checkbox.checkbox-blue, .card .radio.checkbox-blue,
.form-section .checkbox.checkbox-blue,
.form-section .radio.checkbox-blue {
  border-color: #152A6D;
}
.card .checkbox,
.form-section .checkbox {
  height: 20px;
  width: 20px;
  border-radius: 5px;
  transform: translateY(5px);
}
.card .checkbox::after,
.form-section .checkbox::after {
  border-radius: 3px;
  width: 17px;
  height: 17px;
  font-family: "fontello";
  content: "";
  line-height: 18px;
}
.card .radio,
.form-section .radio {
  height: 30px;
  width: 30px;
  border-radius: 30px;
  transform: translateY(8px);
}
.card .select-wrapper,
.form-section .select-wrapper {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background: rgba(0, 0, 0, 0);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 3px solid;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  font-weight: 300;
  position: relative;
}
.card .select-wrapper::after,
.form-section .select-wrapper::after {
  content: " ";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-image: url(../img/arrow-down.svg);
  height: 20px;
  width: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.card .select-wrapper .select-label,
.form-section .select-wrapper .select-label {
  position: absolute;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  opacity: 0.5;
}
.card .select-wrapper select,
.form-section .select-wrapper select {
  line-height: 60px;
  height: 60px;
  padding: 0 20px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  appearance: none;
  color: #fff;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.card .select-wrapper select::-ms-expand,
.form-section .select-wrapper select::-ms-expand {
  display: none;
  background: #152A6D;
}
.card .select-wrapper select:focus,
.form-section .select-wrapper select:focus {
  outline: none;
  color: #000;
  background: #fff;
  border-color: #fff;
  box-shadow: 2px 2px 2px 0 #FF3FB4, 2px 2px 4px 0 #FF3FB4, 2px 2px 10px 0 #FF3FB4, 2px 2px 8px 0 #FF3FB4, 2px 2px 4px 0 #FF3FB4, inset 0 0 2px 0 #FF3FB4, inset 0 0 4px 0 #FF3FB4, inset 0 0 10px 0 #FF3FB4, inset 0 0 8px 0 #FF3FB4, inset 0 0 4px 0 #FF3FB4;
}
.card .select-wrapper.complete select,
.form-section .select-wrapper.complete select {
  color: #152A6D;
  background-color: #fff;
}
.card .list-wrapper,
.form-section .list-wrapper {
  background: rgba(0, 0, 0, 0);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 3px solid;
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}
.card .list-wrapper label,
.form-section .list-wrapper label {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  margin: 0;
  border-bottom: 3px solid;
  border-color: rgba(255, 255, 255, 0.15);
  padding: 10px 15px 20px;
}
.card .list-wrapper label:last-of-type,
.form-section .list-wrapper label:last-of-type {
  border-bottom: 0;
}
.card .list-wrapper label.active,
.form-section .list-wrapper label.active {
  background-color: #fff;
  color: #152A6D;
}
.card .list-wrapper label.active .radio,
.form-section .list-wrapper label.active .radio {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.card .list-wrapper label.active .radio input,
.form-section .list-wrapper label.active .radio input {
  outline: none;
}
.card .list-wrapper .radio,
.form-section .list-wrapper .radio {
  opacity: 1;
  width: 25px;
  height: 25px;
}
.card .list-wrapper .radio.fair,
.form-section .list-wrapper .radio.fair {
  background-color: #FAB78E;
}
.card .list-wrapper .radio.medium,
.form-section .list-wrapper .radio.medium {
  background-color: #E17F46;
}
.card .list-wrapper .radio.dark,
.form-section .list-wrapper .radio.dark {
  background-color: #B45735;
}
.card .list-wrapper .radio::after,
.form-section .list-wrapper .radio::after {
  display: none;
}

.btn {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-color: #D02185;
  color: #fff;
  text-align: center;
  display: block;
  height: 60px;
  line-height: 60px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  border: 0;
  overflow: hidden;
}
@media (min-width: 450px) {
  .btn {
    font-size: 20px;
  }
}
.btn::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  font-family: "fontello";
  content: "";
  height: 20px;
  width: 20px;
  line-height: 22px;
  opacity: 0.65;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.btn::before {
  content: "";
  display: block;
  touch-action: none;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: #D02185;
  z-index: -10;
  opacity: 0;
  transition: opacity 300ms ease;
}
.btn:hover, .btn:focus {
  color: #fff;
  opacity: 1;
}
.btn:hover::before, .btn:focus::before {
  opacity: 1;
}
.btn:hover::after, .btn:focus::after {
  opacity: 1;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn.btn-no-arrow::after {
  display: none;
}
.btn.btn-half {
  max-width: 49%;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
}
.btn.btn-half:last-of-type {
  margin-right: 0;
}
.btn.navigation-back::after {
  transform: translateY(-40%) rotate(180deg);
  right: auto;
  left: 20px;
}
.btn.btn-circle {
  padding: 0;
  margin: 0;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: block;
  border: solid 2px #152A6D;
  color: #152A6D;
  position: relative;
}
.btn.btn-circle::before, .btn.btn-circle::after {
  content: none;
}
.btn.btn-circle .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.btn.btn-circle .icon::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  line-height: 26px;
}
.btn.btn-circle * {
  color: #152A6D;
}
.btn.btn-green {
  color: #fff;
  background: #69e662;
}
.btn.btn-black {
  background-color: #424242;
  color: #fff;
}
.btn.btn-black:hover {
  background-color: #212121;
  color: white;
}
.btn.btn-white {
  background-color: #fff;
  color: #152A6D;
}
.btn.btn-white:hover {
  background-color: #D02185;
  color: #fff;
  background-image: none;
}
.btn.btn-active {
  background-image: #D02185;
  color: #fff;
}
.btn.btn-active:hover {
  background-image: none;
  background-color: #D02185;
  color: #fff;
}
.btn-info {
  background: transparent;
}

@media screen and (max-width: 767px) {
  .btn.btn-half {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    display: block;
  }
}
@media screen and (max-width: 449px) {
  .slick-arrow {
    padding: 5px;
  }
}
.breast-feeding-question, .pregnant-optin {
  display: none;
}

body {
  min-height: 500px;
  background: #3149ab;
  background: -moz-linear-gradient(left, #3149ab 0%, #232d5d 100%);
  background: -webkit-linear-gradient(left, #3149ab 0%, #232d5d 100%);
  background: linear-gradient(to right, #3149ab 0%, #232d5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3149ab", endColorstr="#232d5d", GradientType=1);
  color: #fff;
  font-family: "Oswald", sans-serif;
}
body img, body svg {
  max-width: 100%;
}
body section {
  box-sizing: border-box;
  min-height: 100vh;
  width: 100%;
  display: none;
  margin-bottom: 50px;
  padding: 50px 20px 0;
}
body section.active {
  display: block;
}
body section .header {
  max-width: 620px;
  margin: 0 auto;
  margin-bottom: 50px;
}
body section .header h2 {
  margin-top: 0;
  margin-bottom: 15px;
}
body section .header p {
  margin-top: 0;
}
@media screen and (max-width: 449px) {
  body section .header p {
    font-size: 18px;
  }
}
body section.slide-3 .form-section {
  margin-bottom: 40px;
}
body .form-section {
  max-width: 380px;
  margin: 0 auto;
}
body .form-section p {
  text-align: left;
}
body .form-section .footnote {
  margin-top: 40px;
}
body .form-section .footnote p {
  font-size: 12px;
  line-height: 20px;
}
body .results-container {
  max-width: 500px;
  margin: 0 auto;
}
body .results-container .results-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
body .results-container .results-wrapper > p {
  text-transform: uppercase;
  text-align: center;
  font-size: 15px;
}

.section-footer {
  background-color: #3a4573;
  margin-top: 100px;
  padding: 30px 20px;
  -webkit-box-shadow: 0 -10px 20px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 -10px 20px 0 rgba(0, 0, 0, 0.05);
  position: relative;
}
.section-footer p {
  margin: 0;
}
.section-footer .navigation-back {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  cursor: pointer;
}
.section-footer .info {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  cursor: pointer;
}

.preload {
  text-align: center;
  display: none;
  margin: 20px 0;
}
.preload img {
  max-width: 20px;
}

.white-area-wrapper {
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 50px;
  color: #152A6D;
  text-align: center;
  background-color: #fff;
}
.white-area-wrapper .white-area {
  max-width: 800px;
  padding: 50px 20px;
  margin: 0 auto;
}
.white-area-wrapper .white-area .title {
  margin-top: 0;
  font-size: 24px;
  letter-spacing: 0.25px;
  line-height: 32px;
}
.white-area-wrapper .white-area p {
  font-size: 18px;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 32px;
}
.white-area-wrapper .dynamic-content-wrapper {
  position: relative;
}
.white-area-wrapper .dynamic-content-wrapper .grey-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 200px;
  background: #F4F4F4;
}
.white-area-wrapper .dynamic-content-wrapper .title, .white-area-wrapper .dynamic-content-wrapper .dynamic-content {
  position: relative;
  z-index: 1;
}
.white-area-wrapper .dynamic-content-wrapper .title {
  padding: 50px 20px 30px;
}
.white-area-wrapper .dynamic-content-wrapper .title h3 {
  font-size: 32px;
  color: #232E5E;
  letter-spacing: 0;
  text-align: center;
  line-height: 44px;
  margin: 0;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content {
  width: 1200;
  max-width: 90%;
  margin: 0 auto;
  padding-bottom: 20px;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content::after {
  content: "";
  clear: both;
  display: table;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .col {
  display: inline-block;
  vertical-align: top;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .col.one-third {
  width: 32%;
  margin-right: 2%;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .col.one-third:last-of-type {
  margin-right: 0;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .col.one-third:not(:first-of-type) {
  margin-left: -4px;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .item {
  position: relative;
  display: block;
  text-align: center;
  text-decoration: none;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .item img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .item span {
  background-color: #fff;
  padding: 10px 20px;
  font-size: 26px;
  color: #232E5E;
  letter-spacing: 0.2px;
  text-align: center;
  line-height: 34px;
  font-weight: lighter;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .item .content {
  display: block;
  margin: -25px 40px 0;
  z-index: 1;
  position: relative;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .item .content span {
  display: block;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .item .content span i {
  position: relative;
  font-style: normal;
  font-size: 14px;
  color: #232E5E;
  letter-spacing: 0.65px;
  text-align: center;
  line-height: 12px;
  text-transform: uppercase;
}
.white-area-wrapper .dynamic-content-wrapper .dynamic-content .item .content span i:after {
  position: absolute;
  display: block;
  content: "";
  height: 1px;
  width: 20px;
  background-color: #999;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: 0 auto;
}

.hide-footer .section-footer {
  display: none;
}

.test-result-container {
  border: 1px solid rgba(255, 63, 180, 0.7);
  padding: 8px;
  height: 141px;
  width: 141px;
  position: relative;
  margin: 0 auto;
  border-radius: 100px;
  margin-top: 20px;
}
.test-result-container:before, .test-result-container:after {
  content: " ";
  position: absolute;
  border-radius: 100px;
}
.test-result-container:before {
  opacity: 0.3;
  border: 1px solid #FF3FB4;
  left: -10px;
  top: -10px;
  height: 175px;
  width: 175px;
}
.test-result-container:after {
  opacity: 0.1;
  border: 1px solid #FF3FB4;
  left: -15px;
  top: -15px;
  height: 185px;
  width: 185px;
}

.test-result-wrapper {
  background: #fff;
  box-sizing: border-box;
  border: 0;
  height: 141px;
  width: 141px;
  border-radius: 100px;
  display: block;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 19px 0 #FF3FB4, 0 0 12px 0 #FF3FB4, 0 0 7px 0 #FF3FB4;
  padding: 10px;
}
.test-result-wrapper .test-result {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #152A6D;
  font-size: 24px;
  text-transform: capitalize;
}

@media screen and (min-width: 768px) {
  body section {
    padding-top: 50px;
  }
  body section .header h2 {
    margin-bottom: 30px;
  }
}
.food-consumption-form {
  margin-left: -20px;
  margin-right: -20px;
}
.food-consumption-form .food-option {
  margin: 0 12px;
  width: 300px;
  height: 380px;
  box-sizing: border-box;
  display: none;
}
@media (min-width: 450px) {
  .food-consumption-form .food-option {
    width: 400px;
  }
}
.food-consumption-form .food-option.slick-slide {
  display: inline-block;
  float: none;
  vertical-align: middle;
}
.food-consumption-form .food-option--info figure .food-option__info {
  opacity: 1 !important;
  visibility: visible !important;
}
.food-consumption-form .food-option--info .btn-info {
  background: #152A6D;
}
.food-consumption-form .food-option--info .btn-info .icon:before {
  color: #fff;
}
.food-consumption-form .food-option.final-form {
  height: 450px;
}
@media screen and (max-width: 449px) {
  .food-consumption-form .food-option.final-form {
    height: 500px;
  }
}
.food-consumption-form .food-option.privacy-policy-height {
  height: 500px;
}
@media screen and (max-width: 449px) {
  .food-consumption-form .food-option.privacy-policy-height {
    height: 580px;
  }
}
.food-consumption-form .food-option__inner {
  transform: scale(0.79);
  transition: all 0.3s ease;
  opacity: 0.3;
  overflow: hidden;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: auto;
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}
.food-consumption-form .food-option__inner p {
  font-size: 16px;
}
.food-consumption-form .food-option__inner figure {
  margin: 0;
  position: relative;
  background: white;
}
.food-consumption-form .food-option__inner figure .food-option__serves {
  font-size: 20px;
  padding: 10px;
  color: #152A6D;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}
.food-consumption-form .food-option__inner figure .food-option__title {
  font-size: 20px;
  padding: 10px;
  color: #152A6D;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
}
.food-consumption-form .food-option__inner figure .food-option__description {
  padding: 10px;
  color: #152A6D;
  position: absolute;
  left: 0;
  bottom: 14px;
  z-index: 100;
  line-height: 22px;
}
.food-consumption-form .food-option__inner figure .food-option__info {
  color: #152A6D;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  align-items: center;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 99;
}
.food-consumption-form .food-option__inner figure .food-option__info p {
  font-size: 20px;
  text-align: left;
}
.food-consumption-form .food-option__inner figure .btn-info {
  position: absolute;
  right: 5px;
  bottom: 24px;
  width: 30px;
  height: 30px;
  z-index: 100;
}
.food-consumption-form .food-option__inner figure .image {
  display: block;
  height: 325px;
  width: 100%;
  z-index: 98;
  position: relative;
  box-sizing: border-box;
  padding: 40px 0;
}
.food-consumption-form .food-option__inner figure .image__src {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.food-consumption-form .food-option__inner figure::after, .food-consumption-form .food-option__inner figure::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  background: white;
  z-index: 1;
}
.food-consumption-form .food-option__inner figure::after {
  bottom: 0;
}
.food-consumption-form .food-option__inner .food-option__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
}
.food-consumption-form .food-option__inner .food-option__actions .btn {
  flex: 1;
  border-radius: 0;
}
.food-consumption-form .food-option__inner .food-option__actions .btn:not(.btn-submit)::after {
  content: none;
}
.food-consumption-form .food-option__inner .food-option__actions::after {
  content: "";
  display: block;
  clear: both;
}
.food-consumption-form .food-option__inner.card {
  overflow: hidden;
  background: white;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 100%;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}
.food-consumption-form .food-option__inner.card p {
  color: #152A6D;
  text-align: inherit;
}
.food-consumption-form .food-option__inner.card input {
  color: #152A6D !important;
  border-color: #152A6D !important;
}
.food-consumption-form .food-option__inner.card input:focus {
  box-shadow: 0 0 2px 0 #FF3FB4, 0 0 4px 0 #FF3FB4, 0 0 10px 0 #FF3FB4, 0 0 8px 0 #FF3FB4, 0 0 4px 0 #FF3FB4;
}
.food-consumption-form .food-option__inner.card input::placeholder {
  color: #152A6D !important;
  opacity: 1;
  letter-spacing: 0.6px;
}
.food-consumption-form .food-option__inner.card label {
  color: #152A6D;
}
.food-consumption-form .food-option__inner.card label.active .checkbox {
  box-shadow: 0 0 2px 0 #FF3FB4, 0 0 4px 0 #FF3FB4, 0 0 10px 0 #FF3FB4, 0 0 8px 0 #FF3FB4, 0 0 4px 0 #FF3FB4;
}
.food-consumption-form .food-option__inner.card ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.food-consumption-form .food-option__inner.card li + li {
  margin-top: 1rem;
}
.food-consumption-form .food-option__inner.card a {
  color: #152A6D;
}
.food-consumption-form .food-option__inner.card a:hover, .food-consumption-form .food-option__inner.card a:focus {
  text-decoration: none;
}
.food-consumption-form .food-option.slick-center .food-option__inner {
  transform: scale(1);
  opacity: 1;
}

.final-form__step {
  height: 100%;
  padding-bottom: 60px;
  box-sizing: border-box;
}
.final-form .feedback {
  margin-top: 0;
}
.final-form .row {
  margin-bottom: 0;
}
.final-form .food-option__inner p.legal {
  font-size: 12px;
  line-height: 20px;
}
.final-form .articles img {
  display: none;
}
.final-form .articles p {
  font-size: 20px;
}
.final-form .loading {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
}
.final-form .loading img {
  margin: 0 auto;
  transform: translateY(210px);
}
@media screen and (min-width: 1024px) {
  .final-form .food-option__inner.card.desktop-final-card {
    width: 200%;
    transform: translateX(-25%);
    text-align: center;
  }
  .final-form .food-option__inner.card.desktop-final-card .articles li {
    padding: 0 50px 50px 50px;
  }
  .final-form .food-option__inner.card.desktop-final-card .articles img {
    display: inline-block;
    padding-bottom: 10px;
  }
  .final-form .food-option__inner.card.desktop-final-card .articles a {
    font-size: 1.5em;
  }
  .final-form .food-option__inner.card.desktop-final-card .articles #close {
    color: #424242;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.5em;
  }
  .final-form .food-option__inner.card.desktop-final-card .articles #close:hover {
    cursor: pointer;
  }
}

.calcium-intake-graph {
  margin-bottom: 50px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}
.calcium-intake-graph .calcium-intake-percentage {
  border: solid 2px white;
  width: 100%;
  height: 26px;
  position: relative;
}
.calcium-intake-graph .calcium-intake-percentage__result {
  height: 100%;
  background: #D02185;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: width 1s cubic-bezier(0.73, 0.02, 0.21, 0.99);
  will-change: width;
  width: 0px;
  overflow: hidden;
}
.calcium-intake-graph .calcium-intake-percentage__result__label {
  position: absolute;
  top: 0;
  right: 5px;
  margin-top: 3px;
  color: #fff;
}
.calcium-intake-graph__label {
  margin-top: 2px;
  position: relative;
}
.calcium-intake-graph__label::before, .calcium-intake-graph__label::after {
  content: "100%";
  position: absolute;
  right: 0;
  top: 0;
}
.calcium-intake-graph__label::before {
  content: "0%";
  right: auto;
  left: 0;
}
.calcium-intake-graph__label span {
  display: block;
  margin: 0 auto;
  text-align: center;
}

@font-face {
  font-family: "fontello";
  src: url("../fonts/icons/fontello.eot?83847913");
  src: url("../fonts/icons/fontello.eot?83847913#iefix") format("embedded-opentype"), url("../fonts/icons/fontello.woff2?83847913") format("woff2"), url("../fonts/icons/fontello.woff?83847913") format("woff"), url("../fonts/icons/fontello.ttf?83847913") format("truetype"), url("../fonts/icons/fontello.svg?83847913#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "fontello";
  src: url("data:application/octet-stream;base64,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") format("woff"), url("data:application/octet-stream;base64,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") format("truetype");
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?78677586#fontello') format('svg');
  }
}
*/
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-left-open:before {
  content: "";
}

/* '' */
.icon-right-open:before {
  content: "";
}

/* '' */
.icon-ok:before {
  content: "";
}

/* '' */
.icon-info:before {
  content: "";
}

/* '' */
.slick-track {
  will-change: transform;
}

.slick-arrow:before {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slick-next {
  right: 50%;
  width: auto;
  height: auto;
  transform: translate(50vw, -50%);
}
@media (min-width: 450px) {
  .slick-next {
    transform: translate(250px, -50%);
  }
}
.slick-next::before {
  opacity: 1;
  font-family: fontello;
  content: "";
  color: #D02185;
  font-size: 43px;
}

.slick-prev {
  left: 50%;
  z-index: 10;
  width: auto;
  height: auto;
  transform: translate(-50vw, -50%);
}
@media (min-width: 450px) {
  .slick-prev {
    transform: translate(-250px, -50%);
  }
}
.slick-prev::before {
  opacity: 1;
  color: #D02185;
  font-family: fontello;
  content: "";
  font-size: 43px;
}

.slick-dotted.slick-slider {
  margin-bottom: 110px;
}

.slick-dots {
  bottom: auto;
  margin-top: 40px;
}
@media (min-width: 450px) {
  .slick-dots li.slick-active {
    box-shadow: 0 0 4px 0 #FF3FB4, 0 0 8px 0 #FF3FB4, 0 0 20px 0 #FF3FB4, 0 0 16px 0 #FF3FB4, 0 0 8px 0 #FF3FB4;
    border-radius: 50%;
  }
}
.slick-dots li.slick-active button:before {
  background: #D02185;
  opacity: 1;
}
.slick-dots li {
  width: 12px;
  height: 12px;
  cursor: pointer;
}
@media (min-width: 450px) {
  .slick-dots li {
    width: 20px;
    height: 20px;
  }
}
.slick-dots li button:before {
  box-sizing: border-box;
  transition: all 0.2s ease;
  will-change: background, box-shadow;
  content: "";
  border: solid 2px white;
  border-radius: 50%;
  color: transparent;
}

/*# sourceMappingURL=style.css.map */
