.byerSlider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #ebebeb;
    outline: none;
    opacity: 1;
    transition: all 0.2s ease; 
    border-radius: 100px;
    background-color: var( --e-global-color-b5ebbac )!important;
    background-image: none!important;
    margin: 15px 0px;
  }
  .byerSlider:hover {
  }
  
  
  .byerSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #1e73be !important;
    cursor: pointer;
    border-radius: 100%;
  }
  
  .byerSlider::-webkit-slider-thumb:hover {
  }

.tooltip {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: #ccc;
  color: #fff;
  border-radius: 1000px;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 700;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0px -1px 28px -18px rgb(0 0 0 / 50%);


  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
  
.calcultor {
    display: flex;
    flex-direction: row;
}
.berekening {
    flex-basis: 50%;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: -9px;
    align-content: center;
}
.berekening label {
    width: 100%;
    margin-bottom: 20px;
}
.berekening label:last-child {
    margin: 0!important;
}
.uitkomsten {
    display: flex;
    align-content: center;
    margin-left: 50px;
    flex-basis: 50%;
    background-color: var( --e-global-color-primary );
    padding: 50px;
    color: #fff!important;
    flex-direction: column;
}
.uitkomsten label {
    width: 100%;
}
.uitkomsten p {
    margin-bottom: 20px!important;
    font-family: var( --e-global-typography-accent-font-family ), Sans-serif;
    font-size: var( --e-global-typography-accent-font-size );
    font-weight: var( --e-global-typography-accent-font-weight );
    line-height: var( --e-global-typography-accent-line-height );
    letter-spacing: var( --e-global-typography-accent-letter-spacing );
}
.uitkomsten h2 {
/*    color: var( --e-global-color-primary );*/
    margin-bottom: 10px;
}
.semi-bold {
    font-weight: 500!important;
}
.h3-inline h3 {
    display: inline;
}
.row-calc {
    margin: 30px 0px;
    display: block;
}
.row-calc:last-child {
    margin-bottom: 0px!important
}
.berekening.not-versprijd {
    justify-content: unset!important;
}


.line-calc {
    border-bottom: 1px solid #fff;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 980px) {
    .break-disable-mobile {
    display: none;
    }
    .calcultor {
        display: block;
    }
    .uitkomsten {
        margin-left: 0px;
        margin-top: 50px;
        display: block;
}
    .berekening {
        padding-right: 0px;
        display: block;
}