.header {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100px;
  background-color: white;
  z-index: 1000;
  transition: height 0.3s ease-out; }
  .header--small {
    height: 74px; }
    .header--small .header__background {
      background-size: calc(50% - 375px) 52px, 750px 52px, calc(50% - 375px) 52px; }
    .header--small .header__logo {
      width: 60px;
      height: 31px; }
    .header--small .header__nav {
      padding-bottom: 20px; }
      @media (min-width: 768px) {
        .header--small .header__nav {
          padding-bottom: 12px; } }
  .header__content {
    align-items: flex-end;
    display: flex;
    height: 100%;
    margin: 0 auto;
    max-width: 1000px;
    position: relative; }
  .header__nav {
    display: inline-block;
    font-family: "AvenirNext-Medium";
    padding-bottom: 30px;
    padding-left: 20px; }
  .header__question-number {
    color: #9B9B9B;
    font-size: 0.875rem;
    line-height: 1.2; }
    .header__question-number span {
      display: none; }
      @media (min-width: 768px) {
        .header__question-number span {
          display: inline; } }
  .header__question-name {
    color: #000;
    display: none;
    font-size: 1rem;
    line-height: 1.25; }
    @media (min-width: 768px) {
      .header__question-name {
        display: block; } }
  .header__logo {
    position: absolute;
    top: 70%;
    left: 50%;
    width: 100px;
    height: 52px;
    transform: translateX(-50%) translateY(-50%);
    background: url("/img/paw-logo.png") center center no-repeat;
    background-size: 100% 100%;
    transition: all 0.3s ease-in-out; }
  .header__close {
    background-color: transparent;
    border: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url("/img/icon-close.png") center center no-repeat;
    background-size: 100% 100%;
    cursor: pointer; }
    @media (min-width: 768px) {
      .header__close {
        background: none;
        width: initial;
        height: initial;
        min-width: 100px; } }
    .header__close:focus {
      outline: none; }
    .header__close:hover p {
      color: black; }
    .header__close p {
      color: #9B9B9B;
      font-size: 0.875rem;
      line-height: 1.2;
      display: none; }
      @media (min-width: 768px) {
        .header__close p {
          display: block; } }
  .header__background {
    position: absolute;
    bottom: -72px;
    left: 0;
    background-image: url("/img/top-gradient-sides.png"), url("/img/top-gradient.png"), url("/img/top-gradient-sides.png");
    background-repeat: no-repeat;
    background-position: top left, top center, top right;
    background-size: calc(50% - 375px) 72px, 750px 72px, calc(50% - 375px) 72px;
    width: 100%;
    height: 72px;
    overflow: hidden; }

.three {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0; }
  .three.visible {
    opacity: 1; }

.spinner svg {
  width: 30px;
  -webkit-animation: wiggle 2s linear infinite;
  -moz-animation: wiggle 2s linear infinite;
  -ms-animation: wiggle 2s linear infinite;
  -o-animation: wiggle 2s linear infinite;
  animation: wiggle 2s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes wiggle {
  0% {
    transform: rotate(45deg); }
  5% {
    transform: rotate(0deg); }
  10% {
    transform: rotate(90deg); }
  15% {
    transform: rotate(45deg); }
  85% {
    transform: rotate(45deg); }
  90% {
    transform: rotate(0deg); }
  95% {
    transform: rotate(90deg); }
  100% {
    transform: rotate(45deg); } }

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 154, 168, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center; }
  .loading.visible {
    opacity: 1;
    pointer-events: all; }

.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 13px 31px 0 rgba(0, 201, 207, 0.39);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 19px;
  color: #009AA8;
  letter-spacing: 0;
  text-align: center;
  line-height: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
  width: 100%;
  border: none;
  transition: opacity 0.3s ease-in-out;
  text-transform: none;
  cursor: pointer; }
  .button.disabled {
    opacity: 0.7; }
  .button:focus {
    outline: none; }
  @media (hover: hover) {
    .button:hover {
      box-shadow: 0 13px 31px 0 rgba(0, 201, 207, 0.59); } }
  .button .loader {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateX(-50%) translateY(-50%); }
  .button.secondary {
    background-color: rgba(0, 154, 168, 0.8);
    box-shadow: 0 6px 17px 3px rgba(76, 191, 201, 0.57);
    color: #ffffff; }
    @media (hover: hover) {
      .button.secondary:hover {
        box-shadow: 0 6px 17px 3px rgba(76, 191, 201, 0.77); } }
  .button .capitalize {
    text-transform: capitalize; }

.navigation {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 50%;
  max-width: 1000px;
  padding: 0;
  position: fixed;
  transform: translateX(-50%);
  width: 100%; }
  @media (min-width: 768px) {
    .navigation {
      padding: 0 50px; } }
  .navigation .buttons {
    display: flex;
    justify-content: flex-end; }
    .navigation .buttons .center p, .navigation .buttons .center svg {
      display: block;
      float: left; }
    .navigation .buttons .center svg {
      width: 60px; }
    .navigation .buttons .secondary .center p {
      color: white; }
    .navigation .buttons .button {
      margin: 0;
      padding-bottom: 21px;
      padding-top: 21px;
      width: 40%; }
      @media (max-width: 768px) {
        .navigation .buttons .button {
          box-shadow: none; } }
      .navigation .buttons .button:last-child {
        width: 60%; }
        @media (min-width: 768px) {
          .navigation .buttons .button:last-child {
            margin-left: 10px; } }
      .navigation .buttons .button__icon {
        fill: #009AA8;
        height: 28px;
        padding-left: 10px; }
      .navigation .buttons .button__icon--secondary {
        fill: #fff; }
      .navigation .buttons .button__icon--left {
        padding-left: 0;
        padding-right: 10px; }

.exit {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #A4FFFF;
  text-align: center;
  padding: 0 50px;
  z-index: 1; }
  .exit__title {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 150px;
    margin-bottom: 30px; }
  .exit__copy {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 40px; }

.setup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw; }

.input-field {
  width: 100%;
  margin-bottom: 20px; }
  .input-field p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 4px; }
  .input-field input {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    padding: 10px;
    border: none;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #414042;
    letter-spacing: 0;
    line-height: 16px; }
    .input-field input:focus {
      outline: none; }

.input-checkbox {
  width: 100%; }
  .input-checkbox p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 10px; }
  .input-checkbox .container {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 12px; }
    .input-checkbox .container input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    .input-checkbox .container .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 25px;
      width: 25px;
      background-color: #fff;
      opacity: 0.7; }
      .input-checkbox .container .checkmark:after {
        content: '';
        position: absolute;
        display: none;
        left: 9px;
        top: 5px;
        width: 5px;
        height: 10px;
        border: solid #0099A8;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
    .input-checkbox .container:hover input ~ .checkmark {
      opacity: 1; }
    .input-checkbox .container input:checked ~ .checkmark {
      opacity: 1; }
    .input-checkbox .container input:checked ~ .checkmark:after {
      display: block; }

.home {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 90px;
  margin-bottom: 90px; }
  .home h1 {
    color: #FFFFFF; }
  .home h3 {
    color: #FFFFFF;
    width: 100%;
    margin-bottom: 30px; }
  .home .privacy-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding: 0 50px;
    padding-left: 10px; }
    .home .privacy-container__holder {
      margin: 0 auto;
      width: 100%;
      max-width: 768px; }
      .home .privacy-container__holder h1, .home .privacy-container__holder h2, .home .privacy-container__holder h3, .home .privacy-container__holder h4, .home .privacy-container__holder h5, .home .privacy-container__holder h6, .home .privacy-container__holder p {
        margin: 20px;
        text-align: left;
        width: 100%;
        color: white; }
      .home .privacy-container__holder h1, .home .privacy-container__holder h2, .home .privacy-container__holder h3, .home .privacy-container__holder h4, .home .privacy-container__holder h5, .home .privacy-container__holder h6 {
        font-weight: bold; }
      .home .privacy-container__holder .close-privacy {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        height: 40px; }
        .home .privacy-container__holder .close-privacy button {
          width: 20px;
          height: 20px;
          background-color: transparent;
          border: none;
          background: url("/img/icon-close-white.png") center right no-repeat;
          background-size: 100% 100%;
          cursor: pointer; }
  .home .checkbox-container {
    display: flex;
    justify-content: flex-start;
    flex-direction: row; }
    .home .checkbox-container .input-checkbox {
      width: 30px;
      margin-right: 10px; }
  .home .privacy__small {
    font-size: 12px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    color: white;
    line-height: 16px;
    margin-bottom: 30px; }
    .home .privacy__small button {
      background: transparent;
      border: none;
      text-decoration: underline;
      font-size: 12px;
      font-family: 'Open Sans', Arial, sans-serif;
      font-weight: bold;
      color: white;
      line-height: 16px;
      padding: 0;
      margin: 0;
      cursor: pointer; }
      .home .privacy__small button:hover {
        text-decoration: none; }
      .home .privacy__small button:focus {
        outline: none; }
  .home .privacy__thin {
    font-size: 12px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 300;
    color: white;
    line-height: 16px;
    margin-bottom: 30px; }

.welcome {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 90px;
  margin-bottom: 90px; }
  .welcome h2 {
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-bottom: 30px;
    max-width: 500px; }

.pick-a-pooch {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 90px;
  margin-bottom: 90px; }
  .pick-a-pooch h1 {
    color: #FFFFFF;
    font-size: 20px;
    letter-spacing: -0.13px; }
  .pick-a-pooch h2,
  .pick-a-pooch h3 {
    color: #FFFFFF; }
  .pick-a-pooch h3 {
    margin: 30px 0; }
  .pick-a-pooch__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%; }
    .pick-a-pooch__list button {
      margin-bottom: 30px; }
    .pick-a-pooch__list__dog {
      display: flex;
      width: 100%; }

.new-or-old {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 90px;
  margin-bottom: 90px; }
  .new-or-old h2 {
    letter-spacing: -0.17px;
    text-align: center;
    line-height: 31px;
    font-weight: normal;
    color: #FFFFFF;
    width: 100%;
    max-width: 300px;
    margin: 30px 0; }
  .new-or-old h3 {
    margin-bottom: 30px; }
  .new-or-old__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%; }
    .new-or-old__list * {
      margin-bottom: 30px; }

.new-pooch {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 90px;
  margin-bottom: 90px; }
  .new-pooch h2 {
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-bottom: 30px; }

.input-select {
  width: 100%;
  margin-bottom: 50px; }
  .input-select p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 4px; }
  .input-select select {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    padding: 10px;
    background-color: white;
    border: none;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #414042;
    letter-spacing: 0;
    line-height: 16px; }
    .input-select select:focus {
      outline: none; }

.pick-a-breed {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 90px;
  margin-bottom: 90px; }
  .pick-a-breed h2 {
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-bottom: 30px; }

.input-date {
  width: 100%;
  margin-bottom: 50px; }
  .input-date p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 4px; }
  .input-date input {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    padding: 10px;
    border: none;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #414042;
    letter-spacing: 0;
    line-height: 16px; }
    .input-date input:focus {
      outline: none; }
    .input-date input.fake {
      position: absolute;
      top: 0;
      left: 0;
      border: 1px solid red; }
  .input-date .mobile {
    position: relative;
    background-color: white;
    width: 100%;
    height: 50px;
    border-radius: 4px;
    padding: 10px; }
    .input-date .mobile input {
      width: calc(100vw - 60px);
      height: 30px;
      opacity: 0;
      margin: 0;
      padding: 0; }
    .input-date .mobile p {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      line-height: 30px;
      padding: 10px;
      color: #414042; }

.dp-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 154, 168, 0.75);
  z-index: 1000; }

.dp {
  position: relative;
  background: #FFF;
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.25);
  line-height: 1.4;
  border-radius: 4px;
  max-height: 400px;
  z-index: 1000;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent; }

.dp-permanent .dp {
  padding-top: 0;
  border: 1px solid #EEE;
  box-shadow: none; }

.dp-permanent .dp:before {
  display: none; }

.dp-cal {
  min-height: 300px; }

.dp-below {
  position: absolute;
  font-size: 0.8em;
  width: 400px;
  max-width: 100vw; }

.dp-permanent {
  position: relative;
  font-size: 0.8em;
  width: 400px;
  max-width: 100vw; }

.dp-permanent .dp {
  z-index: 0; }

.dp-modal .dp {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 600px;
  width: calc(100% - 4em);
  transform: translate(-50%, -50%);
  animation: slide-up 0.3s forwards; }

.dp-months {
  padding: 24px; }

.dp-years {
  box-sizing: border-box;
  max-height: 400px;
  padding: 8px 0;
  overflow: auto !important;
  /* HACK for Chrome on Android */ }

.dp-cal-month,
.dp-cal-year,
.dp-day,
.dp-month,
.dp-year {
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  position: relative;
  color: #3B404D;
  border-radius: 2px;
  border: 0;
  background: transparent; }

.dp-cal-header {
  position: relative;
  text-align: center;
  padding-bottom: 16px;
  background: #f5f5f5; }

.dp-next,
.dp-prev {
  position: absolute;
  width: 30px;
  height: 30px;
  overflow: hidden;
  top: 14px;
  color: #777;
  border-radius: 2px;
  border: 0;
  background: transparent; }

.dp-next:focus,
.dp-prev:focus,
.dp-next:hover,
.dp-prev:hover {
  outline: none;
  color: inherit; }

.dp-prev {
  left: 24px; }

.dp-next {
  right: 24px; }

.dp-prev:before,
.dp-next:before {
  content: '';
  border: 2px solid;
  width: 10px;
  height: 10px;
  display: inline-block;
  transform: rotate(-45deg);
  transition: border-color 0.2s;
  margin: 9px 0 40px 4px; }

.dp-prev:before {
  border-right: 0;
  border-bottom: 0; }

.dp-next:before {
  border-left: 0;
  border-top: 0;
  margin-left: 0;
  margin-right: 4px; }

.dp-cal-month,
.dp-cal-year {
  display: inline-block;
  font-size: 1.4em;
  padding: 16px 8px 8px;
  outline: none;
  border-bottom: 2px solid #3B99FC; }

.dp-cal-month {
  margin-right: 5px; }

.dp-cal-footer {
  text-align: center;
  background: #f5f5f5; }

.dp-day-today:after {
  content: '';
  height: 0;
  width: 0;
  border: 7px solid #227BD7;
  border-bottom-color: transparent;
  border-left-color: transparent;
  position: absolute;
  top: 0;
  right: 0; }

.dp-close,
.dp-clear,
.dp-today {
  box-sizing: border-box;
  display: inline-block;
  width: 33%;
  padding: 8px;
  text-decoration: none;
  color: inherit;
  border: 0;
  color: #3B404D;
  background: transparent; }

.dp-permanent .dp-close,
.dp-permanent .dp-clear {
  display: none; }

.dp-close:active,
.dp-clear:active,
.dp-today:active,
.dp-next:active,
.dp-prev:active,
.dp-cal-month:active,
.dp-cal-year:active {
  background: #75BCFC;
  color: white; }

@media screen and (min-device-width: 1200px) {
  .dp-close:hover,
  .dp-close:focus,
  .dp-clear:hover,
  .dp-clear:focus,
  .dp-today:hover,
  .dp-today:focus,
  .dp-next:hover,
  .dp-next:focus,
  .dp-prev:hover,
  .dp-prev:focus,
  .dp-cal-month:focus,
  .dp-cal-month:hover,
  .dp-cal-year:hover,
  .dp-cal-year:focus {
    background: #75BCFC;
    color: white; } }

.dp-col-header,
.dp-day {
  width: 14.28571429%;
  display: inline-block;
  padding: 8px;
  text-align: center; }

.dp-col-header {
  color: #AAA;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.8em;
  padding: 8px 0; }

.dp-month {
  width: 33%;
  display: inline-block;
  padding: 8px; }

.dp-year {
  display: block;
  padding: 8px 40px;
  width: 100%; }

.dp-edge-day {
  color: #AAA; }

.dp-day:hover,
.dp-month:hover,
.dp-year:hover,
.dp-current:focus,
.dp-current,
.dp-day:focus,
.dp-month:focus,
.dp-year:focus {
  outline: none;
  background: #75BCFC;
  color: white; }

.dp-selected:hover,
.dp-selected:focus,
.dp-selected {
  background: #3B99FC;
  color: #FFF; }

.dp-day-disabled {
  background: transparent;
  color: #DDD; }

.dp-day-disabled:focus,
.dp-day-disabled:hover {
  background: #DDD; }

.dp-focuser {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%; }

/* Responsive overrides */
@media (max-width: 480px), (max-height: 480px) {
  .dp-modal .dp {
    font-size: 0.9em;
    width: auto;
    width: 100%; }
  .dp-day-of-week,
  .dp-day {
    padding: 8px; } }

@keyframes slide-up {
  0% {
    transform: translate(-50%, 100%); }
  100% {
    transform: translate(-50%, -50%); } }

.birthday-pooch {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 90px;
  margin-bottom: 90px; }
  .birthday-pooch h2 {
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-bottom: 30px; }

.draggable-answers {
  position: fixed;
  bottom: 80px;
  left: 0;
  width: 100%; }
  .draggable-answers .arrows {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1000px;
    transform: translateX(-50%); }
    .draggable-answers .arrows .arrow-left {
      position: absolute;
      top: 0;
      left: 20px;
      width: 28px;
      height: 38px;
      cursor: pointer; }
    .draggable-answers .arrows .arrow-right {
      position: absolute;
      top: 0;
      right: 20px;
      width: 28px;
      height: 38px;
      cursor: pointer; }
    .draggable-answers .arrows .arrow-left,
    .draggable-answers .arrows .arrow-right {
      transform: translateY(-50%); }
      .draggable-answers .arrows .arrow-left svg,
      .draggable-answers .arrows .arrow-right svg {
        width: 100%;
        height: 100%; }
      .draggable-answers .arrows .arrow-left.disabled,
      .draggable-answers .arrows .arrow-right.disabled {
        opacity: 0.2;
        pointer-events: none; }
  .draggable-answers .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; }
    .draggable-answers .dots button {
      background-color: white;
      border: none;
      border-radius: 50%;
      width: 10px;
      height: 10px;
      padding: 0;
      opacity: 0.3;
      margin-right: 10px;
      cursor: pointer; }
      .draggable-answers .dots button.active {
        opacity: 0.7; }
  .draggable-answers__container {
    position: relative;
    overflow: hidden;
    cursor: grab; }
    .draggable-answers__container.grabbing {
      cursor: grabbing; }
    .draggable-answers__container .item {
      display: inline-block;
      width: 100vw;
      height: 100%; }
      .draggable-answers__container .item h4,
      .draggable-answers__container .item p {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center; }

.question-body-condition {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px; }
  .question-body-condition h2 {
    width: 100%; }

.question-days-of-exercise {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px; }
  .question-days-of-exercise h2 {
    width: 100%; }

.question-hours-of-exercise {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px; }
  .question-hours-of-exercise h2 {
    width: 100%; }

.question-daily-comfort {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px; }
  .question-daily-comfort h2 {
    width: 100%; }

.question-love-for-food {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px; }
  .question-love-for-food h2 {
    width: 100%; }

.question-itchy-pooch {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px; }
  .question-itchy-pooch h2 {
    width: 100%; }

.question-happy-pooch {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px; }
  .question-happy-pooch h2 {
    width: 100%; }

.question-poo-ch {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px; }
  .question-poo-ch h2 {
    width: 100%; }

.button-link {
  background-color: #009AA8;
  box-shadow: 0 6px 17px 3px rgba(76, 191, 201, 0.57);
  color: #fff;
  display: block;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  height: 69px;
  line-height: 69px;
  text-align: center;
  text-decoration: none; }
  @media (hover: hover) {
    .button-link:hover {
      box-shadow: 0 6px 17px 3px rgba(76, 191, 201, 0.77); } }

.email-vet {
  display: flex;
  margin-bottom: 60px; }
  @media (min-width: 768px) {
    .email-vet__content {
      flex: 1; } }
  .email-vet__content--image-container {
    display: none; }
    .email-vet__content--image-container img {
      flex: 1; }
    @media (min-width: 768px) {
      .email-vet__content--image-container {
        display: flex;
        flex-direction: column; } }
  .email-vet__content--copy-container {
    background-color: #9DFFFD;
    padding: 60px 40px; }
    @media (min-width: 768px) {
      .email-vet__content--copy-container {
        padding: 75px 90px; } }
  .email-vet__copy {
    align-items: flex-start;
    display: flex;
    margin-bottom: 30px;
    word-break: break-word; }
  .email-vet__text {
    color: #009AA8;
    font-size: 1.0625rem;
    margin-left: 30px; }

.share-facebook {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer; }
  .share-facebook:focus {
    outline: none; }

.another-check {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer; }
  .another-check:focus {
    outline: none; }

.article {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  flex: 0 0 287px;
  justify-content: space-between; }
  .article:not(:last-child) {
    margin-right: 12px; }
  .article__main {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 10px; }
  .article__category {
    color: #4A4A4A;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.75rem;
    line-height: 0.75rem;
    margin-bottom: 10px; }
  .article__name {
    color: #4A4A4A;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.625rem;
    margin-bottom: 20px;
    text-align: left; }
  .article__description {
    color: #4A4A4A;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.125rem;
    margin-bottom: 30px; }
  .article__link {
    position: relative;
    color: #009AA8;
    display: inline-block;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.1875rem;
    text-decoration: none; }
  .article__link-copy {
    line-height: 40px; }
  .article__link-icon {
    fill: #009AA8;
    height: 40px;
    transition: transform 0.3s ease;
    vertical-align: middle;
    width: 50px; }
    .article__link:hover .article__link-icon {
      transform: translateX(10px); }
  .article .article-mask {
    position: relative;
    width: calc(215px * (4 / 3));
    height: 205px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center; }

.product {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  flex: 0 0 287px;
  justify-content: space-between; }
  .product:not(:last-child) {
    margin-right: 12px; }
  .product__main {
    background-color: #009AA8;
    display: flex;
    flex-direction: column;
    height: 313px;
    justify-content: space-between;
    padding: 30px 20px; }
  .product__category {
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 0.75rem;
    font-style: italic;
    line-height: 1rem;
    margin-bottom: 10px; }
  .product__name {
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.3125rem;
    margin-bottom: 10px;
    text-align: left; }
  .product__info {
    background-color: #fff;
    padding: 20px 30px; }
  .product__sku-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px; }
  .product__sku {
    color: #4A4A4A;
    font-family: "AvenirNext-Medium";
    font-size: 0.8125rem;
    line-height: 1.125rem; }
  .product__price {
    color: #4A4A4A;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 0.8125rem;
    line-height: 1.125rem; }
  .product .product-mask {
    position: relative;
    width: calc(267px - 20px);
    height: calc(267px * (3 / 4));
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: center;
    background-repeat: no-repeat;
    overflow: hidden; }

.slider {
  align-items: stretch;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  .slider::-webkit-scrollbar {
    display: none; }

.icon {
  align-items: center;
  background-color: #02C9CE;
  border-radius: 16px;
  display: flex;
  height: 60px;
  justify-content: center;
  margin-right: 10px;
  width: 60px; }

.results {
  padding-top: 150px;
  background: linear-gradient(315deg, #D2FBFF 0%, #A5FFDE 100%); }
  .results h1 {
    color: #006A73; }
  .results__score {
    color: #009AA8;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: -0.27px;
    line-height: 35px;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center; }
    .results__score span {
      font-family: 'Open Sans', Arial, sans-serif;
      font-size: 20px;
      color: #006A73;
      letter-spacing: -0.13px;
      text-align: center; }
  .results__scores-section {
    margin-bottom: 60px; }
    @media (min-width: 768px) {
      .results__scores-section {
        display: flex;
        margin: 0 auto 110px;
        max-width: 736px; } }
  .results__list {
    flex: 1;
    padding: 20px; }
    @media (min-width: 768px) {
      .results__list {
        margin-right: 25px;
        padding-left: 0; } }
    .results__list .score {
      display: flex;
      margin-bottom: 10px; }
      .results__list .score .progress {
        position: relative;
        width: calc(100% - 60px - 10px);
        height: 60px;
        background-color: #02C9CE;
        border-radius: 16px;
        overflow: hidden; }
        .results__list .score .progress .graph {
          position: absolute;
          top: 0;
          left: 0;
          width: 50%;
          height: 100%;
          background-image: linear-gradient(-90deg, #5487C6 0%, #00A7AA 100%);
          z-index: 0; }
        .results__list .score .progress .labels {
          position: relative;
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 20px;
          z-index: 1; }
          .results__list .score .progress .labels p {
            color: white;
            font-weight: bold; }
  .results__copy {
    flex: 1;
    padding: 20px; }
    @media (min-width: 768px) {
      .results__copy {
        padding-right: 0; } }
    .results__copy p {
      color: #009AA8;
      font-family: "AvenirNext-Medium";
      font-size: 1rem; }
    .results__copy__social {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 40px 0; }
      @media (min-width: 768px) {
        .results__copy__social {
          justify-content: flex-start; } }
      .results__copy__social .icon {
        display: inline-flex;
        margin-right: 20px; }
        .results__copy__social .icon:last-child {
          margin-right: initial; }
      .results__copy__social .share-facebook {
        margin-top: 10px; }
    .results__copy__social--footer {
      align-items: center;
      display: flex;
      justify-content: center;
      padding: 40px 0;
      padding-bottom: 80px; }
      .results__copy__social--footer .icon {
        display: inline-flex;
        margin-right: 20px; }
      .results__copy__social--footer:last-child {
        margin-right: initial; }
  .results__carousel {
    margin-bottom: 60px; }
    @media (min-width: 768px) {
      .results__carousel {
        margin-bottom: 100px; } }
  .results__carousel-title {
    color: #009AA8;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.625rem;
    line-height: 2.125rem;
    margin-bottom: 20px;
    text-align: left; }

.app__content {
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  z-index: 1; }
  @media (min-width: 450px) {
    .app__content {
      max-width: 510px; } }

.app .flat-2d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0; }
  .app .flat-2d .mountain {
    position: fixed;
    top: 50%;
    left: 10%;
    width: 258px;
    height: 200px;
    background: url("/img/mountain.png");
    background-size: cover;
    transform: translateY(-100%) scale(1);
    transform-origin: bottom center; }
    @media (max-width: 450px) {
      .app .flat-2d .mountain {
        left: -5%;
        transform: translateY(-100%) scale(0.6); } }
  .app .flat-2d .sun {
    position: fixed;
    top: 15%;
    right: -10%;
    width: 128px;
    height: 130px;
    background: url("/img/sun.png");
    background-size: cover;
    transform: scale(0.5); }
    @media (min-width: 450px) {
      .app .flat-2d .sun {
        right: 10%;
        transform: scale(1); } }
  .app .flat-2d .human {
    position: fixed;
    top: 50%;
    right: 25%;
    width: 90px;
    height: 90px;
    background: url("/img/human-dog.png");
    background-size: cover;
    transform: translateY(-100%) scale(1);
    transform-origin: bottom center; }
    @media (max-width: 450px) {
      .app .flat-2d .human {
        right: 5%;
        transform: translateY(-100%) scale(0.7); } }
  .app .flat-2d .bowl {
    position: fixed;
    bottom: 2%;
    left: 5%;
    width: 91px;
    height: 39px;
    background: url("/img/dog-bowl.png");
    background-size: cover;
    transform: translateY(-100%);
    display: none; }
    @media (min-width: 450px) {
      .app .flat-2d .bowl {
        display: block; } }
  .app .flat-2d .birds {
    position: fixed;
    top: 120px;
    left: 5%;
    width: 199px;
    height: 111px;
    background: url("/img/birds.png");
    background-size: cover;
    transform: scale(1);
    display: none; }
    @media (min-width: 450px) {
      .app .flat-2d .birds {
        display: block; } }
  .app .flat-2d .lines1 {
    position: fixed;
    bottom: 15%;
    left: 0;
    width: calc(344px / 2);
    height: calc(120px / 2);
    background: url("/img/lines.png");
    background-size: cover;
    transform: translateY(-100%);
    display: none; }
    @media (min-width: 450px) {
      .app .flat-2d .lines1 {
        display: block; } }
  .app .flat-2d .lines2 {
    position: fixed;
    bottom: 2%;
    right: 0;
    width: calc(344px / 2);
    height: calc(120px / 2);
    background: url("/img/lines.png");
    background-size: cover;
    display: none; }
    @media (min-width: 450px) {
      .app .flat-2d .lines2 {
        display: block; } }

body.results-page .app__content,
body.privacy .app__content {
  max-width: none;
  padding: 0; }

body.results-page .home,
body.privacy .home {
  margin: 0;
  padding: 90px 0;
  background-color: rgba(0, 154, 168, 0.75); }

@font-face {
  font-family: 'Superclarendon-Regular';
  src: url("/web-fonts/Superclarendon-Regular.eot?#iefix") format("embedded-opentype"), url("/web-fonts/Superclarendon-Regular.woff") format("woff"), url("/web-fonts/Superclarendon-Regular.ttf") format("truetype"), url("/web-fonts/Superclarendon-Regular.svg#Superclarendon-Regular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'AvenirNext-Regular';
  src: url("/web-fonts/AvenirNext-Regular.eot?#iefix") format("embedded-opentype"), url("/web-fonts/AvenirNext-Regular.woff") format("woff"), url("/web-fonts/AvenirNext-Regular.ttf") format("truetype"), url("/web-fonts/AvenirNext-Regular.svg#AvenirNext-Regular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'AvenirNext-Medium';
  src: url("/web-fonts/AvenirNext-Medium.eot?#iefix") format("embedded-opentype"), url("/web-fonts/AvenirNext-Medium.woff") format("woff"), url("/web-fonts/AvenirNext-Medium.ttf") format("truetype"), url("/web-fonts/AvenirNext-Medium.svg#AvenirNext-Medium") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'AvenirNext-Bold';
  src: url("/web-fonts/AvenirNext-Bold.eot?#iefix") format("embedded-opentype"), url("/web-fonts/AvenirNext-Bold.woff") format("woff"), url("/web-fonts/AvenirNext-Bold.ttf") format("truetype"), url("/web-fonts/AvenirNext-Bold.svg#AvenirNext-Bold") format("svg");
  font-weight: normal;
  font-style: normal; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px; }

* {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

h1 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 24px;
  letter-spacing: -0.16px;
  text-align: center;
  line-height: 35px;
  margin: 0; }

h2 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #006A73;
  letter-spacing: -0.12px;
  text-align: center;
  line-height: 18px;
  margin: 0; }
  @media (min-width: 450px) {
    h2 {
      font-size: 20px;
      line-height: 25px; } }

h3 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.17px;
  text-align: center;
  line-height: 31px;
  margin: 0; }

h4 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #006A73;
  letter-spacing: -0.12px;
  text-align: center;
  line-height: 24px;
  margin: 0;
  margin-bottom: 0px; }
  @media (min-width: 450px) {
    h4 {
      font-size: 20px;
      margin-bottom: 10px; } }

p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #006A73;
  letter-spacing: -0.12px;
  line-height: 24px;
  margin: 0; }
  @media (min-width: 450px) {
    p {
      font-size: 18px; } }

.capitalize {
  text-transform: capitalize; }

html, body {
  margin: 0; }

body {
  background-color: #ffffff;
  color: white; }

* {
  box-sizing: border-box; }

a {
  color: white;
  text-decoration: underline; }
  a:hover {
    text-decoration: none; }

img {
  max-width: 100%;
  object-fit: cover; }

.dg .c:hover .selector {
  display: flex !important; }

.dg input {
  line-height: 1rem; }

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%; }

@media (min-width: 576px) {
  .container {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container {
    max-width: 1140px; } }

.container--fluid-right {
  max-width: none;
  padding-right: 0; }
  @media (min-width: 576px) {
    .container--fluid-right {
      padding-left: calc((100vw - 540px) / 2 + 24px / 2); } }
  @media (min-width: 768px) {
    .container--fluid-right {
      padding-left: calc((100vw - 720px) / 2 + 24px / 2); } }
  @media (min-width: 992px) {
    .container--fluid-right {
      padding-left: calc((100vw - 960px) / 2 + 24px / 2); } }
  @media (min-width: 1200px) {
    .container--fluid-right {
      padding-left: calc((100vw - 1140px) / 2 + 24px / 2); } }

