/* Sass freq variables */
/* Colors */
/* Fonts */
@font-face {
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
html, body {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  position: fixed;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "rothwood", Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: -moz-linear-gradient(top, #a3dfeb 0%, #d8f1f6 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #a3dfeb 0%, #d8f1f6 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #a3dfeb 0%, #d8f1f6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gabarito", sans-serif;
}

.container {
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, #a3dfeb 0%, #d8f1f6 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #a3dfeb 0%, #d8f1f6 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #a3dfeb 0%, #d8f1f6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

header {
  top: 0;
  position: fixed;
  width: 100%;
  height: 40px;
  line-height: 36px;
  font-weight: 400;
  font-size: 13px;
  z-index: 100;
  background-image: url("../images/wave.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: 150px 49px;
}
header .nav_left {
  float: left;
}
header .nav_left a {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
header .logo_header {
  margin: auto;
  background: url("../images/logo_header.svg");
  width: 90px;
  height: 71px;
  margin-top: 10px;
}
header .logo_header a {
  width: 100%;
  height: 100%;
  display: block;
}
header .nav_right {
  float: right;
  top: 0px;
  position: absolute;
  right: 0px;
}
header .nav_right a {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
header ul {
  color: white;
  list-style: none;
  padding-left: 0px;
  margin: 0px;
}
header ul a {
  display: table-cell;
  padding: 0px 10px 0px 10px;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  color: white;
}
header ul a:hover {
  text-decoration: underline;
}

footer {
  bottom: 0px;
  position: fixed;
  width: 100%;
  height: 44px;
  line-height: 13px;
  font-weight: 400;
  font-size: 13px;
  z-index: 10;
  overflow: visible;
  background-image: url("../images/wave_red.svg");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 150px 49px;
}
footer nav {
  margin-top: 20px;
}
footer ul {
  color: white;
  list-style: none;
  padding-left: 0px;
  margin: 0px;
}
footer ul a {
  display: table-cell;
  padding: 0px 20px 0px 20px;
  transition: all 0.25s ease-in-out;
  color: white;
}
footer ul a:nth-child(2) {
  border-left: 1px solid white;
  border-right: 1px solid white;
}
footer ul a:hover {
  text-decoration: underline;
}
footer ul .active {
  text-decoration: underline;
}

.inner_container {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  position: absolute;
}

.footer_trees {
  pointer-events: none;
  background: url("../images/footer_trees.svg");
  background-size: cover;
  width: 1000px;
  height: 145px;
  margin: auto;
  bottom: 15px;
  position: absolute;
  margin-left: 50%;
  left: -500px;
}

* {
  outline: none;
}

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

h1 {
  font-size: 18px;
  color: white;
  text-align: center;
  font-weight: 300;
}

h2 {
  font-size: 16px;
  color: #5583ac;
  text-align: center;
  font-weight: 300;
}

.tablet_portrait {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 110;
  background: url("../images/tablet_background.png") #5583ac;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.tablet_portrait .tablet_logo {
  width: 100%;
  text-align: center;
  z-index: 120;
  position: absolute;
  top: 10px;
}

@media screen and (max-width: 899px) {
  body.is_touch * {
    display: none;
  }
  html, body, body.is_touch .tablet_portrait, body.is_touch .tablet_portrait * {
    display: block;
  }
  body.is_touch .tablet_logo img {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  *, body.is_touch .tablet_portrait, body.is_touch .tablet_portrait * {
    display: none;
  }
  html, body {
    display: block;
    width: 100%;
    height: 100%;
  }
  body {
    background: url("../images/mobile_error.svg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: absolute;
  }
}
.inner_container {
  z-index: 10;
}
.inner_container .logo_homepage {
  background: url("../images/logo_homepage.svg");
  background-size: contain;
  width: 760px;
  height: 353px;
  margin: 10px auto;
}
.inner_container .home_menu {
  list-style: none;
  padding-left: 0px;
  margin: 0px;
  text-align: center;
}
.inner_container .home_menu li {
  display: inline-block;
  text-align: center;
  width: 160px;
  vertical-align: top;
  margin: 0 5px;
  cursor: pointer;
}
.inner_container .home_menu li img {
  outline: none;
  border: 0px;
}
.inner_container .home_menu li h1 {
  color: #5583ac;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.inner_container .home_menu li:hover h1 {
  opacity: 0.5;
}

.clouds_background {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clouds_background video {
  width: 100%;
  height: 100%;
  min-width: 2000px;
}

.inner_container .welkom_text {
  background: url("../images/hoe_maken_wij_jouw_water/text_welkom_water.svg");
  background-size: cover;
  width: 563px;
  height: 42px;
  margin: 0 auto 10px;
}
.inner_container .welkom_personages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0;
  column-gap: 40px;
  width: 1000px;
  margin: auto;
  position: relative;
}
.inner_container .welkom_personages > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(50% - 20px);
}
.inner_container .welkom_personages > div:nth-child(3), .inner_container .welkom_personages > div:nth-child(4) {
  flex-direction: row-reverse;
}
.inner_container .welkom_personages > div:nth-child(3) .wolk:before, .inner_container .welkom_personages > div:nth-child(4) .wolk:before {
  left: auto;
  right: -44px;
  transform: scaleX(-1);
}
.inner_container .welkom_personages .person {
  display: inline-block;
}
.inner_container .welkom_personages .wolk {
  position: relative;
  width: calc(100% - 200px);
  padding: 10px;
  color: #5583ac;
  background-color: white;
}
.inner_container .welkom_personages .wolk strong {
  font-family: "Gabarito", sans-serif;
  font-size: 18px;
}
.inner_container .welkom_personages .wolk:before {
  content: "";
  width: 46px;
  height: 33px;
  position: absolute;
  left: -44px;
  top: 20px;
  display: block;
  background: url("../images/hoe_maken_wij_jouw_water/balloon_triangle.svg") no-repeat;
  background-size: cover;
}
.inner_container .welkom_personages .onderzoeker {
  width: 145px;
  height: 177.3076923077px;
  background: url("../images/hoe_maken_wij_jouw_water/welkom_voorstellen_onderzoeker.svg");
}
.inner_container .welkom_personages .operator {
  width: 131.9230769231px;
  height: 177.3076923077px;
  background: url("../images/hoe_maken_wij_jouw_water/welkom_voorstellen_operator.svg");
}
.inner_container .welkom_personages .inspecteur {
  width: 131.9230769231px;
  height: 177.3076923077px;
  background: url("../images/hoe_maken_wij_jouw_water/welkom_voorstellen_inspecteur.svg");
}
.inner_container .welkom_personages .monteur {
  width: 134.2307692308px;
  height: 177.3076923077px;
  background: url("../images/hoe_maken_wij_jouw_water/welkom_voorstellen_monteur.svg");
}
.inner_container .welkom_personages .service {
  width: 134.2307692308px;
  height: 177.3076923077px;
  background: url("../images/hoe_maken_wij_jouw_water/welkom_voorstellen_servicemedewerker.svg");
}
.inner_container .welkom_text_wolken {
  height: 175px;
}
.inner_container .welkom_text_wolken .wolk {
  width: 220px;
  position: absolute;
  margin-top: -20px;
}
.inner_container .welkom_text_wolken .onderzoeker {
  background: url("../images/hoe_maken_wij_jouw_water/text_wolk_onderzoeker.svg");
  background-size: cover;
  height: 161px;
  left: -25px;
}
.inner_container .welkom_text_wolken .operator {
  background: url("../images/hoe_maken_wij_jouw_water/text_wolk_operator.svg");
  background-size: cover;
  height: 177px;
  left: 123px;
}
.inner_container .welkom_text_wolken .inspecteur {
  background: url("../images/hoe_maken_wij_jouw_water/text_wolk_inspecteur.svg");
  background-size: cover;
  height: 140px;
  left: 260px;
}
.inner_container .welkom_text_wolken .monteur {
  background: url("../images/hoe_maken_wij_jouw_water/text_wolk_monteur.svg");
  background-size: cover;
  height: 147px;
  left: 404px;
}
.inner_container .welkom_text_wolken .service {
  background: url("../images/hoe_maken_wij_jouw_water/text_wolk_service.svg");
  background-size: cover;
  height: 127px;
  left: 527px;
}
.inner_container .start_button {
  height: 55px;
  width: 136px;
  border-radius: 40px;
  background: #e4322f;
  text-align: center;
  line-height: 80px;
  margin: auto;
}
.inner_container .start_button img {
  opacity: 0.5;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  outline: none;
  border: 0px;
}
.inner_container .start_button:hover img {
  opacity: 1;
}
.inner_container .start_button a {
  display: block;
  height: 100%;
  border-radius: 40px;
}

body.is_touch .uitleg_plaat {
  background: url("../images/hoe_maken_wij_jouw_water/uitleg_plaat.png") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
body.is_touch .plaat_img {
  display: none;
}

.uitleg_background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  background: -moz-linear-gradient(top, #a0dde9 24%, #d0eef4 calc(50% + 35.5px), #97c32a calc(50% + 35.5px)); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #a0dde9 24%, #d0eef4 calc(50% + 35.5px), #97c32a calc(50% + 35.5px)); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #a0dde9 24%, #d0eef4 calc(50% + 35.5x), #97c32a calc(50% + 35.5px)); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.uitleg_background .inner_container {
  width: 100%;
}
.uitleg_background .inner_container .uitleg_video {
  position: absolute;
  height: 590px;
  width: 6557px;
  display: flex;
  justify-content: center;
}
.uitleg_background .inner_container .uitleg_video video {
  width: 3078px;
  height: 100%;
}
.uitleg_background .inner_container .uitleg_video.clouds {
  z-index: 0;
}
.uitleg_background .inner_container .uitleg_video.foreground {
  z-index: 3;
}
.uitleg_background .inner_container .uitleg_plaat {
  position: relative;
  height: 590px;
  width: 6557px;
}
.uitleg_background .inner_container .uitleg_plaat:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hoe_maken_wij_jouw_water/uitleg_plaat_FGR.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 4;
}
.uitleg_background .inner_container .uitleg_plaat:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hoe_maken_wij_jouw_water/uitleg_plaat_BGR.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble {
  position: absolute;
  z-index: 99;
  min-width: 100px;
  max-width: 200px;
  height: auto;
  padding: 20px 20px 24px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #5482ab;
  border-radius: 30px;
  background-color: white;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble:after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 33px;
  background: url("../images/hoe_maken_wij_jouw_water/balloon_triangle.svg");
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_text {
  position: relative;
  z-index: 1;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_actions {
  position: relative;
  margin: 20px -12px -16px -11px;
  padding: 3px 3px 3px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-radius: 22px;
  background: #628cb2;
  overflow: hidden;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_actions .wave {
  position: absolute;
  left: -1px;
  top: 0;
  width: 40px;
  height: 100%;
  background-image: url("../images/wave_vertical.svg");
  background-position: right center;
  background-size: 46px 97px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_actions_label {
  font-family: Arial, Helvetica, sans-serif;
  color: #a8d7ef;
  font-size: 16px;
  font-weight: 300;
  white-space: nowrap;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_actions_list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action:focus, .uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action:focus-visible {
  outline: none;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action:hover, .uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action:focus, .uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action:focus-visible {
  transform: translateY(-1px);
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action:hover .text_bubble_action_icon, .uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action:focus .text_bubble_action_icon, .uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action:focus-visible .text_bubble_action_icon {
  background-image: var(--icon-hover);
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action_icon {
  width: 40px;
  height: 40px;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action_icon_type_listen {
  --icon-default: url("../images/hoe_maken_wij_jouw_water/listen_icon_blue.svg");
  --icon-hover: url("../images/hoe_maken_wij_jouw_water/listen_icon_red.svg");
  background-image: var(--icon-default);
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action_icon_type_view {
  --icon-default: url("../images/hoe_maken_wij_jouw_water/view_icon_blue.svg");
  --icon-hover: url("../images/hoe_maken_wij_jouw_water/view_icon_red.svg");
  background-image: var(--icon-default);
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble .text_bubble_action_icon_type_do {
  --icon-default: url("../images/hoe_maken_wij_jouw_water/do_icon_blue.svg");
  --icon-hover: url("../images/hoe_maken_wij_jouw_water/do_icon_red.svg");
  background-image: var(--icon-default);
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_1 {
  left: 530px;
  bottom: 428px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_2 {
  left: 1020px;
  bottom: 418px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_3 {
  left: 1550px;
  bottom: 400px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_4 {
  left: 2060px;
  bottom: 400px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_5 {
  left: 2660px;
  bottom: 390px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_6 {
  left: 3100px;
  bottom: 452px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_7 {
  left: 4060px;
  bottom: 460px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_8 {
  left: 4610px;
  bottom: 380px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_9 {
  left: 4982px;
  bottom: 400px;
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_6:after {
  left: 80px;
  transform: scaleX(-1);
}
.uitleg_background .inner_container .uitleg_plaat .text_bubble_9:after {
  bottom: 78px;
  left: 236px;
  transform: rotate(180deg);
}
.uitleg_background .inner_container .uitleg_plaat .link_plaat {
  width: 31px;
  height: 31px;
  position: absolute;
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  background: url("../images/hoe_maken_wij_jouw_water/i_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.uitleg_background .inner_container .uitleg_plaat .link_plaat:hover {
  opacity: 1;
}
.uitleg_background .inner_container .uitleg_plaat .plaat_img {
  position: absolute;
  z-index: 4;
  left: 4559.5px;
  top: 271px;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar {
  position: absolute;
  bottom: 0;
  width: 700px;
  height: 61px;
  padding: 18px 18px 18px 115px;
  z-index: 9;
  pointer-events: none;
  display: flex;
  align-items: center;
  min-height: 60px;
  background-color: #e4322f;
  border-radius: 50px;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar .step-title {
  position: absolute;
  top: 0;
  left: -1px;
  width: 100px;
  height: 97px;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar .step-title h2 {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #5583ac;
  font-size: 16px;
  font-weight: 900;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar .step-title .wave {
  position: absolute;
  right: 0;
  top: 0;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar .description h3 {
  color: white;
  text-transform: uppercase;
  margin: 0 0 4px 0;
  font-size: 16px;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar p {
  margin: 0;
  color: white;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar.uitleg_description_bar_1 {
  left: 500px;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar.uitleg_description_bar_2 {
  left: 1550px;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar.uitleg_description_bar_3 {
  left: 2610px;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar.uitleg_description_bar_4 {
  left: 3610px;
}
.uitleg_background .inner_container .uitleg_plaat .uitleg_description_bar.uitleg_description_bar_5 {
  left: 4610px;
}

.uitleg_arrows {
  position: fixed;
  width: 100%;
  top: 50px;
}
.uitleg_arrows .outer_arrow_left {
  height: 105px;
  left: 0px;
  width: 100px;
  top: -15px;
  position: absolute;
}
.uitleg_arrows .outer_arrow_left:hover .left:after {
  opacity: 1;
}
.uitleg_arrows .outer_arrow_right {
  height: 105px;
  right: 0px;
  width: 100px;
  top: -15px;
  position: absolute;
}
.uitleg_arrows .outer_arrow_right:hover .right:after {
  opacity: 1;
}
.uitleg_arrows .arrow {
  width: 70px;
  height: 70px;
  cursor: pointer;
  background: #e4322f;
  display: none;
  margin-top: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.uitleg_arrows .left {
  float: left;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}
.uitleg_arrows .left:after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  top: 15px;
  display: block;
  background: url("../images/hoe_maken_wij_jouw_water/arrow_left.svg");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.uitleg_arrows .left:hover:after {
  opacity: 1;
}
.uitleg_arrows .right {
  float: right;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.uitleg_arrows .right:after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  top: 15px;
  display: block;
  background: url("../images/hoe_maken_wij_jouw_water/arrow_right.svg");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.uitleg_arrows .right:hover:after {
  opacity: 1;
}

.uitleg_nav {
  width: 153px;
  position: fixed;
  bottom: 20px;
  text-align: center;
  z-index: 11;
  margin-left: 50%;
  left: -76.5px;
  border-radius: 15px;
  height: 33px;
}
.uitleg_nav .uitleg_nav_list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  line-height: 49px;
  background: #e4322f;
  border-radius: 17px;
}
.uitleg_nav .uitleg_nav_list li {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid white;
  display: inline-block;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.uitleg_nav .uitleg_nav_list li:hover {
  background: rgba(255, 255, 255, 0.5);
}
.uitleg_nav .uitleg_nav_list li p {
  color: white;
  line-height: 11px;
  position: relative;
  background: none !important;
  top: -7px;
  font-size: 13px;
}
.uitleg_nav .uitleg_nav_list :nth-child(1) {
  background: white;
}
.uitleg_nav .uitleg_nav_list :nth-child(1) p {
  color: #97c32a;
}

.is_touch .gezond_text_wolken .wolk {
  opacity: 0 !important;
}

.gezond_background {
  width: 100%;
  height: 100%;
  background: #99c62f;
  position: absolute;
}
.gezond_background .clouds_background {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gezond_background .clouds_background video {
  width: 100%;
  height: 100%;
  max-width: 1600px;
}

.inner_container .gezond_text {
  width: 360px;
  height: 146.3px;
  background: url("../images/gezond/gezond_text.svg");
  background-size: cover;
}
.inner_container .gezond_vijf {
  background-size: cover;
  position: absolute;
}
.inner_container .gezond_vijf .bordje {
  width: 175px;
  position: absolute;
}
.inner_container .gezond_vijf .bordje h1 {
  color: #5583ac;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.inner_container .gezond_vijf .bordje:hover h1 {
  background: #e4322f;
  -webkit-box-shadow: inset 0px 4px 0px 0px rgb(239, 101, 101);
  -moz-box-shadow: inset 0px 4px 0px 0px rgb(239, 101, 101);
  box-shadow: inset 0px 4px 0px 0px rgb(239, 101, 101);
  color: white;
}
.inner_container .gezond_vijf .bordje a {
  display: block;
  height: 100%;
  width: 100%;
  top: 0px;
  position: absolute;
}
.inner_container .gezond_vijf .bordje_lijf {
  height: 215px;
  background: url("../images/gezond/gezond_lijf_v2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: -370px;
  left: 87px;
}
.inner_container .gezond_vijf .bordje_lijf h1 {
  line-height: 33px;
  width: 158px;
  height: 33px;
  margin: 158px auto;
}
.inner_container .gezond_vijf .bordje_fabel {
  height: 173px;
  background: url("../images/gezond/gezond_fabel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: -200px;
  left: 400px;
}
.inner_container .gezond_vijf .bordje_fabel h1 {
  line-height: 36px;
  width: 175px;
  height: 36px;
  margin: 111px auto;
}
.inner_container .gezond_vijf .bordje_drinkwater {
  height: 182.2px;
  width: 178px;
  background: url("../images/gezond/gezond_drinkwater_v2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 20px;
  left: 260px;
}
.inner_container .gezond_vijf .bordje_drinkwater h1 {
  line-height: 36px;
  width: 175px;
  height: 36px;
  margin: 121px 3px;
}
.inner_container .gezond_vijf .bordje_ziek_tv {
  height: 178.97px;
  background: url("../images/gezond/gezond_ziek_tv.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 20px;
  left: -50px;
}
.inner_container .gezond_vijf .bordje_ziek_tv h1 {
  line-height: 36px;
  width: 175px;
  height: 36px;
  margin: 117px auto;
}
.inner_container .gezond_vijf .bordje_smaakt {
  height: 174.79px;
  background: url("../images/gezond/gezond_smaakt.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: -200px;
  left: -200px;
}
.inner_container .gezond_vijf .bordje_smaakt h1 {
  line-height: 19px;
  width: 142px;
  height: 35px;
  margin: 96px 0px;
  padding: 10px 10px;
}
.inner_container .gezond_text_wolken .wolk {
  width: 220px;
  position: absolute;
  opacity: 0;
}
.inner_container .gezond_text_wolken .lijf {
  background: url("../images/gezond/gezond_wolk_lijf.svg");
  background-size: cover;
  height: 100px;
  left: 275px;
  top: -180px;
}
.inner_container .gezond_text_wolken .feit {
  background: url("../images/gezond/gezond_wolk_feit.svg");
  background-size: cover;
  height: 130px;
  width: 185px;
  left: 485px;
  top: -190px;
}
.inner_container .gezond_text_wolken .drinkwater {
  background: url("../images/gezond/gezond_wolk_waterpomp.svg");
  background-size: cover;
  height: 110px;
  left: 425px;
  top: 190px;
}
.inner_container .gezond_text_wolken .ziek_tv {
  background: url("../images/gezond/gezond_wolk_ziek.svg");
  background-size: cover;
  height: 63px;
  left: -285px;
  top: 220px;
}
.inner_container .gezond_text_wolken .smaakt {
  background: url("../images/gezond/gezond_wolk_smaakt.svg");
  background-size: cover;
  height: 111px;
  width: 185px;
  left: -285px;
  top: -180px;
}

.ccl_background {
  width: 100%;
  height: 100%;
  background: url("../images/ccl_wolken.svg");
  background-repeat: no-repeat;
  background-position: center 20%;
  background-size: 950px;
  position: absolute;
}

.ccl_container h1 {
  margin-top: 0px;
  font-size: 40px;
  font-weight: 600;
  margin-left: -3px;
}
.ccl_container h2 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  margin: 10px 0px;
}
.ccl_container p {
  color: white;
  line-height: 21px;
  font-size: 14px;
}
.ccl_container * {
  text-align: left;
}
.ccl_container .colofon_links, .ccl_container .contact_links, .ccl_container .links_links {
  float: left;
  display: inline-block;
  margin-right: 100px;
}
.ccl_container .links_links {
  margin-right: 40px;
}
.ccl_container .colofon_rechts, .ccl_container .contact_rechts, .ccl_container .links_rechts {
  display: inline-block;
}
.ccl_container .colofon_links, .ccl_container .colofon_rechts {
  width: 810px;
  margin-right: 0px;
}
.ccl_container .contact_links {
  margin-right: 15px;
}
.ccl_container .contact_column {
  background: #96cfea;
  width: 350px;
  padding: 15px 40px 15px 40px;
  height: 130px;
  margin-bottom: 15px;
}
.ccl_container .contact_column a {
  padding: 5px 10px 5px 10px;
  background: #5583ac;
}
.ccl_container .contact_column a:hover {
  text-decoration: underline;
}
.ccl_container .contact_column p a {
  padding: 0px;
  background: none;
  text-decoration: underline;
}
.ccl_container .links_background {
  background: #8fcae7;
  padding: 15px 40px 30px 40px;
}
.ccl_container .links_background a {
  text-decoration: underline;
}
.ccl_container .colofon_background {
  background: #8fcae7;
  padding: 15px 40px 15px 40px;
  min-height: 270px;
}
.ccl_container .colofon_background a {
  padding: 0px;
  background: none;
  text-decoration: underline;
}

.contact_container {
  width: 875px;
}
.contact_container h1 {
  margin-left: 37px;
}

.links_container h1 {
  margin-left: 37px;
}

.colofon_container h1 {
  margin-left: 37px;
  margin-top: -45px;
}

.is_touch .duurzaam_text_wolken .wolk {
  opacity: 0 !important;
}

.duurzaam_background {
  width: 100%;
  height: 100%;
  background: #a1dee9;
  position: absolute;
}
.duurzaam_background .clouds_background {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.duurzaam_background .clouds_background video {
  width: 100%;
  height: 100%;
  max-width: 1600px;
}

.inner_container .duurzaam_text {
  width: 378px;
  height: 146.3px;
  background: url("../images/duurzaam/duurzaam_text.svg");
  background-size: cover;
}
.inner_container .duurzaam_vijf {
  background-size: cover;
  position: absolute;
}
.inner_container .duurzaam_vijf .bordje {
  width: 175px;
  position: absolute;
}
.inner_container .duurzaam_vijf .bordje h1 {
  color: #5583ac;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.inner_container .duurzaam_vijf .bordje:hover h1 {
  background: #e4322f;
  -webkit-box-shadow: inset 0px 4px 0px 0px rgb(239, 101, 101);
  -moz-box-shadow: inset 0px 4px 0px 0px rgb(239, 101, 101);
  box-shadow: inset 0px 4px 0px 0px rgb(239, 101, 101);
  color: white;
}
.inner_container .duurzaam_vijf .bordje a {
  display: block;
  height: 100%;
  width: 100%;
  top: 0px;
  position: absolute;
}
.inner_container .duurzaam_vijf .bordje_bron {
  height: 215px;
  background: url("../images/duurzaam/duurzaam_bron.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: -369px;
  left: 121px;
}
.inner_container .duurzaam_vijf .bordje_bron h1 {
  line-height: 34px;
  width: 166px;
  height: 34px;
  margin: 156px 3px;
}
.inner_container .duurzaam_vijf .bordje_duurzaam {
  height: 229px;
  width: 201.9px;
  background: url("../images/duurzaam/duurzaam_duurzaam.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: -260px;
  left: 420px;
}
.inner_container .duurzaam_vijf .bordje_duurzaam h1 {
  line-height: 19px;
  width: 146px;
  height: 36px;
  margin: 149px 0px;
  padding: 10px 10px;
}
.inner_container .duurzaam_vijf .bordje_gebruik {
  height: 170.2px;
  width: 178px;
  background: url("../images/duurzaam/duurzaam_gebruik.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 20px;
  left: 260px;
}
.inner_container .duurzaam_vijf .bordje_gebruik h1 {
  line-height: 19px;
  width: 158px;
  height: 40px;
  margin: 84px auto;
  padding: 10px 10px;
}
.inner_container .duurzaam_vijf .bordje_kraan_fles {
  height: 180.98px;
  background: url("../images/duurzaam/duurzaam_kraan_fles.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 20px;
  left: -50px;
}
.inner_container .duurzaam_vijf .bordje_kraan_fles h1 {
  line-height: 19px;
  width: 155px;
  height: 38px;
  margin: 97px auto;
  padding: 10px 10px;
}
.inner_container .duurzaam_vijf .bordje_waterketen {
  height: 222.8px;
  background: url("../images/duurzaam/duurzaam_waterketen.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: -210px;
  left: -220px;
}
.inner_container .duurzaam_vijf .bordje_waterketen h1 {
  line-height: 38px;
  width: 175px;
  height: 38px;
  margin: 159px auto;
}
.inner_container .duurzaam_text_wolken .wolk {
  width: 220px;
  position: absolute;
  opacity: 0;
}
.inner_container .duurzaam_text_wolken .bron {
  background: url("../images/duurzaam/duurzaam_wolk_bron.svg");
  background-size: cover;
  height: 74px;
  left: -65px;
  top: -180px;
}
.inner_container .duurzaam_text_wolken .duurzaam {
  background: url("../images/duurzaam/duurzaam_wolk_duurzaam.svg");
  background-size: cover;
  height: 130px;
  width: 185px;
  left: 445px;
  top: -200px;
}
.inner_container .duurzaam_text_wolken .gebruik {
  background: url("../images/duurzaam/duurzaam_wolk_gebruik.svg");
  background-size: cover;
  height: 64px;
  left: 445px;
  top: 260px;
}
.inner_container .duurzaam_text_wolken .fles {
  background: url("../images/duurzaam/duurzaam_wolk_fles.svg");
  background-size: cover;
  height: 81px;
  left: -275px;
  top: 205px;
}
.inner_container .duurzaam_text_wolken .waterketen {
  background: url("../images/duurzaam/duurzaam_wolk_waterketen.svg");
  background-size: cover;
  height: 198px;
  width: 185px;
  left: -255px;
  top: -220px;
}

.gezond_lightbox_header,
.duurzaam_lightbox_header,
.spreekbeurt_lightbox_header {
  position: relative;
  background: #99c62f;
  padding-left: 16px;
  height: 44px;
}
.gezond_lightbox_header:after,
.duurzaam_lightbox_header:after,
.spreekbeurt_lightbox_header:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + 6px);
  height: 30px;
  background-image: url("../images/wave_green.svg");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 97px 49px;
  transform: rotate(180deg);
}
.gezond_lightbox_header.duurzaam_lightbox_header:after,
.duurzaam_lightbox_header.duurzaam_lightbox_header:after,
.spreekbeurt_lightbox_header.duurzaam_lightbox_header:after {
  top: 50%;
  background-image: url("../images/wave_blue.svg");
}
.gezond_lightbox_header.spreekbeurt_lightbox_header:after,
.duurzaam_lightbox_header.spreekbeurt_lightbox_header:after,
.spreekbeurt_lightbox_header.spreekbeurt_lightbox_header:after {
  transform: rotate(0deg);
  background-position: center bottom;
  background-image: url("../images/wave.svg");
}
.gezond_lightbox_header.gezond_lightbox_header:after,
.duurzaam_lightbox_header.gezond_lightbox_header:after,
.spreekbeurt_lightbox_header.gezond_lightbox_header:after {
  top: 50%;
}
.gezond_lightbox_header h1,
.duurzaam_lightbox_header h1,
.spreekbeurt_lightbox_header h1 {
  position: relative;
  z-index: 2;
  padding-top: 2px;
}

.gezond_lightbox_footer {
  background: #99c62f;
}

.duurzaam_lightbox_header {
  background: #8FCAE7;
}

.duurzaam_lightbox_footer {
  background: #a1deea;
}

.uitleg_lightbox_header {
  background: #e4322f;
}

.uitleg_lightbox_footer {
  background: #e4322f;
}

#colorbox.uitleg_inline_modalbox {
  overflow: visible;
}
#colorbox.uitleg_inline_modalbox #cboxContent,
#colorbox.uitleg_inline_modalbox #cboxLoadedContent,
#colorbox.uitleg_inline_modalbox #cboxWrapper {
  background: transparent;
}
#colorbox.uitleg_inline_modalbox #cboxLoadedContent {
  margin: 0;
  overflow: visible !important;
}
#colorbox.uitleg_inline_modalbox #cboxClose {
  display: none !important;
}

.uitleg_action_modal_frame {
  width: 560px;
  height: auto;
  min-height: 320px;
  overflow: visible;
  background: white;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}
.uitleg_action_modal_frame .lightbox_header {
  height: auto;
  padding: 8px 8px 0;
  position: relative;
  background: transparent;
}
.uitleg_action_modal_frame .lightbox_header h1 {
  position: relative;
  z-index: 2;
  height: 44px;
  margin: 0;
  padding: 0 56px 0 16px;
  border-radius: 22px;
  background: #e4322f;
  color: white;
  font-size: 20px;
  line-height: 44px;
  font-weight: 700;
  box-sizing: border-box;
}
.uitleg_action_modal_frame .lightbox_header:after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: calc(50% + 1px);
  height: 30px;
  background-image: url("../images/wave_red.svg");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 150px 49px;
  transform: rotate(180deg);
}
.uitleg_action_modal_frame .uitleg_action_modal_close {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: 0.2s;
}
.uitleg_action_modal_frame .uitleg_action_modal_close svg {
  width: 19px;
  height: 19px;
  display: block;
}
.uitleg_action_modal_frame .uitleg_action_modal_close:hover {
  background: rgb(255, 255, 255);
}
.uitleg_action_modal_frame .lightbox_container {
  height: auto;
  margin: 24px 18px 68px;
}
.uitleg_action_modal_frame .lightbox_container .lightbox_left_content {
  width: 100%;
  float: none;
  display: block;
  color: #e4322f;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  max-height: none;
  overflow: visible;
}
.uitleg_action_modal_frame .lightbox_container .lightbox_left_content p {
  margin: 0;
}
.uitleg_action_modal_frame .lightbox_container .lightbox_right_content {
  width: 100%;
  float: none;
  display: block;
  margin: 18px 0 0;
}
.uitleg_action_modal_frame .lightbox_container .lightbox_right_content iframe,
.uitleg_action_modal_frame .lightbox_container .lightbox_right_content video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: 0;
}
.uitleg_action_modal_frame .lightbox_container .lightbox_right_content img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.uitleg_action_modal_frame .lightbox_container.lightbox_container_split {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.uitleg_action_modal_frame .lightbox_container.lightbox_container_split .lightbox_left_content,
.uitleg_action_modal_frame .lightbox_container.lightbox_container_split .lightbox_right_content {
  width: calc(50% - 12px);
}
.uitleg_action_modal_frame .lightbox_container.lightbox_container_split .lightbox_right_content {
  margin-top: 0;
}

.uitleg_action_modal_frame_has_video,
.uitleg_action_modal_frame_has_image {
  width: 720px;
  min-height: 430px;
}

.uitleg_action_modal_frame_has_image .lightbox_container .lightbox_right_content img {
  max-height: 100%;
}

.uitleg_action_modal_frame_split.uitleg_action_modal_frame_has_video,
.uitleg_action_modal_frame_split.uitleg_action_modal_frame_has_image {
  width: 860px;
  min-height: 430px;
}

.uitleg_action_modal_frame_text_only {
  width: 560px;
  min-height: 320px;
}

.lightbox_frame.uitleg_action_modal_frame_text_only .lightbox_container {
  height: auto;
  margin: 24px 18px 68px;
  padding-bottom: 0;
}
.lightbox_frame.uitleg_action_modal_frame_text_only .lightbox_container .lightbox_left_content.lightbox_left_content_full {
  width: 100%;
  max-width: none;
  margin: 0;
  float: none;
  display: block;
}

.lightbox_frame.uitleg_action_modal_frame_has_footer .lightbox_container {
  padding-bottom: 80px;
}

.uitleg_action_modal_frame_media_only .lightbox_container {
  margin: -14px 8px 68px;
}
.uitleg_action_modal_frame_media_only .lightbox_right_content.lightbox_right_content_full {
  margin-top: 0;
}

.uitleg_action_modal_frame_media_only.uitleg_action_modal_frame_has_video,
.uitleg_action_modal_frame_media_only.uitleg_action_modal_frame_has_image {
  width: 736px;
}

.uitleg_action_modal_footer {
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 18px 0 60px;
  border-radius: 22px;
  background: #5583ac;
  color: white;
  box-sizing: border-box;
  overflow: hidden;
}
.uitleg_action_modal_footer.js-uitleg-audio-toggle {
  cursor: pointer;
}
.uitleg_action_modal_footer.uitleg_action_modal_footer_has_badge {
  padding-left: 86px;
}

.uitleg_action_modal_footer_icon {
  width: 46px;
  height: 44px;
  position: absolute;
  left: -1px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/wave_vertical.svg");
  background-position: right center;
}

.uitleg_action_modal_footer_icon_asset {
  width: 44px;
  height: 44px;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.uitleg_action_modal_footer_icon_asset.text_bubble_action_icon_type_listen {
  background-image: url("../images/hoe_maken_wij_jouw_water/listen_icon_blue.svg");
}

.uitleg_action_modal_footer_icon_asset.text_bubble_action_icon_type_view {
  background-image: url("../images/hoe_maken_wij_jouw_water/view_icon_blue.svg");
}

.uitleg_action_modal_footer_icon_asset.text_bubble_action_icon_type_do {
  background-image: url("../images/hoe_maken_wij_jouw_water/do_icon_blue.svg");
}

.uitleg_action_modal_footer_play {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 49px;
  top: 9px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  background: white;
  color: #a1deea;
  box-shadow: inset 0 0 0 1px rgba(143, 202, 231, 0.22);
}
.uitleg_action_modal_footer_play svg {
  margin-left: 8px;
  width: 16px;
  height: 19px;
  display: block;
}

.uitleg_action_modal_footer_link_icon {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 49px;
  top: 7px;
  display: block;
  border-radius: 50%;
  background: white url("../images/hoe_maken_wij_jouw_water/link_icon.svg") center center no-repeat;
  background-size: 16px 16px;
  box-shadow: inset 0 0 0 1px rgba(143, 202, 231, 0.22);
}

.uitleg_action_modal_footer_label {
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.uitleg_action_modal_footer_label_link {
  color: inherit;
  text-decoration: none;
}
.uitleg_action_modal_footer_label_link:hover, .uitleg_action_modal_footer_label_link:focus {
  text-decoration: underline;
}

.uitleg_action_modal_footer.is-playing .uitleg_action_modal_footer_play {
  background: #ffd3d3;
  color: #e4322f;
}

.spreekbeurt_lightbox_header {
  background: #5583ac;
}

.spreekbeurt_lightbox_footer {
  background: #5583ac;
}

.lightbox_frame {
  width: 900px;
  position: relative;
}
.lightbox_frame.uitleg_action_modal_frame_video, .lightbox_frame.uitleg_action_modal_frame_image {
  width: 1033px;
  height: 685px;
}
.lightbox_frame.uitleg_action_modal_frame_media_only .lightbox_container {
  margin: 0 8px 8px;
}
.lightbox_frame .lightbox_header h1 {
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 44px;
  margin: 0px;
}
.lightbox_frame .lightbox_container {
  max-height: 480px;
  padding-bottom: 40px;
  margin: 0 8px 8px;
}
.lightbox_frame .lightbox_container .lightbox_left_content {
  width: 50%;
  float: left;
  display: inline-block;
  color: #5583ac;
  line-height: 23px;
  max-height: 390px;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.lightbox_frame .lightbox_container .lightbox_left_content p {
  margin: 0px;
}
.lightbox_frame .lightbox_container .lightbox_left_content a {
  color: #5583ac;
  text-decoration: underline;
}
.lightbox_frame .lightbox_container .lightbox_left_content h2 {
  color: white;
  font-size: 28px;
  text-align: left;
}
.lightbox_frame .lightbox_container .lightbox_right_content {
  width: 45%;
  float: left;
  display: inline-block;
  margin-left: 40px;
  max-height: 480px;
}
.lightbox_frame .lightbox_container .lightbox_right_content img {
  max-height: 490px;
  max-width: 100%;
  margin: auto;
  display: block;
  /*margin-top: 20px;*/
}
.lightbox_frame .lightbox_container .lightbox_right_content {
  /*p {
  	margin: 0px;
  	color: $blue;
  	text-align: center;
  	font-size: 14px;
  }*/
}
.lightbox_frame .lightbox_container .lightbox_right_content iframe {
  width: 100%;
}
.lightbox_frame .lightbox_container .lightbox_right_content audio {
  width: 100%;
  margin-top: 20px;
}
.lightbox_frame .lightbox_container .lightbox_left_content_full, .lightbox_frame .lightbox_container .lightbox_right_content_full {
  width: 100%;
  max-width: inherit;
  margin: 0px;
  float: none;
}
.lightbox_frame .lightbox_container .lightbox_left_content_full img, .lightbox_frame .lightbox_container .lightbox_right_content_full img {
  max-width: 100%;
  display: block;
  margin-right: auto;
  float: none;
}
.lightbox_frame .lightbox_container.lightbox_container_single .lightbox_left_content,
.lightbox_frame .lightbox_container.lightbox_container_single .lightbox_right_content {
  width: 100%;
  max-width: none;
  float: none;
  display: block;
  margin-left: 0;
}
.lightbox_frame .lightbox_container.lightbox_container_single .lightbox_right_content {
  margin-top: 0;
}
.lightbox_frame .lightbox_container.lightbox_container_split {
  display: flex;
  gap: 40px;
}
.lightbox_frame .lightbox_container.lightbox_container_split .lightbox_left_content,
.lightbox_frame .lightbox_container.lightbox_container_split .lightbox_right_content {
  float: none;
  display: block;
  width: calc(50% - 20px);
  margin-left: 0;
}
.lightbox_frame .lightbox_footer {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  background: transparent;
}

/* Styling the lightbox frame and closing button */
#colorbox {
  overflow: hidden;
  z-index: 150;
}

.cboxIframe {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  position: absolute;
  overflow: hidden;
  z-index: 150;
  padding: 8px;
  border-radius: 28px;
  background: url("../images/preloader.gif") center center no-repeat #fff;
}
.cboxIframe h1 {
  padding-left: 20px;
}

#cboxOverlay {
  opacity: 0.5 !important;
  background: black;
  width: 100%;
  height: 100%;
  top: 0px;
  position: fixed;
  z-index: 130;
  overflow: hidden;
}

#cboxClose {
  z-index: 160;
  position: absolute;
  top: 16px !important;
  right: 16px !important;
  background: url("../images/lightbox_cross.svg");
  border: none;
  color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  height: 32px;
  width: 32px;
  padding: 0;
  opacity: 0.5;
  transition: 0.2s;
  cursor: pointer;
}
#cboxClose:hover {
  opacity: 1;
}
/*# sourceMappingURL=main.css.map */
