/*
 * Variabelen
*/
/*
 * mixin
*/
/**
 * html, body en app
*/
html, .portaal {
  height: 100%;
}

.test {
  display: flex;
}

body {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  font-family: Calibri;
  min-height: 100%;
  color: rgba(23, 35, 62, 0.8);
  font-size: 18px;
}

.portaal__inner {
  display: flex;
  min-height: calc(100% - 80px);
}

.portaal--has-details .details {
  display: block;
}
.portaal--has-details .offer {
  display: none;
}
.portaal--has-details .filters, .portaal--has-details .search {
  pointer-events: none;
  opacity: 0.1;
  cursor: default;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
}

/*
 * Breadcrumb
*/
.breadcrumb {
  padding: 0 20px;
  color: white;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr 300px;
  align-items: center;
  -webkit-box-shadow: 0px 9px 41px -16px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 9px 41px -16px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 9px 41px -16px rgba(0, 0, 0, 0.2);
  background-color: white;
  z-index: 2;
  position: relative;
  min-height: 70px;
}
.breadcrumb a {
  text-decoration: none;
}

.breadcrumb__subtitle {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #17233e;
  margin: 0;
  display: flex;
  align-items: center;
}

.breadcrumb__icon {
  font-family: "Material Icons";
  opacity: 0.5;
  vertical-align: middle;
  text-align: center;
  margin-left: 5px;
}

.logo__link {
  display: flex;
  padding: 5px;
  outline: none !important;
}

.logo {
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 20px;
}

/*
 * search
*/
.search {
  height: 40px;
  display: flex;
}

.search__input {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #17233e;
  background: none;
  height: 40px;
  width: 100%;
  flex: 1;
  border: none;
  outline: none !important;
  padding: 0 20px;
  font-weight: bold;
  border: 2px solid rgba(23, 35, 62, 0.7);
  border-radius: 30px;
  box-sizing: border-box;
}
.search__input::placeholder {
  color: rgba(23, 35, 62, 0.5);
}

.search__icon {
  font-family: "Material Icons";
  line-height: 40px;
  width: 40px;
  text-align: center;
  background-color: #8ebf66;
  border-radius: 30px;
  margin-left: 10px;
  cursor: pointer;
  cursor: pointer;
  transition: opacity ease-in 150ms;
}
.search__icon:hover {
  opacity: 0.7;
}

/*
 * Inputs
*/
.input__radio, .input__checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.input__radio + label, .input__checkbox + label {
  display: flex;
  cursor: pointer;
  font-weight: bold;
  margin: 10px 0;
  align-items: center;
  line-height: 1em;
  word-break: break-word;
}
.input__radio + label:before, .input__checkbox + label:before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #c5d1d9;
  display: inline-block;
  margin-right: 10px;
  box-sizing: border-box;
  margin-top: 3px;
  flex: 0 0 15px;
}
.input__radio:checked + label:before, .input__checkbox:checked + label:before {
  background-color: #37baea;
}

textarea.input {
  padding: 8px 20px;
  resize: vertical;
}

.input__radio + label:before {
  border-radius: 50%;
}

.label {
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(23, 35, 62, 0.5);
  letter-spacing: 0.5px;
  line-height: 3em;
  display: block;
}

.label--is-required:after {
  content: "*";
  color: #EF7150;
  text-transform: none;
  letter-spacing: 0;
  font-weight: normal;
  margin-left: 5px;
  font-size: 0.9em;
}

.input {
  cursor: pointer;
  transition: opacity ease-in 150ms;
  line-height: 24px;
  font-family: Calibri;
  font-size: 18px;
  min-height: 40px;
  display: block;
  width: 100%;
  border: 1px solid rgba(23, 35, 62, 0.2);
  outline: none !important;
  padding: 5px 20px;
  font-weight: bold;
  border-radius: 30px;
  color: inherit;
  box-sizing: border-box;
  background-color: white;
  line-height: 1em;
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
}
.input:hover {
  opacity: 0.7;
}

.input[disabled] {
  background-color: rgba(197, 209, 217, 0.2);
  border: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(23, 35, 62, 0.2);
  opacity: 1; /* Firefox */
}

.form--is-submitted .input:invalid {
  border: 2px solid rgba(239, 113, 80, 0.5);
}

.input__wrapper {
  display: flex;
}
.input__wrapper .input {
  flex: 1;
}
.input__wrapper .input:not(:last-child) {
  margin-right: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input__wrapper .input:not(:first-child) {
  flex: 1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.submit {
  cursor: pointer;
  transition: opacity ease-in 150ms;
  line-height: 24px;
  font-family: Calibri;
  font-size: 18px;
  min-height: 40px;
  display: block;
  width: 100%;
  border: 1px solid transparent;
  outline: none !important;
  padding: 5px 20px;
  font-weight: bold;
  border-radius: 30px;
  color: white;
  box-sizing: border-box;
  background-color: #8ebf66;
  line-height: 1em;
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #17233e;
  color: white;
  width: auto;
  justify-content: center;
  white-space: normal;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
}
.submit:hover {
  opacity: 0.7;
}

.button {
  cursor: pointer;
  transition: opacity ease-in 150ms;
  line-height: 24px;
  font-family: Calibri;
  font-size: 18px;
  min-height: 40px;
  display: block;
  width: 100%;
  border: 1px solid transparent;
  outline: none !important;
  padding: 5px 20px;
  font-weight: bold;
  border-radius: 30px;
  color: inherit;
  box-sizing: border-box;
  background-color: rgba(23, 35, 62, 0.08);
  line-height: 1em;
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #17233e;
  justify-content: center;
  width: auto;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  min-width: 250px;
}
.button:hover {
  opacity: 0.7;
}

/*
 * Tekst
*/
.title {
  font-size: 42.5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #17233e;
  line-height: 1em;
  margin: 0;
  display: inline-block;
  border-bottom: 6px solid white;
  transition: border-color 150ms ease-in;
  margin-right: auto;
}
.title.-large {
  font-size: 70px;
}
.title:hover {
  border-color: orange;
}

.subtitle {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #17233e;
  padding-bottom: 2px;
  color: #37baea;
}

.link {
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(23, 35, 62, 0.5);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity ease-in 150ms;
  color: #37baea;
  display: inline-block;
  line-height: 1.5em;
  border-bottom: 1px solid rgba(55, 186, 234, 0.7);
  font-size: 0.6em;
  margin-top: 20px;
  margin-left: auto;
}
.link:hover {
  opacity: 0.7;
}

a {
  color: inherit;
}

/*
 * Nav
*/
.nav {
  margin: 0;
  padding: 0;
  display: flex;
}

.nav__list {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav__link:hover, .menu__button:hover {
  background-color: #d9d9d9;
}

.nav__link.-active {
  background: #37baea;
  color: white;
}

.nav__link, .menu__button {
  height: 45px;
  display: flex;
  padding: 0 33px 0 30px;
  border-bottom-right-radius: 20px;
  align-items: center;
  background-color: #ededed;
  text-decoration: none;
  font-weight: bold;
  background-size: 200%;
  transition: background 300ms ease-out;
  margin: 0 0 0 20px;
  cursor: pointer;
}

.nav__link.-home {
  font-family: "Material Icons";
}

.menu__button {
  font-family: "Material Icons";
  margin-left: auto;
  margin-right: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 0;
}

/*
 * Filter
*/
.filters {
  flex: 300px 0 0;
  align-self: flex-start;
  position: sticky;
  top: 120px;
  padding: 0 0 40px 0;
  overflow: auto;
}
@media (min-width: 700px) {
  .filters {
    max-height: calc(100vh - 180px);
  }
}
.filters::-webkit-scrollbar {
  width: 5px;
  margin-right: -20px;
}
.filters::-webkit-scrollbar-thumb {
  background: rgba(23, 35, 62, 0.2);
}
.filters::-webkit-scrollbar-track {
  background: rgba(23, 35, 62, 0.05);
}

.filters__inline {
  display: flex;
  margin-bottom: 20px;
}
.filters__inline .filter {
  flex: 1;
  border-bottom: none !important;
  margin: 0;
  padding-bottom: 0 !important;
}
@media (min-width: 700px) {
  .filters__inline .filter:not(:first-child) {
    margin-left: 10px;
  }
}

.filters__inline__tooltip {
  color: #EF7150;
  margin-bottom: 20px;
  background-color: rgba(239, 113, 80, 0.1);
  border-radius: 30px;
  padding: 20px;
  text-align: center;
}

.filters__title {
  cursor: pointer;
  transition: opacity ease-in 150ms;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #17233e;
  margin: 0;
  padding: 0 20px;
  height: 60px;
  grid-template-columns: 1fr 60px;
  align-items: center;
  display: none;
}
.filters__title:hover {
  opacity: 0.7;
}

.filter__icon {
  transition: transform ease-in 150ms;
  font-family: "Material Icons";
  opacity: 0.5;
  vertical-align: middle;
  text-align: center;
  margin-left: 5px;
}

.filter {
  margin: 20px;
}
.filter:not(:last-child) {
  border-bottom: 1px solid rgba(197, 209, 217, 0.5);
  padding-bottom: 20px;
}

.filter__title {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(23, 35, 62, 0.5);
  letter-spacing: 0.5px;
  margin: 20px 0;
}

/*
 * Vertical bar width 
*/
.offer {
  overflow: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 0 40px 0;
}
.offer + .content {
  padding: 0;
}

/*
 * Training overview
*/
.training {
  background-color: white;
  display: flex;
  cursor: pointer;
  min-height: 250px;
  flex: 0 0 auto;
  position: relative;
  align-items: center;
}
.training:not(:last-child) {
  margin-bottom: 80px;
}
.training:hover .training__title {
  border-bottom: 6px solid orange;
}
.training:nth-child(odd) .training__img {
  order: -1;
}

.training__content {
  margin: 20px;
  flex: 1;
  z-index: 1;
  position: relative;
}

.training__paragraph {
  line-height: 24px;
  font-family: Calibri;
  font-size: 18px;
  margin: 30px 0;
}

.training__img {
  margin: 20px;
  background-color: #17233e;
  flex: 1;
  background-position: center;
  background-size: cover;
  min-height: 300px;
  border-top-right-radius: 150px;
  border-bottom-left-radius: 150px;
  background-image: url("/portaal/img/default__training.jpg");
}

.loadmore {
  display: flex;
  align-items: center;
  margin: 4px auto;
}
.loadmore .loadmore__icon {
  font-size: 20px;
}
.loadmore .loadmore__label {
  font-size: 12px;
}

/*
 * Content
*/
.content {
  display: none;
  flex: 2;
  overflow: hidden;
  position: sticky;
  padding: 0 300px;
}
.content.active {
  display: block;
}

.content__header {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 80px;
}
.content__header > div {
  padding: 50px 0;
}

.content__header__img {
  background-image: url("/portaal/img/default__training.jpg");
  margin-top: -20px;
  margin-bottom: -40px;
  min-height: 100%;
  border-bottom-left-radius: 150px;
  background-position: center;
  background-size: cover;
  padding-bottom: 100px;
  height: 300px;
}

.content__inner {
  margin: 20px;
}

.content__close {
  cursor: pointer;
  transition: opacity ease-in 150ms;
  width: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 30px;
  color: white;
  background-color: #17233e;
  margin: auto;
}
.content__close:hover {
  opacity: 0.7;
}

.content__title__wrapper {
  display: grid;
  grid-template-columns: 1fr 36px;
}
.content__title__wrapper .title {
  border-bottom: 6px solid orange;
}

.content__item {
  display: grid;
  grid-gap: 20px;
  align-items: center;
  margin: auto;
  grid-template-columns: 1fr 1fr;
  margin: 20px 0;
}

.content__img {
  max-width: 250px;
  justify-self: end;
  padding: 0 40px;
}
.content__img img {
  max-width: 100%;
}

.content__item__text + .content__img {
  justify-self: start;
}

.details__button {
  cursor: pointer;
  transition: opacity ease-in 150ms;
  line-height: 24px;
  font-family: Calibri;
  font-size: 18px;
  min-height: 40px;
  display: block;
  width: 100%;
  border: 1px solid transparent;
  outline: none !important;
  padding: 5px 20px;
  font-weight: bold;
  border-radius: 30px;
  color: white;
  box-sizing: border-box;
  background-color: #37baea;
  line-height: 1em;
  display: block;
  text-decoration: none;
}
.details__button:hover {
  opacity: 0.7;
}

.details__paragraph {
  line-height: 24px;
  font-family: Calibri;
  font-size: 18px;
}

/**
 * Register
*/
.register {
  padding: 40px 20px;
  max-width: 100%;
  width: 740px;
  margin: auto;
  box-sizing: border-box;
}

.fieldset {
  border: none;
  padding: 0;
  margin: 0;
  margin: 30px 0;
  position: relative;
}

.register__subtitle {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #17233e;
  padding: 0 0 2px 0;
  color: #37baea;
}

.remove {
  float: right;
  font-family: "Material Icons";
  cursor: pointer;
  transition: opacity ease-in 150ms;
}
.remove:hover {
  opacity: 0.7;
}

/**
 * Table / small info headings
*/
.summary {
  border: 1px solid rgba(197, 209, 217, 0.5);
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}
.summary + .summary {
  border-top: 0;
}

.summary__expand {
  flex-direction: column;
  padding: 10px 0 20px 0;
  position: relative;
  justify-content: center;
  display: flex;
  width: 100%;
  cursor: pointer;
  transition: opacity ease-in 150ms;
}
.summary__expand:hover {
  opacity: 0.7;
}
.summary__expand:after {
  transition: transform ease-in 150ms;
  content: "\e313";
  font-family: "Material Icons";
  position: absolute;
  right: 10px;
  top: 0px;
}
.summary__expand > div {
  margin: 5px 0;
  line-height: 24px;
  font-family: Calibri;
  font-size: 18px;
  text-align: center;
}
.summary__expand.-active:after {
  transform: rotate(180deg);
}
.summary__expand.-active:before {
  content: "";
  left: 10px;
  right: 10px;
  bottom: 10px;
  top: 0;
  position: absolute;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  background-color: #eff9ff;
  z-index: -1;
}

.summary__item {
  flex: 1 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  padding: 10px 10px 10px 0;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #17233e;
}
.summary__item i {
  width: 36px;
  color: #37baea;
}

.summary__label {
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(23, 35, 62, 0.5);
  letter-spacing: 0.5px;
  display: block;
  color: #37baea;
}

/*
 *
*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(23, 35, 62, 0.8);
  display: flex;
  animation: fadein 500ms forwards;
  align-items: center;
  justify-content: center;
}

.modal__inner {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  width: 500px;
  max-width: calc(100% - 20px);
  margin: 10px;
  animation: slidein 300ms forwards;
}

.modal__header {
  background-color: #8ebf66;
  display: flex;
  position: relative;
}

.modal.-error .modal__header {
  background-color: #EF7150;
}

.modal__header.-error {
  background-color: #EF7150;
}

.modal__icon {
  width: 50px;
  height: 50px;
  border: 5px solid white;
  border-radius: 30px;
  font-size: 56px;
  color: white;
  margin: 20px auto;
  line-height: 42px;
  text-align: center;
}

.modal__body {
  padding: 20px;
  text-align: center;
  overflow-y: scroll;
  max-height: calc(100vh - 300px);
}
.modal__body h4 {
  font-size: 42.5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #17233e;
  line-height: 1em;
  margin: 0;
  display: inline-block;
  border-bottom: 6px solid white;
  transition: border-color 150ms ease-in;
  margin-right: auto;
  color: rgba(23, 35, 62, 0.8);
}
.modal__body h4.-large {
  font-size: 70px;
}
.modal__body p {
  margin: 0;
  color: rgba(23, 35, 62, 0.8);
}

.modal__close {
  background: none;
  outline: none;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  right: 10px;
  top: 10px;
  position: absolute;
}

.payment {
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
  flex-wrap: wrap;
}
.payment i {
  margin: 0 10px;
}
.payment.-betaald .result {
  color: #8ebf66;
}
.payment.-geannuleerd .result, .payment.-in-afwachting .result {
  color: #EF7150;
}
.payment.-terugbetaald .result {
  color: rgba(23, 35, 62, 0.5);
}

.costs {
  padding: 0 20px;
}

.cost__item {
  justify-content: space-between;
  display: flex;
  padding: 5px 0;
}
.cost__item:last-child {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.cost__label {
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(23, 35, 62, 0.5);
  letter-spacing: 0.5px;
  display: block;
  color: #8ebf66;
}

.-betaalwijze .input__radio + label {
  padding: 10px 0;
  margin: 0;
}
.-betaalwijze .input__radio + label:not(:last-child) {
  border-bottom: 1px solid rgba(197, 209, 217, 0.5);
}

.voorwaarden {
  font-size: 0.7em;
}
.voorwaarden label {
  display: block;
  align-items: center;
  font-weight: normal;
}
.voorwaarden label:before {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 5px;
}
.voorwaarden .link {
  border-bottom: none;
  margin-left: auto;
  margin-top: 0;
  font-size: inherit;
  text-transform: none;
  font-family: inherit;
  text-decoration: underline;
  font-weight: normal;
}

#actions {
  display: grid;
  grid-gap: 10px;
  align-items: flex-start;
  justify-content: start;
  grid-auto-rows: auto;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
/**
 * Vue JS animations
 */
.training-enter-active,
.training-leave-active,
.register-enter-active,
.register-leave-active,
.content-enter-active,
.content-leave-active {
  transition: all 500ms;
}

.register-leave-active {
  position: absolute;
  opacity: 0;
}

.training--is-active.training-leave-active {
  transition: none !important;
  animation: none;
}

.training-enter,
.training-leave-to,
.register-enter,
.register-leave-to,
.content-enter {
  opacity: 0;
  transform: translateX(30px);
}

.content-leave-active {
  display: none;
}

@media (min-width: 1200px) {
  .menu__button {
    display: none;
  }
}
@media (max-width: 1400px) {
  .content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .nav {
    align-items: flex-start;
  }
  .nav__list {
    transform: scaleX(0);
    transition: transform ease-in 150ms;
    transform-origin: center left;
    transition-delay: 150ms;
    height: auto;
    display: flex;
    padding: 0;
    border-bottom-right-radius: 20px;
    align-items: center;
    background-color: #ededed;
    text-decoration: none;
    font-weight: bold;
    margin: 0 0 0 20px;
    cursor: pointer;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    width: 300px;
    position: absolute;
    -webkit-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.15);
  }
  .nav__list .nav__link {
    opacity: 0;
    transition: opacity ease-in 150ms;
    transition-delay: 0ms;
    background: none;
    text-align: left;
    padding: 0 20px;
    margin: 0;
  }
  .nav__list .nav__link.-active {
    background-color: #8ebf66;
  }
  .nav.-active .nav__link {
    opacity: 1;
    transition-delay: 150ms;
  }
  .nav.-active .nav__list {
    transition-delay: 0ms;
    transform: scaleX(1);
  }
  .training {
    display: block;
  }
  .training__img {
    z-index: 2;
    position: relative;
  }
  .content {
    padding: 40px 0;
  }
  .content__header {
    display: block;
  }
  .content__title {
    display: block;
    margin: 40px 0;
  }
  .content__header__img {
    border-top-right-radius: 150px;
    margin: 20px 0;
    padding-bottom: 0;
  }
  .content__footer, .training__footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .training__footer {
    align-items: flex-start;
  }
  .content__footer__label, .training__footer__label {
    width: 100px;
    display: inline-block;
  }
  .content__item {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .content__img {
    order: -1;
  }
  .content__img img {
    max-width: 300px;
  }
}
@media (max-width: 700px) {
  .nav {
    top: 85px;
  }
  .portaal__inner {
    display: block;
  }
  .breadcrumb {
    grid-template-columns: 1fr;
    padding: 20px;
    text-align: center;
  }
  .logo {
    border-right: 0;
    margin: auto auto 10px auto;
  }
  .breadcrumb__subtitle {
    display: none;
  }
  .filters__inline {
    flex-direction: column;
  }
  .filters {
    padding: 0;
    border-bottom: 1px solid rgba(197, 209, 217, 0.5);
  }
  .filters__title {
    display: grid;
  }
  .filter:not(.-inline) {
    display: none;
  }
  .filters--is-active .filter__icon {
    transform: rotate(180deg);
    color: orange;
  }
  .filters--is-active .filter {
    display: block;
  }
  .payment > span {
    display: flex;
    flex-direction: column;
    margin: 5px 0;
    width: 100%;
  }
  .payment i {
    margin: 0;
  }
}
/*
 * Imports
*/
:root {
  --cc-font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --cc-font-size: 16px;
  --cc-bg: #fff;
  --cc-z-index: 2147483647;
  --cc-text: #2d4156;
  --cc-border-radius: 22px;
  --cc-btn-primary-bg: #37baea;
  --cc-btn-primary-text: var(--cc-bg);
  --cc-btn-primary-hover-bg: #1d2e38;
  --cc-btn-primary-hover-text: var(--cc-btn-primary-text);
  --cc-btn-secondary-bg: #eaeff2;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #d8e0e6;
  --cc-btn-secondary-hover-text: var(--cc-btn-secondary-text);
  --cc-btn-border-radius: 22px;
  --cc-toggle-bg-off: #919ea6;
  --cc-toggle-bg-on: var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly: #d5dee2;
  --cc-toggle-knob-bg: #fff;
  --cc-toggle-knob-icon-color: #ecf2fa;
  --cc-block-text: var(--cc-text);
  --cc-cookie-category-block-bg: #f0f4f7;
  --cc-cookie-category-block-bg-hover: #e9eff4;
  --cc-section-border: #f1f3f5;
  --cc-cookie-table-border: #e9edf2;
  --cc-overlay-bg: #040608;
  --cc-overlay-opacity: .85;
  --cc-consent-modal-box-shadow: 0px 9px 41px -16px rgba(0,0,0,0.2);
  --cc-webkit-scrollbar-bg: #cfd5db;
  --cc-webkit-scrollbar-bg-hover: #9199a0 ;
}

.c_darkmode {
  --cc-bg: #181b1d;
  --cc-text: #d8e5ea;
  --cc-btn-primary-bg: #a6c4dd;
  --cc-btn-primary-text: #000;
  --cc-btn-primary-hover-bg: #c2dff7;
  --cc-btn-primary-hover-text: var(--cc-btn-primary-text);
  --cc-btn-secondary-bg: #33383c;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #3e454a;
  --cc-btn-secondary-hover-text: var(--cc-btn-secondary-text);
  --cc-toggle-bg-off: #667481;
  --cc-toggle-bg-on: var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly: #454c54;
  --cc-toggle-knob-bg: var(--cc-cookie-category-block-bg);
  --cc-toggle-knob-icon-color: var(--cc-bg);
  --cc-block-text: #b3bfc5;
  --cc-cookie-category-block-bg: #23272a;
  --cc-cookie-category-block-bg-hover: #2b3035;
  --cc-section-border: #292d31;
  --cc-cookie-table-border: #2b3035;
  --cc-webkit-scrollbar-bg: #667481;
  --cc-webkit-scrollbar-bg-hover: #9199a0 ;
}

#cc--main {
  z-index: 2147483647;
  z-index: var(--cc-z-index);
}

.cc_div *, .cc_div :after, .cc_div :before, .cc_div :hover {
  animation: none;
  background: none;
  border: none;
  border-radius: unset;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  float: none;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: normal;
  font-weight: inherit;
  height: auto;
  letter-spacing: unset;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  transition: none;
  vertical-align: baseline;
  visibility: unset;
}

.cc_div {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2d4156;
  color: var(--cc-text);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-family: var(--cc-font-family);
  font-size: 16px;
  font-size: var(--cc-font-size);
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

#c-ttl, #s-bl td:before, #s-ttl, .cc_div .b-tl, .cc_div .c-bn {
  font-weight: 600;
}

#cm, #s-bl .act .b-acc, #s-inr, .cc_div .b-tl, .cc_div .c-bl {
  border-radius: 0.45rem;
  border-radius: var(--cc-border-radius);
}

#s-bl .act .b-acc {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cc_div a, .cc_div button, .cc_div input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
}

.cc_div a {
  border-bottom: 1px solid;
}

.cc_div a:hover {
  border-color: transparent;
  text-decoration: none;
}

.cc_div .c-bn > span {
  pointer-events: none;
}

#cm-ov, #cs-ov, .c--anim #cm, .c--anim #s-cnt, .c--anim #s-inr {
  transition: visibility 0.25s linear, opacity 0.25s ease, transform 0.25s ease !important;
}

.c--anim .c-bn {
  transition: background-color 0.25s ease !important;
}

.c--anim #cm.bar.slide, .c--anim #cm.bar.slide + #cm-ov, .c--anim .bar.slide #s-inr, .c--anim .bar.slide + #cs-ov {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

#cm.bar.slide, .cc_div .bar.slide #s-inr {
  opacity: 1;
  transform: translateX(100%);
}

#cm.bar.top.slide, .cc_div .bar.left.slide #s-inr {
  opacity: 1;
  transform: translateX(-100%);
}

#cm.slide, .cc_div .slide #s-inr {
  transform: translateY(1.6em);
}

#cm.top.slide {
  transform: translateY(-1.6em);
}

#cm.bar.slide {
  transform: translateY(100%);
}

#cm.bar.top.slide {
  transform: translateY(-100%);
}

.show--consent .c--anim #cm, .show--consent .c--anim #cm.bar, .show--settings .c--anim #s-inr, .show--settings .c--anim .bar.slide #s-inr {
  opacity: 1;
  transform: scale(1);
  visibility: visible !important;
}

.show--consent .c--anim #cm.box.middle, .show--consent .c--anim #cm.cloud.middle {
  transform: scale(1) translateY(-50%);
}

.show--settings .c--anim #s-cnt {
  visibility: visible !important;
}

.force--consent.show--consent .c--anim #cm-ov, .show--settings .c--anim #cs-ov {
  opacity: 0.85 !important;
  opacity: var(--cc-overlay-opacity) !important;
  visibility: visible !important;
}

#cm {
  background: #fff;
  background: var(--cc-bg);
  bottom: 1.25em;
  box-shadow: 0 0.625em 1.875em #000;
  box-shadow: 0 0.625rem 1.875rem rgba(2, 2, 3, 0.28);
  box-shadow: var(--cc-consent-modal-box-shadow);
  font-family: inherit;
  line-height: normal;
  max-width: 24.2em;
  opacity: 0;
  padding: 1em 1.4em 1.3em;
  position: fixed;
  right: 1.25em;
  transform: scale(0.95);
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

#cc_div #cm {
  display: block !important;
}

#c-ttl {
  font-size: 1.05em;
  margin-bottom: 0.7em;
}

.cloud #c-ttl {
  margin-top: -0.15em;
}

#c-txt {
  font-size: 0.9em;
  line-height: 1.5em;
}

.cc_div #c-bns {
  display: flex;
  justify-content: space-between;
  margin-top: 1.4em;
}

.cc_div .c-bn {
  background: #eaeff2;
  background: var(--cc-btn-secondary-bg);
  border-radius: 0.375rem;
  border-radius: var(--cc-btn-border-radius);
  color: #37baea;
  color: var(--cc-btn-secondary-text);
  cursor: pointer;
  display: inline-block;
  flex: 1;
  font-size: 0.82em;
  padding: 1em 1.7em;
  text-align: center;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

#c-bns button + button, #s-c-bn, #s-cnt button + button {
  float: right;
  margin-left: 0.5rem;
}

#s-cnt #s-rall-bn {
  float: none;
}

#cm .c_link:active, #cm .c_link:hover, #s-c-bn:active, #s-c-bn:hover, #s-cnt button + button:active, #s-cnt button + button:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
  color: #2d4156;
  color: var(--cc-btn-secondary-hover-text);
}

#s-cnt {
  display: table;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 101;
}

#s-bl {
  outline: none;
  scrollbar-width: thin;
}

#s-bl .title {
  margin-top: 1.4em;
  display: initial;
}

#s-bl .b-bn, #s-bl .title:first-child {
  margin-top: 0;
}

#s-bl .b-acc .p {
  margin-top: 0;
  padding: 1em;
}

#s-cnt .b-bn .b-tl {
  background: none;
  display: block;
  font-family: inherit;
  font-size: 0.95em;
  padding: 1.3em 6.4em 1.3em 2.7em;
  position: relative;
  transition: background-color 0.25s ease;
  width: 100%;
}

#s-cnt .b-bn .b-tl.exp {
  cursor: pointer;
}

#s-cnt .act .b-bn .b-tl {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#s-cnt .b-bn .b-tl:active, #s-cnt .b-bn .b-tl:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl .b-bn {
  position: relative;
}

#s-bl .c-bl {
  border: 1px solid #f1f3f5;
  border: 1px solid var(--cc-section-border);
  margin-bottom: 0.4rem;
  padding: 1em;
  transition: background-color 0.25s ease;
}

#s-bl .c-bl:hover {
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
}

#s-bl .c-bl:last-child {
  margin-bottom: 0.5em;
}

#s-bl .c-bl:first-child {
  border: none;
  margin-bottom: 2em;
  margin-top: 0;
  padding: 0;
  transition: none;
}

#s-bl .c-bl:not(.b-ex):first-child:hover {
  background: transparent;
  background: unset;
}

#s-bl .c-bl.b-ex {
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
  border: none;
  padding: 0;
  transition: none;
}

#s-bl .c-bl.b-ex + .c-bl {
  margin-top: 2em;
}

#s-bl .c-bl.b-ex + .c-bl.b-ex {
  margin-top: 0;
}

#s-bl .c-bl.b-ex:first-child {
  margin-bottom: 1em;
  margin-bottom: 0.5em;
}

#s-bl .b-acc {
  display: none;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
}

#s-bl .act .b-acc {
  display: block;
  max-height: 100%;
  overflow: hidden;
}

#s-cnt .p {
  color: #2d4156;
  color: var(--cc-block-text);
  font-size: 0.9em;
  line-height: 1.5em;
  margin-top: 0.85em;
}

.cc_div .b-tg .c-tgl:disabled {
  cursor: not-allowed;
}

#c-vln {
  display: table-cell;
  position: relative;
  vertical-align: middle;
}

#cs {
  bottom: 0;
  left: 0;
  padding: 0 1.7em;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}

#cs, #s-inr {
  height: 100%;
}

#s-inr {
  box-shadow: 0 13px 27px -5px rgba(3, 6, 9, 0.26);
  margin: 0 auto;
  max-width: 45em;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 4.75em;
  padding-top: 4.75em;
  position: relative;
  transform: scale(0.96);
  visibility: hidden;
}

#s-bns, #s-hdr, #s-inr {
  background: #fff;
  background: var(--cc-bg);
}

#s-bl {
  display: block;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-y: overlay;
  padding: 1.3em 1.6em;
  width: 100%;
}

#s-bns {
  border-top: 1px solid #f1f3f5;
  border-top: 1px solid var(--cc-section-border);
  bottom: 0;
  height: 4.75em;
  left: 0;
  padding: 1em 1.8em;
  position: absolute;
  right: 0;
}

.cc_div .cc-link {
  border-bottom: 1px solid #2d4156;
  border-bottom: 1px solid var(--cc-btn-primary-bg);
  color: #2d4156;
  color: var(--cc-btn-primary-bg);
  cursor: pointer;
  display: inline;
  font-weight: 600;
  padding-bottom: 0;
  text-decoration: none;
}

.cc_div .cc-link:active, .cc_div .cc-link:hover {
  border-color: transparent;
}

#c-bns button:first-child, #s-bns button:first-child {
  background: #2d4156;
  background: var(--cc-btn-primary-bg);
  color: #fff;
  color: var(--cc-btn-primary-text);
}

#c-bns.swap button:first-child {
  background: #eaeff2;
  background: var(--cc-btn-secondary-bg);
  color: #2d4156;
  color: var(--cc-btn-secondary-text);
}

#c-bns.swap button:last-child {
  background: #2d4156;
  background: var(--cc-btn-primary-bg);
  color: #fff;
  color: var(--cc-btn-primary-text);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg {
  background: #2d4156;
  background: var(--cc-toggle-bg-on);
}

#c-bns button:first-child:active, #c-bns button:first-child:hover, #c-bns.swap button:last-child:active, #c-bns.swap button:last-child:hover, #s-bns button:first-child:active, #s-bns button:first-child:hover {
  background: #1d2e38;
  background: var(--cc-btn-primary-hover-bg);
  color: #fff;
  color: var(--cc-btn-primary-hover-text);
}

#c-bns.swap button:first-child:active, #c-bns.swap button:first-child:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
  color: #2d4156;
  color: var(--cc-btn-secondary-hover-text);
}

#s-hdr {
  border-bottom: 1px solid #f1f3f5;
  border-bottom: 1px solid var(--cc-section-border);
  display: table;
  height: 4.75em;
  padding: 0 1.8em;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

#s-hdr, #s-ttl {
  vertical-align: middle;
}

#s-ttl {
  display: table-cell;
  font-size: 1em;
}

#s-c-bn {
  font-size: 1.45em;
  font-weight: 400;
  height: 1.7em;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1.7em;
}

#s-c-bnc {
  display: table-cell;
  vertical-align: middle;
}

.cc_div span.t-lb {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1;
}

#c_policy__text {
  height: 31.25em;
  margin-top: 1.25em;
  overflow-y: auto;
}

#c-s-in {
  height: 100%;
  height: calc(100% - 2.5em);
  max-height: 37.5em;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 688px) {
  #s-bl::-webkit-scrollbar {
    background: transparent;
    border-radius: 0 0.25em 0.25em 0;
    height: 100%;
    width: 0.8em;
  }
  #s-bl::-webkit-scrollbar-thumb {
    background: #cfd5db;
    background: var(--cc-webkit-scrollbar-bg);
    border: 0.25em solid #fff;
    border: 0.25em solid var(--cc-bg);
    border-radius: 100em;
  }
  #s-bl::-webkit-scrollbar-thumb:hover {
    background: #9199a0;
    background: var(--cc-webkit-scrollbar-bg-hover);
  }
  #s-bl::-webkit-scrollbar-button {
    height: 5px;
    width: 10px;
  }
}
.cc_div .b-tg {
  bottom: 0;
  display: inline-block;
  margin: auto;
  right: 0;
  right: 1.2em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
}

.cc_div .b-tg, .cc_div .b-tg .c-tgl {
  cursor: pointer;
  position: absolute;
  top: 0;
}

.cc_div .b-tg .c-tgl {
  border: 0;
  display: block;
  left: 0;
  margin: 0;
}

.cc_div .b-tg .c-tg {
  background: #919ea6;
  background: var(--cc-toggle-bg-off);
  pointer-events: none;
  position: absolute;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.cc_div .b-tg, .cc_div .b-tg .c-tg, .cc_div .b-tg .c-tgl, .cc_div span.t-lb {
  border-radius: 4em;
  height: 1.5em;
  width: 3.4em;
}

.cc_div .b-tg .c-tg.c-ro {
  cursor: not-allowed;
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro {
  background: #d5dee2;
  background: var(--cc-toggle-bg-readonly);
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro:after {
  box-shadow: none;
}

.cc_div .b-tg .c-tg:after {
  background: #fff;
  background: var(--cc-toggle-knob-bg);
  border: none;
  border-radius: 100%;
  box-shadow: 0 1px 2px rgba(24, 32, 35, 0.36);
  box-sizing: content-box;
  content: "";
  display: block;
  height: 1.25em;
  left: 0.125em;
  position: relative;
  top: 0.125em;
  transition: transform 0.25s ease;
  width: 1.25em;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg:after {
  transform: translateX(1.9em);
}

#s-bl table, #s-bl td, #s-bl th {
  border: none;
}

#s-bl tbody tr {
  transition: background-color 0.25s ease;
}

#s-bl tbody tr:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl table {
  border-collapse: collapse;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
}

#s-bl caption {
  border-bottom: 1px solid #e9edf2;
  border-bottom: 1px solid var(--cc-cookie-table-border);
  font-size: 0.9em;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

#s-bl td, #s-bl th {
  font-size: 0.8em;
  padding: 0.8em 0.625em 0.8em 1.2em;
  text-align: left;
  vertical-align: top;
}

#s-bl th {
  font-family: inherit;
  font-weight: 600;
  padding: 1em 1rem;
}

#s-bl thead tr:first-child {
  border-bottom: 1px solid #e9edf2;
  border-bottom: 1px solid var(--cc-cookie-table-border);
}

.force--consent #cs, .force--consent #s-cnt {
  width: 100vw;
}

#cm-ov, #cs-ov {
  background: #070707;
  background: #040608;
  background: var(--cc-overlay-bg);
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: none;
  visibility: hidden;
}

.c--anim #cs-ov, .force--consent .c--anim #cm-ov, .force--consent.show--consent #cm-ov, .show--settings #cs-ov {
  display: block;
}

#cs-ov {
  z-index: 2;
}

.force--consent .cc_div {
  bottom: 0;
  left: 0;
  position: fixed;
  top: 0;
  transition: visibility 0.25s linear;
  visibility: hidden;
  width: 100%;
  width: 100vw;
}

.force--consent.show--consent .c--anim .cc_div, .force--consent.show--settings .c--anim .cc_div {
  visibility: visible;
}

.force--consent #cm {
  position: absolute;
}

.force--consent #cm.bar {
  max-width: 100vw;
  width: 100vw;
}

html.force--consent.show--consent {
  overflow-y: hidden !important;
}

html.force--consent.show--consent, html.force--consent.show--consent body {
  height: auto !important;
  overflow-x: hidden !important;
}

.cc_div .act .b-bn .exp:before, .cc_div .b-bn .exp:before {
  border: solid #2d4156;
  border: solid var(--cc-btn-secondary-text);
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  left: 1.2em;
  margin-right: 15px;
  padding: 0.2em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.cc_div .act .b-bn .b-tl:before {
  transform: translateY(-20%) rotate(225deg);
}

.cc_div .on-i:before {
  border: solid #ecf2fa;
  border: solid var(--cc-toggle-knob-icon-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  left: 0.75em;
  padding: 0.1em 0.1em 0.45em;
  top: 0.37em;
}

#s-c-bn:after, #s-c-bn:before, .cc_div .on-i:before {
  content: "";
  margin: 0 auto;
  position: absolute;
  transform: rotate(45deg);
}

#s-c-bn:after, #s-c-bn:before {
  background: #2d4156;
  background: var(--cc-btn-secondary-text);
  border-radius: 1em;
  height: 0.6em;
  left: 0.82em;
  top: 0.58em;
  width: 1.5px;
}

#s-c-bn:after {
  transform: rotate(-45deg);
}

.cc_div .off-i, .cc_div .on-i {
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  transition: opacity 0.15s ease;
  width: 50%;
}

.cc_div .on-i {
  left: 0;
  opacity: 0;
}

.cc_div .off-i:after, .cc_div .off-i:before {
  background: #ecf2fa;
  background: var(--cc-toggle-knob-icon-color);
  content: " ";
  display: block;
  height: 0.7em;
  margin: 0 auto;
  position: absolute;
  right: 0.8em;
  top: 0.42em;
  transform-origin: center;
  width: 0.09375em;
}

.cc_div .off-i:before {
  transform: rotate(45deg);
}

.cc_div .off-i:after {
  transform: rotate(-45deg);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .on-i {
  opacity: 1;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .off-i {
  opacity: 0;
}

#cm.box.middle, #cm.cloud.middle {
  bottom: auto;
  top: 50%;
  transform: translateY(-37%);
}

#cm.box.middle.zoom, #cm.cloud.middle.zoom {
  transform: scale(0.95) translateY(-50%);
}

#cm.box.center, #cm.cloud {
  left: 1em;
  margin: 0 auto;
  right: 1em;
}

#cm.cloud {
  max-width: 50em;
  overflow: hidden;
  padding: 1.2em 1.7em;
  text-align: center;
  width: unset;
}

.cc_div .cloud #c-inr {
  display: table;
  width: 100%;
}

.cc_div .cloud #c-inr-i {
  display: table-cell;
  padding-right: 2.4em;
  vertical-align: top;
  width: 70%;
}

.cc_div .cloud #c-txt {
  font-size: 0.85em;
}

.cc_div .cloud #c-bns {
  display: table-cell;
  min-width: 170px;
  vertical-align: middle;
}

#cm.cloud .c-bn {
  margin: 0.5rem 0 0;
  width: 100%;
}

#cm.cloud .c-bn:first-child {
  margin: 0;
}

#cm.cloud.left {
  margin-right: 1.25em;
}

#cm.cloud.right {
  margin-left: 1.25em;
}

#cm.bar {
  border-radius: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  padding: 2em;
  position: fixed;
  right: 0;
  width: 100%;
}

#cm.bar #c-inr {
  margin: 0 auto;
  max-width: 32em;
}

#cm.bar #c-bns {
  max-width: 33.75em;
}

#cm.bar #cs {
  padding: 0;
}

.cc_div .bar #c-s-in {
  height: 100%;
  max-height: 100%;
  top: 0;
  transform: none;
}

.cc_div .bar #s-bl, .cc_div .bar #s-bns, .cc_div .bar #s-hdr {
  padding-left: 1.4em;
  padding-right: 1.4em;
}

.cc_div .bar #cs {
  padding: 0;
}

.cc_div .bar #s-inr {
  border-radius: 0;
  margin: 0 0 0 auto;
  max-width: 32em;
}

.cc_div .bar.left #s-inr {
  margin-left: 0;
  margin-right: auto;
}

.cc_div .bar #s-bl table, .cc_div .bar #s-bl tbody, .cc_div .bar #s-bl td, .cc_div .bar #s-bl th, .cc_div .bar #s-bl thead, .cc_div .bar #s-bl tr, .cc_div .bar #s-cnt {
  display: block;
}

.cc_div .bar #s-bl caption {
  border-bottom: 1px solid #e9edf2;
  border-bottom: 1px solid var(--cc-cookie-table-border);
  border-top: 0;
  display: block;
}

.cc_div .bar #s-bl thead tr {
  left: -9999px;
  position: absolute;
  top: -9999px;
}

.cc_div .bar #s-bl tr {
  border-top: 1px solid #e9edf2;
  border-top: 1px solid var(--cc-cookie-table-border);
}

.cc_div .bar #s-bl td {
  border: none;
  padding-left: 35%;
  position: relative;
}

.cc_div .bar #s-bl td:before {
  color: #2d4156;
  color: var(--cc-text);
  content: attr(data-column);
  left: 1rem;
  overflow: hidden;
  padding-right: 0.625em;
  position: absolute;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#cm.top {
  bottom: auto;
  top: 1.25em;
}

#cm.left {
  left: 1.25em;
  right: auto;
}

#cm.right {
  left: auto;
  right: 1.25em;
}

#cm.bar.left, #cm.bar.right {
  left: 0;
  right: 0;
}

#cm.bar.top {
  top: 0;
}

@media (prefers-reduced-motion) {
  #cc--main #cm, #cc--main #s-cnt, #cc--main #s-inr {
    transition: none !important;
  }
}
@media screen and (max-width: 688px) {
  #cm, #cm.cloud, #cm.left, #cm.right {
    bottom: 1em;
    display: block;
    left: 1em;
    margin: 0;
    max-width: 100%;
    padding: 1.2em !important;
    right: 1em;
    width: auto;
  }
  .force--consent #cm, .force--consent #cm.cloud {
    max-width: 100vw;
    width: auto;
  }
  #cm.top {
    bottom: auto;
    top: 1em;
  }
  #cm.bottom {
    bottom: 1em;
    top: auto;
  }
  #cm.bar.bottom {
    bottom: 0;
  }
  #cm.cloud .c-bn {
    font-size: 0.85em;
  }
  #s-bns, .cc_div .bar #s-bns {
    padding: 1em 1.3em;
  }
  .cc_div .bar #s-inr {
    max-width: 100%;
    width: 100%;
  }
  .cc_div .cloud #c-inr-i {
    padding-right: 0;
  }
  #cs {
    border-radius: 0;
    padding: 0;
  }
  #c-s-in {
    height: 100%;
    max-height: 100%;
    top: 0;
    transform: none;
  }
  .cc_div .b-tg {
    right: 1.1em;
    transform: scale(1.1);
  }
  #s-inr {
    border-radius: 0;
    margin: 0;
    padding-bottom: 7.9em;
  }
  #s-bns {
    height: 7.9em;
  }
  #s-bl, .cc_div .bar #s-bl {
    padding: 1.2em;
  }
  #s-hdr, .cc_div .bar #s-hdr {
    padding: 0 1.2em;
  }
  #s-bl table {
    width: 100%;
  }
  #s-inr.bns-t {
    padding-bottom: 10.5em;
  }
  .bns-t #s-bns {
    height: 10.5em;
  }
  .cc_div .bns-t .c-bn {
    font-size: 0.83em;
    padding: 0.9em 1.6em;
  }
  #s-cnt .b-bn .b-tl {
    padding-bottom: 1.2em;
    padding-top: 1.2em;
  }
  #s-bl table, #s-bl tbody, #s-bl td, #s-bl th, #s-bl thead, #s-bl tr, #s-cnt {
    display: block;
  }
  #s-bl caption {
    border-bottom: 0;
    display: block;
  }
  #s-bl thead tr {
    left: -9999px;
    position: absolute;
    top: -9999px;
  }
  #s-bl tr {
    border-top: 1px solid #e9edf2;
    border-top: 1px solid var(--cc-cookie-table-border);
  }
  #s-bl td {
    border: none;
    padding-left: 35%;
    position: relative;
  }
  #s-bl td:before {
    color: #2d4156;
    color: var(--cc-text);
    content: attr(data-column);
    left: 1rem;
    overflow: hidden;
    padding-right: 0.625em;
    position: absolute;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #cm .c-bn, .cc_div .c-bn {
    margin-right: 0;
    width: 100%;
  }
  #s-cnt #s-rall-bn {
    margin-left: 0;
  }
  .cc_div #c-bns {
    flex-direction: column;
  }
  #c-bns button + button, #s-cnt button + button {
    float: unset;
    margin-left: 0;
    margin-top: 0.625em;
  }
  #cm.box, #cm.cloud {
    left: 1em;
    right: 1em;
    width: auto;
  }
  #cm.cloud.left, #cm.cloud.right {
    margin: 0;
  }
  .cc_div .cloud #c-bns, .cc_div .cloud #c-inr, .cc_div .cloud #c-inr-i {
    display: block;
    min-width: unset;
    width: auto;
  }
  .cc_div .cloud #c-txt {
    font-size: 0.9em;
  }
  .cc_div .cloud #c-bns {
    margin-top: 1.625em;
  }
}
.title {
  font-family: "Open Sans";
  font-size: 48px;
  color: #003253;
}

.subtitle {
  font-family: "Open Sans";
  font-size: 20px;
  color: #003253;
}

.summary {
  border-radius: 30px;
}

.summary__item i {
  color: #003253;
}

.summary__label {
  color: #003253;
}

.training__img {
  border-radius: 150px;
}

.content__item {
  grid-template-columns: 1fr;
}

.content__item__dubbel {
  grid-template-columns: 1fr 1fr;
}

.breadcrumb {
  background-color: #ffffff !important;
}

.nav__link.-active {
  background: #003253;
}

.search__input {
  color: #003253;
  background-color: white !important;
}

.search__icon {
  background-color: #003253;
}

.details__button {
  background-color: #003253;
}

.submit {
  border-radius: 150px !important;
  background-color: #F01245;
  /*background-color: #E0D70F;*/
}

.submit_xedule {
  background-color: #E0D70F;
  border-radius: 150px;
  min-height: 40px;
  min-width: 250px;
  display: inline-flex;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.link {
  color: #ffffff;
  border-bottom: 0px solid rgba(55, 186, 234, 0.7);
}

.voorwaarden .link {
  color: #F01245;
}

.summary__expand {
  flex-direction: column;
  padding: 10px 0 20px 0;
  position: relative;
  justify-content: center;
  display: flex;
  width: 100%;
  cursor: pointer;
  transition: opacity ease-in 150ms;
}
.summary__expand:hover {
  opacity: 0.7;
}
.summary__expand:after {
  transition: transform ease-in 150ms;
  content: "\e916";
  font-family: "Material Icons";
  left: 10 px;
  position: absolute;
}

.summary__expand:after {
  left: 10px;
}

.summary__expand.-active:after {
  transform: rotate(0deg);
}

.cost__label {
  color: #003253;
}

.nav__link, .menu__button {
  font-weight: normal;
}

body {
  font-family: "Open Sans";
}

.content__header__img {
  min-height: 10%;
}