/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
@import url('https://fonts.googleapis.com/css?family=Roboto');
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
.radiobutton,
.checkbox {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  flex-grow: 0;
  -webkit-box-pack: start;
  justify-content: flex-start;
  max-width: 400px;
  margin: 16px 16px 16px 61px;
}
/**
   * Style custom radiobutton and checkbox controls.
   * This works as follows:
   * 1.) We hide the actual control.
   * 2.) We add a psuedo :before element to the label that holds a sprite for
   *     our designed control.
   * 3.) We ensure label shows a "pointer" cursor so that it shows the label
   *     is also clickable.
   */
.radiobutton-input,
.checkbox-input {
  display: none;
}
.radiobutton-label,
.checkbox-label {
  display: inline-block;
  cursor: pointer;
  font-size: 1rem;
  color: #4d4d4d;
}
/**
  * Create a psuedo :before element for the label to hold our actual sprite for the
  * checkbox.
  */
.radiobutton-label:before,
.checkbox-label:before {
  content: "";
  display: inline-block;
  position: absolute;
  margin-top: -4px;
  margin-left: -36px;
  width: 26px;
  height: 26px;
}
/** Style the sprite for the radio button in both checked and unchecked states. */
.radiobutton-label:before {
  background: url('/img/input_sprites.png') no-repeat 0 0;
  background-position: -1px -1px;
}
.radiobutton-input:checked + .radiobutton-label:before {
  background-position: -1px -28px;
}
/** Style the sprite for the checkbox in both checked and unchecked states. */
.checkbox-label:before {
  background: url('/img/input_sprites.png?765d392b4dbb') no-repeat 0 0;
  background-position: 0 -56px;
}
.checkbox-input:checked + .checkbox-label:before {
  background-position: 0 -83px;
}
.textfield-input {
  font-size: 24pt;
  text-align: center;
  padding: 10px;
  margin: 10px 0px 0px 0px;
  border: 0px;
  border-bottom: 2px solid lightgray;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  outline: none;
  color: #404040;
}
.textfield-label {
  display: inline-block;
  font-size: 18pt;
  color: #969696;
}
.textarea-input {
  font-size: 14pt;
  text-align: left;
  padding: 10px;
  margin: 10px 0px 0px 0px;
  border: 2px solid lightgray;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  color: #404040;
}
.textfield-input:focus {
  border-bottom: 2px solid #447AD4;
}
.actionbutton {
  flex-shrink: 0;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #447AD4;
  color: #fff;
  border: 0px;
  border-radius: 40px;
  font-size: 18pt;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  text-decoration: none;
  padding: 10px 50px;
  outline: none;
}
.actionbutton.orange {
  background-color: #ff8a1a;
}
.actionbutton:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  max-width: 1500px;
  color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin: 0px auto;
}
/** Main content. */
.main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.main-ex-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 80px;
}
.j-main-content-isHidden {
  display: none;
}
.blur {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}
.module-isHidden {
  display: none;
}
.anchor {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.anchor-dark {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 16px;
}
.anchor-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin: 8px;
}
.anchor-text-dark {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin: 8px;
  color: #4d4d4d;
}
.anchor-icon,
.anchor-icon-dark {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.anchor-icon:hover,
.anchor-icon-dark:hover {
  webkit-filter: drop-shadow(1px 1px 1px black);
  -webkit-filter: drop-shadow(1px 1px 1px black);
  filter: drop-shadow(1px 1px 1px black);
}
.anchor-icon-mobile {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: none;
}
.anchor-icon-mobile:hover {
  webkit-filter: drop-shadow(1px 1px 1px black);
  -webkit-filter: drop-shadow(1px 1px 1px black);
  filter: drop-shadow(1px 1px 1px black);
}
@media all and (max-width: 800px) {
  .anchor {
    bottom: -20px;
  }
  .anchor-icon,
  .anchor-icon-dark {
    display: none;
  }
  .anchor-icon-mobile {
    display: block;
    webkit-filter: drop-shadow(1px 1px 1px black);
    -webkit-filter: drop-shadow(1px 1px 1px black);
    filter: drop-shadow(1px 1px 1px black);
  }
  .anchor-icon-mobile:hover {
    box-shadow: none;
  }
}
.announcement-bar {
  position: fixed;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: flex;
  background-color: #f75462;
  height: 64px;
  margin-top: -64px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  z-index: 10;
}
.announcement-bar-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
  -webkit-box-flex: 1;
  flex: 1;
  text-align: center;
}
.announcement-bar-text mark {
  color: #ffe782;
  background: none;
  margin-left: 16px;
}
.announcement-bar-text span {
  text-decoration: line-through;
}
.announcement-bar-dismiss {
  width: 40px;
  font-size: 1.5rem;
}
.benefits {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 56px 0 0 0;
  color: #404040;
  background-color: #f2f2f2;
}
.benefits-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  padding-bottom: 56px;
  text-align: center;
  font-size: 2.813rem;
}
.benefits-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin: 0 144px 120px 144px;
}
.benefit {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  margin: 0 0 32px 0;
  width: 60%;
  align-self: center;
}
.benefit:last-child {
  margin: 0 0 0 0;
}
.benefit-image-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 40px 0px;
  text-shadow: 2px 2px;
}

.benefit-image {
  width: 301px;

}
.benefit-details {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  justify-content: center;
  margin-left: 32px;
}
.benefit-title {
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #2196f3;
  width: 70%;
}
.benefit-description {
  padding: 0rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
}
@media all and (max-width: 800px) {
  .benefits {
    padding: 48px 0;
  }
  .benefits-main-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background-color: #ffffff;
    margin: 0 8px;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  }
  .benefits-title {
    font-size: 2.125rem;
    text-align: center;
    padding: 24px 24px;
  }
  .benefits-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin: 0;
  }
  .benefit {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin: 0;
    width: 100%;
  }
  .benefit-image-wrapper {
    padding: 40px 24px;
  }
  .benefit-details {
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 24px 16px;
  }
  .benefit-title {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
  }
  .benefit-description {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1rem;
    text-align: center;
    margin: 0 8px;
  }
}
.customizeYourProgram {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  background-size: cover;
}
.customizeYourProgram-main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  width: 100%;
  height: 660px;
  background: url('/img/yoga-slider.jpg');
  background-size: cover;
  background-position: 60% center;
  position: relative;
}
.customizeYourProgram-jaclyn-icon {
  display: inline;
  position: absolute;
  top: 40px;
  right: 40px;
  height: 150px;
  width: 150px;
}
.customizeYourProgram-main-text {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  width: 100%;
  color: #ffffff;
}
.customizeYourProgram-title {
  margin: 0;
  padding: 0;
  padding-top: 56px;
  padding-left: 136px;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 3.5rem;
}
.customizeYourProgram-subtitle {
  margin: 0;
  margin-top: 16px;
  padding-left: 136px;
  width: 35%;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
}
.customizeYourProgram-disclaimer {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  padding-left: 136px;
  width: 35%;
}
.customizeYourProgram-main-question-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  width: 100%;
  height: 660px;
  background: url('/img/background.jpg?765d392b4dbb');
  background-size: cover;
  background-position: 60% center;
  position: relative;
  -webkit-box-pack: center;
  justify-content: center;
}
.customizeYourProgram-main-question {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  width: 50%;
  margin-left: 64px;
  background-color: #4d4d4d;
  border-top: 8px solid #2196f3;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.customizeYourProgram-main-question-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 2.813rem;
  margin: 0;
  margin-top: 40px;
  margin-left: 32px;
  color: #ffffff;
}
.customizeYourProgram-main-question-subtitle {
  margin: 24px 32px;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
}
.customizeYourProgram-main-question-disclaimer {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  margin: 32px;
  margin-top: 16px;
}
.customizeYourProgram-main-question-body {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background-color: #ffffff;
  width: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.customizeYourProgram-main-question-errorMessage {
  display: none;
  background-color: #fba9b0;
  color: #f75462;
  text-transform: uppercase;
  padding: 8px 0;
  text-align: center;
  height: 20px;
  width: 100%;
}
.customizeYourProgram-main-question-body-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  color: #4d4d4d;
  margin: 0;
  margin-top: 40px;
}
#customizeYourProgram-main-question-submit {
  flex-shrink: 0;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #447AD4;
  color: #fff;
  border: 0px;
  border-radius: 40px;
  font-size: 1.375rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-decoration: none;
  outline: none;
  padding: 20px 50px;
  -webkit-box-flex: 0;
  flex: 0;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 40px;
  background-color: #2196f3;
  padding: 10px 50px;
}
#customizeYourProgram-main-question-submit:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
#customizeYourProgram.j-customizeYourProgram-is-hidden {
  display: none;
  -webkit-animation: fadeout 1s;
  animation: fadeout 1s;
}
.customizeYourProgram-header {
  -webkit-box-flex: 0;
  flex-grow: 0;
  margin-top: 60px;
  width: 100%;
  text-align: center;
}
.customizeYourProgram-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 40pt;
  margin: 20px 0px 0px 0px;
}
.customizeYourProgram-message {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 20pt;
  margin: 20px 0px 0px 0px;
}
.customizeYourProgram-form {
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-top: 56px;
  padding-left: 136px;
}
.customizeYourProgram-submit {
  flex-shrink: 0;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #447AD4;
  color: #fff;
  border: 0px;
  border-radius: 40px;
  font-size: 1.375rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-decoration: none;
  padding: 10px 50px;
  outline: none;
  padding: 20px 50px;
  -webkit-box-flex: 0;
  flex: 0;
  text-transform: uppercase;
}
.customizeYourProgram-submit:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.j-customizeYourProgram-submit-isHidden {
  display: none;
}
.customizeYourProgram-submit.orange {
  background-color: #ff8a1a;
  -ms-grid-row-align: center;
  align-self: center;
}
.customizeYourProgram-form-bottom {
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
@media all and (max-width: 800px) {
  .customizeYourProgram-main-content {
    background: url('/img/yoga-slider.jpg?765d392b4dbb') no-repeat;
    background-size: auto 100%;
    background-position: 60% center;
    position: relative;
  }
  .customizeYourProgram-jaclyn-icon {
    display: inline;
    position: absolute;
    top: 40px;
    left: 24px;
    right: auto;
    height: auto;
    width: auto;
    max-height: 35%;
    max-width: 35%;
  }
  .customizeYourProgram-main-text {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    position: absolute;
    bottom: 40px;
    left: 24px;
    width: 70%;
  }
  .customizeYourProgram-title {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 2.125rem;
    margin: 0;
    padding: 0;
  }
  .customizeYourProgram-subtitle {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    padding: 0;
    width: 100%;
  }
  .customizeYourProgram-disclaimer {
    padding: 0;
    width: 100%;
  }
  .customizeYourProgram-form {
    padding-left: 0;
    margin: 0;
  }
  .customizeYourProgram-submit {
    font-size: 1rem;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    padding: 20px 30px;
    align-self: flex-start;
  }
  .customizeYourProgram-main-question-content {
    height: auto;
  }
  .customizeYourProgram-main-question {
    padding: 0;
    margin: 0;
    width: 100%;
    border-top: none;
    box-shadow: none;
  }
  .customizeYourProgram-main-question-title {
    margin-left: 24px;
    margin-top: 32px;
  }
  .customizeYourProgram-main-question-subtitle {
    margin-left: 24px;
  }
  .customizeYourProgram-main-question-disclaimer {
    margin-left: 24px;
  }
  .customizeYourProgram-main-question-body-text {
    margin-left: 24px;
  }
  .customizeYourProgram-main-question-errorMessage {
    padding-left: 24px !important;
    padding-right: 24px !important;
    width: auto;
  }
}
.doctors {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 72px 144px;
  background-color: #f2f2f2;
}
.doctors-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0 0 72px 0;
  text-align: center;
  font-size: 2.125rem;
  color: #404040;
  width: 80%;
  -ms-grid-row-align: center;
  align-self: center;
}
.doctors-wrapper {
  display: inline-block;
  white-space: nowrap;
}
.doctor {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  width: 25%;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 40px;
  color: #404040;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  vertical-align: top;
  white-space: normal;
}
.doctor-photo {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}
.doctor-title {
  margin-top: 24px;
  font-size: 1.25rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.doctor-title > span {
  margin-right: 8px;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.doctor-subtitle {
  margin-top: 8px;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
}
.doctor-bio {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  font-size: 17px;
  margin-top: 24px;
}
.doctor-spacing {
  display: none;
  width: 15%;
}
@media all and (max-width: 800px) {
  .doctors {
    padding: 48px 0;
  }
  .doctors-title {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    width: auto;
    margin: 0 24px;
    font-size: 2.125rem;
    text-align: left;
    margin-bottom: 40px;
  }
  .doctors-wrapper {
    overflow-x: scroll;
    -webkit-box-flex: 1;
    flex: 1;
    margin-left: 24px;
  }
  .doctor {
    width: 75%;
    padding: 0;
    margin: 0;
    margin-right: 10%;
    vertical-align: top;
    text-align: left;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .doctor:last-child {
    padding-right: 15%;
  }
  .doctor-photo {
    display: -webkit-box;
    display: flex;
    border-radius: 50%;
    width: 150px;
    height: 150px;
  }
  .doctor-title {
    text-align: left;
  }
  .doctor-title > span {
    display: inline;
    text-align: left;
  }
}
.faq {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
  padding: 72px 0;
  background-color: #f2f2f2;
  color: #4d4d4d;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.faq-headline {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 2.813rem;
  margin: 0;
  padding: 0;
}
.faq-list {
  width: 50%;
  margin-top: 56px;
  border-bottom: 1px solid #2196f3;
}
.faq-question-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  border-top: 1px solid #2196f3;
}
.faq-question-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  cursor: pointer;
}
.faq-question-status-icon {
  display: -webkit-box;
  display: flex;
  width: 27px;
  height: 27px;
}
.faq-question-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  margin-left: 24px;
}
.faq-question-answer-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  display: none;
  font-size: 1.125rem;
  margin: 0;
  margin-left: 51px;
  margin-bottom: 16px;
}
.collapsed .faq-question-status-icon-expanded {
  display: none;
}
.collapsed .faq-question-status-icon-collapsed {
  display: -webkit-box;
  display: flex;
}
.expanded .faq-question-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
}
.expanded .faq-question-status-icon-collapsed {
  display: none;
}
.expanded .faq-question-status-icon-expanded {
  display: -webkit-box;
  display: flex;
}
@media all and (max-width: 800px) {
  .faq {
    padding: 48px 0;
  }
  .faq-headline {
    font-size: 2.125rem;
    margin: 0 24px;
    margin-bottom: 32px;
  }
  .faq-list {
    width: auto;
    margin: 0 24px;
  }
  .faq-question-text {
    -webkit-box-flex: 1;
    flex: 1;
  }
  .faq-question-answer-text {
    margin-left: 0;
  }
}
.fb-testimonials {
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background-color: #f2f2f2;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding-bottom: 56px;
}
.fb-testimonials-headline {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #4d4d4d;
  font-size: 2.813rem;
  margin: 0;
  margin-top: 64px;
  padding: 0;
}
.fb-testimonials-headline br {
  display: none;
}
.fb-testimonials-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #4d4d4d;
  font-size: 1.25rem;
  width: 50%;
  margin: 0;
  margin-top: 16px;
  padding: 0;
  text-align: center;
}
.fb-testimonials-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-top: 32px;
  overflow: hidden;
  height: 600px;
}
.fb-testimonials-content-post {
  -ms-grid-row-align: center;
  align-self: center;
}
.fb-post {
  width: 100%;
}
.fb-testimonials-content-post:not(:last-child) {
  margin-bottom: 16px;
}
.fb-testimonials-content-post:last-child {
  padding-bottom: 200px;
}
.fb-testimonials-control-mobile {
  display: none;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.fb-testimonials-control-mobile-button-container {
  display: -webkit-box;
  display: flex;
  padding: 16px;
}
.fb-testimonials-control-mobile-button-container.disabled {
  opacity: 0;
}
.fb-testimonials-control-mobile-button {
  height: 24px;
  width: 24px;
}
@media all and (max-width: 800px) {
  .fb-testimonials {
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    padding-bottom: 24px;
  }
  .fb-testimonials-headline {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin-left: 24px;
    margin-top: 40px;
    font-size: 1.875rem;
  }
  .fb-testimonials-headline br {
    display: block;
  }
  .fb-testimonials-text {
    text-align: left;
    font-size: 1.125rem;
    margin-left: 24px;
    margin-right: 24px;
    width: auto;
  }
  .fb-testimonials-content {
    width: 100%;
    height: auto;
    display: inline-block;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .fb-testimonials-content-post {
    display: -webkit-inline-box;
    display: inline-flex;
    width: 95%;
    height: auto;
    padding: 8px;
    vertical-align: top;
    margin-bottom: 0;
  }
  .fb-testimonials-control-mobile {
    display: -webkit-box;
    display: flex;
    width: 100%;
  }
}
.featured {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 48px 150px;
  background-color: #ffffff;
  box-sizing: border-box;
}
.featured-partner {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 48px 150px;
  box-sizing: border-box;
  background-color: #ffffff;
}
.featured-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 2rem 0 1rem 0;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #969696;
}
.featured-partner-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  flex-basis: 100%;
  margin: 0;
  padding: 2rem 0 1rem 0;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #969696;
  color: #183c78;
}
.featured-list {
  display: -webkit-box;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.featured-logo {
  padding-bottom: 2rem;
  height: 25px;
  align-self: flex-start;
}
@media all and (max-width: 800px) {
  .featured {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 16px 24px;
  }
  .featured-partner {
    padding: 40px 24px;
  }
  .featured-partner-title {
    padding: 0;
    margin-bottom: 24px;
  }
  .featured-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .featured-logo {
    vertical-align: top;
    max-width: 35%;
    width: auto;
    margin-right: 10%;
  }
  .featured-title {
    padding: 2rem 0;
    text-align: center;
  }
}
.features {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 72px 144px;
  background-color: #ffffff;
}
.features-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0 0 72px 0;
  text-align: center;
  font-size: 2.813rem;
  color: #404040;
}
.features-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: justify;
  justify-content: space-between;
  color: #404040;
}
.feature {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  max-width: 320px;
  text-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.feature-icon {
  margin: 0 0 2rem 0;
}
.feature-title {
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #1EAEEC;
  height: 50px;
}
.feature-description {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin-bottom: auto;
  font-size: 1rem;
}
.features-bonus {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 40px 0 0 0;
  padding: 2rem 144px;
  background-color: #F2F9FF;
  color: #404040;
}
.bonus-icon {
  flex-shrink: 0;
}
.bonus-column {
  -webkit-box-flex: 1;
  flex: 1;
  margin: 0 0 0 4rem;
}
.bonus-title {
  color: #FF6D7A;
  text-transform: uppercase;
}
.bonus-description {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
}
.bonus-description > strong {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.features-technology-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  color: #404040;
}
.feature-technology {
  display: -webkit-box;
  display: flex;
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  justify-content: center;
}
.feature-technology-icon {
  margin: 0 0 2rem 0;
  max-width: 80%;
  max-height: 80%;
  margin-right: 32px;
}
.features-technology-details {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: left;
  width: 375px;
}
.feature-technology-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  text-transform: uppercase;
  color: #1EAEEC;
}
.feature-technology-description {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
}
@media all and (max-width: 800px) {
  .features {
    padding: 48px 0;
  }
  .features-main-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background-color: #ffffff;
  }
  .features-title {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0;
    padding: 0 24px;
    text-align: left;
  }
  .features-title span {
    font-size: 2.125rem;
  }
  .features-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .feature {
    max-width: 100%;
    padding: 0 24px 24px 24px;
  }
  .feature-icon {
    margin-bottom: 0;
  }
  .feature-title {
    height: auto;
  }
  .feature-description {
    margin: 0;
  }
  .features-technology-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-top: 24px;
  }
  .feature-technology {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .feature-technology:not(:first-child) {
    margin-top: 40px;
  }
  .feature-technology-icon {
    max-height: 100%;
    max-width: 100%;
    margin: 0;
  }
  .features-technology-details {
    width: auto;
    padding: 0 24px;
    padding-top: 24px;
  }
  .feature-technology-title {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.375rem;
    margin: 0;
    text-align: left;
  }
  .feature-technology-description {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 1rem;
    text-align: left;
    margin: 0;
    margin-top: 16px;
  }
}
.footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 40px;
  background-color: #404040;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #ffffff;
  width: 100%;
}
.footer-main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  margin: 0 24px;
}
.footer-logo {
  display: -webkit-box;
  display: flex;
  height: 30px;
  width: 145px;
  -webkit-box-flex: 1;
  flex-grow: 1;
  background: url('/img/noom_logo.jpg?765d392b4dbb') 0 center no-repeat;
  background-size: contain;
}
.footer-columns {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.footer-column {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 200px;
  margin-top: 25px;
  align-self: flex-start;
}
.footer-column.hidden {
  display: none;
}
.footer-column-title {
  font-size: 14pt;
}
.footer-column-list {
  padding-left: 0;
}
.footer-column-list-item {
  text-decoration: none;
  list-style: none;
  font-size: 12pt;
}
.footer-column-list-item a {
  color: #fff;
  text-decoration: none;
}
.footer-copyright {
  display: -webkit-box;
  display: flex;
  margin: 0 24px;
  margin-top: 24px;
  -webkit-box-flex: 1;
  flex-grow: 1;
  font-size: 0.875rem;
}
.footer-copyright-text {
  -webkit-box-flex: 1;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}
.footer-copyright-terms {
  margin: 0;
  padding: 0;
}
.footer-copyright-terms a {
  color: #fff;
  text-decoration: none;
}
@media all and (max-width: 800px) {
  .footer {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .footer-main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .footer-copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .footer-copyright-text {
    margin-top: 8px;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .footer-copyright-terms {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }
}
.graduates {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.graduates-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 2.813rem;
  color: #4d4d4d;
  text-align: center;
  width: 100%;
}
.graduates-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: stretch;
  align-items: stretch;
}
.graduate {
  -webkit-box-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  align-items: flex-start;
  height: 630px;
  background-size: cover;
  background-color: #404040;
  box-sizing: border-box;
  color: #ffffff;
}
.graduate:nth-child(1) {
  background: url('/img/carla.jpg?765d392b4dbb') no-repeat center center;
}
.graduate:nth-child(2) {
  background: url('/img/jaclyn.jpg?765d392b4dbb') no-repeat center center;
}
.graduate:nth-child(3) {
  background: url('/img/juan.jpg?765d392b4dbb') no-repeat center center;
}
.graduate-play-video-mobile {
  display: none;
}
.gradute-details {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 50%;
  padding: 0 24px;
}
.graduate-title {
  margin-bottom: 24px;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.875rem;
}
.graduate-story {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: auto;
  font-size: 1.125rem;
  width: 80%;
  -webkit-box-flex: 1;
  flex-grow: 1;
}
.graduate-play-video {
  flex-shrink: 0;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #447AD4;
  color: #fff;
  border: 0px;
  border-radius: 40px;
  font-size: 18pt;
  font-weight: 100;
  text-decoration: none;
  padding: 10px 50px;
  outline: none;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 4rem 0;
  padding: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
  border-radius: 2rem;
  outline: 0;
  align-self: flex-start;
}
.graduate-play-video:hover {
  color: #404040;
  background: rgba(255, 255, 255, 0.8);
}
.graduate-play-video:active {
  opacity: .6;
}
@media all and (max-width: 800px) {
  .graduates {
    padding: 0;
    padding-top: 48px;
  }
  .graduates-title {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin: 0 24px;
    font-size: 2.125rem;
    text-align: left;
    margin-bottom: 24px;
    width: auto;
  }
  .graduates-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .graduate {
    width: 100%;
    height: 100vw;
    min-height: 350px;
  }
  .graduate:nth-child(1) {
    background: url('/img/carla.jpg?765d392b4dbb') no-repeat center 0;
    background-size: cover;
  }
  .graduate:nth-child(2) {
    background: url('/img/jaclyn.jpg?765d392b4dbb') no-repeat center 0;
    background-size: cover;
  }
  .graduate:nth-child(3) {
    background: url('/img/juan.jpg?765d392b4dbb') no-repeat center 0;
    background-size: cover;
  }
  .gradute-details {
    height: auto;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .graudate-details-title-row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  .graduate-title {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.375rem;
    margin: 16px 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
  .graduate-play-video-mobile {
    display: -webkit-box;
    display: flex;
    height: 40px;
    width: 40px;
    border: none;
    align-self: center;
  }
  .graduate-story {
    font-size: 1rem;
    margin: 0;
    margin-bottom: 16px;
  }
  .graduate-play-video {
    display: none;
  }
}
.howItWorks {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  color: #4d4d4d;
  width: 100%;
}
.howItWorks-navigation {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 465px;
  background: url('img/background.png?765d392b4dbb');
  background-size: cover;
  background-position: center center;
  position: relative;
}
.howItWorks-navigation-content {
  width: auto;
  -webkit-box-flex: 0;
  flex: 0;
  -ms-grid-row-align: center;
  align-self: center;
}
#howItWorks-navigation-indicator {
  position: absolute;
  height: 25px;
  width: 44px;
  bottom: 0px;
  z-index: 1;
  background: url('/img/icon_arrow_white.png?765d392b4dbb');
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#howItWorks-navigation-indicator.howItWorks-discover {
  background: url('/static/baseline/components/how-it-works/images/icon_arrow_watermelon.png?765d392b4dbb');
}
#howItWorks-navigation-indicator.howItWorks-keep-it-off {
  background: url('/static/baseline/components/how-it-works/images/icon_arrow_orange.png?765d392b4dbb');
}
.howItWorks-navigation-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0 0 48px 0;
  text-align: center;
  font-size: 2.813rem;
  padding: 0;
  margin-top: 64px;
  margin-bottom: 32px;
}
.howItWorks-navigation-items-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.howItWorks-navigation-item {
  width: 235px;
  height: 240px;
  box-shadow: 1px 1px 2px 0 #4d4d4d;
  border-radius: 3px;
  background-color: #ffffff;
  overflow: hidden;
}
.howItWorks-navigation-item.selected {
  box-shadow: 1px 5px 5px 0 #969696;
}
.howItWorks-navigation-item:not(:first-child) {
  margin-left: 8px;
}
.howItWorks-navigation-item-header.sign-up {
  background-color: #2196f3;
}
.howItWorks-navigation-item-header.track {
  background-color: #16aa00;
}
.howItWorks-navigation-item-header.discover {
  background-color: #f75462;
}
.howItWorks-navigation-item-header.keep-it-off {
  background-color: #ff8a1a;
}
.howItWorks-navigation-item-header-icon {
  margin: 16px 24px;
}
.howItWorks-navigation-item-content-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  padding: 0;
  margin: 32px 24px;
}
.howItWorks-navigation-item-content-text span {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
}
.howItWorks-contents {
  display: -webkit-box;
  display: flex;
  height: 340px;
  width: 100%;
  position: relative;
  box-shadow: 0 -2px 3px -1px #969696;
}
.howItWorks-content {
  display: none;
  -webkit-box-flex: 1;
  flex: 1;
}
.howItWorks-content.selected {
  display: -webkit-box;
  display: flex;
}
.howItWorks-content-text-container {
  position: relative;
  -webkit-box-flex: 1;
  flex: 1;
}
.howItWorks-content-text {
  width: 478px;
  position: absolute;
  top: 56px;
  right: 0;
}
.howItWorks-content-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.875rem;
  margin: 0;
  margin-bottom: 24px;
  padding-right: 56px;
}
.howItWorks-content-details {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  margin: 0;
  padding-right: 56px;
}
.howItWorks-content-graphic-container {
  -webkit-box-flex: 1;
  flex: 1;
  position: relative;
}
.howItWorks-content-graphic-container.sign-up {
  background-color: #2196f3;
}
.howItWorks-content-graphic-container.track {
  background-color: #16aa00;
}
.howItWorks-content-graphic-container.discover {
  background-color: #f75462;
}
.howItWorks-content-graphic-container.keep-it-off {
  background-color: #ff8a1a;
}
.howItWorks-content-graphic {
  position: absolute;
  left: 56px;
  bottom: 0;
}
.howItWorks-mobile {
  display: none;
  padding-top: 24px;
  padding-bottom: 16px;
}
.howItWorks-mobile-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  margin: 0;
  padding: 0;
  margin-left: 24px;
  margin-bottom: 16px;
}
.howItWorks-mobile-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-radius: 3px;
  box-shadow: 1px 1px 1px 0 #969696;
  margin: 0 8px;
  background-color: #ffffff;
  padding: 16px;
}
.howItWorks-mobile-item.selected {
  padding-bottom: 0;
  box-shadow: 1px 5px 5px 0 #969696;
}
.howItWorks-mobile-item:not(:first-child) {
  margin-top: 8px;
}
.howItWorks-mobile-item-header {
  display: -webkit-box;
  display: flex;
}
.howItWorks-mobile-item-title-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  justify-content: center;
}
.howItWorks-mobile-item-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  color: #4d4d4d;
  padding: 0px;
  margin: 0px;
}
.howItWorks-mobile-item-drop-down-icon {
  max-width: 100%;
  max-height: 100%;
  align-self: flex-start;
  margin-top: 8px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.selected .howItWorks-mobile-item-drop-down-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.howItWorks-mobile-item-icon {
  -webkit-box-flex: 0;
  flex: 0;
  border-radius: 3px;
  padding: 20px;
  -ms-grid-row-align: center;
  align-self: center;
}
.howItWorks-mobile-item-icon.sign-up {
  background-color: #2196f3;
}
.howItWorks-mobile-item-icon.track {
  background-color: #16aa00;
}
.howItWorks-mobile-item-icon.discover {
  background-color: #f75462;
}
.howItWorks-mobile-item-icon.keep-it-off {
  background-color: #ff8a1a;
}
.howItWorks-mobile-item-content {
  display: none;
}
.selected .howItWorks-mobile-item-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.howItWorks-mobile-item-content-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #4d4d4d;
  margin: 0;
  margin-top: 16px;
}
.howItWorks-mobile-item-content-graphic-container {
  display: -webkit-box;
  display: flex;
  margin: 0 -16px;
  margin-top: 16px;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
}
.howItWorks-mobile-item-content-graphic-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
}
.howItWorks-mobile-item-content-graphic-container.sign-up::after {
  background-color: #2196f3;
}
.howItWorks-mobile-item-content-graphic-container.track::after {
  background-color: #16aa00;
}
.howItWorks-mobile-item-content-graphic-container.discover::after {
  background-color: #f75462;
}
.howItWorks-mobile-item-content-graphic-container.keep-it-off::after {
  background-color: #ff8a1a;
}
.howItWorks-mobile-item-content-graphic {
  width: 300px;
  align-self: flex-end;
  z-index: 1;
}
@media all and (max-width: 800px) {
  .howItWorks {
    background-color: #f2f2f2;
  }
  .howItWorks-navigation {
    display: none;
  }
  .howItWorks-contents {
    display: none;
  }
  .howItWorks-mobile {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.how-we-help {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  background: url('/static/baseline/components/how-we-help/images/background.jpg?765d392b4dbb');
  background-size: cover;
  background-position: center center;
  height: 560px;
  width: 100%;
  position: relative;
}
.how-we-help-main-content {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 150px;
  width: 80%;
}
.how-we-help-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  max-width: 240px;
}
.how-we-help-item-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
}
.how-we-help-item-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  color: #ffffff;
  margin: 0;
  margin-top: 16px;
}
@media all and (max-width: 800px) {
  .how-we-help {
    background: none;
    height: auto;
  }
  .how-we-help-main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-top: 0;
  }
  .how-we-help-item {
    height: 91vw;
    width: 100vw;
    max-width: none;
  }
  .how-we-help-item:nth-of-type(1) {
    background: url('/static/baseline/components/how-we-help/images/background_mobile_1.jpg?765d392b4dbb');
    background-size: auto 100%;
    background-position: center center;
  }
  .how-we-help-item:nth-of-type(2) {
    background: url('/static/baseline/components/how-we-help/images/background_mobile_2.jpg?765d392b4dbb');
    background-size: auto 100%;
    background-position: center center;
  }
  .how-we-help-item:nth-of-type(3) {
    background: url('/static/baseline/components/how-we-help/images/background_mobile_3.jpg?765d392b4dbb');
    background-size: auto 100%;
    background-position: center center;
  }
  .how-we-help-item-title {
    margin: 56px 32px;
    margin-bottom: 16px;
    width: 70%;
  }
  .how-we-help-item-text {
    margin: 0 32px;
    width: 70%;
  }
}
.radiobutton,
.checkbox {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  flex-grow: 0;
  -webkit-box-pack: start;
  justify-content: flex-start;
  max-width: 400px;
  margin: 16px 16px 16px 61px;
}
/**
   * Style custom radiobutton and checkbox controls.
   * This works as follows:
   * 1.) We hide the actual control.
   * 2.) We add a psuedo :before element to the label that holds a sprite for
   *     our designed control.
   * 3.) We ensure label shows a "pointer" cursor so that it shows the label
   *     is also clickable.
   */
.radiobutton-input,
.checkbox-input {
  display: none;
}
.radiobutton-label,
.checkbox-label {
  display: inline-block;
  cursor: pointer;
  font-size: 1rem;
  color: #4d4d4d;
}
/**
  * Create a psuedo :before element for the label to hold our actual sprite for the
  * checkbox.
  */
.radiobutton-label:before,
.checkbox-label:before {
  content: "";
  display: inline-block;
  position: absolute;
  margin-top: -4px;
  margin-left: -36px;
  width: 26px;
  height: 26px;
}
/** Style the sprite for the radio button in both checked and unchecked states. */
.radiobutton-label:before {
  background: url('/static/baseline/components/inputs/images/input_sprites.png?765d392b4dbb') no-repeat 0 0;
  background-position: -1px -1px;
}
.radiobutton-input:checked + .radiobutton-label:before {
  background-position: -1px -28px;
}
/** Style the sprite for the checkbox in both checked and unchecked states. */
.checkbox-label:before {
  background: url('/static/baseline/components/inputs/images/input_sprites.png?765d392b4dbb') no-repeat 0 0;
  background-position: 0 -56px;
}
.checkbox-input:checked + .checkbox-label:before {
  background-position: 0 -83px;
}
.textfield-input {
  font-size: 24pt;
  text-align: center;
  padding: 10px;
  margin: 10px 0px 0px 0px;
  border: 0px;
  border-bottom: 2px solid lightgray;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  outline: none;
  color: #404040;
}
.textfield-label {
  display: inline-block;
  font-size: 18pt;
  color: #969696;
}
.textarea-input {
  font-size: 14pt;
  text-align: left;
  padding: 10px;
  margin: 10px 0px 0px 0px;
  border: 2px solid lightgray;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  color: #404040;
}
.textfield-input:focus {
  border-bottom: 2px solid #447AD4;
}
.actionbutton {
  flex-shrink: 0;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #447AD4;
  color: #fff;
  border: 0px;
  border-radius: 40px;
  font-size: 18pt;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  text-decoration: none;
  padding: 10px 50px;
  outline: none;
}
.actionbutton.orange {
  background-color: #ff8a1a;
}
.actionbutton:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.intro {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  background: url('/static/baseline/components/intro/images/background.jpg?765d392b4dbb');
  background-size: cover;
  background-position: center center;
  height: 690px;
  width: 100%;
  position: relative;
}
.intro-headline {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 2.813rem;
  margin: 0;
  margin-top: 200px;
}
.intro-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.375rem;
  width: 40%;
  margin: 0;
  margin-top: 32px;
  text-align: center;
}
#intro-button {
  flex-shrink: 0;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #f75462;
  color: #ffffff;
  border: 0px;
  border-radius: 40px;
  font-size: 1.125rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-decoration: none;
  outline: none;
  padding: 16px 40px;
  -webkit-box-flex: 0;
  flex: 0;
  text-transform: uppercase;
  margin-top: 56px;
}
#intro-button:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
@media all and (max-width: 800px) {
  .intro {
    background: url('/static/baseline/components/intro/images/background_mobile.jpg?765d392b4dbb');
    background-size: cover;
    background-position: center bottom;
    height: 560px;
    width: 100%;
  }
  .intro-headline {
    font-size: 2.125rem;
    margin: 32px;
    margin-top: 48px;
    margin-bottom: 0;
  }
  .intro-text {
    font-size: 1.25rem;
    width: auto;
    margin: 32px;
    margin-top: 16px;
    text-align: left;
  }
  #intro-button {
    padding: 20px 30px;
    top: auto;
    position: relative;
    margin-top: 0;
  }
}
.wdt-loading-phrase {
  color: #4d4d4d;
}
.wdt-loading-screen {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 999998;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
}
.wdt-loading-bar-wrap {
  width: 600px;
  height: 10px;
  background-color: #eee;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 999px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.progress {
  position: relative;
  height: 10px;
  width: 0;
  background-color: #2196f3;
  border-radius: 999px;
}
.progress-number {
  color: #2196f3;
  -ms-grid-row-align: center;
  align-self: center;
}
.wdt-loading-phrases {
  width: 300px;
  margin: 0 auto;
  height: 106px;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wdt-loading-phrase-category {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.wdt-loading-phrases:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #ffffff;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 50%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 50%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}
.wdt-loading-phrase {
  padding-left: 30px;
  position: relative;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  line-height: 30px;
  height: 30px;
}
.wdt-loading-phrase:before {
  content: " ";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 6px;
  left: 0;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.wdt-loading-phrase:after {
  opacity: 0;
  height: 11px;
  width: 7px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-right: 3px solid #2EB150;
  border-top: 3px solid #2EB150;
  border-radius: 2.5px !important;
  content: '';
  left: 3px;
  top: 16px;
  position: absolute;
  -webkit-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
}
.wdt-loading-screen {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 999998;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
}
.wdt-loading-phrases {
  width: 300px;
  margin: 0 auto;
  height: 106px;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wdt-loading-phrase-category {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.wdt-loading-phrases:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #ffffff;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 50%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 50%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}
.wdt-loading-phrase {
  padding-left: 30px;
  position: relative;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  line-height: 30px;
  height: auto;
}
.wdt-loading-phrase:before {
  content: " ";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 6px;
  left: 0;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.wdt-loading-phrase.wdt-checked:before {
  border-color: #2196f3;
  background-color: #2196f3;
}
.wdt-loading-phrase:after {
  opacity: 0;
  height: 11px;
  width: 7px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-right: 3px solid #2EB150;
  border-top: 3px solid #2EB150;
  border-radius: 2.5px !important;
  content: '';
  left: 3px;
  top: 16px;
  position: absolute;
  -webkit-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
}
@media all and (max-width: 800px) {
  .wdt-loading-phrases {
    width: 90%;
    top: 30%;
  }
  .wdt-loading-bar-wrap {
    width: 90%;
    top: 40%;
  }
}
/** Navigation. */
.navigation {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
  border-bottom: 2px solid #4d4d4d;
  background-color: #ffffff;
}
.navigation-logo {
  height: 30px;
  width: 130px;
  margin: 25px 60px;
  background: url('/img/noom_logo.jpg?765d392b4dbb') center center no-repeat;
  background-color: #ffffff;
  background-size: 100%;
}
@media all and (max-width: 800px) {
  .navigation-logo {
    margin: 10px;
    height: 24px;
    width: 104px;
    background-size: 100%;
  }
}
.noom-video {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background-color: #f2f2f2;
  padding: 72px 144px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.noom-video.module-isHidden {
  display: none;
}
.noom-video-headline {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  width: 60%;
  margin: 0;
  padding: 0;
  color: #4d4d4d;
  font-size: 2.813rem;
  text-align: center;
}
.noom-video-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-top: 56px;
}
#noom-video-player {
  width: 560px;
  height: 315px;
  position: relative;
}
#noom-video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.noom-video-player-controls-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  height: 24px;
  margin-top: 8px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.noom-video-player-control {
  display: -webkit-box;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
#noom-video-player-control-volume {
  -webkit-box-flex: 2;
  flex: 2;
}
#noom-video-player-control-playback {
  -webkit-box-flex: 5;
  flex: 5;
}
.noom-video-player-control-button-container {
  display: -webkit-box;
  display: flex;
  height: 24px;
  width: 24px;
  margin: 0 16px;
  position: relative;
}
.noom-video-player-control-button {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border-radius: 4px;
}
.noom-video-player-control-button:hover {
  background-color: #ffffff;
}
#noom-video-player-control-pause-button,
#noom-video-player-control-mute-button {
  display: none;
}
.noom-video-player-control-progress-bar {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
  flex: 1;
  height: 100%;
  -webkit-box-align: center;
  align-items: center;
}
.noom-video-player-control-progress-bar-max-value {
  height: 4px;
  width: 100%;
  background-color: #969696;
}
.noom-video-player-control-progress-bar-current-value {
  height: 4px;
  background-color: #2196f3;
  width: 0;
}
@media all and (max-width: 800px) {
  .noom-video {
    padding: 48px 0;
  }
  .noom-video-headline {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 2.125rem;
    text-align: left;
    width: auto;
    margin: 0 24px;
  }
  .noom-video-content {
    margin-top: 40px;
    width: 100%;
  }
  #noom-video-player {
    width: 100%;
  }
  .noom-video-player-controls-container {
    display: none;
  }
}
.promise {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 72px 144px;
  background-color: #1EAEEC;
  color: #ffffff;
}
.promise-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  margin: 0 0 72px 0;
  text-align: center;
  font-size: 2.813rem;
  color: #ffffff;
}
.promise-body {
  -webkit-box-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
}
.promise-trial {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
}
.promise-message {
  margin: 0 0 0 4rem;
}
.promise-message p {
  margin: 0 0 1rem;
}
@media all and (max-width: 800px) {
  .promise {
    padding: 40px 24px;
  }
  .promise-title {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: left;
  }
  .promise-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .promise-trial {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
  .promise-message {
    margin: 0;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
  }
}
.plans-email {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}
.plans-email-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 550px;
  -webkit-box-align: center;
  align-items: center;
  padding-top: 56px;
}
.plans-email-header-slogan {
  color: #ffffff;
  font-family: 'Kalam', cursive;
  font-size: 1.688rem;
  padding: 0;
  margin: 0;
  padding-bottom: 8px;
  width: 50%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  text-align: center;
}
.plans-email-header-slogan span {
  color: #ffe782;
}
.plans-email-header-headline {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 3.5rem;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  text-transform: capitalize;
  padding: 0;
  margin: 0;
  margin-top: 16px;
}
.plans-email-header-headline-2 {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 2.813rem;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  color: #183c78;
  padding: 0;
  margin: 0;
  margin-top: 16px;
}
.plans-email-header-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-top: 32px;
  width: 30%;
}
.plans-email-header-content-item {
  display: -webkit-box;
  display: flex;
}
.plans-email-header-content-item:not(:first-child) {
  margin-top: 16px;
}
.plans-email-header-content-item-icon {
  width: 18px;
  height: auto;
  margin-right: 16px;
  margin-top: 4px;
}
.plans-email-header-content-item-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #183c78;
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  text-align: center;
}
.plans-email-header-content-item-text br {
  display: none;
}
.plans-email-main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  top: -150px;
  position: relative;
}
.plans-email-main-content-email {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding-bottom: 40px;
}
.plans-email-list {
  display: -webkit-box;
  display: flex;
  margin-top: 24px;
  border-bottom: 1px solid #cacaca;
  padding-bottom: 40px;
}
.plan-email {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 300px;
}
.plan-email:not(:first-child) {
  margin-left: 48px;
}
.plan-email-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 24px 48px;
  border: 1px solid #cacaca;
  border-bottom: none;
}
.annual-plan .plan-email-header {
  background-color: #f75462;
}
.bootcamp-plan .plan-email-header {
  background-color: #f2f2f2;
}
.plan-email-header-plan-name {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: 400;
}
.plan-email-header-plan-discount {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #ffe782;
  text-transform: capitalize;
  padding: 0;
  margin: 0;
  margin-top: 16px;
}
.plan-email-header-plan-discount.es {
  text-transform: none;
}
.bootcamp-plan .plan-email-header-plan-name,
.bootcamp-plan .plan-email-header-plan-discount {
  color: #4d4d4d;
}
.plan-email-price-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border: 1px solid #cacaca;
  border-top: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 32px;
}
.plan-email-price {
  display: -webkit-box;
  display: flex;
  color: #4d4d4d;
}
.plan-email-regular-price {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.375rem;
  padding: 0;
  margin: 0;
  text-decoration: line-through;
  padding-top: 16px;
  padding-right: 16px;
}
.plan-email-current-price,
.plan-email-current-price-trail {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.375rem;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: flex;
}
.plan-email-current-price-trail {
  align-self: flex-end;
  padding-bottom: 16px;
}
.plan-email-current-price > span {
  padding-top: 16px;
  align-self: flex-start;
}
.plan-email-current-price > em {
  font-size: 80px;
  font-style: normal;
  padding: 0;
  margin: 0;
}
.plan-email-total-price {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #4d4d4d;
  padding: 0;
  margin: 0;
  margin-top: 8px;
}
.plan-email-signup {
  display: -webkit-box;
  display: flex;
  font-size: 1.125rem;
  padding: 16px 8px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2rem;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0 32px;
  text-align: center;
}
.plan-email-signup:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.annual-plan .plan-email-signup {
  color: #ffffff;
  background-color: #f75462;
}
.bootcamp-plan .plan-email-signup {
  color: #f75462;
  border: 1px solid #f75462;
  background-color: #ffffff;
}
.plans-email-faq {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex: 1;
  width: 648px;
  margin-top: 40px;
}
.plans-email-faq-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.plans-email-faq-item:not(:first-child) {
  margin-top: 24px;
}
.plans-email-faq-item-question {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #2196f3;
  padding: 0;
  margin: 0;
  font-weight: 400;
}
.plans-email-faq-item-answer {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #4d4d4d;
  padding: 0;
  margin: 0;
  margin-top: 16px;
}
@media all and (max-width: 800px) {
  .plans-email-header {
    background-position: 70% center;
    padding: 32px;
    padding-bottom: 0px;
  }
  .plans-email-header-slogan {
    width: auto;
    font-size: 1.375rem;
  }
  .plans-email-header-headline {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 2.125rem;
  }
  .plans-email-header-content {
    width: 100%;
  }
  .plans-email-header-content-item-text {
    font-size: 1.25rem;
  }
  .plans-email-header-content-item-text br {
    display: block;
  }
  .plans-email-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .plan-email:not(:first-child) {
    margin-left: 0;
    margin-top: 40px;
  }
  .plan-email-price-container {
    margin-bottom: 24px;
  }
  .plans-email-faq {
    width: 300px;
  }
}
.startJourney {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 144px 144px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #ffffff;
}
.startJourney-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 48px 0;
  text-align: center;
  font-size: 2.813rem;
  color: #f75462;
}
.startJourney-description {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0 144px 72px 144px;
  font-size: 1.5rem;
  text-align: center;
  width: 70%;
  color: #4d4d4d;
}
#startJourney-button {
  flex-shrink: 0;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #f75462;
  color: #ffffff;
  border: 0px;
  border-radius: 40px;
  font-size: 1.125rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-decoration: none;
  outline: none;
  padding: 16px 40px;
  -webkit-box-flex: 0;
  flex: 0;
  text-transform: uppercase;
}
#startJourney-button:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
@media all and (max-width: 800px) {
  .startJourney {
    padding: 0;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .startJourney-title {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 2.125rem;
    margin: 40px;
    margin-top: 72px;
    margin-bottom: 0;
    width: 60%;
    text-align: left;
  }
  .startJourney-description {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    margin: 24px 40px;
    width: 80%;
    text-align: left;
  }
  #startJourney-button {
    font-size: 1.125rem;
    padding: 20px 30px;
    margin-bottom: 64px;
    margin-top: 16px;
  }
}
.stats {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.stats-headline {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 2.125rem;
  color: #4d4d4d;
  margin: 100px;
  text-align: center;
}
.stats-main {
  display: -webkit-box;
  display: flex;
  background: url('/img/background-hands.jpg?765d392b4dbb');
  background-size: cover;
  background-position: center center;
  height: 560px;
  width: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.stats-main-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.stats-main-item-icon {
  height: 50px;
  width: 50px;
}
.stats-main-item-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
  margin-top: 24px;
  text-transform: uppercase;
}
.stats-main-item-number {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 2.125rem;
  margin: 0;
  margin-top: 4px;
}
.stats-main-item-number em {
  font-size: 2.813rem;
  font-style: normal;
}
.stats-main-item-divider {
  width: 1px;
  height: 100px;
  background-color: #ffffff;
  margin: 0 50px;
}
.stats-reference {
  font-size: 0.75rem;
}
@media all and (max-width: 800px) {
  .stats-headline {
    font-size: 1.688rem;
    margin: 64px 40px;
  }
  .stats-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: 240vw;
    width: 100vw;
    background: url('/img/background_mobile.jpg?765d392b4dbb');
    background-size: auto 100%;
    background-position: center top;
  }
  .stats-main-item-divider {
    display: none;
  }
  .stats-main-item {
    -webkit-box-flex: 1;
    flex: 1;
  }
}
/** Navigation. */
.sticky-navigation-container {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.sticky-navigation {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  width: 1500px;
  box-shadow: 0 3px 3px -3px #cacaca;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.sticky-navigation-logo {
  height: 30px;
  width: 130px;
  margin: 25px 60px;
  background: url('/img/noom_logo.jpg?765d392b4dbb') center center no-repeat;
  background-color: #ffffff;
  background-size: 100%;
}
#sticky-navigation-button {
  flex-shrink: 0;
  -ms-grid-row-align: center;
  align-self: center;
  background-color: #f75462;
  color: #ffffff;
  border-radius: 40px;
  font-size: 1.125rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-decoration: none;
  outline: none;
  padding: 16px 40px;
  -webkit-box-flex: 0;
  flex: 0;
  text-transform: uppercase;
  position: absolute;
  top: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#sticky-navigation-button:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
@media all and (max-width: 800px) {
  .sticky-navigation-container {
    position: relative;
  }
  .sticky-navigation-logo {
    margin: 10px;
    height: 24px;
    width: 104px;
    background-size: 104px 24px;
  }
  #sticky-navigation-button {
    display: none;
  }
}
.survey * {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  word-break: keep-all;
}
.hidden {
  display: none !important;
}
/**********
 * Mobile *
 **********/
@media only screen and (max-width: 932px) {
  .survey {
    width: 100%;
  }
  .slide {
    width: 100%;
    position: absolute;
    top: 0;
    background: white;
    height: 100%;
  }
  .slide .slide__sub-block {
    position: relative;
    width: 100%;
    height: 32vh;
    min-height: 180px;
    background-color: #369bde;
    text-align: center;
  }
  .slide .slide__sub-block .sub-block__logo {
    position: absolute;
    top: 15px;
    left: 5%;
    width: 20%;
    z-index: 10;
  }
  .slide .slide__sub-block .sub-block__description {
    display: none;
  }
  .slide .slide__sub-block .sub-block__icon-container {
    position: absolute;
    bottom: -2px;
    width: 100%;
  }
  .slide .slide__sub-block .sub-block__icon-container .icon-container__icon--mobile {
    width: 100%;
  }
  .slide .slide__sub-block .sub-block__icon-container .icon-container__icon--desktop {
    display: none;
  }
  .slide .slide__sub-block .sub-block__icon-inner-text {
    position: absolute;
    width: 100%;
    font-size: 24px;
    color: #ffffff;
    z-index: 10;
  }
  .slide .slide__sub-block .sub-block__icon-inner-text--weighing-machine {
    bottom: 21vw;
    margin-left: -0.5%;
  }
  .slide .slide__sub-block .sub-block__icon-inner-text--height {
    bottom: 24vw;
    margin-left: 14%;
  }
  .slide .slide__sub-block .sub-block__icon-inner-text--weight {
    bottom: 29vw;
  }
  .slide .slide__sub-block .sub-block__slide-index-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #d8d8d8;
  }
  .slide .slide__sub-block .sub-block__slide-index-bar .slide-index-bar__passed-slides {
    height: 3px;
    background-color: #085fa4;
  }
  .slide .slide__main-block {
    position: relative;
    width: 100%;
    height: 68vh;
    min-height: 385px;
    background-color: #ffffff;
    text-align: center;
  }
  .slide .slide__main-block.slide__main-block--spacious {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .slide .slide__main-block .main-block__slide-index-bar {
    display: none;
  }
  .slide .slide__main-block .main-block__question {
    padding: 15px 15px 0 15px;
    font-size: 17px;
    color: #3b3b3b;
  }
  .slide .slide__main-block .main-block__question.main-block__question--with-flex {
    margin-top: -15vh;
    padding-top: 0;
  }
  .slide .slide__main-block .main-block__error-message {
    margin-top: 1.5vh;
    font-size: 14px;
    color: #ff3636;
  }
  .slide .slide__main-block .main-block__radio-group {
    margin: 24px;
    padding: 0 15px;
    text-align: left;
  }
  .slide .slide__main-block .main-block__radio-group.main-block__radio-group--nowrap-mobile {
    white-space: nowrap;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio {
    margin: 7px 0;
    color: #4d4d4d;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__input {
    display: none;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__label {
    display: block;
    padding: 0 9px 0 30px;
    font-size: 14px;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio:hover .radio__label {
    color: #9d9d9d;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__input:checked + .radio__label {
    color: #369bde;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__label.radio__label--big {
    display: inline;
    font-size: 24px;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__label .label__circle {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 7px 0 -30px;
    background: url('/img/radio_inactive.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio:hover .radio__label .label__circle {
    background: url('/img/radio_hover.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__input:checked + .radio__label .label__circle {
    background: url('/img/radio_checked.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__checkbox-group {
    margin: 24px;
    padding: 0 15px;
    text-align: left;
  }
  .slide .slide__main-block .main-block__checkbox-group.main-block__checkbox-group--nowrap-mobile {
    white-space: nowrap;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox {
    margin: 7px 0;
    color: #4d4d4d;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__input {
    display: none;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__label {
    display: block;
    padding: 0 9px 0 30px;
    font-size: 14px;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox:hover .checkbox__label {
    color: #9d9d9d;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__input:checked + .checkbox__label {
    color: #369bde;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__label.checkbox__label--big {
    font-size: 24px;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__label .label__square {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 7px 0 -30px;
    background: url('/static/baseline/components/survey-ko/images/icon/checkbox_inactive.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox:hover .checkbox__label .label__square {
    background: url('/static/baseline/components/survey-ko/images/icon/checkbox_hover.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__input:checked + .checkbox__label .label__square {
    background: url('/static/baseline/components/survey-ko/images/icon/checkbox_checked.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__subjective-answer {
    width: 23.5%;
    min-width: 100px;
    max-width: 150px;
    margin: 2.2% auto 0 auto;
    padding-bottom: 5px;
    border-bottom: solid 2px #d7d7d7;
    color: #4d4d4d;
  }
  .main-block__subjective-answers-group {
    margin-top: 24px;
  }
  .slide .slide__main-block .main-block__subjective-answer.main-block__subjective-answer--email {
    width: 90%;
    min-width: none;
    max-width: none;
  }
  .slide .slide__main-block .main-block__subjective-answer.main-block__subjective-answer--active {
    border-bottom: solid 2px #44a7e5;
    color: #44a7e5;
  }
  .slide .slide__main-block .main-block__subjective-answer.main-block__subjective-answer--error {
    border-bottom: solid 2px #ff3c38;
    color: #ff3c38;
  }
  .slide .slide__main-block .main-block__subjective-answer .subjective-answer__answer {
    width: 50%;
    border: none;
    font-size: 24px;
    color: inherit;
    text-align: center;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__subjective-answer--email .subjective-answer__answer {
    width: 100%;
    border: none;
    font-size: 22px;
    color: inherit;
    cursor: pointer;
    margin: 8px 0;
  }
  .slide .slide__main-block .main-block__subjective-answer .subjective-answer__unit {
    font-size: 24px;
  }
  .slide .slide__main-block .main-block__team-introduction {
    margin-top: 20px;
  }
  .slide .slide__main-block .main-block__team-introduction .team-introduction__team {
    display: -webkit-box;
    display: flex;
    height: 40px;
    margin: 15px 0;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .slide .slide__main-block .main-block__team-introduction .team-introduction__team .team__icon {
    width: 40px;
    margin: 0 20px 0 0px;
  }
  .slide .slide__main-block .main-block__team-introduction .team-introduction__team .team__icon.team__icon--wide {
    width: 50px;
    margin: 0 20px;
  }
  .slide .slide__main-block .main-block__team-introduction .team-introduction__team .team__name {
    width: 150px;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #4d4d4d;
  }
  .slide .slide__main-block .main-block__coaching-programs {
    max-width: 500px;
    margin: 16px;
  }
  .slide .slide__main-block .main-block__coaching-programs .coaching-programs__program {
    display: -webkit-box;
    display: flex;
    margin-top: 16px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    line-height: 1.4;
  }
  .slide .slide__main-block .main-block__coaching-programs .coaching-programs__program .program__icon {
    width: 40px;
    margin: 0 15px 0 0px;
  }
  .slide .slide__main-block .main-block__coaching-programs .coaching-programs__program .program__icon.program__icon--wide {
    width: 50px;
    margin: 0 10px;
  }
  .slide .slide__main-block .main-block__coaching-programs .coaching-programs__program .program__description {
    width: 90%;
    margin-right: 15px;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #4d4d4d;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group {
    width: 100%;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group.main-block__move-slide-btn-group--relative-position {
    position: relative;
    margin: 5vh auto;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group.main-block__move-slide-btn-group--absolute-position {
    position: absolute;
    bottom: 5vh;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group .move-slide-btn-group__back-btn {
    width: 43%;
    max-width: 250px;
    margin-right: 2.6%;
    height: 60px;
    border: solid 2px #d7d7d7;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 18px;
    color: #d7d7d7;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group .move-slide-btn-group__next-btn {
    width: 43%;
    max-width: 250px;
    margin-left: 2.6%;
    height: 60px;
    border: solid 2px #d7d7d7;
    border-radius: 8px;
    background-color: #d7d7d7;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group .move-slide-btn-group__next-btn.move-slide-btn-group__next-btn--active,
  .slide .slide__main-block .main-block__move-slide-btn-group .move-slide-btn-group__next-btn:hover {
    border: solid 2px #369bde;
    background-color: #369bde;
  }
  .slide.slide--loading {
    text-align: center;
  }
  .slide.slide--loading .slide__logo {
    width: 20%;
    margin-top: 3%;
  }
  .slide.slide--loading .slide__animation {
    position: fixed;
    left: 50%;
    bottom: 15vh;
    width: 240px;
    margin-left: -120px;
  }
  .slide.slide--loading .slide__progress-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 11vh;
    background-color: #7fc0f5;
  }
  .progressbar-text {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
/***********
 * Desktop *
 ***********/
@media only screen and (min-width: 933px) {
  .survey {
    padding: 64px;
  }
  body {
    display: table-cell;
    width: 100vw;
    height: 100vh;
    vertical-align: middle;
  }
  .slide {
    display: -webkit-box;
    display: flex;
    width: 933px;
    height: 485px;
    margin: 0 auto;
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2);
  }
  .slide .slide__sub-block {
    position: relative;
    width: 275px;
    overflow-y: hidden;
    background-color: #369bde;
  }
  .slide .slide__sub-block .sub-block__logo {
    width: 100px;
    margin: 21px 0 0 18px;
  }
  .slide .slide__sub-block .sub-block__description {
    position: relative;
    margin: 20px 18px 0 18px;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.5;
    color: #ffffff;
    z-index: 10;
  }
  .slide .slide__sub-block .sub-block__icon-container {
    position: absolute;
    bottom: -4px;
    width: 100%;
  }
  .slide .slide__sub-block .sub-block__icon-container .icon-container__icon--desktop {
    width: 100%;
  }
  .slide .slide__sub-block .sub-block__icon-container .icon-container__icon--mobile {
    display: none;
  }
  .slide .slide__sub-block .sub-block__icon-inner-text {
    position: absolute;
    font-size: 35px;
    color: #ffffff;
    text-align: center;
    z-index: 10;
  }
  .slide .slide__sub-block .sub-block__icon-inner-text--weighing-machine {
    bottom: 207px;
    margin-left: 40%;
    width: 55px;
  }
  .slide .slide__sub-block .sub-block__icon-inner-text--height {
    bottom: 183px;
    margin-left: 57%;
    width: 85px;
  }
  .slide .slide__sub-block .sub-block__icon-inner-text--weight {
    bottom: 167px;
    margin-left: 30%;
    width: 85px;
  }
  .slide .slide__sub-block .sub-block__slide-index-bar {
    display: none;
  }
  .slide .slide__main-block {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    width: 658px;
    overflow-y: hidden;
    margin: 0 30px 0 110px;
    background-color: #ffffff;
    text-align: left;
  }
  .slide .slide__main-block .main-block__slide-index-bar {
    position: absolute;
    top: 48px;
    width: 366px;
    height: 3px;
    background-color: #d8d8d8;
  }
  .slide .slide__main-block .main-block__slide-index-bar .slide-index-bar__passed-slides {
    height: 3px;
    background-color: #085fa4;
  }
  .slide .slide__main-block .main-block__question {
    font-size: 24px;
    color: #3b3b3b;
  }
  .slide .slide__main-block .main-block__question.main-block__question--with-flex {
    margin-top: -10vh;
  }
  .slide .slide__main-block .main-block__error-message {
    margin-top: 1.5vh;
    font-size: 18px;
    color: #ff3636;
  }
  .slide .slide__main-block .main-block__radio-group {
    margin-top: 5px;
  }
  .slide .slide__main-block .main-block__radio-group.main-block__radio-group--nowrap-desktop {
    white-space: nowrap;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio {
    margin: 7px 0;
    color: #4d4d4d;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__input {
    display: none;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__label {
    display: block;
    padding: 0 9px 0 30px;
    font-size: 20px;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio:hover .radio__label {
    color: #9d9d9d;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__input:checked + .radio__label {
    color: #369bde;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__label.radio__label--big {
    display: inline;
    font-size: 24px;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__label .label__circle {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 7px 0 -30px;
    background: url('/static/baseline/components/survey-ko/images/icon/radio_inactive.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio:hover .radio__label .label__circle {
    background: url('/static/baseline/components/survey-ko/images/icon/radio_hover.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__radio-group .radio-group__radio .radio__input:checked + .radio__label .label__circle {
    background: url('/static/baseline/components/survey-ko/images/icon/radio_checked.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__checkbox-group {
    margin-top: 5px;
  }
  .slide .slide__main-block .main-block__checkbox-group.main-block__checkbox-group--nowrap-desktop {
    white-space: nowrap;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox {
    margin: 7px 0;
    color: #4d4d4d;
    width: 90%;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__input {
    display: none;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__label {
    display: block;
    padding: 0 9px 0 30px;
    font-size: 20px;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox:hover .checkbox__label {
    color: #9d9d9d;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__input:checked + .checkbox__label {
    color: #369bde;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__label .label__square {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 7px 0 -30px;
    background: url('/static/baseline/components/survey-ko/images/icon/checkbox_inactive.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox:hover .checkbox__label .label__square {
    background: url('/static/baseline/components/survey-ko/images/icon/checkbox_hover.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__checkbox-group .checkbox-group__checkbox .checkbox__input:checked + .checkbox__label .label__square {
    background: url('/static/baseline/components/survey-ko/images/icon/checkbox_checked.png?765d392b4dbb');
    background-size: 18px;
  }
  .slide .slide__main-block .main-block__subjective-answer {
    width: 120px;
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: solid 2px #d7d7d7;
    color: #d7d7d7;
  }
  .slide .slide__main-block .main-block__subjective-answer.main-block__subjective-answer--active {
    border-bottom: solid 2px #44a7e5;
    color: #44a7e5;
  }
  .slide .slide__main-block .main-block__subjective-answer.main-block__subjective-answer--error {
    border-bottom: solid 2px #ff3c38;
    color: #ff3c38;
  }
  .slide .slide__main-block .main-block__subjective-answer.main-block__subjective-answer--email {
    width: 450px;
  }
  .main-block__subjective-answers-group {
    display: -webkit-box;
    display: flex;
  }
  .main-block__subjective-answers-group .main-block__subjective-answer:not(:first-child) {
    margin-left: 16px;
  }
  .slide .slide__main-block .main-block__subjective-answer .subjective-answer__answer {
    width: 75px;
    border: none;
    font-size: 24px;
    color: inherit;
    text-align: center;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__subjective-answer.main-block__subjective-answer--email .subjective-answer__answer {
    width: 100%;
    border: none;
    font-size: 20px;
    text-align: left;
    padding-bottom: 8px;
  }
  .slide .slide__main-block .main-block__subjective-answer .subjective-answer__unit {
    font-size: 24px;
  }
  .slide .slide__main-block .main-block__team-introduction {
    margin-top: 10px;
  }
  .slide .slide__main-block .main-block__team-introduction .team-introduction__team {
    display: -webkit-box;
    display: flex;
    height: 50px;
    margin: 10px 0;
    -webkit-box-align: center;
    align-items: center;
  }
  .slide .slide__main-block .main-block__team-introduction .team-introduction__team .team__icon {
    width: 40px;
    margin: 0 20px 0 0px;
  }
  .slide .slide__main-block .main-block__team-introduction .team-introduction__team .team__icon.team__icon--wide {
    width: 50px;
    margin: 0 20px;
  }
  .slide .slide__main-block .main-block__team-introduction .team-introduction__team .team__name {
    width: 150px;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    color: #4d4d4d;
  }
  .slide .slide__main-block .main-block__coaching-programs {
    max-width: 600px;
    padding-top: 20px;
  }
  .slide .slide__main-block .main-block__coaching-programs .coaching-programs__program {
    display: -webkit-box;
    display: flex;
    min-height: 85px;
    -webkit-box-align: center;
    align-items: center;
    line-height: 1.4;
  }
  .slide .slide__main-block .main-block__coaching-programs .coaching-programs__program .program__icon {
    width: 40px;
    margin: 0 15px 0 0px;
  }
  .slide .slide__main-block .main-block__coaching-programs .coaching-programs__program .program__icon.program__icon--wide {
    width: 50px;
    margin: 0 20px 0 0;
  }
  .slide .slide__main-block .main-block__coaching-programs .coaching-programs__program .program__description {
    width: 90%;
    margin: 0 10% 0 2%;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    color: #4d4d4d;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group {
    width: 100%;
    position: absolute;
    bottom: 30px;
    text-align: right;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group .move-slide-btn-group__back-btn {
    width: 150px;
    height: 60px;
    border: solid 2px #d7d7d7;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 18px;
    color: #d7d7d7;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group .move-slide-btn-group__back-btn:hover {
    border: solid 2px #9d9d9d;
    color: #9d9d9d;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group .move-slide-btn-group__next-btn {
    width: 150px;
    margin-left: 30px;
    height: 60px;
    border: solid 2px #d7d7d7;
    border-radius: 8px;
    background-color: #d7d7d7;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
  }
  .slide .slide__main-block .main-block__move-slide-btn-group .move-slide-btn-group__next-btn.move-slide-btn-group__next-btn--active,
  .slide .slide__main-block .main-block__move-slide-btn-group .move-slide-btn-group__next-btn:hover {
    border: solid 2px #369bde;
    background-color: #369bde;
  }
  .slide.slide--loading {
    display: block;
    position: relative;
    text-align: center;
  }
  .slide.slide--loading .slide__logo {
    width: 100px;
    margin-top: 27px;
  }
  .slide.slide--loading .slide__animation {
    position: absolute;
    left: 50%;
    bottom: 85px;
    width: 250px;
    margin-left: -150px;
  }
  .slide.slide--loading .slide__progress-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    background-color: #369bde;
  }
}
/*************
 * 3rd-party *
 *************/
.wdt-loading-screen {
  background: none !important;
}
@media only screen and (max-width: 932px) {
  .wdt-loading-phrases {
    margin-top: -10vh !important;
  }
}
@media only screen and (min-width: 933px) {
  .wdt-loading-phrases {
    margin-top: -110px !important;
  }
}
.wdt-loading-phrase {
  font-weight: 700;
  line-height: 1.89;
}
.wdt-loading-phrase.wdt-checked {
  color: #2196f3;
}
.progressbar-text {
  font-size: 25px;
  font-weight: 700;
}
.progress {
  height: 100%;
  border-radius: 0;
  background-color: #085fa4;
}
.wdt-loading-phrase {
  color: #4d4d4d;
}
.wdt-loading-screen {
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999998;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  position: inherit;
}
.wdt-loading-phrases {
  width: 300px;
  margin: 0 auto;
  height: 106px;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  text-align: center;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wdt-loading-phrase-category {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.wdt-loading-phrases:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #ffffff;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 50%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 50%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}
.wdt-loading-phrase {
  padding-left: 30px;
  position: relative;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  line-height: 30px;
  height: 30px;
}
.wdt-loading-phrase:before {
  content: " ";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 6px;
  left: 0;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.wdt-loading-phrase:after {
  opacity: 0;
  height: 11px;
  width: 7px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-right: 3px solid #2EB150;
  border-top: 3px solid #2EB150;
  border-radius: 2.5px !important;
  content: '';
  left: 3px;
  top: 16px;
  position: absolute;
  -webkit-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
}
.wdt-loading-phrase.wdt-checked:after {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-name: checkmark;
  animation-name: checkmark;
  -webkit-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes checkmark {
  0% {
    height: 0;
    width: 7px;
    opacity: 1;
  }
  20% {
    height: 2px;
    width: 7px;
    opacity: 1;
  }
  40% {
    height: 5px;
    width: 7px;
    opacity: 1;
  }
  100% {
    height: 11px;
    width: 7px;
    opacity: 1;
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 7px;
    opacity: 1;
  }
  20% {
    height: 2px;
    width: 7px;
    opacity: 1;
  }
  40% {
    height: 5px;
    width: 7px;
    opacity: 1;
  }
  100% {
    height: 11px;
    width: 7px;
    opacity: 1;
  }
}
.wdt-loading-screen {
  background: none !important;
}
@media only screen and (max-width: 932px) {
  .wdt-loading-phrases {
    margin-top: -10vh !important;
  }
}
@media only screen and (min-width: 933px) {
  .wdt-loading-phrases {
    margin-top: -110px !important;
  }
}
.wdt-loading-phrase {
  font-weight: 700;
  line-height: 1.89;
}
.videoOverlay {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.videoOverlay-isHidden {
  display: none;
}
.videoOverlay-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: end;
  align-items: flex-end;
}
.videoOverlay-close {
  padding: .5rem 1rem;
  margin: 2rem 0;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #ffffff;
  outline: 0;
  border: 2px solid #ffffff;
  border-radius: 2rem;
  background-color: rgba(1, 1, 1, 0);
}
.videoOverlay-video {
  width: 840px;
  height: 472px;
}
@media all and (max-width: 800px) {
  .videoOverlay-video {
    width: 100%;
    height: auto;
  }
}
.survey-ex {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-transition: font 0.3s ease;
  transition: font 0.3s ease;
  width: 50%;
}
.survey-ex.email {
  position: relative;
}
.survey-ex-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #4d4d4d;
  text-align: center;
}
.survey-ex-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: #4d4d4d;
  text-align: center;
}
.survey-ex-error {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 1.375rem;
  color: #f75462;
  margin: 0;
  display: none;
}
.survey-ex-gender {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-transition: font 0.3s ease;
  transition: font 0.3s ease;
  width: 50%;
}
.survey-ex-gender-option {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.survey-ex-gender-icon {
  height: 80px;
  width: 80px;
  margin: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.survey-ex-gender-icon:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.survey-ex-gender-icon.selected {
  border: 2px solid #2196f3;
  border-radius: 50%;
}
.survey-ex-gender-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #4d4d4d;
}
.survey-ex-weight {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  align-content: center;
}
.survey-ex-gauge-container {
  display: inline-block;
  position: relative;
  width: 250px;
  height: 125px;
  margin-top: 16px;
}
.survey-ex-gauge {
  width: 250px;
  height: 125px;
  position: relative;
  overflow: hidden;
}
.survey-ex-gauge-inner {
  width: 250px;
  height: 125px;
  display: block;
  border-radius: 250px 250px 0 0;
  z-index: 1;
}
.survey-ex-gauge-inner:after {
  content: '';
  width: 170px;
  height: 85px;
  top: 40px;
  left: 40px;
  background-color: #ffffff;
  border-radius: 250px 250px 0 0;
  position: absolute;
  z-index: 3;
}
.survey-ex-gauge-inner.survey-ex-gauge-weight {
  background-color: #ffe782;
}
.survey-ex-gauge-inner.survey-ex-gauge-weightLossGoal {
  background-color: #cbfaed;
}
.survey-ex-gauge-spinner {
  width: 250px;
  height: 125px;
  position: absolute;
  z-index: 2;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border-radius: 0 0 250px 250px;
}
.survey-ex-gauge-spinner.survey-ex-gauge-weight {
  background-color: #ffcf04;
}
.survey-ex-gauge-spinner.survey-ex-gauge-weightLossGoal {
  background-color: #6be3c1;
}
.survey-ex-gauge-pointer {
  display: block;
  width: 6px;
  height: 130px;
  border-radius: 4px 4px 0 0;
  position: absolute;
  z-index: 4;
  bottom: 0px;
  left: 122px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.survey-ex-gauge-pointer-knob {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 115px;
  bottom: -10px;
  z-index: 5;
  border-radius: 20px;
}
.survey-ex-gauge-pointer.survey-ex-gauge-weight,
.survey-ex-gauge-pointer-knob.survey-ex-gauge-weight {
  background-color: #ff8a1a;
}
.survey-ex-gauge-pointer.survey-ex-gauge-weightLossGoal,
.survey-ex-gauge-pointer-knob.survey-ex-gauge-weightLossGoal {
  background-color: #30c1c5;
}
.survey-ex-height {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-transition: font 0.3s ease;
  transition: font 0.3s ease;
  width: 50%;
}
.survey-ex-slider-container {
  margin-bottom: 48px;
}
.survey-ex-slider {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
}
.survey-ex-slider.vertical {
  height: 245px;
}
.survey-ex-slider.horizontal {
  width: 310px;
  margin-top: 24px;
  margin-bottom: 40px;
}
.survey-ex-slider-outer {
  position: absolute;
  background-color: #cacaca;
  border-radius: 5px;
  z-index: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.survey-ex-slider-ruler {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.survey-ex-slider-ruler-mark {
  background-color: #cacaca;
}
.survey-ex-slider-ruler-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #969696;
}
.survey-ex-slider-inner {
  display: -webkit-box;
  display: flex;
  z-index: 1;
  position: relative;
}
.survey-ex-slider-inner-filler {
  background-color: #2196f3;
  border-radius: 5px;
}
.survey-ex-slider-indicator {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.survey-ex-slider-indicator-dot {
  height: 14px;
  width: 14px;
  border-radius: 14px;
  background-color: #2196f3;
  position: absolute;
}
.survey-ex-slider-indicator span {
  background-color: #000000;
}
.survey-ex-slider-indicator-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 1.25rem;
  color: #4d4d4d;
  border: 1px solid #000000;
  border-radius: 40px;
  text-align: center;
  width: 110px;
  height: 53px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  background-color: #ffffff;
  position: relative;
}
.survey-ex-slider-indicator-hint {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 1.25rem;
  color: #4d4d4d;
  border: 1px solid #000000;
  border-radius: 40px;
  text-align: center;
  width: 110px;
  height: 53px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  background-color: #ffffff;
  position: relative;
  position: absolute;
  background-color: #ffe782;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.survey-ex-slider.vertical .survey-ex-slider-outer {
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 2px;
  height: 100%;
}
.survey-ex-slider.vertical .survey-ex-slider-ruler {
  height: 99%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.survey-ex-slider.vertical .survey-ex-slider-ruler-mark {
  height: 2px;
  width: 15px;
  margin-left: -15px;
}
.survey-ex-slider.vertical .survey-ex-slider-ruler-text {
  margin-left: -40px;
  margin-top: -8px;
}
.survey-ex-slider.vertical .survey-ex-slider-inner {
  height: 1.5%;
}
.survey-ex-slider.vertical .survey-ex-slider-inner-filler {
  height: 100%;
  width: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.survey-ex-slider.vertical .survey-ex-slider-indicator {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 1px;
  left: 0;
}
.survey-ex-slider.vertical .survey-ex-slider-indicator-dot {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 0;
}
.survey-ex-slider.vertical .survey-ex-slider-indicator span {
  height: 2px;
  width: 30px;
}
.survey-ex-slider.horizontal .survey-ex-slider-outer {
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
}
.survey-ex-slider.horizontal .survey-ex-slider-ruler {
  width: 99%;
}
.survey-ex-slider.horizontal .survey-ex-slider-ruler-mark {
  width: 2px;
  height: 15px;
  margin-top: -15px;
}
.survey-ex-slider.horizontal .survey-ex-slider-ruler-text {
  margin-top: -40px;
  margin-left: -8px;
}
.survey-ex-slider.horizontal .survey-ex-slider-inner {
  width: 1.5%;
}
.survey-ex-slider.horizontal .survey-ex-slider-inner-filler {
  width: 100%;
  height: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.survey-ex-slider.horizontal .survey-ex-slider-indicator {
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  right: 1px;
}
.survey-ex-slider.horizontal .survey-ex-slider-indicator-dot {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
}
.survey-ex-slider.horizontal .survey-ex-slider-indicator span {
  width: 2px;
  height: 30px;
}
.survey-ex-height-icon {
  display: none;
  height: 160px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.survey-ex-height-input:focus {
  border: 1px solid #ff8a1a;
}
.survey-ex-height-input-label {
  font-size: 1.25rem;
  color: #969696;
  padding-right: 16px;
}
.survey-ex-age-icon {
  display: none;
  height: 90px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.survey-ex-height-icon.selected,
.survey-ex-age-icon.selected {
  display: block;
}
.survey-ex-age-main-content {
  display: -webkit-box;
  display: flex;
  margin: 24px;
}
.survey-ex-age-progress {
  display: -webkit-box;
  display: flex;
}
.survey-ex-age-progress-bar {
  display: -webkit-box;
  display: flex;
  width: 8px;
  background-color: #cacaca;
  border-radius: 25px;
  -webkit-box-align: end;
  align-items: flex-end;
}
.survey-ex-age-progress-bar-progress {
  width: 8px;
  background-color: #16aa00;
  border-radius: 25px;
  -webkit-transition: font 0.3s ease;
  transition: font 0.3s ease;
}
.survey-ex-age-progress-indicators {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  justify-content: space-around;
}
.survey-ex-age-progress-indicator {
  height: 2px;
  width: 20px;
  background-color: #969696;
}
.survey-ex-age-progress-indicator.selected {
  background-color: #16aa00;
}
.survey-ex-age-option-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  margin-left: 16px;
}
.survey-ex-age-option {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #969696;
  font-size: 1.688rem;
  margin: 0;
  -webkit-transition: font 0.3s ease;
  transition: font 0.3s ease;
  width: 150px;
  height: 53px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
}
.survey-ex-age-option.selected {
  font-size: 2.813rem;
  color: #4d4d4d;
}
.survey-ex-options-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 24px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.survey-ex-options {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.survey-ex-options-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-align: start;
  align-items: flex-start;
}
.survey-ex-option {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 16px;
}
.survey-ex-option-icon {
  width: 110px;
  height: 90px;
  border: 2px solid #ffffff;
}
.survey-ex-option-icon:hover {
  background-color: #edf8ff;
  border: 2px solid #2196f3;
}
.survey-ex-option.selected .survey-ex-option-icon {
  background-color: #edf8ff;
  border: 2px solid #2196f3;
}
.survey-ex-option-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin: 4px;
  color: #4d4d4d;
  text-align: center;
}
.survey-ex-option.selected .survey-ex-option-text {
  color: #2196f3;
}
.survey-ex-option-details {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 40px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.survey-ex-option-detail {
  display: none;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #2196f3;
  margin: 32px;
  text-align: center;
}
.survey-ex-email-icon {
  display: none;
}
@media all and (max-width: 800px) {
  .survey-ex {
    width: 100%;
  }
  .survey-ex-title,
  .survey-ex-text {
    width: 70%;
    text-align: center;
    margin: 16px;
  }
  .survey-ex-options-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    margin: 16px;
    margin-bottom: 32px;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .survey-ex-options-container.email {
    width: 100%;
  }
  .survey-ex-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .survey-ex-option {
    margin: 4px;
  }
  .survey-ex-option-icon {
    width: 90px;
    height: auto;
    border: 2px solid #ffffff;
  }
  .survey-ex-option-icon:hover {
    background-color: #ffffff;
    border: 2px solid #ffffff;
  }
  .survey-ex-option-detail {
    width: auto;
  }
  .survey-ex-email-icon {
    display: block;
    position: absolute;
    top: -24px;
    right: 0;
  }
  .survey-ex-slider.horizontal {
    width: 275px;
  }
}
#podcast {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: none;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.podcast-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 650px;
  background-color: #ffffff;
  position: relative;
}
.podcast-close-icon {
  height: 32px;
  width: 32px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.podcast-close-icon:hover {
  -webkit-filter: drop-shadow(1px 1px 1px black);
  filter: drop-shadow(1px 1px 1px black);
}
.podcast-image-container {
  height: 216px;
}
.podcast-image {
  width: 100%;
  height: 100%;
}
.podcast-main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #4d4d4d;
}
.podcast-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin: 0;
  margin-top: 32px;
  font-size: 1.875rem;
  text-align: center;
}
.podcast-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin: 0;
  margin-top: 24px;
  font-size: 1.688rem;
}
.podcast-text span {
  color: #f75462;
}
.podcast-button-container {
  display: -webkit-box;
  display: flex;
  margin: 48px;
}
.podcast-button {
  background-color: #f75462;
  color: #ffffff;
  border: 0px;
  border-radius: 40px;
  font-size: 1.125rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-decoration: none;
  outline: none;
  padding: 16px 40px;
  text-transform: uppercase;
}
.podcast-button:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.podcast-button.reverse {
  background-color: #ffffff;
  color: #f75462;
  border: 1px solid #f75462;
  margin-left: 24px;
}
.allison .podcast-button {
  background-color: #EA4B9B;
}
.allison .podcast-button.reverse {
  background-color: #ffffff;
  color: #EA4B9B;
  border: 1px solid #EA4B9B;
}
.allison .podcast-text span {
  color: #EA4B9B;
}
.gabfest .podcast-main-content {
  background-color: #f75462;
}
.gabfest .podcast-title {
  color: #ffffff;
}
.gabfest .podcast-text {
  color: #ffffff;
}
.gabfest .podcast-text span {
  color: #ffffff;
}
.gabfest .podcast-button {
  background-color: #ffffff;
  color: #f75462;
}
.gabfest .podcast-button.reverse {
  background-color: #f75462;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.wisehealth .podcast-button {
  background-color: #2196f3;
}
.wisehealth .podcast-button.reverse {
  background-color: #ffffff;
  color: #2196f3;
  border: 1px solid #2196f3;
}
@media all and (max-width: 800px) {
  .podcast-container {
    width: auto;
    margin: 8px;
  }
  .podcast-close-icon {
    top: 0;
    right: 0;
  }
  .podcast-image-container {
    width: 100%;
    height: 33vw;
  }
  .podcast-image {
    width: 100%;
    height: 100%;
  }
  .podcast-main-content {
    padding: 0 8px;
  }
  .podcast-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .podcast-text {
    font-size: 1.125rem;
    margin-top: 8px;
    text-align: center;
  }
  .podcast-button-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0;
    margin-top: 32px;
  }
  .podcast-button {
    padding: 16px;
  }
  .podcast-button.reverse {
    border: none !important;
    margin-left: 0;
    padding: 0;
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .podcast-button.reverse:hover {
    box-shadow: none;
  }
}
#popup {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: none;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.popup-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 650px;
  background-color: #ffffff;
  position: relative;
}
.popup-close-icon {
  height: 32px;
  width: 32px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.popup-close-icon:hover {
  -webkit-filter: drop-shadow(1px 1px 1px black);
  filter: drop-shadow(1px 1px 1px black);
}
.popup-image-container {
  height: 280px;
}
.popup-image {
  width: 100%;
  height: 100%;
}
.popup-main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #4d4d4d;
}
.popup-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0;
  margin-top: 32px;
  font-size: 2.125rem;
  color: #4d4d4d;
  text-align: center;
}
.popup-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin: 0;
  margin-top: 24px;
  font-size: 2.125rem;
  color: #f75462;
  text-align: center;
}
.popup-button-container {
  display: -webkit-box;
  display: flex;
  margin: 48px;
}
.popup-button {
  background-color: #f75462;
  color: #ffffff;
  border: 0px;
  border-radius: 40px;
  font-size: 1.125rem;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-decoration: none;
  outline: none;
  padding: 16px 40px;
  text-transform: uppercase;
}
.popup-button:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.popup-button.reverse {
  background-color: #ffffff;
  color: #f75462;
  border: 1px solid #f75462;
  margin-left: 24px;
}
.popup-image-mobile {
  display: none;
}
@media all and (max-width: 800px) {
  .popup-container {
    width: auto;
    margin: 8px;
  }
  .popup-close-icon {
    top: 0;
    right: 0;
  }
  .popup-image-container {
    width: 100%;
    height: 33vw;
  }
  .popup-image {
    width: 100%;
    height: 100%;
  }
  .popup-main-content {
    padding: 0 8px;
  }
  .popup-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .popup-text {
    font-size: 1.5rem;
    margin-top: 16px;
    text-align: center;
  }
  .popup-button-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0;
    margin-top: 32px;
  }
  .popup-button {
    padding: 16px;
  }
  .popup-button.reverse {
    border: none !important;
    margin-left: 0;
    padding: 0;
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .popup-button.reverse:hover {
    box-shadow: none;
  }
  .popup-image-mobile {
    display: inline;
    width: 100%;
    height: 100%;
  }
  .popup-image {
    display: none;
  }
}
.plans {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  padding-bottom: 64px;
}
.plans-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background: url('/static/experiment/components/ex-plans/images/background.jpg?765d392b4dbb');
  background-size: cover;
  background-position: center bottom;
  padding: 56px 8px 200px 8px;
  -webkit-box-align: center;
  align-items: center;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.7);
}
.plans-header-arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
}
.plans-header-headline {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 2.813rem;
  font-style: normal;
  font-stretch: normal;
  color: #ffffff;
  padding: 0;
  margin: 0;
  margin-top: 16px;
}
.plans-header-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.375rem;
  color: #ffffff;
  margin: 0;
  margin-top: 24px;
  text-align: center;
}
.plans-header-text span {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.plans-header-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-top: 56px;
  background-color: #ffffff;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 632px;
  padding: 32px;
}
.plans-header-content-results {
  display: -webkit-box;
  display: flex;
  margin-bottom: 56px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.plans-header-content-results-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.plans-header-content-results-icon {
  height: 16px;
  width: 24px;
}
.plans-header-content-result {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 16px 32px;
}
.plans-header-content-result.goal {
  padding-right: 0;
  border-left: 1px solid #cacaca;
}
.plans-header-content-result:first-child {
  padding-left: 0;
}
.plans-header-content-result-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #4d4d4d;
  font-size: 1.875rem;
  margin: 0;
  margin-top: 8px;
  text-align: center;
}
.plans-header-content-result-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #4d4d4d;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}
.plans-header-content-result-title.watermelon {
  color: #f75462;
}
.plans-header-content-text-bmi-level {
  color: #ffffff;
}
.plans-header-content-cta {
  display: -webkit-box;
  display: flex;
  font-size: 1.125rem;
  padding: 16px 8px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2rem;
  -webkit-box-pack: center;
  justify-content: center;
  color: #ffffff;
  width: 350px;
  align-self: center;
  background-color: #f75462;
}
.plans-header-content-cta:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.plans-header-content-disclaimer {
  display: none;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #183c78;
  margin: 16px;
}
.plans-main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding-bottom: 40px;
}
.plans-plan-list {
  display: -webkit-box;
  display: flex;
  padding-bottom: 40px;
}
.plan {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 300px;
  background-color: #ffffff;
  margin-top: -80px;
}
.plan:not(#recommended-plan):first-child {
  -webkit-box-ordinal-group: 1;
  order: 0;
}
.plan:not(#recommended-plan):last-child {
  margin-left: 32px;
  -webkit-box-ordinal-group: 3;
  order: 2;
}
.plan#recommended-plan {
  margin-top: -128px;
  margin-left: 32px;
  -webkit-box-ordinal-group: 2;
  order: 1;
  box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.7);
}
.plan-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  border-bottom: none;
  height: 80px;
  background-color: #f2f2f2;
}
#recommended-plan .plan-header {
  background-color: #f75462;
}
.plan-header-name {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  color: #4d4d4d;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: 400;
}
.plan-header-discount {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #4d4d4d;
  text-transform: capitalize;
  padding: 0;
  margin: 0;
  margin-top: 16px;
}
.plan-header-discount.es {
  text-transform: none;
}
#recommended-plan .plan-header-name,
#recommended-plan .plan-header-discount {
  color: #ffffff;
}
.plan-price-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-top: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 16px 0;
  padding-bottom: 32px;
}
.plan-price {
  display: -webkit-box;
  display: flex;
  color: #4d4d4d;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.plan-price-text {
  display: none;
}
#recommended-plan .plan-price-text {
  display: block;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #f75462;
  width: 80%;
  text-align: center;
  margin: 0;
  margin-bottom: 32px;
}
.plan-weight-loss-goal {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 1.375rem;
  display: -webkit-box;
  display: flex;
  padding: 0;
  margin: 0;
  -webkit-box-align: end;
  align-items: flex-end;
}
.plan-weight-loss-goal > span {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 8px;
}
.plan-weight-loss-goal > em {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 3.5rem;
  font-style: normal;
  padding: 0;
  margin: 0;
  margin-right: 4px;
}
.plans-price-divider {
  height: 2px;
  background-color: #cacaca;
  width: 100%;
}
.plan-price-month {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  margin: 40px 0;
}
.plan-price-month em {
  font-style: normal;
}
.plan-signup {
  display: -webkit-box;
  display: flex;
  font-size: 1rem;
  padding: 16px 40px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border-radius: 2rem;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0 32px;
  color: #f75462;
  background-color: #ffffff;
  border: 1px solid #f75462;
}
.plan-signup:hover {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
#recommended-plan .plan-signup {
  color: #ffffff;
  background-color: #f75462;
}
@media all and (max-width: 800px) {
  .plans-header {
    width: 100%;
    padding: 0;
    padding-bottom: 56px;
    box-shadow: none;
    -webkit-box-align: start;
    align-items: flex-start;
    background: url('/static/experiment/components/ex-plans/images/background-mobile.jpg?765d392b4dbb');
    background-size: cover;
    background-position: center bottom;
  }
  .plans-header-headline {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 2.125rem;
    margin-top: 56px;
    margin-left: 16px;
    text-align: left;
  }
  .plans-header-text {
    font-size: 1.125rem;
    margin-top: 16px;
    margin-left: 16px;
    text-align: left;
  }
  .plans-header-content {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 56px;
    padding-bottom: 56px;
  }
  .plans-header-content-results {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 24px;
  }
  .plans-header-content-result-title.watermelon {
    color: #4d4d4d;
  }
  .plans-header-content-result.goal {
    border-left: none;
    border-top: 1px solid #cacaca;
    padding-left: 0;
    padding-right: 0;
  }
  .plans-header-content-result.goal .plans-header-content-result-text {
    color: #f75462;
  }
  .plans-header-content-result:first-child {
    padding-left: 0;
  }
  .plans-header-content-result:last-child {
    padding-right: 0;
  }
  .plans-header-content-cta {
    font-size: 1rem;
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 40px;
  }
  .plans-header-content-disclaimer {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
  .plans-header-arrow-down {
    -ms-grid-row-align: center;
    align-self: center;
  }
  .plans-plan-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .plan {
    border: 1px solid #cacaca;
  }
  .plan#recommended-plan {
    -webkit-box-ordinal-group: 1;
    order: 0;
    margin-left: 0;
    margin-top: -24px;
    border: none;
  }
  .plan:not(#recommended-plan):first-child {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .plan:not(#recommended-plan):last-child {
    margin-left: 0;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
  .plan:not(#recommended-plan) {
    margin-top: 16px;
  }
}
.ex-what-you-get {
  display: -webkit-box;
  display: flex;
  height: 680px;
  width: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.7);
}
.ex-what-you-get-desktop {
  height: 100%;
}
.ex-what-you-get-background-image {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.ex-what-you-get-main-content-image.visible,
.ex-what-you-get-background-image.visible {
  display: inline;
}
.ex-what-you-get-main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 100%;
}
.ex-what-you-get-main-content-spacing,
.ex-what-you-get-main-content-detail {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
  flex: 1;
}
.ex-what-you-get-main-content-image-container {
  display: -webkit-box;
  display: flex;
  width: 297px;
  height: 590px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}
.ex-what-you-get-main-content-image {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
}
.ex-what-you-get-main-content-detail {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  height: 100%;
  padding-left: 24px;
}
.ex-what-you-get-main-content-detail-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  margin: 0;
  margin-top: 24px;
  width: 60%;
}
.ex-what-you-get-main-content-detail-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
  margin-top: 24px;
  width: 60%;
}
.ex-what-you-get-navigation-indicators {
  display: -webkit-box;
  display: flex;
  margin-top: 150px;
}
.ex-what-you-get-navigation-indicator {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background-color: #969696;
  margin-right: 16px;
}
.ex-what-you-get-navigation-indicator.selected {
  background-color: #ffffff;
}
.ex-what-you-get-navigation {
  display: -webkit-box;
  display: flex;
  margin-bottom: 150px;
}
.ex-what-you-get-navigation-icon {
  width: 40px;
  height: 40px;
  margin-right: 32px;
}
.ex-what-you-get-navigation-icon:hover {
  -webkit-filter: drop-shadow(1px 4px 1px black);
  filter: drop-shadow(1px 4px 1px black);
}
.ex-what-you-get-mobile {
  display: none;
}
.ex-what-you-get-mobile-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}
.ex-what-you-get-mobile-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-radius: 3px;
  box-shadow: 1px 1px 1px 0 #969696;
  margin: 0 8px;
  background-color: #ffffff;
  padding: 16px;
  width: 80%;
}
.ex-what-you-get-mobile-item.selected {
  padding-bottom: 0;
}
.ex-what-you-get-mobile-item:not(:first-child) {
  margin-top: 8px;
}
.ex-what-you-get-mobile-item-header {
  display: -webkit-box;
  display: flex;
  padding-top: 8px;
}
.ex-what-you-get-mobile-item-title-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  justify-content: center;
}
.ex-what-you-get-mobile-item-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  color: #4d4d4d;
  padding: 0px;
  margin: 0px;
}
.ex-what-you-get-mobile-item-drop-down-icon {
  max-width: 100%;
  max-height: 100%;
  align-self: flex-start;
  margin-top: 8px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.selected .ex-what-you-get-mobile-item-drop-down-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ex-what-you-get-mobile-item-content {
  display: none;
}
.selected .ex-what-you-get-mobile-item-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.ex-what-you-get-mobile-item-content-text {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #4d4d4d;
  margin: 0;
  margin-top: 16px;
}
.ex-what-you-get-mobile-item-content-graphic-container {
  display: -webkit-box;
  display: flex;
  margin: 0 -16px;
  margin-top: 16px;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
}
.ex-what-you-get-mobile-item-content-graphic-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
}
.ex-what-you-get-mobile-item-content-graphic {
  width: 300px;
  align-self: flex-end;
  z-index: 1;
}
@media all and (max-width: 800px) {
  .ex-what-you-get {
    height: auto;
  }
  .ex-what-you-get-mobile {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background: url('/static/experiment/components/what-you-get/images/background-mobile.jpg?765d392b4dbb');
    background-size: cover;
    background-position: center top;
    padding: 150px 0;
    padding-bottom: 200px;
  }
  .ex-what-you-get-desktop {
    display: none;
  }
}
.ex-how-it-works {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding-bottom: 64px;
}
.ex-how-it-works-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 2.125rem;
  color: #4d4d4d;
  margin: 0;
  margin-top: 106px;
}
.ex-how-it-works-main-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  margin-top: 48px;
}
.ex-how-it-works-main-content-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 200px;
}
.ex-how-it-works-main-content-item:not(:last-child) {
  margin-right: 56px;
}
.ex-how-it-works-main-content-item-number {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  display: -webkit-box;
  display: flex;
  font-size: 1.5rem;
  color: #ffffff;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: #4d4d4d;
}
.ex-how-it-works-main-content-item-text {
  font-size: 1.25rem;
  margin: 0;
  margin-top: 24px;
  color: #4d4d4d;
}
@media all and (max-width: 800px) {
  .ex-how-it-works {
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .ex-how-it-works-title {
    color: #f75462;
  }
  .ex-how-it-works-main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .ex-how-it-works-main-content-item {
    width: 263px;
  }
  .ex-how-it-works-main-content-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.ex-promise {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 72px 144px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background-color: #f2f2f2;
  color: #4d4d4d;
}
.ex-promise-title {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 0 0 72px 0;
  text-align: center;
  font-size: 2.813rem;
  color: #4d4d4d;
}
.ex-promise-body {
  -webkit-box-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.ex-promise-trial {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
}
.ex-promise-message {
  margin: 0 0 0 4rem;
}
.ex-promise-message p {
  margin: 0 0 1rem;
}
.ex-promise-back-to-top {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-bottom: 3px solid #4d4d4d;
  padding-right: 3px;
  margin-top: 24px;
}
.ex-promise-back-to-top p {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin: 0;
  margin-top: -5px;
  margin-right: 8px;
  font-size: 1.125rem;
}
.ex-promise-back-to-top i {
  width: 8px;
  height: 8px;
  border-right: 3px solid #4d4d4d;
  border-top: 3px solid #4d4d4d;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media all and (max-width: 800px) {
  .ex-promise {
    padding: 0;
    padding-bottom: 32px;
  }
  .ex-promise-title {
    font-size: 2.125rem;
    margin: 40px 24px;
    text-align: left;
    color: #f75462;
  }
  .ex-promise-body {
    margin: 0 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
  }
  .ex-promise-trial {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
  .ex-promise-message {
    margin: 0;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
  }
}
@media all and (max-width: 800px) {
  .container {
    min-width: 0;
  }
  .main-ex-content {
    margin-top: 0px;
  }
}