@import url('https://fonts.googleapis.com/css?family=Lato:300,400|Montserrat|Muli:400,600,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

:root{
  /*****COLORS*****/
  --shadow-color: rgb(0 0 0 / 12%);
  --black: rgba(0, 0, 0, 1);
  --font-black: #212121;
  --white: white;
  --light-gray: #f7f7f7;
  --light-gray-2: #f3f3f3;
  --gray: #6c757d;
  --orange: #f3763a;
  --blue: #2599da;
  --red: #a80a2d;
  --dark-red: #890825;
  --darker-red: #580518;
  --alpha-red: #8908243a;
  --link-green: #157c68;
  --hover-green: #17564a;

  --green: #d2dacd;
  --bright-green: #aad390;
  --font-gray: #5b6b76;
  --font-hover-gray: rgba(91,107,118,.4);
  --yellow: #EF5F17;
  --alpha-yellow: #EF5F1750;

  --subsidy-shadow-1: rgba( 0, 0, 0, .2 );
  --subsidy-shadow-2: rgba( 0, 0, 0, .1 );

  /*****GROUPS*****/
  --shadow: 0 2px 5px 0 var(--shadow-color), 0 2px 10px 0 var(--shadow-color);
  --font-color: var(--font-gray);
  --bg-color: var(--white);
  --loadingscreen-color: var(--alpha-yellow);
  /*HEADER*/
  --topheader-color: var(--white);
  --header-color: var(--green);
  --header-font-color: var(--font-gray);
  --header-font-hover-color: var(--font-hover-gray);
  /*BUTTONS*/
  --button-color: var(--white);
  --button-font-color: var(--yellow);
  --button-shadow-color: var(--shadow);
  --button-hover-color: var(--yellow);
  --button-hover-shadow-color: var(--font-gray);
  /*CARDS*/
  --card-color: var(--light-gray);
  --card-font-color: var(--font-gray);
  --card-shadow-color: var(--shadow);
  --card-button-color: var(--yellow);
  --circle-color: var(--bright-green);
  /*QUESTIONSETS*/
  --questionsets-color: var(--white);
  --questionsets-font-hover-color: var(--font-hover-gray);
  /*USERDATA*/
  --user-card-color: var(--white);
  --user-wishes: var(--red);
  --user-paper: var(--red);
  /*HEALTH BAR*/
  --progress-bar-bg-color: var(--white);
  --progress-bar-color-1: var(--bright-green);
  --progress-bar-color-2: var(--bright-green);
  --progress-bar-color-3: var(--yellow);
  --progress-bar-color-4: var(--red);
  /*MEASURE STEPS*/
  --step-0-bg-color: var(--yellow);
  --step-1-bg-color: var(--yellow);
  --step-2-bg-color: var(--yellow);
  --step-3-bg-color: var(--yellow);
  --step-4-bg-color: var(--bright-green);
  --step-5-bg-color: var(--bright-green);
  --step-shadow-color: var(--shadow);
  /*FAQ*/
  --faq-card-color: var(--white);
  --faq-card-hover-color: var(--light-gray-2);
  --faq-card-border-color: var(--light-gray);
  --faq-side-color: var(--green);
  --faq-side-hover-color: var(--bright-green);
  --faq-side-font-hover-color: var(--white);
  /*FINANCE*/
  --subsidy-shadow-color: var(--subsidy-shadow-1);
  --subsidy-shadow-color-2: var(--subsidy-shadow-2);
  --recalculate-finance: var(--red);
  --measure-card-color: var(--white);
  --measure-card-border-color: var(--gray);
  /*MEASURE*/
  --measure-navbar-color: var(--green);
  --measure-navbar-arrows: var(--white);
  --measure-navbar-font-color: var(--white);


}

/* .breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  border-radius: 0.25rem;
  margin-top: -15px;
}
.breadcrumb li a {
  text-decoration: underline;
  font-size: .95rem;
}
.breadcrumb li a:hover {
  color: var(--hover-green);
}
.breadcrumb li {
  color: var(--gray);
  font-size: .95rem;
}
.breadcrumb .item {
  padding-left: 0.5rem;
}
.breadcrumb .item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: var(--gray);
  content: "/";
} */

.assistive {
  background: #fff;
  color: #000;
  height: 1px;
  width: 1px;
  left: -9999px;
  top: -9999px;
  position: absolute;
  overflow: hidden;
  z-index: -1;
}

body{
  background-color: var(--bg-color);
}

html,body{
  min-height: 100%;
  height:100%;
}

*{
  font-family: Arial,Helvetica,sans-serif;
  color: var(--font-color);
  font-size: 16px;
  text-align: left;
}

.container{
  max-width:1140px;
}

a, .link {
  color: var(--font-gray);
  text-decoration: underline;
}
a:hover {
  color: var(--font-gray);
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Karla', serif;
  font-weight: 400;
  text-align: left;
}

h1{
  font-size:2.275rem;
}
h2{
  font-size:28px;
  font-weight: 500;
}
h3{
  font-size: 1.275rem;
}
h4{
  font-size: 1.175rem;
}


::-moz-selection { background: var(--card-button-color); color:var(--white); }
::selection {  background: var(--card-button-color); color:var(--white); }

header {
  width: 100%;
  position: fixed;
  z-index: 99999;
}

#topheader-wrapper {
  width: 100%;
  background-color: var(--topheader-color);
  padding-top: 1.5rem;
  transition: all 0.6s ease-in-out;
}

.topnav-collapse #topheader-wrapper {
  padding-top: 0.5rem;
  transition: all 0.6s ease-in-out;
}
#topheader h1{
  font-size: 2.2rem;
  font-weight: 500;
  text-align: left;
  color: var(--header-font-color);
  padding-left: 1rem;
}
#topheader img{
  height: 50px;
  vertical-align: middle;
  transition: all 0.6s ease-in-out;
}
.topnav-collapse #topheader #nijmegen_logo img {
  height: 42px;
  transform: translate(calc(100% + 10px), 4px);
  transition: all 0.6s ease-in-out;
}
#topheader #nijmegen_logo::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--topheader-color);
  overflow-x: hidden;
}
#topheader a {
  text-decoration: none;
}

#header{
  background-color:var(--header-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

#header nav{
  width:100%;
  display: flex;
  align-items: center;
  padding: 0;
}

#header a{
  text-decoration: none;
}

#header nav ul{
  width:100%;
  margin:0 -5px;
  display: flex;
}

#header nav ul li {
  list-style: none;
  padding: 15px 20px;
  padding-top: 18px;
  padding-bottom: 12px;
  text-align: center;
  color: var(--header-font-color);
  transition: all 0.6s ease-in-out;
}
.topnav-collapse #header nav ul li {
  padding: 0px 20px;
  padding-top: 6px;
  padding-bottom: 0px;
  transition: all 0.6s ease-in-out;
}

.navbar-toggler {
  border: 0px solid var(--white);
}
.navbar-toggler-icon {
  font-size: 1.5rem;
}
.fas.fa-bars {
  padding: 2px 0.2rem;
  font-size: 2rem;
  color: var(--white);
}

#header nav ul * {
  color: var(--header-font-color);
  font-family: 'Source Sans Pro', serif;
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.6s ease-in-out;
}
#header nav ul *:hover {
  color: var(--font-hover-gray);
}

@media only screen and (max-width: 1520px) {
  #header {
    margin-top: -1px;
  }
  #topheader #nijmegen_logo::after {
    top: -1px;
  }
}

@media only screen and (max-width: 992px) {
  .scroll-left, .scroll-down {
    display: none;
  }

  #topheader img {
    position: absolute;
    top: -3px;
    right: -67px;
    min-height: 42px;
    min-width: 130px;
    max-height: 42px;
    max-width: 130px;
    vertical-align: middle;
    transition: all 0.6s ease-in-out;
  }
  .topnav-collapse #topheader img {
    position: absolute;
    right: -67px;
    transform: translate(0);
    transition: all 0.6s ease-in-out;
  }
  #topheader #nijmegen_logo::after {
    content: "";
    position: absolute;
    right: -80px;
    width: 100px;
    height: 100%;
    background-color: var(--topheader-color);
  }
  .topnav-collapse #topheader-wrapper, #topheader-wrapper {
    padding-top: 1rem;
  }
  #topheader h1{
    font-size: 1.7rem;
    padding-left: 0rem;
  }
  #header .container {
    padding: 0;
  }
  #header nav {
    width: 100%;
  }
  .topnav-collapse #header nav ul li {
    padding-bottom: 6px;
  }
  #header nav ul li.active, #header nav ul li {
    text-align: left;
  }
}

@media only screen and (max-width: 420px) {
  #topheader h1{
    font-size: 1.5rem;
  }
}

#splash img {
  margin: 0 1.275rem;
}
#splash span {
  font-size: 1.25rem;
  font-weight: 400;
}

.container.double-padded{
  padding-left: 30px;
  padding-right:30px;
}

#cards,#cards-overview,#cards-packages{
  margin:0 -15px;
}

.card-shade{
  border-radius: 6px;
  box-shadow: var(--shadow);
  background-color:var(--white);
  padding:15px;
  margin:15px;
  width:calc( 100% / 3 - 31px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

[data-view="pie-percentage-important"] .ajaxcontent,
[data-view="pie-percentage-wishes"] .ajaxcontent{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}



@media (max-width: 1040px){
  .card-shade{
    width:calc( 100% / 1.5 - 30px );
  }
}

@media (max-width: 728px){
  .card-shade{
    width:calc( 80% );
  }
}


#cards-advice .card-shade a{
  font-size:24px;
}

.card-shade a{
  color: var(--bg-color);
  font-weight: 600;
}

#cards-overview .card-shade,
#cards-packages .card-shade{
  padding:15px 30px;
}

#cards-overview .card-shade.active{
}

#cards-overview .card-shade,
#cards-packages .card-shade{
  background:none;
  position: relative;
  box-shadow:none;
  display: block;
  text-decoration: none!important;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}




@media (max-width: 1040px){
  #cards-overview .card-shade{
    width:calc( 100% / 3 - 31px );
  }
}


@media (max-width: 768px){
  #cards-overview .card-shade{
    width:calc( 100% / 2 - 31px );
  }
}

@media (max-width: 560px){
  #cards-overview .card-shade{
    width:calc( 100% / 1.5 - 31px );

  }
}


#cards-overview .card-shade .link,
#cards-packages .card-shade .link{
font-family: 'Muli', sans-serif;
}




#cards-overview .card-shade::before,#cards-packages .card-shade::before{
  border-radius: 6px;
  content: '';
  background-color: var(--card-color);
  width:100%;
  height:100%;
  position: absolute;
  top:0px;
  left:0px;
  z-index: -1;
  box-shadow: var(--shadow);
  transition: .2s;
}

#cards-packages .card-shade:hover::before{
  box-shadow: var(--shadow);
}


#cards-overview .card-shade::after,
#cards-packages .card-shade::after{
  content: '';
  background-color:var(--blue);
  opacity:.5;
  left:50%;
  top:80%;
  width:0;
  height:0;
  transition: .2s;
  border-radius:200px;
  position: absolute;
  z-index: -1;
}

#cards-packages .card-shade:hover::after{
  border-radius:6px;
  width:100%;
  height:100%;
  top:0;
  left:0;
}

#cards-overview .card-shade p,
#cards-overview .card-shade img,
#cards-overview .card-shade h2,
#cards-packages .card-shade p,
#cards-packages .card-shade img,
#cards-packages .card-shade h2{
  margin:15px 0;
}

#cards-packages .card-shade h2{
  width:100%;
}

#cards-overview .card-shade .button{
  width:100%;
  margin:15px 0px;
}

#cards-packages ul{
  margin:0;
  padding:0 15px;
  width:100%;
}
#cards-packages ul li{
  list-style: none;
  text-align: left;
  position: relative;
  padding:5px 0px 5px 20px;
}

#cards-packages ul li::before{
  content:'';
  background-color: var(--blue);
  width:6px;
  height:6px;
  border-radius:6px;
  position: absolute;
  left:0;
  margin-top:-3px;
  top:50%;
}

#cards-packages{
  padding:50px 0;
  justify-content: center;
}

#cards-packages .card-shade{
  width:calc( ( 100% - 30% ) / 3 );
}

#cards-packages .adviced{
  position: relative;
  width:30%;
  padding-top:60px;
  margin:-30px 15px;
}


@media (max-width: 1040px){
  #cards-packages .adviced{
    width:calc( 100% / 1.5 - 30px );
  }
}

@media (max-width: 450px){
  #cards-packages .adviced{
    width:calc( 80% );
  }
}


#cards-packages .selected{
  padding-top:60px;
  border: 2px solid var(--red);
  border-top-left-radius:9px;
  border-top-right-radius:9px;
}

.card-shade h2, .card-shade b {
  color: var(--font-gray);
}
.card-shade h2{
  font-size:24px;
  width:100%;
  text-align: center;
}
.card-shade .cirkel-inner h2{
  color: var(--font-color);
}
.card-shade p {
  text-align: center;
}
.card-shade .bar-element p {
  text-align: left;
}
.card-shade .blocker{
  background-color: var(--light-gray);
}

#cards-packages .adviced h2{
  font-size: 30px;
}

.we-advice,.you-selected{
  background-color: var(--blue);
  color:var(--white);
  font-weight: 900;
  width:100%;
  position: absolute;
  top:0;
  left:0px;
  padding:15px;
  font-family: 'Muli', sans-serif;
  border-top-left-radius:6px;
  border-top-right-radius:6px;
}

.you-selected{
  background-color:var(--red);
}

.card-shade p{
  margin:5px 0;
  width:100%;
}

#cards-packages .card-shade:hover{
  box-shadow: var(--shadow);
}

.button{
  border-radius: .125rem;
  box-shadow: var(--shadow);
  background-color: var(--button-color);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color:var(--button-font-color)!important;
  padding: 0.84rem 2.14rem;
  border: 0px;
  display: inline-block;
  text-decoration: none!important;
  text-transform: uppercase;
  transition: .2s;
  transition: color .15s ease-in-out,
  background-color .15s ease-in-out,
  border-color .15s ease-in-out,
  box-shadow .15s ease-in-out;
  margin: .375rem .375rem .375rem 0;
  letter-spacing: .7px;
  border: 2px solid var(--yellow);
}
.button p {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-size:  1.125rem;
  font-weight: 600;
  color:var(--button-font-color) !important;
}
.button:hover{
  color: var(--white) !important;
  background-color: var(--button-hover-color);
  box-shadow: var(--shadow);
}

.button-outline{
  background-color: var(--white);
  color:var(--red)!important;
  box-shadow: var(--shadow);
}
.button-outline:hover{
  background-color: var(--red);
  color:var(--white)!important;
  box-shadow: 0 2px 15px 0 var(--button-shadow-color);
}


.button-sm{
  padding:10px 15px;
  font-size:16px;
}

.button-pdf {
  width: 185px;
  font-weight: normal;
}

[data-trigger="popup"]{
  display: none;
}


.health-bar{
  border-radius: 15px;
  position: relative;
  width:100%;
  height: 30px;
  border:2px solid var(--progress-bar-bg-color);
  background: linear-gradient(-90deg, var(--progress-bar-color-1) 0%, var(--progress-bar-color-2) 50%, var(--progress-bar-color-3) 75%, var(--progress-bar-color-4) 100%);
}
.health-bar-reverse{
  background: linear-gradient(-90deg,
    var(--progress-bar-color-4)  0%,
    var(--progress-bar-color-3) 50%,
    var(--progress-bar-color-2) 75%,
    var(--progress-bar-color-1) 100%);

}


.health-tooltip{
  box-shadow: var(--shadow);
  background-color: var(--card);
  font-family: 'Muli', sans-serif;
  font-weight: 900;
  color: var(--progress-bar-color-1);
  position: absolute;
  left:0px;
  max-width: 200px;
  width:70px;
  text-align: center;
  margin-left:-35px;
  top:calc( -100% - 12px);
  padding:3px;
  border-radius:5px;
}

.health-tooltip-red{
  color: var(--progress-bar-color-4);

}

.health-tooltip::after{
  content: ' ';
  position: absolute;
  bottom:-6px;
  left:50%;
  margin-left:-6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--white);
}

.tooltip{
  opacity:100!important;
}
.tooltip-inner{
  background-color:var(--white);
  box-shadow: var(--shadow);
  color:black;
}

.tooltip-inner img{
  width: auto;
  height: 100px;
  max-width:90%;
  max-height:90%;
  margin:15px;
}

.tooltip .arrow::before{
  border-top-color:var(--white);
}

.tooltip .arrow::after{
  border-top-color:var(--white);
}

.blocker{
  height:100%;
  background-color:var(--progress-bar-bg-color);
  position: absolute;
  right:0px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

#measure-bars .health-bar{
  border-color:var(--white);
}

#measure-bars p{
  margin:45px 0;
  font-weight: 700;
}

#measure-bars .blocker{
  background-color:var(--white);
}

.form-check-label, .col-form-label, label {
  font-family: 'Montserrat', sans-serif;
  font-size:16px;
  font-weight: normal;
  margin-top:15px;
}

label a{
  font-family: 'Montserrat', sans-serif;
}

.form-check-label, .col-form-label {
  margin: 0 !important;
}

input[type="text"],input[type="password"],input[type="number"],input[type="email"],select{
  border-radius: 2px;
  border: solid 1px var(--blue);
  background-color: var(--white);
  display: block;
  width:100%;
  padding:10px;
}


#loadingsvg {
  width: 30%;
  position: fixed;
  z-index: 123456;
  top: 25%;
  left: 35%;
}


.loading{
  position: relative;
  overflow: hidden;
}


.loading::before{
  background-color: var(--loadingscreen-color);
}

.container .loading::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 12345;
  left: 0;
  top: 0;
  background-image: url(/inc/neba/img/arrows-over.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200px 500px;
}

#side-bar .loadinghouse,.measure-grid .loadinghouse {
  width:100px!important;
  height:100px!important;
  left:calc( 50% - 50px );
  top:calc( 50% - 50px );
}

.card-overview{
  padding:30px;
  background-color:var(--card-color);
  border-radius:4px;
  height:100%;
  box-shadow: var(--shadow);
}

#profile .card-overview{
  height: auto;
}

.card-overview p{
  margin:15px 0 0 0;
}
.card-overview h2 {
  color: var(--font-gray);
  font-size: 1.75rem;
}

strong{
  font-weight:900;
}
.step{
  width:calc( 100% / 5 - 31px);
  margin:15px;
}


@media (max-width: 1040px){
  .step{
    width:calc( 100% / 3 - 31px );
  }
}


@media (max-width: 768px){
  .step{
    width:calc( 100% / 2 - 31px );
  }

}
@media (max-width: 450px){
  .step{
    width:calc( 100% / 1 - 31px );
  }

}
.measure{
  border-radius: 4px;
  padding:25px;
  margin:15px 0;
  height:180px;
  position: relative;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.measure span,.measure a{
  color: var(--white);
  font-weight:normal;
}

.measure .link{
  font-weight:600;
}

.measure h3{
  color: var(--white);
  hyphens: manual;
  font-size: 20px;
}

.measure.inactive{
  position: relative;
  color:var(--light-gray)!important;
  background-color:var(--gray)!important;
}
.measure.inactive .link{
  color:var(--white)!important;
}

.measure .check{
  width: 37px;
  height: 37px;
  background-color:var(--white);
  border-radius:20px;
  display: flex;
  position: absolute;
  right:15px;
  top:15px;
  justify-content: center;
  align-items: center;
}

.measure .check i{
  color:var(--bright-green);
}


.measure.inactive>*{
  opacity:.5;
}


@media (max-width: 1250px){
  .measure{
    height:200px;
  }

  .measure h3, .measure span, .measure a{
    font-size: 16px;
  }
}

@media (max-width: 1040px){
  .measure{
    height:160px;
  }

  .measure h3, .measure span, .measure a{
    font-size: 18px;
  }
}

#steps{
  margin:0 -15px;
}

.step-0 .measure{
  background-color: var(--step-0-bg-color);
}

.step-1 .measure{
  background-color: var(--step-1-bg-color);
}

.step-2 .measure{
  background-color: var(--step-2-bg-color);
}

.step-3 .measure{
  background-color: var(--step-3-bg-color);
}

.step-4 .measure{
  background-color: var(--step-4-bg-color);
}

.step-5 .measure{
  background-color: var(--step-5-bg-color);
}

.step-4 .measure .link,.step-5 .measure .link{
  color:var(--white);
}

.measure:hover{
  text-decoration: none;
  box-shadow: 0 2px 20px 0 var(--step-shadow-color);
}

.text-primary{
  color: var(--card-font-color)!important;
}
.btn-primary,.btn-outline-primary:hover{
  color: var(--card-color);
  background-color: var(--card-button-color);
  border-color: var(--card-button-color);
}
.btn-outline-primary,.btn-primary:hover,
.btn-primary[data-active=false],.btn-primary:hover[data-active=false]{
  background-color:var(--card-color);
  color: var(--card-button-color);
  border-color: var(--card-button-color);
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  background-color: var(--card-button-color);
  border-color: var(--card-button-color);
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
  color: var(--card-color);
  background-color: var(--card-button-color);
  border-color: var(--card-button-color);
}

#toast-container{
  position: fixed;
  bottom:0;
  width:100%;background-image: linear-gradient(to bottom, var(--black), var(--alpha-red));
  z-index:1000;
  left:0;
  min-height:400px;
}

.toast,.popper,#popup{
  border-radius: 4px;
  box-shadow: var(--shadow);
  background-color: var(--white);
  position: absolute;
  right:50px;
  bottom:50px;
  max-width: 600px;
  padding:25px;
  overflow:visible;
  border:0px;
}

.popper{
  max-width:90%;
  width:90%;
  right:5%;
  bottom:5%;
  height:90%;
}

#popup{
  position: fixed;
  top:calc( 50% - 150px );
  left:calc( 50% - 250px );
  width:500px;
  height:300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 2px var(--red);
  box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}


#popper-container{
  background-color: var(--gray);
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1000;
}

.toast button[data-dismiss],.toast button[data-dismiss]:hover,
.popper button[data-dismiss],.popper button[data-dismiss]:hover{
  position: absolute;
  right:-32px;
  top:-32px;
  opacity:1!important;
  background-color:var(--white)!important;
  border-radius:100px;
  width:64px;
  height:64px;
  display: block;
}
.toast button[data-dismiss] span,
.popper button[data-dismiss] span{
  color:var(--red);
  font-size:32px;
}


.italic{
  font-style: italic;
}

.savings-per-year{
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 34px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: var(--font-color);
}
#graph-view h2{
  margin-bottom:30px;
}

#graph-view .buttons{
  margin:0px -5px 30px -5px;
}

#graph-view button{
  padding: 12px;
  margin: 5px 5px 5px 0;
}

button.btn-xs{
  padding:5px;
  margin:3px;
  font-size:.8rem;
}

.content{
  margin: 0 0;
}

#side-bar .price{
  font-size: 16px;
  font-weight:bold;
}

.popper-body{
  height:100%;
  overflow: hidden;
}


.scroll-down{
  position: fixed;
  right:15px;
  bottom:15px;
  cursor: pointer;
  transition: .4s;
}

.scroll-left{
  cursor: pointer;
  position: absolute;
  left: -50px;
}

.scroll-up{
  transform:rotate(180deg);
}



*:not(input):not(textarea){
  user-select: none;
}

#profile label{
  cursor:pointer;
}

.map{
  width:100%;
  height:300px;
}

#map-container{
  position: relative;
}

.map-image{
  position: absolute;
  top:0;
  left:calc( 50% - 75px );
  top:calc( 50% - 125px );

}


main{
  padding:30px 0;
}

.map-image>div{
  overflow: hidden;
  border:4px solid var(--yellow);
  border-radius:500px;
  width:250px;
  height:250px;
  background-size: cover;
}

.map-image::after{
  content:  '';
  position: absolute;
  width:100px;
  height:15px;
  background-color:var(--yellow);
  bottom:0px;
  right:-50px;
  z-index:1000;
  border-radius:3px;
  transform:rotate( 45deg );
}

iframe.questionset,#iframe-loader{
  width:100%;
  height:calc( 100% - 122px );
  position: fixed;
  top:122px;
  left:0;
  z-index:10;
  border:0px;
  overflow:hidden;
}

iframe.questionset{
  z-index:11;
}

@media (max-width: 1200px){

  iframe.questionset,#iframe-loader{
    height:calc( 100% - 179px );
    top:179px;
  }

}


#splash_zwolle,#splash_ermelo,#splash_deventer,#splash_middle{
  height:277px;
  /*background-image:url(/inc/e-trias/img/hoogkamp-energie.jpg);*/
  background-size:cover;
  background-position: center center;
  position: relative;
}


[data-areaactionid='556f09c570704dee017081f705d41a7f'] #splash_middle{
  display:none;
}

[data-areaactionid='556f09c57159c4f7017163274ee91de0'] #splash_middle{
  background-image:url(/inc/woningwaard/img/zilverkamp.jpg);
}



img{
  max-width: 100%;
}

.splash_circle{
  height:277px;
  width:277px;
  border-radius:423px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0;
  right:-138px;
  background-color: var(--white);
}


@media (max-width: 1200px){

  .splash_circle{
    right:0px;
  }
}

.splash_circle img{
  max-width:80%;
}



#cirkels{
  display:flex;
  flex-direction: column;
  align-items: flex-end;
}

.cirkel{
  width:200px;
  height:200px;
  background-color: var(--white);
  border-radius:200px;
  border:10px solid var(--white);
  position: relative;
  margin:30px 0 55px 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  font-weight: 300;
}

#advice-cirkels .cirkel,.popper .cirkel{
  border:10px solid var(--light-gray);
}
#advice-cirkels .cirkel.cirkel-empty{
  background-color:var(--light-gray);
}

.cirkel h2,.cirkel h2 sub{
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}
.cirkel-inner{
  position:absolute;
  width:180px;
  height:180px;
  top:0;
  left:0;
  font-size:16px;
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  text-align:center;
}

.cirkel svg{
  left:-20px;
  top:-20px;
  position:absolute;
}

.cirkel-part{
  fill:none;stroke-width:20;stroke-linejoin:bevel;stroke-miterlimit:10;
}

.cirkel-part-orange{
  stroke:var(--yellow);
}
.cirkel-part-green{
  stroke:var(--green);
}

.cirkel-part-blue{
  stroke:var(--circle-color);
}

#advice-cirkels .card-shade{
  justify-content: space-between;
}

.container.padded{
  padding-top:50px;
  padding-bottom:50px;
}

.scroll-down i, .scroll-left i{
  background-color: var(--button-color);
  border: 2px solid var(--button-font-color);
  color:var(--button-font-color);
  width:32px;
  height:32px;
  border-radius: 16px;
  line-height: 27px;
  margin:15px 0;
}

#homepage-to-login{
  margin-left: 30px;
}

ul.questionsets{
  list-style: none;
  padding:0;
  margin:0;
}


ul.questionsets
ul.questionsets{
  margin-left: 0.5rem;
}

ul.questionsets li a,
ul.questionsets li span{
  display: block;
  background-color:var(--questionsets-color);
  padding:5px;
  font-weight:500;
  margin: 5px 0;
}

ul.questionsets li a:hover{
  text-decoration: none;
  color:var(--questionsets-font-hover-color);
}

ul.questionsets li span.unfinished i,
ul.questionsets li a.unfinished i{
  color:var(--red);
}


ul.questionsets li span.finished i,
ul.questionsets li a.finished i{
  color:var(--bright-green);
}


.userdata-card{
  padding: 30px;
  background-color: var(--user-card-color);
  border-radius: 4px;
  margin:30px 0;
  position: relative;
}

.userdata-wishes i{
  color:var(--user-wishes);
}
i.orange{
  color:var(--user-paper);
}
.userdata-card .add-to-side{
  position:absolute;
  right:-32px;
}

.userdata-card .add-to-side a{
  display: block;
  padding:5px;
  margin:5px 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color:var(--white);
}

.userdata-card .md{
  display: block;
  margin:10px;
  border:1px solid var(--gray);
  border-radius:3px;
  padding:10px;
  text-align: center;
}

.address{
  font-size:1.4rem;
}


a[data-switchMeasuredata]{
  display: block;
  padding:5px;
  margin:5px 0;
  cursor:pointer;
  border:1px solid var(--gray);
}


a[data-switchMeasuredata]:hover{
  color:var(--white)!important;
  background-color:var(--dark-red);
  border:1px solid var(--light-gray);
}

.button.disabled {
  cursor: default !important;
  background-color: var(--gray);
  box-shadow: none;
}
.button.disabled:hover {
  box-shadow: none;
}

.countdown {
  width: 40px;
  height: 40px;
  float: right;
  margin: -6px 0 -10px 20px;
}

.countdown svg {
  width: 40px;
  height: 40px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}

.countdown svg circle {
  stroke-dasharray: 113px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: var(--white);
  fill: none;
  animation: countdown 5s linear infinite forwards;
}

.custom-control-input:checked~.custom-control-label::before {
  color: var(--white);
  border-color: var(--card-button-color);
  background-color: var(--card-button-color);
}
.custom-control-label{
  margin-top:0px;
}


#measure-status{
  box-shadow: inset 0px 5px 8px rgba( 0, 0, 0, 0.1 );
  padding:30px;
  background-color: rgba( 255, 255, 255, .6 );
  margin-top:-30px;
}

#measure-status .button{
  margin:0 30px 0 0;
}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 113px;
  }
}

a#registertext{
  color: var(--white);
  top: -20px;
  position: relative;
  visibility: visible !important;
}

#cookie-alert .cookie-alert__content::before {
  background-color: var(--yellow);
}