﻿.leefstijlmonitor__title {
  color: #07a1dd;
  font-size: 26px;
  font-weight: bold;
  line-height: 33px;
  display: block;
  position: relative;
  margin-bottom: 17px;
  max-width: 87%;
  margin-left: auto;
  margin-right: auto;
}

.leefstijlmonitor__title.title--big {
  color: #3c77b6;
  font-size: 36px;
  font-style: italic;
  font-weight: normal;
  line-height: 40px;
  margin-bottom: 6px;
}

.leefstijlmonitor__title.title--small {
  color: #07a1dd;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 9px;
}

.leefstijlmonitor__subtitle {
  color: #a8a8a8;
  font-size: 18px;
  line-height: 23px;
  display: block;
  margin-top: -8px;
  margin-bottom: 46px;
}

.leefstijlmonitor__button {
  background-color: #07a1dd;
  color: white;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  border-radius: 20px;
  height: 40px;
  min-width: 150px;
  margin-bottom: 16px;
  transition: background-color 0.15s ease-in-out;
}

.leefstijlmonitor__button:hover {
  background-color: #6e5580;
}

.leefstijlmonitor__link {
  font-size: 18px;
  line-height: 23px;
  color: #07a1dd;
  max-width: 210px;
}

.leefstijlmonitor__info {
  position: relative;
  top: 2px;
  left: -6px;
  width: 16px;
  height: 16px;
  padding: 14px;
  background-image: url(/img/icons/icon-info.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.leefstijlmonitor__slider {
  position: relative;
}

.leefstijlmonitor__slider__item {
  width: 100%;
  min-height: 260px;
  flex: 0 0 100%;
  position: absolute;
  left: 0;
  z-index: 0;
  visibility: hidden;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out,
    left 0.3s ease-in-out;
  background: white;
  text-align: center;
}

.leefstijlmonitor__slider__item:not(.is--start):not(.is--end) {
  padding-top: 20px;
}

.leefstijlmonitor__slider__item.active {
  z-index: 1;
  position: relative;
  visibility: visible;
  transition: transform 0.3s ease-in-out, visibility 0s ease-in-out;
}

.leefstijlmonitor__slider__item.active.slide-left {
  left: 100%;
}

.leefstijlmonitor__slider__item.active.slide-right {
  left: -100%;
}

.leefstijlmonitor__slider__item.slide-left {
  transform: translateX(-100%);
}

.leefstijlmonitor__slider__item.slide-right {
  transform: translateX(100%);
}

.leefstijlmonitor__slider__item.slide-right.no-slide-right {
  transition: visibility 0s ease-in-out;
}

.leefstijlmonitor__slider__navigation {
  display: flex;
  justify-content: space-between;
  margin: 30px auto 16px;
  position: relative;
  z-index: 1;
  background: white;
}

.leefstijlmonitor__slider__navigation__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.leefstijlmonitor__slider__navigation__button.disabled {
  opacity: 0.2;
  cursor: default;
}

.leefstijlmonitor__slider__navigation__button.to-left {
  border: 2px solid #80ceef;
  background: white;
}

.leefstijlmonitor__slider__navigation__button.to-left:hover {
  border-color: #01aee1;
}

.leefstijlmonitor__slider__navigation__button.to-right {
  background: #07a1dd;
}

.leefstijlmonitor__slider__navigation__button.to-right:hover {
  background: #01aee1;
}

.leefstijlmonitor__slider__navigation__button.to-right svg {
  transform: rotateY(-180deg);
}

.leefstijlmonitor__slider__progress {
  border-radius: 10px;
  height: 10px;
  width: 100%;
  background: #f0f0f0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.leefstijlmonitor__slider__progress__bar {
  content: "";
  width: 0%;
  height: 100%;
  border-radius: 10px;
  background: #80ceef;
  position: absolute;
  transition: width 0.3s ease-in-out;
}

.leefstijlmonitor__modal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  transform: translate(-50.1%, -50.1%);
  text-align: center;
  padding: 20px 20px 30px;
  background-color: white;
  box-shadow: 0 7px 8px 0 rgba(24, 43, 80, 0.26);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.leefstijlmonitor__modal.active {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
}

.leefstijlmonitor__modal *:last-child {
  margin-bottom: 0;
}

.leefstijlmonitor__modal .leefstijlmonitor__title {
  margin-bottom: 10px;
}

.leefstijlmonitor__modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  padding: 17px;
  background-image: url(/img/icons/icon-close.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.leefstijlmonitor__container {
  max-width: 100%;
  width: 478px;
  padding: 0 14px;
  margin: 0 auto;
  overflow: hidden;
}

.leefstijlmonitor__container p {
  font-size: 16px;
  line-height: 20px;
  color: #2d529b;
}

.leefstijlmonitor__container label {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 20px;
  color: #2d529b;
  margin-bottom: 26px;
}

.leefstijlmonitor__container input[type="text"],
.leefstijlmonitor__container input[type="number"] {
  background-color: #e2f4fb;
  border-radius: 2px;
  font-size: 18px;
  line-height: 20px;
  color: #2d529b;
  text-align: center;
  padding: 8px 16px;
  width: 115px;
  margin-right: 10px;
}

.leefstijlmonitor__container input[type="radio"] {
  display: none;
}

.leefstijlmonitor__container .d-flex {
  display: flex;
}

.leefstijlmonitor__container .hidden {
  display: none;
}

.leefstijlmonitor__container .mt-32 {
  margin-top: 32px;
}

.leefstijlmonitor__container .mt-42 {
  margin-top: 42px;
}

.leefstijlmonitor__container .mb-55 {
  margin-bottom: 55px;
}

.leefstijlmonitor__inputgroup input[type="number"],
.leefstijlmonitor__inputgroup input[type="text"] {
  width: 60px;
}

.leefstijlmonitor__inputgroup label:not(:last-child) {
  margin-right: 5px;
}

.leefstijlmonitor__radiogroup {
  margin-top: 24px;
}

.leefstijlmonitor__radiogroup label:first-child span {
  border-radius: 17px 0 0 17px;
}

.leefstijlmonitor__radiogroup label:last-child span {
  border-radius: 0 17px 17px 0;
}

.leefstijlmonitor__radiogroup label span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  font-size: 18px;
  line-height: 23px;
  color: #a8a8a8;
  padding: 9px;
  min-width: 63px;
  height: 34px;
  transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
}

.leefstijlmonitor__radiogroup label span:hover {
  background: #e9e9e9;
}

.leefstijlmonitor__radiogroup input[type="radio"]:checked ~ span {
  background: #07a1dd;
  color: white;
}

.leefstijlmonitor__radiogroup.radio-full label {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.leefstijlmonitor__radiogroup.radio-full label span {
  min-width: 215px;
  border-radius: 17px;
}

.leefstijlmonitor__results__item {
  text-align: left;
  border-top: 1px solid #f0f0f0;
  padding: 9px 0 37px;
}

.leefstijlmonitor__results__item:last-child {
  border-bottom: 1px solid #f0f0f0;
}

.leefstijlmonitor__results__item > span {
  font-size: 18px;
  line-height: 23px;
}

.leefstijlmonitor__results__bar {
  position: relative;
  margin-top: 18px;
}

.leefstijlmonitor__results__bar .bars {
  display: flex;
  height: 7px;
  border-radius: 3.5px;
  background: #fff;
}

.leefstijlmonitor__results__bar .bars span {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 18px;
}

.leefstijlmonitor__results__bar .bars > *:first-child,
.leefstijlmonitor__results__bar.bar--reverse .bars > *:last-child {
  border-radius: 3.5px 0 0 3.5px;
}

.leefstijlmonitor__results__bar .bars > *:last-child,
.leefstijlmonitor__results__bar.bar--reverse .bars > *:first-child {
  border-radius: 0 3.5px 3.5px 0;
}

.leefstijlmonitor__results__bar .bars > *:not(:first-child) > span:first-child {
  transform: translateX(-50%);
}

.leefstijlmonitor__results__bar
  .bars
  > *:not(:first-child)
  > span:nth-child(2) {
  float: right;
}

.leefstijlmonitor__results__bar .bars .bar--green.active {
  background: #01a746;
}

.leefstijlmonitor__results__bar .bars .bar--orange.active {
  background: #fa8909;
}

.leefstijlmonitor__results__bar .bars .bar--red.active {
  background: #ea362d;
}

.leefstijlmonitor__results__bar .bars .bar--green:not(.active) {
  background: rgba(1, 167, 70, 0.15);
}

.leefstijlmonitor__results__bar .bars .bar--orange:not(.active) {
  background: rgba(250, 137, 9, 0.15);
}

.leefstijlmonitor__results__bar .bars .bar--red:not(.active) {
  background: rgba(234, 54, 45, 0.15);
}

.leefstijlmonitor__results__bar .score {
  display: block;
  color: #2d529b;
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  position: absolute;
  top: -22px;
  left: 0;
  transform: translateX(-50%);
}

.leefstijlmonitor__results__bar .score::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  height: 14px;
  width: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #e2f4fb;
  z-index: 10;
}

.leefstijlmonitor__results__bar .score.is--green::before {
  background: #01a746;
}

.leefstijlmonitor__results__bar .score.is--orange::before {
  background: #fa8909;
}

.leefstijlmonitor__results__bar .score.is--red::before {
  background: #ea362d;
}

.leefstijlmonitor__results__bar.bar--answer {
  margin-top: 6px;
}

.leefstijlmonitor__results__bar.bar--answer .bars > * {
  width: auto;
  flex: 1 1 auto;
  text-align: center;
}

.leefstijlmonitor__results__bar.bar--answer .bars > * span {
  transform: none !important;
}

.leefstijlmonitor__results__bar.bar--answer.bar--reverse .bars {
  flex-direction: row-reverse;
}

.leefstijlmonitor__infobox {
  background: #e2f4fb;
  padding: 18px 12px 22px;
  max-width: 300px;
  margin: 32px auto 0;
}

.leefstijlmonitor__infobox a {
  font-size: 22px;
  line-height: 28px;
  color: #07a1dd;
}

b.is--green {
  color: #01a746;
}

b.is--orange {
  color: #fa8909;
}

b.is--red {
  color: #ea362d;
}
