/** 
 * Resusable style elements
 */
.input-group .form-control {
  height: 50px;
  border-radius: 25px;
}
.input-group .input-group-btn .btn.btn-arrow {
  height: 50px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  background-image: url('/img/arrow.png');
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: right center;
  background-position-y: center;
  background-position: right 20px center;
  width: 60px;
  border-color: #fff;
  padding-right: 0 !important;
}
.input-group .input-group-btn .btn.btn-labeled-arrow {
  height: 50px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  background-image: url('/img/arrow.png');
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: right center;
  background-position-y: center;
  background-position: right 20px center;
  border-color: #fff;
  padding-right: 55px;
  padding-left: 20px;
  font-size: 18px;
}
@media (max-width: 1599px) {
  .input-group .input-group-btn .btn.btn-labeled-arrow {
    color: transparent;
    padding-right: 0;
    padding-left: 0;
  }
}
#gform_20 .gform_fields > li {
  margin-bottom: 20px;
}
#gform_20 #field_20_2 {
  padding-left: 35px;
}
#gform_20 #field_20_2 > label {
  display: inline-block;
  font-size: 18px;
  margin-bottom: 30px;
  margin-top: 20px;
}
#gform_20 .gfield_checkbox {
  padding-left: 15px;
}
#gform_20 .gfield_checkbox li {
  padding-left: 5px;
  margin-left: 10px;
}
#gform_20 .gfield_checkbox input[type="checkbox"] {
  width: 16px;
  margin-left: -28px;
  margin-top: 7px;
  height: 16px;
  float: left;
}
#gform_20 .gfield_checkbox label {
  font-weight: 300;
  font-size: 15px;
}
#gform_20 .gfield_radio {
  margin-bottom: 40px;
}
#gform_20 .gfield_radio li {
  padding-left: 0;
}
#gform_20 .gfield_radio li input[type="radio"] {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: none;
  margin-top: -2px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#gform_20 .gfield_radio li label {
  display: inline-block;
  float: left;
  margin-right: 20px;
  font-weight: 500;
  width: 110px;
}
#gform_20 .gfield_radio li:after {
  content: " ";
  clear: both;
}
#gform_20 #field_20_4 label {
  display: none;
}
#gform_20 #field_20_4 span {
  display: block;
  margin-bottom: 20px;
}
#gform_20 #field_20_4 span.ginput_left {
  width: 50%;
  float: right;
}
#gform_20 #field_20_4 span.ginput_right {
  width: 50%;
  float: left;
  padding-right: 20px;
}
#gform_20 #field_20_4 span.ginput_left.address_country {
  width: 100%;
  float: none;
  clear: both;
}
#gform_20 .gform_footer {
  clear: both;
  text-align: right;
}
/**
 * http://aslanbakan.com/en/blog/less-space-responsive-css-margin-and-padding-helper-classes/
 * As you noticed, there two additional class with bootstrap column classes. These are xs-mb-40 and md-mb-20.

If you're a Bootstrap <3 lover just like me, you're already familiar with Bootstrap's grid structure and column classes what mean.

You don't need to know Bootstrap or any other CSS Framework to understand xs-mb-20 actually does. Let's examine these 3 parted class with a visual diagram.

Less Space Kod Diagramı
Red area:

This section defines which viewport that element belongs right now.

    xs (extra small: 480px) Mobile phones and bigger screen sizes..
    xs represents global viewport size by the way. If we want margin or padding values stay same on all screen sizes, we use xs to achieve that.
    sm (small: 768px) Tablet devices and bigger screens.
    md (medium: 992px) Desktop and bigger screens
    lg (large: 1200px) Extra wide viewport sizes.

Blue area

This section defines the attribute that you want to use, either margin or padding

    p padding
    pt padding-top
    pr padding-right
    pb padding-bottom
    pl padding-left
    m margin
    mt margin-top
    mr margin-right
    mb margin-bottom
    ml margin-left

Green area

This is the integer section that you want to set.

    It could be zero "0"
    Only digits.
    Minus values will not be accepted. (I Didn't define them consider its using rate.)


 */
.xs-p-120 {
  padding: 120px;
}
.xs-pt-120 {
  padding-top: 120px;
}
.xs-pl-120 {
  padding-left: 120px;
}
.xs-pr-120 {
  padding-right: 120px;
}
.xs-pb-120 {
  padding-bottom: 120px;
}
.xs-m-120 {
  margin: 120px;
}
.xs-mt-120 {
  margin-top: 120px;
}
.xs-ml-120 {
  margin-left: 120px;
}
.xs-mr-120 {
  margin-right: 120px;
}
.xs-mb-120 {
  margin-bottom: 120px;
}
.xs-p-100 {
  padding: 100px;
}
.xs-pt-100 {
  padding-top: 100px;
}
.xs-pl-100 {
  padding-left: 100px;
}
.xs-pr-100 {
  padding-right: 100px;
}
.xs-pb-100 {
  padding-bottom: 100px;
}
.xs-m-100 {
  margin: 100px;
}
.xs-mt-100 {
  margin-top: 100px;
}
.xs-ml-100 {
  margin-left: 100px;
}
.xs-mr-100 {
  margin-right: 100px;
}
.xs-mb-100 {
  margin-bottom: 100px;
}
.xs-p-80 {
  padding: 80px;
}
.xs-pt-80 {
  padding-top: 80px;
}
.xs-pl-80 {
  padding-left: 80px;
}
.xs-pr-80 {
  padding-right: 80px;
}
.xs-pb-80 {
  padding-bottom: 80px;
}
.xs-m-80 {
  margin: 80px;
}
.xs-mt-80 {
  margin-top: 80px;
}
.xs-ml-80 {
  margin-left: 80px;
}
.xs-mr-80 {
  margin-right: 80px;
}
.xs-mb-80 {
  margin-bottom: 80px;
}
.xs-p-60 {
  padding: 60px;
}
.xs-pt-60 {
  padding-top: 60px;
}
.xs-pl-60 {
  padding-left: 60px;
}
.xs-pr-60 {
  padding-right: 60px;
}
.xs-pb-60 {
  padding-bottom: 60px;
}
.xs-m-60 {
  margin: 60px;
}
.xs-mt-60 {
  margin-top: 60px;
}
.xs-ml-60 {
  margin-left: 60px;
}
.xs-mr-60 {
  margin-right: 60px;
}
.xs-mb-60 {
  margin-bottom: 60px;
}
.xs-p-50 {
  padding: 50px;
}
.xs-pt-50 {
  padding-top: 50px;
}
.xs-pl-50 {
  padding-left: 50px;
}
.xs-pr-50 {
  padding-right: 50px;
}
.xs-pb-50 {
  padding-bottom: 50px;
}
.xs-m-50 {
  margin: 50px;
}
.xs-mt-50 {
  margin-top: 50px;
}
.xs-ml-50 {
  margin-left: 50px;
}
.xs-mr-50 {
  margin-right: 50px;
}
.xs-mb-50 {
  margin-bottom: 50px;
}
.xs-p-40 {
  padding: 40px;
}
.xs-pt-40 {
  padding-top: 40px;
}
.xs-pl-40 {
  padding-left: 40px;
}
.xs-pr-40 {
  padding-right: 40px;
}
.xs-pb-40 {
  padding-bottom: 40px;
}
.xs-m-40 {
  margin: 40px;
}
.xs-mt-40 {
  margin-top: 40px;
}
.xs-ml-40 {
  margin-left: 40px;
}
.xs-mr-40 {
  margin-right: 40px;
}
.xs-mb-40 {
  margin-bottom: 40px;
}
.xs-p-30 {
  padding: 30px;
}
.xs-pt-30 {
  padding-top: 30px;
}
.xs-pl-30 {
  padding-left: 30px;
}
.xs-pr-30 {
  padding-right: 30px;
}
.xs-pb-30 {
  padding-bottom: 30px;
}
.xs-m-30 {
  margin: 30px;
}
.xs-mt-30 {
  margin-top: 30px;
}
.xs-ml-30 {
  margin-left: 30px;
}
.xs-mr-30 {
  margin-right: 30px;
}
.xs-mb-30 {
  margin-bottom: 30px;
}
.xs-p-20 {
  padding: 20px;
}
.xs-pt-20 {
  padding-top: 20px;
}
.xs-pl-20 {
  padding-left: 20px;
}
.xs-pr-20 {
  padding-right: 20px;
}
.xs-pb-20 {
  padding-bottom: 20px;
}
.xs-m-20 {
  margin: 20px;
}
.xs-mt-20 {
  margin-top: 20px;
}
.xs-ml-20 {
  margin-left: 20px;
}
.xs-mr-20 {
  margin-right: 20px;
}
.xs-mb-20 {
  margin-bottom: 20px;
}
.xs-p-15 {
  padding: 15px;
}
.xs-pt-15 {
  padding-top: 15px;
}
.xs-pl-15 {
  padding-left: 15px;
}
.xs-pr-15 {
  padding-right: 15px;
}
.xs-pb-15 {
  padding-bottom: 15px;
}
.xs-m-15 {
  margin: 15px;
}
.xs-mt-15 {
  margin-top: 15px;
}
.xs-ml-15 {
  margin-left: 15px;
}
.xs-mr-15 {
  margin-right: 15px;
}
.xs-mb-15 {
  margin-bottom: 15px;
}
.xs-p-10 {
  padding: 10px;
}
.xs-pt-10 {
  padding-top: 10px;
}
.xs-pl-10 {
  padding-left: 10px;
}
.xs-pr-10 {
  padding-right: 10px;
}
.xs-pb-10 {
  padding-bottom: 10px;
}
.xs-m-10 {
  margin: 10px;
}
.xs-mt-10 {
  margin-top: 10px;
}
.xs-ml-10 {
  margin-left: 10px;
}
.xs-mr-10 {
  margin-right: 10px;
}
.xs-mb-10 {
  margin-bottom: 10px;
}
.xs-p-5 {
  padding: 5px;
}
.xs-pt-5 {
  padding-top: 5px;
}
.xs-pl-5 {
  padding-left: 5px;
}
.xs-pr-5 {
  padding-right: 5px;
}
.xs-pb-5 {
  padding-bottom: 5px;
}
.xs-m-5 {
  margin: 5px;
}
.xs-mt-5 {
  margin-top: 5px;
}
.xs-ml-5 {
  margin-left: 5px;
}
.xs-mr-5 {
  margin-right: 5px;
}
.xs-mb-5 {
  margin-bottom: 5px;
}
.xs-p-0 {
  padding: 0px;
}
.xs-pt-0 {
  padding-top: 0px;
}
.xs-pl-0 {
  padding-left: 0px;
}
.xs-pr-0 {
  padding-right: 0px;
}
.xs-pb-0 {
  padding-bottom: 0px;
}
.xs-m-0 {
  margin: 0px;
}
.xs-mt-0 {
  margin-top: 0px;
}
.xs-ml-0 {
  margin-left: 0px;
}
.xs-mr-0 {
  margin-right: 0px;
}
.xs-mb-0 {
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .sm-p-120 {
    padding: 120px;
  }
  .sm-pt-120 {
    padding-top: 120px;
  }
  .sm-pl-120 {
    padding-left: 120px;
  }
  .sm-pr-120 {
    padding-right: 120px;
  }
  .sm-pb-120 {
    padding-bottom: 120px;
  }
  .sm-m-120 {
    margin: 120px;
  }
  .sm-mt-120 {
    margin-top: 120px;
  }
  .sm-ml-120 {
    margin-left: 120px;
  }
  .sm-mr-120 {
    margin-right: 120px;
  }
  .sm-mb-120 {
    margin-bottom: 120px;
  }
  .sm-p-100 {
    padding: 100px;
  }
  .sm-pt-100 {
    padding-top: 100px;
  }
  .sm-pl-100 {
    padding-left: 100px;
  }
  .sm-pr-100 {
    padding-right: 100px;
  }
  .sm-pb-100 {
    padding-bottom: 100px;
  }
  .sm-m-100 {
    margin: 100px;
  }
  .sm-mt-100 {
    margin-top: 100px;
  }
  .sm-ml-100 {
    margin-left: 100px;
  }
  .sm-mr-100 {
    margin-right: 100px;
  }
  .sm-mb-100 {
    margin-bottom: 100px;
  }
  .sm-p-80 {
    padding: 80px;
  }
  .sm-pt-80 {
    padding-top: 80px;
  }
  .sm-pl-80 {
    padding-left: 80px;
  }
  .sm-pr-80 {
    padding-right: 80px;
  }
  .sm-pb-80 {
    padding-bottom: 80px;
  }
  .sm-m-80 {
    margin: 80px;
  }
  .sm-mt-80 {
    margin-top: 80px;
  }
  .sm-ml-80 {
    margin-left: 80px;
  }
  .sm-mr-80 {
    margin-right: 80px;
  }
  .sm-mb-80 {
    margin-bottom: 80px;
  }
  .sm-p-60 {
    padding: 60px;
  }
  .sm-pt-60 {
    padding-top: 60px;
  }
  .sm-pl-60 {
    padding-left: 60px;
  }
  .sm-pr-60 {
    padding-right: 60px;
  }
  .sm-pb-60 {
    padding-bottom: 60px;
  }
  .sm-m-60 {
    margin: 60px;
  }
  .sm-mt-60 {
    margin-top: 60px;
  }
  .sm-ml-60 {
    margin-left: 60px;
  }
  .sm-mr-60 {
    margin-right: 60px;
  }
  .sm-mb-60 {
    margin-bottom: 60px;
  }
  .sm-p-50 {
    padding: 50px;
  }
  .sm-pt-50 {
    padding-top: 50px;
  }
  .sm-pl-50 {
    padding-left: 50px;
  }
  .sm-pr-50 {
    padding-right: 50px;
  }
  .sm-pb-50 {
    padding-bottom: 50px;
  }
  .sm-m-50 {
    margin: 50px;
  }
  .sm-mt-50 {
    margin-top: 50px;
  }
  .sm-ml-50 {
    margin-left: 50px;
  }
  .sm-mr-50 {
    margin-right: 50px;
  }
  .sm-mb-50 {
    margin-bottom: 50px;
  }
  .sm-p-40 {
    padding: 40px;
  }
  .sm-pt-40 {
    padding-top: 40px;
  }
  .sm-pl-40 {
    padding-left: 40px;
  }
  .sm-pr-40 {
    padding-right: 40px;
  }
  .sm-pb-40 {
    padding-bottom: 40px;
  }
  .sm-m-40 {
    margin: 40px;
  }
  .sm-mt-40 {
    margin-top: 40px;
  }
  .sm-ml-40 {
    margin-left: 40px;
  }
  .sm-mr-40 {
    margin-right: 40px;
  }
  .sm-mb-40 {
    margin-bottom: 40px;
  }
  .sm-p-30 {
    padding: 30px;
  }
  .sm-pt-30 {
    padding-top: 30px;
  }
  .sm-pl-30 {
    padding-left: 30px;
  }
  .sm-pr-30 {
    padding-right: 30px;
  }
  .sm-pb-30 {
    padding-bottom: 30px;
  }
  .sm-m-30 {
    margin: 30px;
  }
  .sm-mt-30 {
    margin-top: 30px;
  }
  .sm-ml-30 {
    margin-left: 30px;
  }
  .sm-mr-30 {
    margin-right: 30px;
  }
  .sm-mb-30 {
    margin-bottom: 30px;
  }
  .sm-p-20 {
    padding: 20px;
  }
  .sm-pt-20 {
    padding-top: 20px;
  }
  .sm-pl-20 {
    padding-left: 20px;
  }
  .sm-pr-20 {
    padding-right: 20px;
  }
  .sm-pb-20 {
    padding-bottom: 20px;
  }
  .sm-m-20 {
    margin: 20px;
  }
  .sm-mt-20 {
    margin-top: 20px;
  }
  .sm-ml-20 {
    margin-left: 20px;
  }
  .sm-mr-20 {
    margin-right: 20px;
  }
  .sm-mb-20 {
    margin-bottom: 20px;
  }
  .sm-p-15 {
    padding: 15px;
  }
  .sm-pt-15 {
    padding-top: 15px;
  }
  .sm-pl-15 {
    padding-left: 15px;
  }
  .sm-pr-15 {
    padding-right: 15px;
  }
  .sm-pb-15 {
    padding-bottom: 15px;
  }
  .sm-m-15 {
    margin: 15px;
  }
  .sm-mt-15 {
    margin-top: 15px;
  }
  .sm-ml-15 {
    margin-left: 15px;
  }
  .sm-mr-15 {
    margin-right: 15px;
  }
  .sm-mb-15 {
    margin-bottom: 15px;
  }
  .sm-p-10 {
    padding: 10px;
  }
  .sm-pt-10 {
    padding-top: 10px;
  }
  .sm-pl-10 {
    padding-left: 10px;
  }
  .sm-pr-10 {
    padding-right: 10px;
  }
  .sm-pb-10 {
    padding-bottom: 10px;
  }
  .sm-m-10 {
    margin: 10px;
  }
  .sm-mt-10 {
    margin-top: 10px;
  }
  .sm-ml-10 {
    margin-left: 10px;
  }
  .sm-mr-10 {
    margin-right: 10px;
  }
  .sm-mb-10 {
    margin-bottom: 10px;
  }
  .sm-p-5 {
    padding: 5px;
  }
  .sm-pt-5 {
    padding-top: 5px;
  }
  .sm-pl-5 {
    padding-left: 5px;
  }
  .sm-pr-5 {
    padding-right: 5px;
  }
  .sm-pb-5 {
    padding-bottom: 5px;
  }
  .sm-m-5 {
    margin: 5px;
  }
  .sm-mt-5 {
    margin-top: 5px;
  }
  .sm-ml-5 {
    margin-left: 5px;
  }
  .sm-mr-5 {
    margin-right: 5px;
  }
  .sm-mb-5 {
    margin-bottom: 5px;
  }
  .sm-p-0 {
    padding: 0px;
  }
  .sm-pt-0 {
    padding-top: 0px;
  }
  .sm-pl-0 {
    padding-left: 0px;
  }
  .sm-pr-0 {
    padding-right: 0px;
  }
  .sm-pb-0 {
    padding-bottom: 0px;
  }
  .sm-m-0 {
    margin: 0px;
  }
  .sm-mt-0 {
    margin-top: 0px;
  }
  .sm-ml-0 {
    margin-left: 0px;
  }
  .sm-mr-0 {
    margin-right: 0px;
  }
  .sm-mb-0 {
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .md-p-120 {
    padding: 120px;
  }
  .md-pt-120 {
    padding-top: 120px;
  }
  .md-pl-120 {
    padding-left: 120px;
  }
  .md-pr-120 {
    padding-right: 120px;
  }
  .md-pb-120 {
    padding-bottom: 120px;
  }
  .md-m-120 {
    margin: 120px;
  }
  .md-mt-120 {
    margin-top: 120px;
  }
  .md-ml-120 {
    margin-left: 120px;
  }
  .md-mr-120 {
    margin-right: 120px;
  }
  .md-mb-120 {
    margin-bottom: 120px;
  }
  .md-p-100 {
    padding: 100px;
  }
  .md-pt-100 {
    padding-top: 100px;
  }
  .md-pl-100 {
    padding-left: 100px;
  }
  .md-pr-100 {
    padding-right: 100px;
  }
  .md-pb-100 {
    padding-bottom: 100px;
  }
  .md-m-100 {
    margin: 100px;
  }
  .md-mt-100 {
    margin-top: 100px;
  }
  .md-ml-100 {
    margin-left: 100px;
  }
  .md-mr-100 {
    margin-right: 100px;
  }
  .md-mb-100 {
    margin-bottom: 100px;
  }
  .md-p-80 {
    padding: 80px;
  }
  .md-pt-80 {
    padding-top: 80px;
  }
  .md-pl-80 {
    padding-left: 80px;
  }
  .md-pr-80 {
    padding-right: 80px;
  }
  .md-pb-80 {
    padding-bottom: 80px;
  }
  .md-m-80 {
    margin: 80px;
  }
  .md-mt-80 {
    margin-top: 80px;
  }
  .md-ml-80 {
    margin-left: 80px;
  }
  .md-mr-80 {
    margin-right: 80px;
  }
  .md-mb-80 {
    margin-bottom: 80px;
  }
  .md-p-60 {
    padding: 60px;
  }
  .md-pt-60 {
    padding-top: 60px;
  }
  .md-pl-60 {
    padding-left: 60px;
  }
  .md-pr-60 {
    padding-right: 60px;
  }
  .md-pb-60 {
    padding-bottom: 60px;
  }
  .md-m-60 {
    margin: 60px;
  }
  .md-mt-60 {
    margin-top: 60px;
  }
  .md-ml-60 {
    margin-left: 60px;
  }
  .md-mr-60 {
    margin-right: 60px;
  }
  .md-mb-60 {
    margin-bottom: 60px;
  }
  .md-p-50 {
    padding: 50px;
  }
  .md-pt-50 {
    padding-top: 50px;
  }
  .md-pl-50 {
    padding-left: 50px;
  }
  .md-pr-50 {
    padding-right: 50px;
  }
  .md-pb-50 {
    padding-bottom: 50px;
  }
  .md-m-50 {
    margin: 50px;
  }
  .md-mt-50 {
    margin-top: 50px;
  }
  .md-ml-50 {
    margin-left: 50px;
  }
  .md-mr-50 {
    margin-right: 50px;
  }
  .md-mb-50 {
    margin-bottom: 50px;
  }
  .md-p-40 {
    padding: 40px;
  }
  .md-pt-40 {
    padding-top: 40px;
  }
  .md-pl-40 {
    padding-left: 40px;
  }
  .md-pr-40 {
    padding-right: 40px;
  }
  .md-pb-40 {
    padding-bottom: 40px;
  }
  .md-m-40 {
    margin: 40px;
  }
  .md-mt-40 {
    margin-top: 40px;
  }
  .md-ml-40 {
    margin-left: 40px;
  }
  .md-mr-40 {
    margin-right: 40px;
  }
  .md-mb-40 {
    margin-bottom: 40px;
  }
  .md-p-30 {
    padding: 30px;
  }
  .md-pt-30 {
    padding-top: 30px;
  }
  .md-pl-30 {
    padding-left: 30px;
  }
  .md-pr-30 {
    padding-right: 30px;
  }
  .md-pb-30 {
    padding-bottom: 30px;
  }
  .md-m-30 {
    margin: 30px;
  }
  .md-mt-30 {
    margin-top: 30px;
  }
  .md-ml-30 {
    margin-left: 30px;
  }
  .md-mr-30 {
    margin-right: 30px;
  }
  .md-mb-30 {
    margin-bottom: 30px;
  }
  .md-p-20 {
    padding: 20px;
  }
  .md-pt-20 {
    padding-top: 20px;
  }
  .md-pl-20 {
    padding-left: 20px;
  }
  .md-pr-20 {
    padding-right: 20px;
  }
  .md-pb-20 {
    padding-bottom: 20px;
  }
  .md-m-20 {
    margin: 20px;
  }
  .md-mt-20 {
    margin-top: 20px;
  }
  .md-ml-20 {
    margin-left: 20px;
  }
  .md-mr-20 {
    margin-right: 20px;
  }
  .md-mb-20 {
    margin-bottom: 20px;
  }
  .md-p-15 {
    padding: 15px;
  }
  .md-pt-15 {
    padding-top: 15px;
  }
  .md-pl-15 {
    padding-left: 15px;
  }
  .md-pr-15 {
    padding-right: 15px;
  }
  .md-pb-15 {
    padding-bottom: 15px;
  }
  .md-m-15 {
    margin: 15px;
  }
  .md-mt-15 {
    margin-top: 15px;
  }
  .md-ml-15 {
    margin-left: 15px;
  }
  .md-mr-15 {
    margin-right: 15px;
  }
  .md-mb-15 {
    margin-bottom: 15px;
  }
  .md-p-10 {
    padding: 10px;
  }
  .md-pt-10 {
    padding-top: 10px;
  }
  .md-pl-10 {
    padding-left: 10px;
  }
  .md-pr-10 {
    padding-right: 10px;
  }
  .md-pb-10 {
    padding-bottom: 10px;
  }
  .md-m-10 {
    margin: 10px;
  }
  .md-mt-10 {
    margin-top: 10px;
  }
  .md-ml-10 {
    margin-left: 10px;
  }
  .md-mr-10 {
    margin-right: 10px;
  }
  .md-mb-10 {
    margin-bottom: 10px;
  }
  .md-p-5 {
    padding: 5px;
  }
  .md-pt-5 {
    padding-top: 5px;
  }
  .md-pl-5 {
    padding-left: 5px;
  }
  .md-pr-5 {
    padding-right: 5px;
  }
  .md-pb-5 {
    padding-bottom: 5px;
  }
  .md-m-5 {
    margin: 5px;
  }
  .md-mt-5 {
    margin-top: 5px;
  }
  .md-ml-5 {
    margin-left: 5px;
  }
  .md-mr-5 {
    margin-right: 5px;
  }
  .md-mb-5 {
    margin-bottom: 5px;
  }
  .md-p-0 {
    padding: 0px;
  }
  .md-pt-0 {
    padding-top: 0px;
  }
  .md-pl-0 {
    padding-left: 0px;
  }
  .md-pr-0 {
    padding-right: 0px;
  }
  .md-pb-0 {
    padding-bottom: 0px;
  }
  .md-m-0 {
    margin: 0px;
  }
  .md-mt-0 {
    margin-top: 0px;
  }
  .md-ml-0 {
    margin-left: 0px;
  }
  .md-mr-0 {
    margin-right: 0px;
  }
  .md-mb-0 {
    margin-bottom: 0px;
  }
}
@media (min-width: 1259px) {
  .lg-p-200 {
    padding: 200px;
  }
  .lg-pt-200 {
    padding-top: 200px;
  }
  .lg-pl-200 {
    padding-left: 200px;
  }
  .lg-pr-200 {
    padding-right: 200px;
  }
  .lg-pb-200 {
    padding-bottom: 200px;
  }
  .lg-m-200 {
    margin: 200px;
  }
  .lg-mt-200 {
    margin-top: 200px;
  }
  .lg-ml-200 {
    margin-left: 200px;
  }
  .lg-mr-200 {
    margin-right: 200px;
  }
  .lg-mb-200 {
    margin-bottom: 200px;
  }
  .lg-p-150 {
    padding: 150px;
  }
  .lg-pt-150 {
    padding-top: 150px;
  }
  .lg-pl-150 {
    padding-left: 150px;
  }
  .lg-pr-150 {
    padding-right: 150px;
  }
  .lg-pb-150 {
    padding-bottom: 150px;
  }
  .lg-m-150 {
    margin: 150px;
  }
  .lg-mt-150 {
    margin-top: 150px;
  }
  .lg-ml-150 {
    margin-left: 150px;
  }
  .lg-mr-150 {
    margin-right: 150px;
  }
  .lg-mb-150 {
    margin-bottom: 150px;
  }
  .lg-p-120 {
    padding: 120px;
  }
  .lg-pt-120 {
    padding-top: 120px;
  }
  .lg-pl-120 {
    padding-left: 120px;
  }
  .lg-pr-120 {
    padding-right: 120px;
  }
  .lg-pb-120 {
    padding-bottom: 120px;
  }
  .lg-m-120 {
    margin: 120px;
  }
  .lg-mt-120 {
    margin-top: 120px;
  }
  .lg-ml-120 {
    margin-left: 120px;
  }
  .lg-mr-120 {
    margin-right: 120px;
  }
  .lg-mb-120 {
    margin-bottom: 120px;
  }
  .lg-p-100 {
    padding: 100px;
  }
  .lg-pt-100 {
    padding-top: 100px;
  }
  .lg-pl-100 {
    padding-left: 100px;
  }
  .lg-pr-100 {
    padding-right: 100px;
  }
  .lg-pb-100 {
    padding-bottom: 100px;
  }
  .lg-m-100 {
    margin: 100px;
  }
  .lg-mt-100 {
    margin-top: 100px;
  }
  .lg-ml-100 {
    margin-left: 100px;
  }
  .lg-mr-100 {
    margin-right: 100px;
  }
  .lg-mb-100 {
    margin-bottom: 100px;
  }
  .lg-p-80 {
    padding: 80px;
  }
  .lg-pt-80 {
    padding-top: 80px;
  }
  .lg-pl-80 {
    padding-left: 80px;
  }
  .lg-pr-80 {
    padding-right: 80px;
  }
  .lg-pb-80 {
    padding-bottom: 80px;
  }
  .lg-m-80 {
    margin: 80px;
  }
  .lg-mt-80 {
    margin-top: 80px;
  }
  .lg-ml-80 {
    margin-left: 80px;
  }
  .lg-mr-80 {
    margin-right: 80px;
  }
  .lg-mb-80 {
    margin-bottom: 80px;
  }
  .lg-p-60 {
    padding: 60px;
  }
  .lg-pt-60 {
    padding-top: 60px;
  }
  .lg-pl-60 {
    padding-left: 60px;
  }
  .lg-pr-60 {
    padding-right: 60px;
  }
  .lg-pb-60 {
    padding-bottom: 60px;
  }
  .lg-m-60 {
    margin: 60px;
  }
  .lg-mt-60 {
    margin-top: 60px;
  }
  .lg-ml-60 {
    margin-left: 60px;
  }
  .lg-mr-60 {
    margin-right: 60px;
  }
  .lg-mb-60 {
    margin-bottom: 60px;
  }
  .lg-p-50 {
    padding: 50px;
  }
  .lg-pt-50 {
    padding-top: 50px;
  }
  .lg-pl-50 {
    padding-left: 50px;
  }
  .lg-pr-50 {
    padding-right: 50px;
  }
  .lg-pb-50 {
    padding-bottom: 50px;
  }
  .lg-m-50 {
    margin: 50px;
  }
  .lg-mt-50 {
    margin-top: 50px;
  }
  .lg-ml-50 {
    margin-left: 50px;
  }
  .lg-mr-50 {
    margin-right: 50px;
  }
  .lg-mb-50 {
    margin-bottom: 50px;
  }
  .lg-p-40 {
    padding: 40px;
  }
  .lg-pt-40 {
    padding-top: 40px;
  }
  .lg-pl-40 {
    padding-left: 40px;
  }
  .lg-pr-40 {
    padding-right: 40px;
  }
  .lg-pb-40 {
    padding-bottom: 40px;
  }
  .lg-m-40 {
    margin: 40px;
  }
  .lg-mt-40 {
    margin-top: 40px;
  }
  .lg-ml-40 {
    margin-left: 40px;
  }
  .lg-mr-40 {
    margin-right: 40px;
  }
  .lg-mb-40 {
    margin-bottom: 40px;
  }
  .lg-p-30 {
    padding: 30px;
  }
  .lg-pt-30 {
    padding-top: 30px;
  }
  .lg-pl-30 {
    padding-left: 30px;
  }
  .lg-pr-30 {
    padding-right: 30px;
  }
  .lg-pb-30 {
    padding-bottom: 30px;
  }
  .lg-m-30 {
    margin: 30px;
  }
  .lg-mt-30 {
    margin-top: 30px;
  }
  .lg-ml-30 {
    margin-left: 30px;
  }
  .lg-mr-30 {
    margin-right: 30px;
  }
  .lg-mb-30 {
    margin-bottom: 30px;
  }
  .lg-p-20 {
    padding: 20px;
  }
  .lg-pt-20 {
    padding-top: 20px;
  }
  .lg-pl-20 {
    padding-left: 20px;
  }
  .lg-pr-20 {
    padding-right: 20px;
  }
  .lg-pb-20 {
    padding-bottom: 20px;
  }
  .lg-m-20 {
    margin: 20px;
  }
  .lg-mt-20 {
    margin-top: 20px;
  }
  .lg-ml-20 {
    margin-left: 20px;
  }
  .lg-mr-20 {
    margin-right: 20px;
  }
  .lg-mb-20 {
    margin-bottom: 20px;
  }
  .lg-p-15 {
    padding: 15px;
  }
  .lg-pt-15 {
    padding-top: 15px;
  }
  .lg-pl-15 {
    padding-left: 15px;
  }
  .lg-pr-15 {
    padding-right: 15px;
  }
  .lg-pb-15 {
    padding-bottom: 15px;
  }
  .lg-m-15 {
    margin: 15px;
  }
  .lg-mt-15 {
    margin-top: 15px;
  }
  .lg-ml-15 {
    margin-left: 15px;
  }
  .lg-mr-15 {
    margin-right: 15px;
  }
  .lg-mb-15 {
    margin-bottom: 15px;
  }
  .lg-p-10 {
    padding: 10px;
  }
  .lg-pt-10 {
    padding-top: 10px;
  }
  .lg-pl-10 {
    padding-left: 10px;
  }
  .lg-pr-10 {
    padding-right: 10px;
  }
  .lg-pb-10 {
    padding-bottom: 10px;
  }
  .lg-m-10 {
    margin: 10px;
  }
  .lg-mt-10 {
    margin-top: 10px;
  }
  .lg-ml-10 {
    margin-left: 10px;
  }
  .lg-mr-10 {
    margin-right: 10px;
  }
  .lg-mb-10 {
    margin-bottom: 10px;
  }
  .lg-p-5 {
    padding: 5px;
  }
  .lg-pt-5 {
    padding-top: 5px;
  }
  .lg-pl-5 {
    padding-left: 5px;
  }
  .lg-pr-5 {
    padding-right: 5px;
  }
  .lg-pb-5 {
    padding-bottom: 5px;
  }
  .lg-m-5 {
    margin: 5px;
  }
  .lg-mt-5 {
    margin-top: 5px;
  }
  .lg-ml-5 {
    margin-left: 5px;
  }
  .lg-mr-5 {
    margin-right: 5px;
  }
  .lg-mb-5 {
    margin-bottom: 5px;
  }
  .lg-p-0 {
    padding: 0px;
  }
  .lg-pt-0 {
    padding-top: 0px;
  }
  .lg-pl-0 {
    padding-left: 0px;
  }
  .lg-pr-0 {
    padding-right: 0px;
  }
  .lg-pb-0 {
    padding-bottom: 0px;
  }
  .lg-m-0 {
    margin: 0px;
  }
  .lg-mt-0 {
    margin-top: 0px;
  }
  .lg-ml-0 {
    margin-left: 0px;
  }
  .lg-mr-0 {
    margin-right: 0px;
  }
  .lg-mb-0 {
    margin-bottom: 0px;
  }
}
@media (min-width: 1600px) {
  .xl-p-200 {
    padding: 200px;
  }
  .xl-pt-200 {
    padding-top: 200px;
  }
  .xl-pl-200 {
    padding-left: 200px;
  }
  .xl-pr-200 {
    padding-right: 200px;
  }
  .xl-pb-200 {
    padding-bottom: 200px;
  }
  .xl-m-200 {
    margin: 200px;
  }
  .xl-mt-200 {
    margin-top: 200px;
  }
  .xl-ml-200 {
    margin-left: 200px;
  }
  .xl-mr-200 {
    margin-right: 200px;
  }
  .xl-mb-200 {
    margin-bottom: 200px;
  }
  .xl-p-150 {
    padding: 150px;
  }
  .xl-pt-150 {
    padding-top: 150px;
  }
  .xl-pl-150 {
    padding-left: 150px;
  }
  .xl-pr-150 {
    padding-right: 150px;
  }
  .xl-pb-150 {
    padding-bottom: 150px;
  }
  .xl-m-150 {
    margin: 150px;
  }
  .xl-mt-150 {
    margin-top: 150px;
  }
  .xl-ml-150 {
    margin-left: 150px;
  }
  .xl-mr-150 {
    margin-right: 150px;
  }
  .xl-mb-150 {
    margin-bottom: 150px;
  }
  .xl-p-120 {
    padding: 120px;
  }
  .xl-pt-120 {
    padding-top: 120px;
  }
  .xl-pl-120 {
    padding-left: 120px;
  }
  .xl-pr-120 {
    padding-right: 120px;
  }
  .xl-pb-120 {
    padding-bottom: 120px;
  }
  .xl-m-120 {
    margin: 120px;
  }
  .xl-mt-120 {
    margin-top: 120px;
  }
  .xl-ml-120 {
    margin-left: 120px;
  }
  .xl-mr-120 {
    margin-right: 120px;
  }
  .xl-mb-120 {
    margin-bottom: 120px;
  }
  .xl-p-100 {
    padding: 100px;
  }
  .xl-pt-100 {
    padding-top: 100px;
  }
  .xl-pl-100 {
    padding-left: 100px;
  }
  .xl-pr-100 {
    padding-right: 100px;
  }
  .xl-pb-100 {
    padding-bottom: 100px;
  }
  .xl-m-100 {
    margin: 100px;
  }
  .xl-mt-100 {
    margin-top: 100px;
  }
  .xl-ml-100 {
    margin-left: 100px;
  }
  .xl-mr-100 {
    margin-right: 100px;
  }
  .xl-mb-100 {
    margin-bottom: 100px;
  }
  .xl-p-80 {
    padding: 80px;
  }
  .xl-pt-80 {
    padding-top: 80px;
  }
  .xl-pl-80 {
    padding-left: 80px;
  }
  .xl-pr-80 {
    padding-right: 80px;
  }
  .xl-pb-80 {
    padding-bottom: 80px;
  }
  .xl-m-80 {
    margin: 80px;
  }
  .xl-mt-80 {
    margin-top: 80px;
  }
  .xl-ml-80 {
    margin-left: 80px;
  }
  .xl-mr-80 {
    margin-right: 80px;
  }
  .xl-mb-80 {
    margin-bottom: 80px;
  }
  .xl-p-60 {
    padding: 60px;
  }
  .xl-pt-60 {
    padding-top: 60px;
  }
  .xl-pl-60 {
    padding-left: 60px;
  }
  .xl-pr-60 {
    padding-right: 60px;
  }
  .xl-pb-60 {
    padding-bottom: 60px;
  }
  .xl-m-60 {
    margin: 60px;
  }
  .xl-mt-60 {
    margin-top: 60px;
  }
  .xl-ml-60 {
    margin-left: 60px;
  }
  .xl-mr-60 {
    margin-right: 60px;
  }
  .xl-mb-60 {
    margin-bottom: 60px;
  }
  .xl-p-50 {
    padding: 50px;
  }
  .xl-pt-50 {
    padding-top: 50px;
  }
  .xl-pl-50 {
    padding-left: 50px;
  }
  .xl-pr-50 {
    padding-right: 50px;
  }
  .xl-pb-50 {
    padding-bottom: 50px;
  }
  .xl-m-50 {
    margin: 50px;
  }
  .xl-mt-50 {
    margin-top: 50px;
  }
  .xl-ml-50 {
    margin-left: 50px;
  }
  .xl-mr-50 {
    margin-right: 50px;
  }
  .xl-mb-50 {
    margin-bottom: 50px;
  }
  .xl-p-40 {
    padding: 40px;
  }
  .xl-pt-40 {
    padding-top: 40px;
  }
  .xl-pl-40 {
    padding-left: 40px;
  }
  .xl-pr-40 {
    padding-right: 40px;
  }
  .xl-pb-40 {
    padding-bottom: 40px;
  }
  .xl-m-40 {
    margin: 40px;
  }
  .xl-mt-40 {
    margin-top: 40px;
  }
  .xl-ml-40 {
    margin-left: 40px;
  }
  .xl-mr-40 {
    margin-right: 40px;
  }
  .xl-mb-40 {
    margin-bottom: 40px;
  }
  .xl-p-30 {
    padding: 30px;
  }
  .xl-pt-30 {
    padding-top: 30px;
  }
  .xl-pl-30 {
    padding-left: 30px;
  }
  .xl-pr-30 {
    padding-right: 30px;
  }
  .xl-pb-30 {
    padding-bottom: 30px;
  }
  .xl-m-30 {
    margin: 30px;
  }
  .xl-mt-30 {
    margin-top: 30px;
  }
  .xl-ml-30 {
    margin-left: 30px;
  }
  .xl-mr-30 {
    margin-right: 30px;
  }
  .xl-mb-30 {
    margin-bottom: 30px;
  }
  .xl-p-20 {
    padding: 20px;
  }
  .xl-pt-20 {
    padding-top: 20px;
  }
  .xl-pl-20 {
    padding-left: 20px;
  }
  .xl-pr-20 {
    padding-right: 20px;
  }
  .xl-pb-20 {
    padding-bottom: 20px;
  }
  .xl-m-20 {
    margin: 20px;
  }
  .xl-mt-20 {
    margin-top: 20px;
  }
  .xl-ml-20 {
    margin-left: 20px;
  }
  .xl-mr-20 {
    margin-right: 20px;
  }
  .xl-mb-20 {
    margin-bottom: 20px;
  }
  .xl-p-15 {
    padding: 15px;
  }
  .xl-pt-15 {
    padding-top: 15px;
  }
  .xl-pl-15 {
    padding-left: 15px;
  }
  .xl-pr-15 {
    padding-right: 15px;
  }
  .xl-pb-15 {
    padding-bottom: 15px;
  }
  .xl-m-15 {
    margin: 15px;
  }
  .xl-mt-15 {
    margin-top: 15px;
  }
  .xl-ml-15 {
    margin-left: 15px;
  }
  .xl-mr-15 {
    margin-right: 15px;
  }
  .xl-mb-15 {
    margin-bottom: 15px;
  }
  .xl-p-10 {
    padding: 10px;
  }
  .xl-pt-10 {
    padding-top: 10px;
  }
  .xl-pl-10 {
    padding-left: 10px;
  }
  .xl-pr-10 {
    padding-right: 10px;
  }
  .xl-pb-10 {
    padding-bottom: 10px;
  }
  .xl-m-10 {
    margin: 10px;
  }
  .xl-mt-10 {
    margin-top: 10px;
  }
  .xl-ml-10 {
    margin-left: 10px;
  }
  .xl-mr-10 {
    margin-right: 10px;
  }
  .xl-mb-10 {
    margin-bottom: 10px;
  }
  .xl-p-5 {
    padding: 5px;
  }
  .xl-pt-5 {
    padding-top: 5px;
  }
  .xl-pl-5 {
    padding-left: 5px;
  }
  .xl-pr-5 {
    padding-right: 5px;
  }
  .xl-pb-5 {
    padding-bottom: 5px;
  }
  .xl-m-5 {
    margin: 5px;
  }
  .xl-mt-5 {
    margin-top: 5px;
  }
  .xl-ml-5 {
    margin-left: 5px;
  }
  .xl-mr-5 {
    margin-right: 5px;
  }
  .xl-mb-5 {
    margin-bottom: 5px;
  }
  .xl-p-0 {
    padding: 0px;
  }
  .xl-pt-0 {
    padding-top: 0px;
  }
  .xl-pl-0 {
    padding-left: 0px;
  }
  .xl-pr-0 {
    padding-right: 0px;
  }
  .xl-pb-0 {
    padding-bottom: 0px;
  }
  .xl-m-0 {
    margin: 0px;
  }
  .xl-mt-0 {
    margin-top: 0px;
  }
  .xl-ml-0 {
    margin-left: 0px;
  }
  .xl-mr-0 {
    margin-right: 0px;
  }
  .xl-mb-0 {
    margin-bottom: 0px;
  }
}
/*

    Thin    "filson-soft"   100
    Light   "filson-soft"   200
    Book    "filson-soft"   300
    Regular "filson-soft"   400
    Medium  "filson-soft"   500

*/
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  font-family: 'filson-soft', 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #333333;
  line-height: 1.7em;
  font-weight: 300;
}
h1,
.h1 {
  font-family: 'Montserrat', sans-serif;
  color: #333333;
  font-size: 44px;
  line-height: 54px;
  font-weight: 900;
}
h2,
.h2 {
  font-family: 'Montserrat', sans-serif;
  color: #333333;
  font-size: 48px;
  line-height: 58px;
}
h3,
.h3 {
  font-family: 'Montserrat', sans-serif;
  color: #333333;
  font-size: 37px;
  line-height: 48px;
}
h4,
.h4 {
  font-family: 'Montserrat', sans-serif;
  color: #333333;
  font-size: 30px;
  line-height: 32px;
}
.font-xl {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
}
.ls2 {
  letter-spacing: 2px;
}
.font-lg {
  font-size: 30px;
  line-height: 45px;
  font-weight: 300;
}
.font-md {
  font-size: 24px;
  line-height: 33px;
  font-weight: 200;
}
.font-sm {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
}
.lh-small {
  line-height: 1.5;
}
.img-center {
  margin-left: auto;
  margin-right: auto;
}
.font-1 {
  font-family: 'filson-soft', 'Open Sans', Helvetica, Arial, sans-serif;
}
.font-2 {
  font-family: 'Montserrat', sans-serif;
}
a:link,
a:active,
a:visited {
  text-decoration: none;
}
a:focus,
a:hover {
  color: inherit;
  text-decoration: underline;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.text-justify {
  text-align: justify;
}
.nowrap {
  white-space: nowrap;
}
.absolutelink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.navbar-brand {
  height: auto;
}
.hoverhand:hover {
  cursor: pointer;
}
.tooltip-inner {
  font-size: 18px;
  max-width: 250px;
  padding: 10px;
  white-space: pre-wrap;
}
.popover {
  z-index: 960;
  width: 500px;
  max-width: 500px;
}
.popover img {
  max-width: 100%;
  width: 400px;
}
.semibold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.w-100 {
  width: 100%;
}
.w-max-100 {
  max-width: 100%;
}
.superbold {
  font-weight: 900;
}
.underline {
  text-decoration: underline;
}
.dropshadow {
  -webkit-box-shadow: 5px 5px 5px 0px rgba(120, 120, 120, 0.15);
  -moz-box-shadow: 5px 5px 5px 0px rgba(120, 120, 120, 0.15);
  box-shadow: 5px 5px 5px 0px rgba(120, 120, 120, 0.15);
}
.lightdropshadow {
  -webkit-box-shadow: 3px 3px 3px 0px rgba(120, 120, 120, 0.1);
  -moz-box-shadow: 3px 3px 3px 0px rgba(120, 120, 120, 0.1);
  box-shadow: 3px 3px 3px 0px rgba(120, 120, 120, 0.1);
}
.fullwidthseparator {
  height: 3px;
  background: #fafafa;
  width: 100%;
}
.full-height {
  height: 100%;
}
.inherit {
  color: inherit;
}
a.inherit {
  text-decoration: none;
}
.clean {
  text-decoration: none !important;
}
.clean:hover {
  text-decoration: underline !important;
}
.block {
  display: block;
}
.font12 {
  font-size: 12px;
}
.font13 {
  font-size: 13px;
}
.font14 {
  font-size: 14px;
}
.font15 {
  font-size: 15px;
}
.font16 {
  font-size: 14px !important;
  line-height: 20px;
}
.font17 {
  font-size: 17px;
  line-height: 24px;
}
.font18 {
  font-size: 16px;
}
.font20 {
  font-size: 18px;
}
.font22 {
  font-size: 22px;
  line-height: 32px;
}
.font23 {
  font-size: 23px;
  line-height: 32px;
}
.font24 {
  font-size: 24px;
  line-height: 36px;
}
.font25 {
  font-size: 25px;
}
.font26 {
  font-size: 25px;
}
.font28 {
  font-size: 28px;
  line-height: 38px;
}
.font32 {
  font-size: 32px;
}
.font40 {
  font-size: 40px;
}
.font48 {
  font-size: 48px;
  line-height: 1;
}
.font60 {
  font-size: 60px;
}
.font-weight-100 {
  font-weight: 100;
}
.font-weight-200 {
  font-weight: 200;
}
.font-weight-300 {
  font-weight: 300;
}
.font-weight-500 {
  font-weight: 500;
}
.vertical-middle,
.vertical-center {
  vertical-align: middle;
}
.hovershadow:hover {
  -webkit-box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.15);
}
.color-white {
  color: #fff;
}
.color-default {
  color: #333333;
}
.color-primary {
  color: #09bdc6;
}
.color-info {
  color: #cef2f4;
}
.color-danger {
  color: #086375;
}
.color-warning {
  color: #f6a400;
}
.color-success {
  color: #ef9008;
}
.color-green {
  color: #0dbc32;
}
.color-five {
  color: #33658a;
}
/* SPECIAL GUTTER SOLUTION*/
@media (min-width: 992px) {
  .left-no-gutter {
    padding-left: 0px;
  }
  .right-no-gutter {
    padding-right: 0px;
  }
  .right-double-gutter {
    padding-right: 40px;
  }
  .left-double-gutter {
    padding-left: 40px;
  }
  .larger-gutter-between .col-xs-4:not(:first-child),
  .larger-gutter-between .col-xs-4:not(:last-child) {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1260px) {
  .right-double-gutter {
    padding-right: 20px;
  }
  .left-double-gutter {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .left-no-gutter {
    padding-left: 15px;
    padding-right: 15px;
  }
  .right-no-gutter {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.relative {
  position: relative;
}
.stick-to-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
/* First h2 in a div should usually have no topmargin */
div h2:first-child {
  margin-top: 0;
}
/* centered columns styles */
.row-centered {
  text-align: center;
}
.navbar-centered .navbar-nav {
  display: inline-block;
  float: none;
  vertical-align: top;
}
.navbar-centered .navbar-collapse {
  text-align: center;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none !important;
}
/*
*   CSS file with Bootstrap grid classes for screens bigger than 1600px. Just add this file after the Bootstrap CSS file and you will be able to juse col-xl, col-xl-push, hidden-xl, etc.
*
*   Author: Marc van Nieuwenhuijzen
*   Company: WebVakman
*   Site: WebVakman.nl
*
*/
@media (min-width: 1200px) and (max-width: 1599px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block,
.visible-xl {
  display: none !important;
}
@media (min-width: 1600px) {
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12 {
    float: left;
  }
  .col-xl-12 {
    width: 100%;
  }
  .col-xl-11 {
    width: 91.66666667%;
  }
  .col-xl-10 {
    width: 83.33333333%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-8 {
    width: 66.66666667%;
  }
  .col-xl-7 {
    width: 58.33333333%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-5 {
    width: 41.66666667%;
  }
  .col-xl-4 {
    width: 33.33333333%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-2 {
    width: 16.66666667%;
  }
  .col-xl-1 {
    width: 8.33333333%;
  }
  .col-xl-pull-12 {
    right: 100%;
  }
  .col-xl-pull-11 {
    right: 91.66666667%;
  }
  .col-xl-pull-10 {
    right: 83.33333333%;
  }
  .col-xl-pull-9 {
    right: 75%;
  }
  .col-xl-pull-8 {
    right: 66.66666667%;
  }
  .col-xl-pull-7 {
    right: 58.33333333%;
  }
  .col-xl-pull-6 {
    right: 50%;
  }
  .col-xl-pull-5 {
    right: 41.66666667%;
  }
  .col-xl-pull-4 {
    right: 33.33333333%;
  }
  .col-xl-pull-3 {
    right: 25%;
  }
  .col-xl-pull-2 {
    right: 16.66666667%;
  }
  .col-xl-pull-1 {
    right: 8.33333333%;
  }
  .col-xl-pull-0 {
    right: auto;
  }
  .col-xl-push-12 {
    left: 100%;
  }
  .col-xl-push-11 {
    left: 91.66666667%;
  }
  .col-xl-push-10 {
    left: 83.33333333%;
  }
  .col-xl-push-9 {
    left: 75%;
  }
  .col-xl-push-8 {
    left: 66.66666667%;
  }
  .col-xl-push-7 {
    left: 58.33333333%;
  }
  .col-xl-push-6 {
    left: 50%;
  }
  .col-xl-push-5 {
    left: 41.66666667%;
  }
  .col-xl-push-4 {
    left: 33.33333333%;
  }
  .col-xl-push-3 {
    left: 25%;
  }
  .col-xl-push-2 {
    left: 16.66666667%;
  }
  .col-xl-push-1 {
    left: 8.33333333%;
  }
  .col-xl-push-0 {
    left: auto;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xl-offset-0 {
    margin-left: 0;
  }
  .visible-xl {
    display: block !important;
  }
  table.visible-xl {
    display: table;
  }
  tr.visible-xl {
    display: table-row !important;
  }
  th.visible-xl,
  td.visible-xl {
    display: table-cell !important;
  }
  .visible-xl-block {
    display: block !important;
  }
  .visible-xl-inline {
    display: inline !important;
  }
  .visible-xl-inline-block {
    display: inline-block !important;
  }
  .hidden-xl {
    display: none !important;
  }
}
@media (min-width: 2000px) {
  .col-xxl-1,
  .col-xxl-2,
  .col-xxl-3,
  .col-xxl-4,
  .col-xxl-5,
  .col-xxl-6,
  .col-xxl-7,
  .col-xxl-8,
  .col-xxl-9,
  .col-xxl-10,
  .col-xxl-11,
  .col-xxl-12 {
    float: left;
  }
  .col-xxl-12 {
    width: 100%;
  }
  .col-xxl-11 {
    width: 91.66666667%;
  }
  .col-xxl-10 {
    width: 83.33333333%;
  }
  .col-xxl-9 {
    width: 75%;
  }
  .col-xxl-8 {
    width: 66.66666667%;
  }
  .col-xxl-7 {
    width: 58.33333333%;
  }
  .col-xxl-6 {
    width: 50%;
  }
  .col-xxl-5 {
    width: 41.66666667%;
  }
  .col-xxl-4 {
    width: 33.33333333%;
  }
  .col-xxl-3 {
    width: 25%;
  }
  .col-xxl-2 {
    width: 16.66666667%;
  }
  .col-xxl-1 {
    width: 8.33333333%;
  }
  .col-xxl-pull-12 {
    right: 100%;
  }
  .col-xxl-pull-11 {
    right: 91.66666667%;
  }
  .col-xxl-pull-10 {
    right: 83.33333333%;
  }
  .col-xxl-pull-9 {
    right: 75%;
  }
  .col-xxl-pull-8 {
    right: 66.66666667%;
  }
  .col-xxl-pull-7 {
    right: 58.33333333%;
  }
  .col-xxl-pull-6 {
    right: 50%;
  }
  .col-xxl-pull-5 {
    right: 41.66666667%;
  }
  .col-xxl-pull-4 {
    right: 33.33333333%;
  }
  .col-xxl-pull-3 {
    right: 25%;
  }
  .col-xxl-pull-2 {
    right: 16.66666667%;
  }
  .col-xxl-pull-1 {
    right: 8.33333333%;
  }
  .col-xxl-pull-0 {
    right: auto;
  }
  .col-xxl-push-12 {
    left: 100%;
  }
  .col-xxl-push-11 {
    left: 91.66666667%;
  }
  .col-xxl-push-10 {
    left: 83.33333333%;
  }
  .col-xxl-push-9 {
    left: 75%;
  }
  .col-xxl-push-8 {
    left: 66.66666667%;
  }
  .col-xxl-push-7 {
    left: 58.33333333%;
  }
  .col-xxl-push-6 {
    left: 50%;
  }
  .col-xxl-push-5 {
    left: 41.66666667%;
  }
  .col-xxl-push-4 {
    left: 33.33333333%;
  }
  .col-xxl-push-3 {
    left: 25%;
  }
  .col-xxl-push-2 {
    left: 16.66666667%;
  }
  .col-xxl-push-1 {
    left: 8.33333333%;
  }
  .col-xxl-push-0 {
    left: auto;
  }
  .col-xxl-offset-12 {
    margin-left: 100%;
  }
  .col-xxl-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-xxl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xxl-offset-9 {
    margin-left: 75%;
  }
  .col-xxl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xxl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xxl-offset-6 {
    margin-left: 50%;
  }
  .col-xxl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xxl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xxl-offset-3 {
    margin-left: 25%;
  }
  .col-xxl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xxl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xxl-offset-0 {
    margin-left: 0;
  }
  .visible-xxl {
    display: block !important;
  }
  table.visible-xxl {
    display: table;
  }
  tr.visible-xxl {
    display: table-row !important;
  }
  th.visible-xxl,
  td.visible-xxl {
    display: table-cell !important;
  }
  .visible-xxl-block {
    display: block !important;
  }
  .visible-xxl-inline {
    display: inline !important;
  }
  .visible-xxl-inline-block {
    display: inline-block !important;
  }
  .hidden-xxl {
    display: none !important;
  }
}
.iconsprite {
  background-image: url("https://static.meewind.nl/icons-spritesheet-1.png");
  background-repeat: no-repeat;
  display: inline-block;
}
.iconsprite.iconsprite-lock {
  background-position: 0px -236px;
  width: 38px;
  height: 46px;
}
.iconsprite.iconsprite-envelope {
  background-position: -42px -236px;
  width: 49px;
  height: 33px;
}
.iconsprite.iconsprite-house {
  background-position: -96px -231px;
  width: 52px;
  height: 43px;
}
.iconsprite.iconsprite-megafone {
  background-position: -154px -238px;
  width: 56px;
  height: 51px;
}
.iconsprite.iconsprite-chatballoon {
  background-position: -1px -288px;
  width: 64px;
  height: 44px;
}
.iconsprite.iconsprite-downloads {
  background-position: -245px -225px;
  width: 81px;
  height: 75px;
}
.iconsprite.iconsprite-ebi {
  background-position: -90px -176px;
  width: 41px;
  height: 47px;
}
.iconsprite.iconsprite-adobe {
  background-position: -107px -135px;
  width: 29px;
  height: 30px;
}
.iconsprite.iconsprite-infopakket-offline {
  background-position: 0px -164px;
  width: 72px;
  height: 68px;
}
.iconsprite.iconsprite-infopakket-online {
  background-position: -247px -134px;
  width: 77px;
  height: 69px;
}
.iconsprite.iconsprite-ddma {
  background-position: -2px -2px;
  width: 35px;
  height: 35px;
}
.iconsprite.iconsprite-documents {
  background-position: -41px -2px;
  width: 61px;
  height: 71px;
}
.iconsprite.iconsprite-faq-min {
  background-position: -106px -2px;
  width: 26px;
  height: 26px;
}
.iconsprite.iconsprite-faq-plus {
  background-position: -136px -2px;
  width: 26px;
  height: 26px;
}
.iconsprite.iconsprite-fb {
  background-position: -166px -2px;
  width: 34px;
  height: 34px;
}
.iconsprite.iconsprite-focus-arrow {
  background-position: -106px -40px;
  width: 61px;
  height: 49px;
}
.iconsprite.iconsprite-gplus {
  background-position: -171px -40px;
  width: 34px;
  height: 34px;
}
.iconsprite.iconsprite-graph-blue {
  background-position: -2px -78px;
  width: 15px;
  height: 13px;
}
.iconsprite.iconsprite-graph-green {
  background-position: -21px -78px;
  width: 15px;
  height: 13px;
}
.iconsprite.iconsprite-how-blue {
  background-position: -40px -78px;
  width: 15px;
  height: 16px;
}
.iconsprite.iconsprite-how-green {
  background-position: -59px -78px;
  width: 15px;
  height: 16px;
}
.iconsprite.iconsprite-ideal {
  background-position: -78px -78px;
  width: 23px;
  height: 20px;
}
.iconsprite.iconsprite-info-blue {
  background-position: -171px -78px;
  width: 15px;
  height: 15px;
}
.iconsprite.iconsprite-info-green {
  background-position: -190px -78px;
  width: 15px;
  height: 15px;
}
.iconsprite.iconsprite-investments-green {
  background-position: -2px -97px;
  width: 10px;
  height: 16px;
}
.iconsprite.iconsprite-linkdin {
  background-position: -105px -97px;
  width: 34px;
  height: 34px;
}
.iconsprite.iconsprite-marker-blue {
  background-position: -143px -97px;
  width: 22px;
  height: 32px;
}
.iconsprite.iconsprite-marker-green {
  background-position: -169px -97px;
  width: 29px;
  height: 23px;
}
.iconsprite.iconsprite-marker-orange {
  background-position: -2px -124px;
  width: 38px;
  height: 39px;
}
.iconsprite.iconsprite-marker-red {
  background-position: -44px -124px;
  width: 34px;
  height: 34px;
}
.iconsprite.iconsprite-money {
  background-position: -143px -133px;
  width: 59px;
  height: 72px;
}
.iconsprite.iconsprite-money-small {
  background-position: -85px -135px;
  width: 16px;
  height: 14px;
}
.iconsprite.iconsprite-money-blue {
  background-position: -16px -97px;
  width: 15px;
  height: 15px;
}
.iconsprite.iconsprite-newsletter {
  background-position: -204px -2px;
  width: 20px;
  height: 20px;
}
.iconsprite.iconsprite-participeren-icon {
  background-position: -202px -97px;
  width: 23px;
  height: 20px;
}
.iconsprite.iconsprite-pdf {
  background-position: -209px -26px;
  width: 21px;
  height: 24px;
}
.iconsprite.iconsprite-people {
  background-position: -234px -2px;
  width: 92px;
  height: 70px;
}
.iconsprite.iconsprite-risk-blue {
  background-position: -209px -76px;
  width: 14px;
  height: 13px;
}
.iconsprite.iconsprite-risk-green {
  background-position: -227px -76px;
  width: 14px;
  height: 13px;
}
.iconsprite.iconsprite-search {
  background-position: -245px -76px;
  width: 33px;
  height: 33px;
}
.iconsprite.iconsprite-shareholders-blue {
  background-position: -282px -76px;
  width: 20px;
  height: 14px;
}
.iconsprite.iconsprite-twittr {
  background-position: -282px -94px;
  width: 34px;
  height: 34px;
}
.iconsprite.iconsprite-yt {
  background-position: -206px -132px;
  width: 34px;
  height: 34px;
}
.iconsprite.iconsprite-iw {
  background-position: -212px -204px;
  width: 24px;
  height: 18px;
}
.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}
.spinner-centered {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 20px;
}
.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ef9008;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.spinner-text {
  position: absolute;
  width: 250px;
  left: 50%;
  margin-left: -125px;
  top: 44px;
  text-align: center;
}
.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}
@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
hr {
  margin-top: 25px;
  margin-bottom: 25px;
  border: 0;
  border-top: 2px solid #cef2f4;
}
.wp-caption-text {
  font-style: italic;
  font-size: 75%;
  line-height: 1.6;
  margin-top: 10px;
}
.primary-color {
  color: #09bdc6;
}
.secondary-color {
  color: #ef9008;
}
.clean {
  color: inherit;
}
.row-center {
  text-align: center;
}
.icon-inline {
  position: relative !important;
  top: auto !important;
  left: auto !important;
}
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.col-center {
  display: inline-block;
  display: inline-flex;
  float: none;
  margin-left: -4px;
  margin-right: -4px;
}
.navbar-nav li a {
  padding: 10px 15px;
}
.footerlogo {
  max-width: 232px;
  height: auto;
}
.btn {
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  border-radius: 24px;
  font-weight: 300;
  font-size: 21px;
  padding: 6px 30px;
  border-color: transparent;
  border-width: 2px;
}
.btn.btn-clean {
  background: none;
  border: none;
  padding: 6px 10px;
}
.btn.btn-light {
  background: #09bdc6;
  border-color: #fff;
}
.btn.btn-light:hover {
  background: #fff;
  border-color: #09bdc6;
  color: #09bdc6;
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: right 20px;
  background-position-y: center;
  background-position: right 20px center;
  background-image: url('/img/arrow-primary.png');
}
.btn.btn-multiline {
  white-space: normal;
}
.btn.btn-arrow {
  background-image: url('/img/arrow.png');
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: right 20px;
  background-position-y: center;
  background-position: right 20px center;
  padding-right: 60px !important;
}
.btn.btn-arrow.arrow-primary {
  background-image: url('/img/arrow-primary.png');
}
.btn.btn-arrow-down {
  background-image: url('/img/arrow-down.png');
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: right 20px;
  background-position-y: center;
  background-position: right 20px center;
  padding-right: 60px !important;
}
.btn.btn-arrow-down.arrow-primary {
  background-image: url('/img/arrow-primary.png');
}
.btn.btn-arrow-back {
  background-image: url('/img/arrow-back.png');
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: left 20px;
  background-position-y: center;
  background-position: left 20px center;
  padding-left: 60px !important;
}
.btn.btn-arrow-back.arrow-primary {
  background-image: url('/img/arrow-back-primary.png');
}
.btn.btn-arrow-left {
  background-image: url('/img/arrow-back.png');
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: center;
  width: 35px;
  height: 35px;
  padding: 0;
}
.btn.btn-arrow-left.arrow-primary {
  background-image: url('/img/arrow-back-primary.png');
}
.btn.btn-arrow-right {
  background-image: url('/img/arrow.png');
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: center;
  width: 35px;
  height: 35px;
  padding: 0;
}
.btn.btn-arrow-right.arrow-primary {
  background-image: url('/img/arrow-primary.png');
}
.btn.btn-xl {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  font-size: 19px;
  padding: 8px 30px;
}
.btn.btn-danger {
  border-color: #fff;
}
.btn.btn-info {
  color: #09bdc6;
}
.btn.btn-round {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  font-size: 20px;
  padding: 10px;
  background-size: auto 45%;
  background-position-x: right 20px;
  background-position-y: center;
  background-position: right 20px center;
}
.btn.btn-bordered {
  border-color: #fff;
}
.btn.btn-white {
  background-color: #fff;
}
.btn.on-primary {
  border-color: #fff;
}
.btn.on-white {
  border-color: #09bdc6 !important;
}
.btn.active {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn.btn-primary.active,
.btn.btn-primary.active:focus,
.btn.btn-primary.active:hover {
  background: #fff;
  color: #09bdc6;
  border-color: #fff;
  box-shadow: none;
}
.btn.btn-primary:hover {
  background-color: #fff;
  color: #09bdc6;
  border-color: #09bdc6;
}
.btn.btn-primary:hover.btn-arrow {
  background-image: url('/img/arrow-primary.png');
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: right 20px;
  background-position-y: center;
  background-position: right 20px center;
}
.btn.btn-primary:hover.btn-arrow-back {
  background-image: url('/img/arrow-back-primary.png');
}
.btn.btn-success:hover {
  background-color: #fff !important;
  color: #ef9008;
  border-color: #ef9008 !important;
}
.btn.btn-success:hover.btn-arrow {
  background-image: url('/img/arrow-success.png');
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: right 20px;
  background-position-y: center;
  background-position: right 20px center;
}
.btn.btn-info:hover,
.btn.btn-info.active {
  background-color: #fff !important;
  color: #09bdc6;
  border-color: #09bdc6 !important;
}
.btn.btn-info:hover.btn-arrow,
.btn.btn-info.active.btn-arrow {
  background-image: url('/img/arrow-success.png');
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: right 20px;
  background-position-y: center;
  background-position: right 20px center;
}
.btn.btn-danger:hover {
  background-color: #fff !important;
  color: #086375;
  border-color: #086375 !important;
}
.btn.btn-danger:hover.btn-arrow {
  background-image: url('/img/arrow-danger.png');
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position-x: right 20px;
  background-position-y: center;
  background-position: right 20px center;
}
.btn.btn-danger:hover.btn-arrow-right {
  background-image: url('/img/arrow-danger.png');
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: center;
}
.btn.btn-danger:hover.btn-arrow-left {
  background-image: url('/img/arrow-back-danger.png');
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: center;
}
.btn.btn-danger:hover.btn-arrow-down {
  background-image: url('/img/arrow-down-danger.png');
}
.btn.btn-round-large {
  width: 136px;
  height: 136px;
  -webkit-border-radius: 68px;
  -moz-border-radius: 68px;
  -ms-border-radius: 68px;
  -o-border-radius: 68px;
  border-radius: 68px;
  border: 2px solid #fff;
  background-image: url('/img/arrow.png');
  background-position: bottom 16px center;
  background-repeat: no-repeat;
  background-size: 30px 26px;
  font-size: 18px;
  padding: 30px 11px;
  white-space: normal;
  text-align: center;
  color: #fff;
}
.btn.btn-round-large.btn-success.active,
.btn.btn-round-large.btn-success.active:focus,
.btn.btn-round-large.btn-success.active:hover,
.btn.btn-round-large.btn-success:hover {
  background: #fff;
  color: #ef9008;
  border-color: #ef9008;
  box-shadow: none;
  background-image: url('/img/arrow-success.png');
  background-position: bottom 16px center;
  background-repeat: no-repeat;
  background-size: 30px 26px;
}
.btn.btn-round-large.btn-success.inverted {
  background: #fff;
  color: #ef9008;
  border-color: #ef9008;
  box-shadow: none;
  background-image: url('/img/arrow-success.png');
  background-position: bottom 16px center;
  background-repeat: no-repeat;
  background-size: 30px 26px;
}
.btn.btn-round-large.btn-success.inverted.active,
.btn.btn-round-large.btn-success.inverted.active:focus,
.btn.btn-round-large.btn-success.inverted.active:hover,
.btn.btn-round-large.btn-success.inverted:hover {
  background: #ef9008 !important;
  background-image: url('/img/arrow.png') !important;
  background-position: bottom 16px center !important;
  background-repeat: no-repeat !important;
  background-size: 30px 26px !important;
  border: 2px solid #fff !important;
  color: #fff;
}
.btn.btn-round-large.btn-primary.active,
.btn.btn-round-large.btn-primary.active:focus,
.btn.btn-round-large.btn-primary.active:hover,
.btn.btn-round-large.btn-primary:hover {
  background: #fff;
  color: #09bdc6;
  border-color: #09bdc6;
  box-shadow: none;
  background-image: url('/img/arrow-primary.png');
  background-position: bottom 16px center;
  background-repeat: no-repeat;
  background-size: 30px 26px;
}
.btn.btn-round-large.btn-danger.active,
.btn.btn-round-large.btn-danger.active:focus,
.btn.btn-round-large.btn-danger.active:hover,
.btn.btn-round-large.btn-danger:hover {
  background: #fff;
  color: #086375;
  border-color: #086375;
  box-shadow: none;
  background-image: url('/img/arrow-danger.png');
  background-position: bottom 16px center;
  background-repeat: no-repeat;
  background-size: 30px 26px;
}
.check {
  height: 20px;
}
.well {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  margin-bottom: 30px;
}
.well.well-lg {
  padding-top: 30px;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 18px;
}
.well.well-info {
  background: #cef2f4;
}
.well.well-green {
  background: #15a087;
  color: #fff;
}
.well.well-green.info-box > p {
  font-size: 18px;
}
.well .h4 {
  font-size: 28px;
  line-height: 36px;
}
.well p {
  font-size: 19px;
  line-height: 29px;
}
.modal .modal-header,
.modal .modal-body,
.modal .modal-content,
.modal .modal-footer {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
}
.pagination {
  font-size: 20px;
  font-weight: 600;
}
.pagination h2 {
  display: none;
}
.pagination .page-numbers {
  margin: 0 10px;
}
.pagination .btn:focus {
  background: none;
  box-shadow: none;
}
.nav-tabs,
.nav-tabs.nav-justified {
  border-collapse: separate;
}
.nav-tabs li.active a,
.nav-tabs.nav-justified li.active a,
.nav-tabs li.active a:hover,
.nav-tabs.nav-justified li.active a:hover,
.nav-tabs li.active a:focus,
.nav-tabs.nav-justified li.active a:focus {
  background: #fff;
  border: 2px solid #fff;
  border-top: 0;
}
.nav-tabs li a,
.nav-tabs.nav-justified li a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background: #cef2f4;
  border-color: #fff;
  border-width: 2px;
  border-top: 0;
  color: #333333;
  font-weight: 500;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #09bdc6;
  width: 30px;
  height: 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.topbar {
  background: #cef2f4;
}
.topbar .navbar {
  min-height: 0;
  margin-bottom: 5px;
}
.topbar .navbar .navbar-btn {
  margin-top: -3.5px;
  margin-bottom: -3.5px;
  font-weight: 700;
}
.topbar .valuebar {
  background: #fff;
  padding: 0 10px;
  font-size: 12px;
  line-height: 28px;
}
.topbar .valuebar .fundvalue .green {
  color: #0dbc32;
}
.topbar .valuebar .fundvalue .red {
  color: red;
}
.topbar .valuebar .fundvalue .value {
  color: #265d7f;
}
.mainnavigation .navbar li a {
  font-size: 20px;
  font-weight: 700;
}
.mainnavigation .navbar .navbar-brand {
  padding: 0;
}
@media (min-width: 992px) {
  .mainnavigation .navbar-nav {
    margin-top: 14px;
  }
}
.mainlogo {
  height: 44px;
}
.trustpilot {
  background: #09bdc6;
}
.trustpilot .trustpilot-logo {
  margin: 0 auto 20px auto;
}
.trustpilot .widgetwrapper {
  width: 100%;
  float: left;
}
.styled-content h2,
.styled-content .h2 {
  font-weight: 700;
  margin-top: 30px;
  font-size: 30px;
  margin-bottom: 0;
}
.styled-content h3,
.styled-content .h3 {
  font-weight: 700;
  margin-top: 30px;
  font-size: 24px;
  margin-bottom: 0;
}
.styled-content h4,
.styled-content .h4 {
  font-weight: 700;
  margin-top: 30px;
  font-size: 24px;
  margin-bottom: 0;
}
.page-template-page-fonds-naderetoelichting .styled-content img {
  max-width: 100%;
  height: auto;
}
.page-template-page-fonds-naderetoelichting .styled-content h3,
.page-template-page-fonds-naderetoelichting .styled-content .h3 {
  color: #ef9008;
  font-size: 37px;
  margin-bottom: 15px;
  margin-top: 40px;
}
.page-template-page-fonds-naderetoelichting .styled-content h4,
.page-template-page-fonds-naderetoelichting .styled-content .h4 {
  margin-bottom: 10px;
}
.page-template-page-fonds-naderetoelichting .styled-content h5,
.page-template-page-fonds-naderetoelichting .styled-content .h5 {
  margin-top: 25px;
  color: #ef9008;
}
.page-groenbeleggen .styled-content h3,
.page-groenbeleggen .styled-content .h3 {
  font-weight: 700;
  margin-top: 30px;
  font-size: 24px;
  margin-bottom: 30px;
}
.page-groenbeleggen .styled-content h4,
.page-groenbeleggen .styled-content .h4 {
  font-weight: 700;
  margin-top: 30px;
  font-size: 24px;
  margin-bottom: 30px;
}
.blockquote {
  position: relative;
  padding: 35px 40px;
  font-size: 32px;
  line-height: 43px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #333333;
}
.blockquote .quote-open,
.blockquote .quote-close {
  position: absolute;
  width: 35px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.blockquote .quote-open {
  left: 0;
  top: 0;
  background-image: url('/img/quote-open.png');
}
.blockquote .quote-close {
  right: 0;
  bottom: 0;
  background-image: url('/img/quote-close.png');
}
.blockquote .quote-img-open,
.blockquote .quote-img-close {
  height: 45px;
  width: auto;
}
.blockquote .quote-img-open {
  vertical-align: baseline;
}
.blockquote .quote-img-close {
  vertical-align: top;
}
.news-overview,
.project-swiper {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.pace-done .news-overview,
.pace-done .project-swiper {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.newsitem {
  position: relative;
  padding-bottom: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: #cef2f4;
  margin-bottom: 30px;
}
.newsitem .image {
  width: 100%;
  padding-top: 59%;
  background-position: bottom center;
  background-size: cover;
}
.newsitem .logocontainer {
  position: relative;
  background: url('https://static.meewind.nl/indemediabg.jpg') 100% 100% #f8f8f8;
}
.newsitem .logocontainer img {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  max-width: 80%;
  max-height: 80%;
  width: auto;
}
.newsitem img {
  width: 100%;
  height: auto;
}
.newsitem .content {
  padding: 30px;
}
.newsitem .type {
  display: block;
  color: #09bdc6;
  font-size: 15px;
  font-weight: 300;
}
.newsitem .title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin-top: 10px;
}
.newsitem .text {
  display: block;
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
  margin-top: 20px;
}
.jqplot-series-canvas {
  border-top: 1px solid #ccc;
}
.faq .panel {
  position: relative;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #cef2f4;
  margin-bottom: 0;
}
.faq .panel .panel-heading {
  box-shadow: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.faq .panel .panel-heading .panel-title {
  display: block;
}
.faq .panel .panel-body {
  border: none !important;
  font-size: 16px;
}
.faq .panel .panel-title {
  padding-right: 30px;
}
.faq .panel .faq-icon {
  position: absolute;
  top: 10px;
  right: 0;
  width: 25px;
  height: 25px;
  background-size: 100% 100%;
}
.faq .panel .faq-icon2 {
  width: 25px;
  height: 25px;
  background-size: 60% 60%;
  -webkit-border-radius: 12.5px;
  -moz-border-radius: 12.5px;
  -ms-border-radius: 12.5px;
  -o-border-radius: 12.5px;
  border-radius: 12.5px;
  border: 1px solid #09bdc6;
  background-repeat: no-repeat;
  background-position: center center;
}
.faq .panel .panel-title > a .faq-icon {
  background-image: url('/img/faq-close.png');
}
.faq .panel .panel-title > a .faq-icon2 {
  background-image: url('/img/arrow-primary.png');
}
.faq .panel .panel-title > a.collapsed .faq-icon {
  background-image: url('/img/faq-plus.png');
}
.faq .panel .panel-title > a.collapsed .faq-icon2 {
  background-image: url('/img/arrow-primary.png');
}
.accordion .panel {
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #cef2f4;
  margin-bottom: 0;
}
.accordion .panel .panel-heading {
  box-shadow: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.accordion .panel .panel-heading .panel-title {
  display: block;
}
.accordion .panel .panel-body {
  border: none !important;
}
.accordion .panel .panel-body h3 {
  font-size: 20px;
  font-weight: bold;
}
.accordion .panel .faq-icon {
  width: 25px;
  height: 25px;
  background-size: 100% 100%;
}
.accordion .panel .panel-title > a .faq-icon {
  background-image: url('/img/faq-close.png');
}
.accordion .panel .panel-title > a.collapsed .faq-icon {
  background-image: url('/img/faq-plus.png');
}
.accordion.style-2 .panel {
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #cef2f4;
  margin-bottom: 0;
}
.accordion.style-2 .panel .panel-heading {
  box-shadow: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.accordion.style-2 .panel .panel-heading .panel-title {
  display: block;
}
.accordion.style-2 .panel .panel-body {
  border: none !important;
}
.accordion.style-2 .panel .panel-body h3 {
  font-size: 20px;
  font-weight: bold;
}
.accordion.style-2 .panel .faq-icon {
  width: 25px;
  height: 25px;
  background-size: 100% 100%;
}
.accordion.style-2 .panel .panel-title > a .faq-icon {
  background-image: url('/img/faq-close.png');
}
.accordion.style-2 .panel .panel-title > a.collapsed .faq-icon {
  background-image: url('/img/faq-plus.png');
}
.list-style-1 {
  padding: 0;
  list-style: none;
}
.list-style-1 li {
  position: relative;
  padding: 15px 31px 15px 0;
  margin: 0 0;
  border-bottom: 1px solid #cef2f4;
}
.list-style-1 li:last-child {
  border: none;
}
.list-style-1 li .iconsprite {
  margin-right: 15px;
}
.list-style-1 li a {
  color: inherit;
  font-weight: 600;
}
.list-style-1 li .btn {
  border-color: #09bdc6;
  position: absolute;
  top: 15px;
  right: 0;
}
.list-style-2 {
  border: none;
  padding: 20px 0;
  list-style: none;
}
.list-style-2 li {
  padding: 5px 0;
  margin: 0 30px 10px 30px;
}
.list-style-2 li .iconsprite {
  margin-right: 15px;
}
.list-style-2 li a {
  color: inherit;
  font-weight: 500;
}
.list-style-2 li.explanation {
  border-top: 2px solid #e4e4e4;
  padding: 10px 60px;
  margin: 20px 0 -20px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
}
.list-style-3 {
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-style-3 li {
  padding: 0;
  margin: 0;
  margin-left: 15px;
  padding-left: 30px;
  margin-bottom: 23px;
}
.list-style-3 li .fa {
  margin-left: -30px;
  margin-right: 4px;
  font-size: 21px;
  color: #ef9008;
}
.gform_wrapper .gfield_label {
  display: none;
}
/**
 * Vrijblijvend inschrijven
 */
#gform_wrapper_12 .gfield_label {
  display: none;
}
/**
 * Contact
 */
#gform_wrapper_1 .gfield_label {
  display: none;
}
.list-style-4 {
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-style-4 li {
  padding: 0;
  margin: 0;
  margin-left: 0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}
.tab-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 30px;
  margin-bottom: 30px;
}
.tab-content ul li {
  position: relative;
  padding: 15px 0;
  border-top: 1px solid #cef2f4;
  border-bottom: 1px solid #cef2f4;
  margin: 0;
  margin-bottom: -1px;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  border-collapse: collapsed;
  padding-left: 20px;
}
.tab-content ul li .fa {
  position: absolute;
  top: 17px;
  left: 0;
}
.tab-content .infonotice {
  padding-left: 20px;
  position: relative;
}
.tab-content .infonotice .fa {
  position: absolute;
  top: 4px;
  left: 0;
}
.tab-content .tab-pane h2:first-child,
.tab-content .tab-pane h3:first-child,
.tab-content .tab-pane h4:first-child {
  margin-top: 0;
}
.list-style-5 {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 30px;
  margin-bottom: 40px;
}
.list-style-5 li {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
}
.list-style-5 li .fa {
  margin-right: 15px;
}
.form-control,
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=url] {
  box-shadow: none;
}
.gform_fields {
  padding: 0;
  margin: 0;
}
.gform_fields li {
  padding: 0;
  margin: 0;
}
#loadingDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none;
}
#loadingDiv .spinner {
  position: absolute;
  top: 35%;
  left: 49%;
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}
#loadingDiv .spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#loadingDiv .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
@-moz-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
#loadingDiv .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-moz-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace-inactive {
  display: none;
}
.pace .pace-progress {
  background: #f7ae49;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}
.iwselection .wrapper {
  background: #fff;
  padding: 80px 30px 30px 30px;
}
.iwselection .wrapper .waarde {
  font-size: 29.5px;
  font-weight: 700;
}
.iwselection .wrapper .mutatie {
  font-size: 21.5px;
  font-weight: 300;
}
.iwselection .wrapper .fondsnaam {
  display: inline-block;
  margin-top: 40px;
  font-size: 19.5px;
  font-weight: 700;
  line-height: 27.5px;
}
.iwselection .wrapper span.arrow {
  display: none;
  position: absolute;
  left: 43%;
  bottom: 1px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  box-sizing: border-box;
  background: #fff;
  -webkit-box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.1);
}
.iwselection .wrapper span.arrow::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  box-sizing: border-box;
  border: 1em solid black;
  border-color: transparent transparent #fff #fff;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.1);
}
.iwselection .wrapper.selected span.arrow,
.iwselection .wrapper:hover span.arrow,
.iwselection .wrapper.active span.arrow {
  display: block;
}
.iwselection .wrapper:hover {
  cursor: pointer;
}
.iwpanels span.h2 {
  margin-top: 0;
  font-size: 28.5px;
  margin-bottom: 30px;
}
.iwpanels .fa-info-circle {
  color: #bdc3c7;
}
.iwpanels p {
  line-height: 31.5px;
  font-weight: 300;
  font-size: 18px;
}
.iwpanels span.h3 {
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 30px;
  line-height: 31.5px;
  font-size: 19.5px;
  font-weight: 700;
}
.iwpanels ul {
  padding-left: 20px;
}
.iwpanels ul li {
  line-height: 31.5px;
  font-weight: 300;
  font-size: 18px;
  padding-left: 15px;
}
.iwpanels .infonotice {
  margin-top: 31px;
  padding-left: 40px;
}
.iwpanels .infonotice a {
  text-decoration: underline;
}
.iwpanelgroup {
  background: #fdfcfc;
  margin-bottom: 15px;
}
.iwpanelgroup .panel-heading {
  display: block;
  width: 100%;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.iwpanelgroup .panel-heading .iconsprite {
  vertical-align: middle;
  float: right;
  background-position: -106px -2px;
  width: 26px;
  height: 26px;
}
.iwpanelgroup .panel-heading a {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  padding: 18px 18px 18px 30px;
  color: #ffffff;
  background: #f7ae49;
  text-decoration: none;
}
.iwpanelgroup .panel-heading .collapsed .iconsprite {
  background-position: -136px -2px;
  width: 26px;
  height: 26px;
}
.iwpanelgroup .panel-heading:hover {
  cursor: pointer;
}
.iwpanelgroup .panel-body {
  padding: 30px 30px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: none;
}
.iwpanelgroup .panel-body .bordered {
  border-right: 1px solid #d4d4d4;
}
.clickable {
  cursor: pointer;
}
.autocomplete-suggestions {
  border: none;
  background: #FFF;
  overflow: auto;
  max-height: 500px;
}
.autocomplete-suggestion {
  padding: 12px 20px;
  overflow: hidden;
}
.autocomplete-suggestion:hover {
  cursor: pointer;
}
.autocomplete-selected {
  background: #f9f9f9;
}
.autocomplete-suggestions strong {
  font-weight: normal;
  color: #3399FF;
}
.autocomplete-group {
  padding: 2px 5px;
}
.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .pad-tb-80 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .pad-top-80 {
    padding-top: 30px;
  }
  .mar-top-40 {
    margin-top: 20px;
  }
  .mar-bottom-40 {
    margin-bottom: 20px;
  }
  .fonds-tabs .nav-tabs > li {
    width: 100%;
  }
  .fonds-tabs .tab-content {
    padding: 10px;
  }
  .projecten .projectcontent .content {
    left: 10px;
    top: 10px;
    right: 0px;
    padding-right: 10px;
  }
  .list-style-2 li {
    margin-left: 0px;
    margin-right: 0px;
  }
  .fullwidthtextblock {
    padding: 10px;
  }
  .nowrap {
    white-space: normal;
    display: block;
  }
}
.back-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  padding: 16px;
}
.map_container {
  position: relative;
  width: 100%;
  padding-bottom: 23.25%;
  /* Ratio 16:9 ( 100%/16*9 = 56.25% ) */
}
.map_container .map_canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
.highcharts-markers div span {
  background: none;
  padding-top: 4px;
}
.voorinschrijvingRD2 .gform_wrapper span.gform_description {
  font-style: italic;
  font-size: 16px;
}
.voorinschrijvingRD2 .gform_heading .gform_title {
  text-align: center !important;
}
.voorinschrijvingRD2 .gform_body ul li {
  list-style: none !important;
}
.voorinschrijvingRD2 .gform_body .gfield_description {
  margin-left: 50% !important;
  width: 50% !important;
  padding-top: 0 !important;
}
.voorinschrijvingRD2 .gform_body input[type="text"],
.voorinschrijvingRD2 .gform_body input[type="number"],
.voorinschrijvingRD2 .gform_body input[type="email"],
.voorinschrijvingRD2 .gform_body input[type="phone"] {
  padding: 10px 10px !important;
}
.voorinschrijvingRD2 .gform_body .gform_fields .gfield_label {
  margin-top: 0 !important;
}
.voorinschrijvingRD2 .gform_body .amountinput input {
  width: 80px !important;
}
.voorinschrijvingRD2 .gform_body .amountinput .instruction {
  display: none !important;
}
.voorinschrijvingRD2 .gform_body .calculatedamount input {
  border: 0 !important;
  background: none !important;
  height: 22px !important;
  padding: 0 !important;
}
.voorinschrijvingRD2 .gform_validation_error .top_label input.medium,
.voorinschrijvingRD2 .gform_validation_error .top_label select.medium {
  width: 100% !important;
}
.voorinschrijvingRD2 .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.voorinschrijvingRD2 .gform_wrapper li.gfield_error textarea,
.voorinschrijvingRD2 .gform_wrapper li.gfield_error select {
  border: 1px solid red !important;
}
.voorinschrijvingRD2 .gform_wrapper li.gfield_error .gfield_label {
  color: red !important;
}
.container {
  /* was needed to override bootstrap, strange */
}
.container .jumbotron {
  padding: 24px 30px;
  margin-bottom: 50px;
  position: relative;
  background-image: url('/img/jumbotron-bg-1.png');
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: right;
  background-position: bottom right;
}
.container .jumbotron h1,
.container .jumbotron .h1,
.container .jumbotron h2,
.container .jumbotron .h2,
.container .jumbotron h3,
.container .jumbotron .h3,
.container .jumbotron h4,
.container .jumbotron .h4 {
  margin-top: 0;
}
.container .jumbotron .risicometer {
  position: absolute;
  right: -40px;
  bottom: -40px;
}
.container .jumbotron.style1 {
  background-color: #09bdc6;
  border-radius: 0;
  color: #fff;
}
.container .jumbotron.style1 h1,
.container .jumbotron.style1 .h1,
.container .jumbotron.style1 h2,
.container .jumbotron.style1 .h2,
.container .jumbotron.style1 h3,
.container .jumbotron.style1 .h3,
.container .jumbotron.style1 h4,
.container .jumbotron.style1 .h4,
.container .jumbotron.style1 p {
  color: #fff;
  line-height: 46px;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
}
.container .jumbotron.style2 {
  background-color: #086375;
  border-radius: 0;
  color: #fff;
  padding: 40px 50px;
}
.container .jumbotron.style2 h1,
.container .jumbotron.style2 .h1,
.container .jumbotron.style2 h2,
.container .jumbotron.style2 .h2,
.container .jumbotron.style2 h3,
.container .jumbotron.style2 .h3,
.container .jumbotron.style2 h4,
.container .jumbotron.style2 .h4,
.container .jumbotron.style2 p {
  color: #fff;
  line-height: 1em;
  font-weight: 600;
}
.container .jumbotron.style3 {
  background-image: url('/img/jumbotron-bg-3.png');
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: right;
  background-position: bottom right;
  background-color: #47c46c;
  border-radius: 0;
  color: #fff;
}
.container .jumbotron.style3 h1,
.container .jumbotron.style3 .h1,
.container .jumbotron.style3 h2,
.container .jumbotron.style3 .h2,
.container .jumbotron.style3 h3,
.container .jumbotron.style3 .h3,
.container .jumbotron.style3 h4,
.container .jumbotron.style3 .h4,
.container .jumbotron.style3 p {
  color: #fff;
  line-height: 46px;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
}
.container .jumbotron.style4 {
  background-color: #ef9008;
  border-radius: 0;
  color: #fff;
}
.container .jumbotron.style4 h1,
.container .jumbotron.style4 .h1,
.container .jumbotron.style4 h2,
.container .jumbotron.style4 .h2,
.container .jumbotron.style4 h3,
.container .jumbotron.style4 .h3,
.container .jumbotron.style4 h4,
.container .jumbotron.style4 .h4,
.container .jumbotron.style4 p {
  color: #fff;
  line-height: 46px;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
}
.container .jumbotron.style5 {
  background-color: #15a087;
  border-radius: 0;
  color: #fff;
}
.container .jumbotron.style5 h1,
.container .jumbotron.style5 .h1,
.container .jumbotron.style5 h2,
.container .jumbotron.style5 .h2,
.container .jumbotron.style5 h3,
.container .jumbotron.style5 .h3,
.container .jumbotron.style5 h4,
.container .jumbotron.style5 .h4,
.container .jumbotron.style5 p {
  color: #fff;
  line-height: 46px;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
}
.container .jumbotron.style6 {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #ef9008;
  border-radius: 0;
  color: #fff;
  background-image: url('/img/jumbotron-bg-5.png');
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: center;
  background-position: bottom center;
}
.container .jumbotron.style6 h1,
.container .jumbotron.style6 .h1,
.container .jumbotron.style6 h2,
.container .jumbotron.style6 .h2,
.container .jumbotron.style6 h3,
.container .jumbotron.style6 .h3,
.container .jumbotron.style6 h4,
.container .jumbotron.style6 .h4,
.container .jumbotron.style6 p {
  color: #fff;
  line-height: 46px;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
}
.container .jumbotron.sunoven {
  margin-right: 125px;
  margin-left: 125px;
  background: #ef9007;
  border-radius: 0;
  color: #fff;
}
.container .jumbotron.sunoven .absoluteimage {
  position: absolute;
  right: -135px;
  bottom: -32px;
}
.container .jumbotron.sunoven h1,
.container .jumbotron.sunoven .h1,
.container .jumbotron.sunoven h2,
.container .jumbotron.sunoven .h2,
.container .jumbotron.sunoven h3,
.container .jumbotron.sunoven .h3,
.container .jumbotron.sunoven h4,
.container .jumbotron.sunoven .h4 {
  color: #fff;
  line-height: 44px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 376px) {
  .container {
    /* was needed to override bootstrap, strange */
  }
  .container .jumbotron.sunoven .absoluteimage {
    right: 14px;
    bottom: 33px;
    width: 133px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .container {
    /* was needed to override bootstrap, strange */
  }
  .container .jumbotron.style1 {
    padding-right: 20px !important;
    text-align: center;
  }
  .container .jumbotron.style1 .risicometer {
    width: 150px;
    height: 150px;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 0;
    position: relative;
    display: block;
    margin: 0 auto 30px auto;
  }
  .container .jumbotron.sunoven {
    margin-left: 0;
    margin-right: 0;
  }
  .container .jumbotron.sunoven .h2 {
    line-height: 34px;
    font-size: 22px;
  }
  .container .jumbotron.sunoven .absoluteimage {
    right: 14px;
    bottom: 14px;
    width: 150px;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 820px) {
  .container {
    /* was needed to override bootstrap, strange */
  }
  .container .jumbotron {
    padding-right: 140px;
    margin-right: 40px;
    margin-left: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1040px) {
  .container {
    /* was needed to override bootstrap, strange */
  }
  .container .jumbotron {
    padding-right: 140px;
    margin-right: 40px;
    margin-left: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1310px) {
  .container {
    /* was needed to override bootstrap, strange */
  }
  .container .jumbotron {
    padding-right: 140px;
    margin-right: 40px;
    margin-left: 40px;
  }
}
.banners.swiper-container-horizontal > .swiper-pagination-bullets,
.banners.swiper-pagination-custom,
.banners .swiper-pagination-fraction {
  bottom: 0;
}
.banners .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 2px solid #eaeaea;
}
.banners .swiper-pagination .swiper-pagination-bullet-active {
  background: #086375;
}
.rrintro {
  background: #cef2f4;
  padding: 30px;
}
.page-nadere-toelichting .styled-content table tr td {
  padding: 8px;
}
.page-nadere-toelichting .styled-content table {
  margin-bottom: 40px;
}
.page-nadere-toelichting .styled-content .alignright,
.page-nadere-toelichting .styled-content .alignleft {
  margin-bottom: 30px;
}
.page-nadere-toelichting .styled-content .alignright {
  margin-left: 30px;
  margin-bottom: 30px;
}
.page-nadere-toelichting .styled-content .alignleft {
  margin-right: 30px;
  margin-bottom: 30px;
}
.fundblock {
  position: relative;
}
.fundblock .color-green .red {
  color: red;
}
.fundblock .thumbwrap img {
  min-width: 100%;
}
.fundblock .vignet2 {
  position: absolute;
  top: -10px;
  left: -10px;
  background-image: url('/wp-content/uploads/ribbon_3.png');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 122px;
  height: 122px;
  max-width: 100px;
  min-width: 50px;
}
.fundblock.style1 .vignet {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('/img/vignet.png');
  background-size: 100%;
  background-repeat: no-repeat;
  width: 20%;
  height: 30%;
  max-width: 100px;
  min-width: 50px;
}
.fundblock.style1 .header {
  background: #09bdc6;
  color: #fff;
  margin: 0;
  padding: 20px 10px;
  font-size: 18px;
}
.fundblock.style1 .contentwrap {
  padding: 20px 30px;
  background: #fff;
}
.fundblock.style1 p {
  margin: 0;
  padding: 0;
  line-height: 28px;
}
.fundblock.style1 hr {
  background: transparent;
  border-color: transparent;
  height: 1px;
}
.fundblock.style1 .fa-info {
  color: #b3b3b3;
}
.fundblock.style1 .yield {
  line-height: 1.4;
  font-size: 39px;
}
.fundblock.style1 .fa-info-circle {
  color: #09bdc6;
}
.fundblock.style1 hr {
  background: #09bdc6;
}
.fundblock.style2 .header {
  background: #ef9008;
  color: #fff;
  margin: 0;
  padding: 20px 10px;
  font-size: 18px;
}
.fundblock.style2 .contentwrap {
  padding: 20px 30px;
  background: #fff;
}
.fundblock.style2 .yield {
  color: #ef9008;
}
.fundblock.style2 .contentwrap {
  padding: 20px 30px;
}
.fundblock.style2 p {
  margin: 0;
  padding: 0;
  line-height: 28px;
}
.fundblock.style2 hr {
  background: transparent;
  border-color: transparent;
  height: 1px;
}
.fundblock.style2 .fa-info {
  color: #b3b3b3;
}
.fundblock.style2 .yield {
  line-height: 1.4;
  font-size: 39px;
}
.fundblock.style2 .fa-info-circle {
  color: #ef9008;
}
.fundblock.style2 hr {
  background: #ef9008;
}
.fundblock.style2 .btn {
  background-color: #ef9008;
}
.fundblock.style2 .btn:hover {
  background-color: #fff;
  color: #ef9008;
  border-color: #ef9008;
  background-image: url(/img/arrow-success.png);
}
.fundblock.style3 .header {
  background: #15a087;
  color: #fff;
  margin: 0;
  padding: 20px 10px;
  font-size: 18px;
}
.fundblock.style3 .contentwrap {
  padding: 20px 30px;
  background: #fff;
}
.fundblock.style3 .yield {
  color: #15a087;
}
.fundblock.style3 .contentwrap {
  padding: 20px 30px;
}
.fundblock.style3 p {
  margin: 0;
  padding: 0;
  line-height: 28px;
}
.fundblock.style3 hr {
  background: transparent;
  border-color: transparent;
  height: 1px;
}
.fundblock.style3 .fa-info {
  color: #b3b3b3;
}
.fundblock.style3 .yield {
  line-height: 1.4;
  font-size: 39px;
}
.fundblock.style3 .fa-info-circle {
  color: #15a087;
}
.fundblock.style3 hr {
  background: #15a087;
}
.fundblock.style3 .btn {
  background-color: #15a087;
}
.fundblock.style3 .btn:hover {
  background-color: #fff;
  color: #15a087;
  border-color: #15a087 !important;
  background-image: url(/img/arrow-style3.png);
}
.fundblock.landscape {
  background: #fff;
  padding-bottom: 30px;
}
.fundblock.landscape .left {
  float: left;
  width: 50%;
}
.fundblock.landscape .contentwrap {
  float: right;
  width: 50%;
}
.fundblock.landscape .fundblockfooter {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.risicomelding {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 70px;
  color: #fff;
  border: 1px solid #fff;
  background: #09bdc6;
  font-size: 14px !important;
  z-index: 999;
  max-width: 100%;
}
.risicomelding.risicometer {
  border: none;
  background: none;
}
.uspimage img {
  width: 180px;
}
.risicomelding.focus,
.risicomelding:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}
#back-to-top {
  padding: 0;
}
#back-to-top:hover {
  color: #ef9008;
}
@media (max-width: 768px) {
  .risicomelding {
    right: 20px;
    height: auto !important;
    width: 120px;
    line-height: 1.6em !important;
    font-size: 13px !important;
    white-space: normal;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
  }
  .risicomelding img {
    width: 100%;
  }
}
.overlijdenblocks {
  background: #cef2f4;
}
.fundoverview {
  background: #cef2f4;
}
.fundoverview > .container {
  margin-top: -60px;
}
.page-fund-single.fund-style1 .tab-background {
  background: #cef2f4;
}
.page-fund-single.fund-style1 .horizontal-list li {
  border-right: 1px solid #fff;
}
.page-fund-single.fund-style1 .horizontal-list li .yield {
  color: #fff;
}
.page-fund-single.fund-style1 .nav-tabs li a,
.page-fund-single.fund-style1 .nav-tabs.nav-justified li a {
  background: #cef2f4;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 19px;
}
.page-fund-single.fund-style1 .nav-tabs li.active a,
.page-fund-single.fund-style1 .nav-tabs.nav-justified li.active a {
  background: #fff;
}
.page-fund-single.fund-style1 .factsandfigures {
  background: #09bdc6;
}
.page-fund-single.fund-style1 .fund-header .fund-overlay {
  background: #09bdc6;
  color: #fff;
}
.page-fund-single.fund-style1 .check {
  display: block;
  margin: 0 auto;
  height: 20px;
  width: 26px;
  margin-bottom: 5px;
  background: url('/img/check-2-white.png') no-repeat center center;
  background-size: 100%;
}
.page-fund-single.fund-style2 .tab-background {
  background: #ffeed7;
}
.page-fund-single.fund-style2 .horizontal-list li {
  border-right: 1px solid #fff;
}
.page-fund-single.fund-style2 .horizontal-list li .yield {
  color: #fff;
}
.page-fund-single.fund-style2 .nav-tabs li a,
.page-fund-single.fund-style2 .nav-tabs.nav-justified li a {
  background: #ffeed7;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 19px;
}
.page-fund-single.fund-style2 .nav-tabs li.active a,
.page-fund-single.fund-style2 .nav-tabs.nav-justified li.active a {
  background: #fff;
}
.page-fund-single.fund-style2 .factsandfigures {
  background: #ef9008;
}
.page-fund-single.fund-style2 .fund-header .fund-overlay {
  background: #ef9008;
  color: #fff;
}
.page-fund-single.fund-style2 .check {
  display: block;
  margin: 0 auto;
  height: 20px;
  width: 26px;
  margin-bottom: 5px;
  background: url('/img/check-2-white.png') no-repeat center center;
  background-size: 100%;
}
.page-fund-single.fund-style3 .tab-background {
  background: #8bcec2;
}
.page-fund-single.fund-style3 .horizontal-list li {
  border-right: 1px solid #fff;
}
.page-fund-single.fund-style3 .horizontal-list li .yield {
  color: #fff;
}
.page-fund-single.fund-style3 .nav-tabs li a,
.page-fund-single.fund-style3 .nav-tabs.nav-justified li a {
  background: #8bcec2;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 19px;
}
.page-fund-single.fund-style3 .nav-tabs li.active a,
.page-fund-single.fund-style3 .nav-tabs.nav-justified li.active a {
  background: #fff;
}
.page-fund-single.fund-style3 .factsandfigures {
  background: #15a087;
}
.page-fund-single.fund-style3 .fund-header .fund-overlay {
  background: #15a087;
  color: #fff;
}
.page-fund-single.fund-style3 .check {
  display: block;
  margin: 0 auto;
  height: 20px;
  width: 26px;
  margin-bottom: 5px;
  background: url('/img/check-2-white.png') no-repeat center center;
  background-size: 100%;
}
.page-fund-single .fund-header {
  background-size: cover;
  background-position: top center;
  padding-top: 10%;
  padding-bottom: 20px;
}
.page-fund-single .fund-header .fund-overlay {
  background: #09bdc6;
  display: table;
  width: 100%;
  color: #fff;
}
.page-fund-single .fund-header .fund-overlay .leftcol,
.page-fund-single .fund-header .fund-overlay .rightcol {
  display: table-cell;
  padding: 0px;
  vertical-align: bottom;
}
.page-fund-single .fund-header .fund-overlay .leftcol .horizontal-list li {
  width: 25%;
}
.page-fund-single .fund-header .fund-overlay .leftcol .horizontal-list li:first-child {
  padding-left: 0;
}
.page-fund-single .fund-header .fund-overlay .rightcol {
  padding-left: 40px;
  text-align: right;
}
.page-fund-single .fund-header .fund-overlay .rightcol.two-buttons {
  padding-left: 10px;
  width: 330px;
}
.page-fund-single .fund-header .fund-overlay .rightcol.two-buttons a:first-child img {
  margin-left: 0;
}
.page-fund-single .fund-header .fund-overlay .rightcol a {
  display: inline-block;
}
.page-fund-single .fund-header .fund-overlay .rightcol a img {
  height: 150px;
  margin-left: 10px;
  display: inline-block;
}
.page-fund-single .horizontal-list {
  display: table;
}
.page-fund-single .horizontal-list.full {
  width: 100%;
}
.page-fund-single .horizontal-list li {
  display: table-cell;
  border-right: 1px solid #fff;
  vertical-align: middle;
  text-align: center;
  font-size: 15px;
  line-height: 22px;
}
.page-fund-single .horizontal-list li:last-child {
  border-right: none;
}
.page-fund-single .tab-content .h4,
.page-fund-single .tab-content h4 {
  font-weight: 600;
  font-size: 18px;
  margin: 30px 0 0 0;
  line-height: 25px;
}
.page-fund-single .tab-content p.intro {
  font-size: 23px;
  line-height: 32px;
  margin-bottom: 60px;
}
.page-fund-single .tab-content p {
  line-height: 25px;
}
.page-fund-single .tab-content .infonotice {
  margin-top: 31px;
}
.page-fund-single .tab-content .infonotice .fa {
  margin-right: 10px;
}
.page-fund-single .tab-content .infonotice a {
  text-decoration: underline;
}
.fund-template-default .container-fluid.md-mt-60 {
  margin-top: 0;
}
.page-over-ons-aanpak h3,
.page-over-ons-aanpak .h3 {
  font-weight: 700;
}
.meewind-team .h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  display: block;
}
.meewind-team .h2 {
  margin-top: 0;
  display: block;
  font-size: 28px;
  font-weight: 300;
}
.meewind-team .team-block {
  min-height: 692px;
  margin-bottom: 80px;
}
.meewind-team .team-block img {
  width: 100%;
}
.meewind-team .team-block.small {
  min-height: 0;
  margin-bottom: 30px;
}
.meewind-team .team-block.small .content .name {
  font-size: 18px;
}
.meewind-team .team-block.small .imgwrap {
  position: relative;
  background: url('https://meewind.nl/wp-content/themes/meewindv6/css/../img/teambg.png') no-repeat;
  background-size: cover;
  height: 160px;
  width: 100%;
}
.meewind-team .team-block.small .imgwrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: 55%;
  margin: auto;
  width: auto;
  height: auto;
}
.meewind-team .team-block .content {
  padding: 20px 30px;
}
.meewind-team .team-block .content span {
  display: block;
  font-size: 16px;
}
.meewind-team .team-block .content .name {
  font-size: 22px;
  font-weight: 700;
}
.meewind-team .team-block .content .function {
  display: inline-block;
  margin-top: 10px;
}
.meewind-team .team-block .content .phone {
  display: inline-block;
  margin-top: 10px;
}
.meewind-team .team-block .content .email {
  display: inline-block;
  margin-top: 10px;
}
.meewind-team .team-block .content .separator {
  width: 30px;
  height: 1px;
  background: #4c4c4c;
  border-top: 1px solid #b1b1b1;
  margin-top: 20px;
  margin-bottom: 30px;
}
.table.style1 {
  font-size: 17px;
  line-height: 30px;
}
.table.style1 th {
  border-top: 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}
.table.style1 th:first-child {
  padding-left: 0;
}
.table.style1 th:last-child {
  border-right: 0;
}
.table.style1 td {
  border-top: 0;
  border-bottom: 0;
  border-right: 1px solid #ddd;
  padding: 15px 20px;
}
.table.style1 td:first-child {
  padding-left: 0;
}
.table.style1 td:last-child {
  border-right: 0;
}
.page-project-overview.fund-style1 h4 span {
  color: #09bdc6;
}
.page-project-overview.fund-style1 .list .background:before {
  background-color: #09bdc6;
}
.page-project-overview.fund-style2 h4 span {
  color: #ef9008;
}
.page-project-overview.fund-style2 .list .background:before {
  background-color: #ef9008;
}
.page-project-overview.fund-style3 h4 span {
  color: #15a087;
}
.page-project-overview.fund-style3 .projectoverview.map .background:before {
  background-color: #15a087;
}
.page-project-overview.fund-style3 .btn-primary {
  background-color: #15a087;
  border-color: #fff;
}
.page-project-overview.fund-style3 .btn-primary.active {
  background-color: #fff;
  color: #15a087;
}
.page-project-overview.fund-style3 .btn-primary.active:hover {
  color: #15a087;
  border-color: #15a087;
}
.page-project-overview.fund-style3 .btn-primary:hover {
  color: #15a087;
  border-color: #fff;
  background-color: #fff;
}
.page-project-overview.fund-style3 .list .background:before {
  background-color: #15a087;
}
.projectoverview .background {
  position: relative;
}
.projectoverview .background:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 15px;
  right: 15px;
  display: block;
  height: 350px;
  content: "";
}
.projectoverview.list .background:before {
  background-image: url('/img/windmolens.png');
  background-position: right bottom;
  background-repeat: no-repeat;
}
.projectoverview.map .background:before {
  background-image: url('/img/windmolens.png');
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: #ef9008;
}
.projectoverview #map {
  width: 100%;
  height: 70vh;
  max-height: 800px;
}
.projectoverview .mapPanel {
  background: #fff;
  padding: 20px 40px;
  height: 70vh;
  max-height: 800px;
  overflow: auto;
}
.projectoverview .project {
  margin-bottom: 30px;
  background: #cef2f4;
}
.projectoverview .project .content {
  font-size: 16px;
  line-height: 22px;
  padding: 10px 20px;
}
.projectoverview .project .content h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}
.projectoverview .project .content .hashtag {
  font-weight: 700;
}
.page-project-single .projectsidebar .block {
  background: #cef2f4;
  padding: 20px 30px;
  margin-bottom: 30px;
}
.page-project-single.style3 .projectoverview.map .h4 {
  color: #fff;
}
.page-project-single.style3 .color-success {
  color: #15a087;
}
.page-project-single.style3 .projectoverview.map .background:before {
  background-color: #15a087;
}
.page-nieuws-single .image {
  width: 100%;
  height: auto;
}
.page-nieuws-single .sidebar .block {
  background: #cef2f4;
  padding: 20px 30px;
  margin-bottom: 30px;
}
.page-nieuws-single .sidebar .block.orange {
  background-color: #f8bb40;
  color: #fff;
}
.page-nieuws-single .sidebar .block.orange p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 100;
}
.page-nieuws-single .sidebar .block.orange .btn.btn-success {
  background-image: url(/img/arrow-success.png);
  background-position: bottom 8px right 10px;
  background-repeat: no-repeat;
  background-size: 17px 16px;
  padding-right: 38px;
  font-size: 14px;
  color: #f8bb40;
  background-color: #fff;
}
.page-nieuws-single .sidebar .block.groen {
  background-color: #15a087;
  color: #fff;
}
.page-nieuws-single .sidebar .block.groen p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 100;
}
.page-nieuws-single .sidebar .block.groen .btn.btn-success {
  background-image: url(/img/arrow-style3.png);
  background-position: bottom 8px right 10px;
  background-repeat: no-repeat;
  background-size: 17px 16px;
  padding-right: 38px;
  font-size: 14px;
  color: #15a087;
  background-color: #fff;
}
.uspcontainer {
  font-weight: 500;
  font-size: 18px;
}
.postlink {
  display: block;
  position: fixed;
  top: 50%;
  width: 44px;
  height: 44px;
  background-position-x: center;
  background-position-y: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-color: #cef2f4;
}
.postlink.next {
  -webkit-border-top-left-radius: 22px;
  -moz-border-top-left-radius: 22px;
  -ms-border-top-left-radius: 22px;
  -o-border-top-left-radius: 22px;
  border-top-left-radius: 22px;
  -webkit-border-bottom-left-radius: 22px;
  -moz-border-bottom-left-radius: 22px;
  -ms-border-bottom-left-radius: 22px;
  -o-border-bottom-left-radius: 22px;
  border-bottom-left-radius: 22px;
  background-image: url('/img/arrow.png');
  right: 0;
}
.postlink.previous {
  -webkit-border-top-right-radius: 22px;
  -moz-border-top-right-radius: 22px;
  -ms-border-top-right-radius: 22px;
  -o-border-top-right-radius: 22px;
  border-top-right-radius: 22px;
  -webkit-border-bottom-right-radius: 22px;
  -moz-border-bottom-right-radius: 22px;
  -ms-border-bottom-right-radius: 22px;
  -o-border-bottom-right-radius: 22px;
  border-bottom-right-radius: 22px;
  background-image: url('/img/arrow-back.png');
  left: 0;
}
.banner {
  background: #09bdc6;
  color: #fff;
}
.banner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.banner ul li {
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
  position: relative;
  padding-left: 35px;
}
.banner ul li i.fa {
  color: #086375;
  position: absolute;
  left: 0;
  top: -5px;
}
.banner.minimalistic {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  line-height: 42px;
  font-weight: 600;
  background: #ef9008;
}
.banner.minimalistic .container {
  background: url('/img/bg_windmolens_etf.png') no-repeat;
  background-position: center bottom;
  background-size: 100%;
}
.banner.minimalistic img {
  vertical-align: baseline;
  display: inline-block;
  margin-left: 10px;
}
ul.organisationlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.organisationlist li {
  text-align: center;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 20px;
}
ul.organisationlist li .image {
  padding: 0 20px;
}
ul.organisationlist li .overlay {
  opacity: 0;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: #09bdc6;
  color: #fff;
  padding: 40px 10px;
}
ul.organisationlist li:hover .overlay {
  opacity: 1;
}
ul.organisationlist li .btn.btn-xl {
  padding: 8px 20px;
  font-size: 18px;
  padding-right: 50px !important;
}
.factsandfigures {
  background: #ef9008;
}
.factsandfigures .content {
  padding: 20px 30px 20px 30px;
}
.factsandfigures .content .h3 {
  font-weight: 600;
}
.factsandfigures .content ul {
  list-style-type: disc;
  padding-left: 23px;
}
.factsandfigures .content ul li {
  border: none;
  padding: 11px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.factsandfigures.etf {
  background: #ef9008;
}
.factsandfigures.etf .content {
  padding: 0px 30px 20px 30px;
}
.factsandfigures.etf .content p {
  font-size: 16px;
  line-height: 25px;
}
.factsandfigures.etf .content .h3 {
  font-weight: 700;
  margin-top: -7px;
  margin-bottom: 10px;
}
.factsandfigures.etf .content hr {
  border: none;
  margin-top: 16px;
  border-top: 4px solid #36b8c3;
}
.factsandfigures.etf .content ul {
  list-style: none;
  padding-left: 0;
}
.factsandfigures.etf .content ul li {
  border: none;
  padding: 11px 11px 11px 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  background: #ceeff2;
  margin-bottom: 10px;
  position: relative;
}
.factsandfigures.etf .content ul li:before {
  position: absolute;
  top: 17px;
  left: 13px;
  content: "";
  background: url('/img/check2.png');
  background-size: contain;
  width: 16px;
  height: 12px;
}
ul.styled.check {
  list-style: none;
  padding-left: 0;
  height: auto;
  margin-bottom: 30px;
}
ul.styled.check li {
  border: none;
  padding-left: 40px;
  margin-bottom: 12px;
  position: relative;
}
ul.styled.check li:before {
  position: absolute;
  top: 10px;
  left: 0px;
  content: "";
  background: url('/img/check2.png');
  background-size: contain;
  width: 20px;
  height: 15px;
}
ul.styled.dotted {
  list-style: none;
  padding-left: 0;
  height: auto;
  margin-bottom: 30px;
}
ul.styled.dotted li {
  border: none;
  padding-left: 40px;
  margin-bottom: 12px;
  position: relative;
}
ul.styled.dotted li:before {
  position: absolute;
  top: 0px;
  left: 0;
  color: #09bdc6;
  content: "\2022";
  width: 16px;
  height: 12px;
}
.page-fund-single.fund-style2 .factsandfigures.etf {
  background: none;
}
.page-fund-single.fund-style2 .factsandfigures.etf .h3 {
  color: #09bdc6;
}
ul.dash {
  list-style: none;
  margin-left: 0;
  padding-left: 1em;
}
ul.dash li {
  line-height: 1.6em;
}
ul.dash > li:before {
  display: inline-block;
  content: "-";
  width: 1em;
  margin-left: -1em;
}
.fundbg {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
  padding-bottom: 40px;
}
.fundbg:before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 83%;
  content: "";
  background-color: #cef2f4;
}
.project-swiper {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}
.project-swiper:before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 73%;
  content: "";
  background-color: #09bdc6;
}
.project-swiper .swiper-footer {
  text-align: center;
  margin-top: 60px;
}
.project-swiper .swiper-footer .swiper-button-next,
.project-swiper .swiper-footer .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  display: inline-block;
  margin: 0 20px;
}
.project-swiper .swiper-slide {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.project-swiper .swiper-slide.swiper-slide-active {
  margin-top: -40px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.project-swiper .project {
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.project-swiper .project .content {
  font-size: 16px;
  line-height: 22px;
  padding: 10px 20px;
}
.project-swiper .project .content h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}
.project-swiper .project .content .hashtag {
  font-weight: 700;
}
.project-swiper.style2:before {
  background-color: #cef2f4;
}
.history-row {
  background: url('/img/illustrations/illustration-6.png') bottom left no-repeat;
  border-bottom: 2px solid #f6a400;
}
.history-container .history-swiper {
  border: 2px solid #f6a400;
  padding: 30px 40px;
  background: #fff;
}
.history-container .history-swiper .content a {
  font-weight: bold;
}
.history-container .swiper-pagination {
  position: relative;
  display: table;
  width: 100%;
}
.history-container .swiper-pagination .swiper-pagination-bullet {
  display: table-cell;
  background: none;
  padding-bottom: 30px;
  padding-top: 140px;
  opacity: 1;
  position: relative;
}
.history-container .swiper-pagination .swiper-pagination-bullet .title {
  display: none;
  height: auto;
  max-width: 140px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  padding: 6px 8px;
  left: 50%;
  top: 70px;
  font-weight: 500;
  line-height: 17px;
  font-size: 16px;
  opacity: 0;
}
.history-container .swiper-pagination .swiper-pagination-bullet:hover .title {
  display: block;
  opacity: 1;
}
.history-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .title {
  display: block;
  opacity: 1;
}
.history-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .wrapper {
  background: #fff;
  color: #f6a400;
  border: 2px solid #f6a400;
}
.history-container .swiper-pagination .swiper-pagination-bullet .wrapper {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  margin: 10px auto 0 auto;
  color: #fff;
  background: #f6a400;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
}
.history-container .swiper-pagination .swiper-pagination-bullet .wrapper:after {
  position: absolute;
  content: " ";
  left: 50%;
  top: 100%;
  width: 1px;
  background: #f6a400;
  height: 32px;
}
.history-container .swiper-button-next,
.history-container .swiper-button-prev {
  background-color: #f6a400;
  top: 30%;
  width: 35px !important;
  height: 35px !important;
}
.history-container .swiper-button-next:hover,
.history-container .swiper-button-prev:hover {
  border-color: #f6a400 !important;
}
.history-container .swiper-button-prev:hover {
  background-image: url(/img/arrow-success-left.png) !important;
}
.history-container .swiper-button-next:hover {
  background-image: url(/img/arrow-success.png) !important;
}
.history-container .swiper-button-next {
  right: -20px;
  -webkit-border-top-left-radius: 0;
  -moz-border-top-left-radius: 0;
  -ms-border-top-left-radius: 0;
  -o-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-bottom-left-radius: 0;
  -ms-border-bottom-left-radius: 0;
  -o-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-color: #f6a400;
}
.history-container .swiper-button-prev {
  left: -20px;
  -webkit-border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
  -ms-border-top-right-radius: 0;
  -o-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
  -ms-border-bottom-right-radius: 0;
  -o-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-color: #f6a400;
}
.searchwrap {
  position: relative;
}
.searchwrap .searchform {
  position: absolute;
  z-index: 10;
  background: #cef2f4;
  right: 100%;
  top: -8px;
  width: 400px;
}
.searchwrap .searchform form input {
  width: 100%;
  padding: 5px 20px;
  background: #cef2f4;
  border: 0;
  border-bottom: 2px solid #086375;
}
.searchwrap .searchform form input:focus {
  outline: none;
}
.page-partner .content {
  background: #cef2f4;
  padding: 30px;
}
.styledlistwrapper ul {
  padding: 0;
  margin: 0;
}
.styledlistwrapper ul li a {
  color: inherit;
}
.horizontal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.horizontal-list li {
  display: inline-block;
}
.modal-dialog .modal-header .close {
  background: url('/img/close.png');
  height: 27px;
  width: 27px;
}
.modal-dialog .modal-header .close:focus {
  outline: none;
}
#searchmodal .modal-dialog {
  margin-top: 20%;
}
#ebiModal .modal-body,
#prospectusModal .modal-body,
#ebiPerslijst .modal-body,
#referentieachterlaten .modal-body,
#gegevenswijzigenModal .modal-body {
  padding-right: 40px;
  padding-left: 40px;
}
#ebiModal .gegevenswijzigenheader,
#prospectusModal .gegevenswijzigenheader,
#ebiPerslijst .gegevenswijzigenheader,
#referentieachterlaten .gegevenswijzigenheader,
#gegevenswijzigenModal .gegevenswijzigenheader {
  padding: 0px 40px 40px 40px;
  -webkit-box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.1);
  text-align: right;
  margin-bottom: 40px;
  margin-left: -40px;
  margin-right: -40px;
}
#ebiModal .gegevenswijzigenheader .btn.iconized,
#prospectusModal .gegevenswijzigenheader .btn.iconized,
#ebiPerslijst .gegevenswijzigenheader .btn.iconized,
#referentieachterlaten .gegevenswijzigenheader .btn.iconized,
#gegevenswijzigenModal .gegevenswijzigenheader .btn.iconized {
  padding-left: 49px;
  height: 36px;
  line-height: 36px;
  font-weight: 500;
}
#ebiModal .gegevenswijzigenheader .btn.iconized span,
#prospectusModal .gegevenswijzigenheader .btn.iconized span,
#ebiPerslijst .gegevenswijzigenheader .btn.iconized span,
#referentieachterlaten .gegevenswijzigenheader .btn.iconized span,
#gegevenswijzigenModal .gegevenswijzigenheader .btn.iconized span {
  height: 36px;
  width: 36px;
}
#ebiModal .gegevenswijzigenKeuze .wrapper,
#prospectusModal .gegevenswijzigenKeuze .wrapper,
#ebiPerslijst .gegevenswijzigenKeuze .wrapper,
#referentieachterlaten .gegevenswijzigenKeuze .wrapper,
#gegevenswijzigenModal .gegevenswijzigenKeuze .wrapper {
  font-size: 15px;
  line-height: 21px;
}
#ebiModal .gegevenswijzigenKeuze .wrapper .iconsprite,
#prospectusModal .gegevenswijzigenKeuze .wrapper .iconsprite,
#ebiPerslijst .gegevenswijzigenKeuze .wrapper .iconsprite,
#referentieachterlaten .gegevenswijzigenKeuze .wrapper .iconsprite,
#gegevenswijzigenModal .gegevenswijzigenKeuze .wrapper .iconsprite,
#ebiModal .gegevenswijzigenKeuze .wrapper img,
#prospectusModal .gegevenswijzigenKeuze .wrapper img,
#ebiPerslijst .gegevenswijzigenKeuze .wrapper img,
#referentieachterlaten .gegevenswijzigenKeuze .wrapper img,
#gegevenswijzigenModal .gegevenswijzigenKeuze .wrapper img {
  margin-bottom: 16px;
}
#ebiModal .ebikeuze .wrapper,
#prospectusModal .ebikeuze .wrapper,
#ebiPerslijst .ebikeuze .wrapper,
#referentieachterlaten .ebikeuze .wrapper,
#gegevenswijzigenModal .ebikeuze .wrapper,
#ebiModal .gegevenswijzigenKeuze .wrapper,
#prospectusModal .gegevenswijzigenKeuze .wrapper,
#ebiPerslijst .gegevenswijzigenKeuze .wrapper,
#referentieachterlaten .gegevenswijzigenKeuze .wrapper,
#gegevenswijzigenModal .gegevenswijzigenKeuze .wrapper {
  display: block;
  height: 100%;
  border: none;
  background: #cef2f4;
  padding: 30px 15px;
  position: relative;
}
#ebiModal .ebikeuze .wrapper:hover,
#prospectusModal .ebikeuze .wrapper:hover,
#ebiPerslijst .ebikeuze .wrapper:hover,
#referentieachterlaten .ebikeuze .wrapper:hover,
#gegevenswijzigenModal .ebikeuze .wrapper:hover,
#ebiModal .gegevenswijzigenKeuze .wrapper:hover,
#prospectusModal .gegevenswijzigenKeuze .wrapper:hover,
#ebiPerslijst .gegevenswijzigenKeuze .wrapper:hover,
#referentieachterlaten .gegevenswijzigenKeuze .wrapper:hover,
#gegevenswijzigenModal .gegevenswijzigenKeuze .wrapper:hover {
  cursor: pointer;
  text-decoration: none;
}
#ebiModal .ebikeuze .wrapper.active,
#prospectusModal .ebikeuze .wrapper.active,
#ebiPerslijst .ebikeuze .wrapper.active,
#referentieachterlaten .ebikeuze .wrapper.active,
#gegevenswijzigenModal .ebikeuze .wrapper.active,
#ebiModal .gegevenswijzigenKeuze .wrapper.active,
#prospectusModal .gegevenswijzigenKeuze .wrapper.active,
#ebiPerslijst .gegevenswijzigenKeuze .wrapper.active,
#referentieachterlaten .gegevenswijzigenKeuze .wrapper.active,
#gegevenswijzigenModal .gegevenswijzigenKeuze .wrapper.active {
  border: 1px solid #09bdc6;
}
#ebiModal .ebikeuze .wrapper span,
#prospectusModal .ebikeuze .wrapper span,
#ebiPerslijst .ebikeuze .wrapper span,
#referentieachterlaten .ebikeuze .wrapper span,
#gegevenswijzigenModal .ebikeuze .wrapper span,
#ebiModal .gegevenswijzigenKeuze .wrapper span,
#prospectusModal .gegevenswijzigenKeuze .wrapper span,
#ebiPerslijst .gegevenswijzigenKeuze .wrapper span,
#referentieachterlaten .gegevenswijzigenKeuze .wrapper span,
#gegevenswijzigenModal .gegevenswijzigenKeuze .wrapper span {
  display: none;
  position: absolute;
  left: 43%;
  bottom: 1px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  box-sizing: border-box;
  background: #fff;
  -webkit-box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.1);
}
#ebiModal .ebikeuze .wrapper:hover,
#prospectusModal .ebikeuze .wrapper:hover,
#ebiPerslijst .ebikeuze .wrapper:hover,
#referentieachterlaten .ebikeuze .wrapper:hover,
#gegevenswijzigenModal .ebikeuze .wrapper:hover,
#ebiModal .gegevenswijzigenKeuze .wrapper:hover,
#prospectusModal .gegevenswijzigenKeuze .wrapper:hover,
#ebiPerslijst .gegevenswijzigenKeuze .wrapper:hover,
#referentieachterlaten .gegevenswijzigenKeuze .wrapper:hover,
#gegevenswijzigenModal .gegevenswijzigenKeuze .wrapper:hover {
  cursor: pointer;
}
#ebiModal .modal-footer,
#prospectusModal .modal-footer,
#ebiPerslijst .modal-footer,
#referentieachterlaten .modal-footer,
#gegevenswijzigenModal .modal-footer {
  border: none;
}
.pdfframe {
  height: 80vh;
  min-height: 700px;
  width: 100%;
}
.pdfframe.smaller {
  height: 55vh;
  min-height: 700px;
}
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error .ginput_container_checkbox li {
  background-color: #fff !important;
  border: 1px solid red !important;
}
.gform_wrapper .gform_fields {
  margin-left: -15px;
  margin-right: -15px;
}
.gform_wrapper .gform_fields li {
  padding-right: 15px;
  padding-left: 15px;
}
.gform_wrapper .gfield_description.validation_message {
  display: none;
}
.gform_wrapper .ginput_container input,
.gform_wrapper .ginput_container select,
.gform_wrapper .ginput_container textarea {
  border-color: #cef2f4;
  padding: 15px 15px;
  height: auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  font-size: 18px;
}
.gform_wrapper .ginput_container.ginput_container_checkbox {
  position: relative;
}
.gform_wrapper .ginput_container.ginput_container_checkbox input[type="checkbox"] {
  visibility: hidden;
}
.gform_wrapper .ginput_container.ginput_container_checkbox input[type="checkbox"] + label:before {
  position: absolute;
  left: 0;
  top: 7px;
  visibility: visible;
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #cef2f4;
  border-radius: 4px;
}
.gform_wrapper .ginput_container.ginput_container_checkbox input[type="checkbox"] + label:after {
  position: absolute;
  left: 2px;
  top: 2px;
  visibility: visible;
  transform: scale(0);
  content: "\2713";
  display: inline-block;
  font-size: 22px;
  color: #66afe9;
  transition: transform 0.15s ease-in-out;
  transform-origin: center 70%;
  height: 20px;
  width: 20px;
}
.gform_wrapper .ginput_container.ginput_container_checkbox input[type="checkbox"]:checked + label:before {
  border: 2px solid #66afe9;
}
.gform_wrapper .ginput_container.ginput_container_checkbox input[type="checkbox"]:checked + label:after {
  transform: scale(1);
}
.gform_wrapper .gfield_error.checkbox .ginput_container {
  border: 1px solid red;
}
@media (min-width: 768px) {
  .gform_wrapper .gform_fields .col-sm-6:first-child {
    padding-right: 15px;
  }
  .gform_wrapper .gform_fields .col-sm-6:last-child {
    padding-left: 15px;
  }
  .sm-border-right {
    border-right: 1px solid #cef2f4;
  }
}
.page-landingspagina-groenfonds p {
  font-size: 20px;
  font-weight: 100;
  line-height: 32px;
}
.page-landingspagina-groenfonds .panel-body p {
  font-size: 16px;
}
.page-landingspagina-groenfonds a.btn.btn-primary {
  font-size: 26px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  padding: 6px 35px;
}
.page-landingspagina-groenfonds a.btn.btn-primary .arrow {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 25px;
  margin-left: 5px;
}
.page-landingspagina-groenfonds a.btn.btn-primary .arrow.arrow-right {
  background: url('/img/special-arrow.png');
  background-size: 89%;
  background-repeat: no-repeat;
  background-position: center;
}
.page-landingspagina-groenfonds a.btn.btn-primary:hover .arrow.arrow-right {
  background: url('/img/special-arrow-t.png');
}
.page-landingspagina-etf p {
  font-size: 18px;
  font-weight: 300;
  line-height: 34px;
}
.page-landingspagina-etf .panel-body p {
  font-size: 18px;
}
.page-landingspagina-etf .downloadlist {
  display: inline-block;
  text-align: left;
  margin-right: 50px;
}
.page-landingspagina-etf .downloadlist li {
  line-height: 48px;
}
.page-landingspagina-template h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.page-landingspagina-template .well.well-danger {
  background: #fdefd8;
  border: 1px solid #ef9008;
}
.page-landingspagina-template .btn.btn-danger {
  border-color: transparent;
}
.checkList {
  list-style-image: url("/img/check2.png");
}
.checkList li {
  padding-left: 10px;
  font-size: 20px;
  font-weight: 100;
  line-height: 35px;
  margin-bottom: 5px;
}
.checkList li strong {
  color: #09bdc6;
  font-weight: bold;
}
.programma h3 {
  padding: 20px;
  border-bottom: 4px solid #36b8c3;
  margin: 0;
}
.programma ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.programma ul li {
  padding: 12px 30px;
  margin: 12px 0 0 0;
  background: #ceeff2;
  font-weight: 500;
}
.lightbanner {
  background: #cff1f3;
}
.lightbanner p {
  margin-bottom: 28px;
  line-height: 32px;
}
.page-financiering {
  font-size: 20px;
  font-weight: 100;
}
.page-financiering p {
  margin-bottom: 30px;
}
.page-financiering h1 {
  font-size: 32px;
}
.page-financiering h4 {
  font-size: 20px;
  color: #e89410;
  font-weight: 600;
  margin-left: 40px;
}
.page-financiering h5 {
  font-size: 20px;
  color: #09bdc6;
  font-weight: 600;
  margin-left: 40px;
}
.checkListNumbered {
  padding: 0;
  margin: 0;
}
.checkListNumbered li {
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  align-items: flex-start;
  line-height: 40px;
  font-size: 16px;
}
.checkListNumbered li .twoline {
  line-height: 22px;
  padding-top: 7px;
}
.checkListNumbered li div:first-child {
  flex-grow: 0;
  /* do not grow   - initial value: 0 */
  flex-shrink: 0;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  background: #cff1f3;
  width: 40px;
  height: 40px;
  margin-right: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
}
.checkListNumbered li div {
  word-break: break-all;
}
.socialicons .socialicon {
  display: inline-block;
  background: #09bdc6;
  height: 35px;
  width: 35px;
  line-height: 38px;
  font-size: 22px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  text-align: center;
  margin-left: 15px;
}
.socialicons .socialicon i {
  color: #fff;
}
.footer {
  background: #f6a400;
  color: #fff;
}
.footer .socialicon {
  display: inline-block;
  background: #fff;
  height: 38px;
  width: 38px;
  line-height: 40px;
  font-size: 19px;
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
  -ms-border-radius: 19px;
  -o-border-radius: 19px;
  border-radius: 19px;
  text-align: center;
  margin-left: 15px;
}
.footer .socialicon i {
  color: #f6a400;
}
.footer .nav > li > a:focus,
.footer .nav > li > a:hover {
  background: none;
  color: #09bdc6;
}
.footer .navbar-nav {
  margin-left: -13px;
}
.footer .navbar-nav li a {
  color: #fff;
  font-weight: 700;
}
.secondfooter {
  background: #ef9008;
}
.secondfooter .navbar {
  margin: 0;
}
.secondfooter .navbar .nav {
  margin-top: 2px;
}
.secondfooter .navbar .nav li a {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
}
.secondfooter .navbar .nav li a:hover,
.secondfooter .navbar .nav li a:focus {
  color: #333333;
}
.thirdfooter {
  background: #333333;
  color: #b3b3b3;
  line-height: 18px;
  padding-bottom: 60px;
}
.thirdfooter a:link,
.thirdfooter a:active,
.thirdfooter a:focus {
  color: inherit;
}
.footer-illustration {
  background: url('/img/retina-illustrations/footer-2600px.png') center bottom no-repeat;
  height: 200px;
  background-size: 2600px;
}
@media (max-width: 991px) {
  .footer-illustration {
    background: url('/img/retina-illustrations/footer-2600px.png') center bottom no-repeat;
    height: 150px;
    background-size: 200%;
  }
}
#mijnModal .wrapper {
  background: #cef2f4;
  padding: 30px;
  font-size: 18px;
  text-align: center;
}
.popover-content {
  max-width: 100%;
  min-width: 400px;
  min-height: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.popover-content p {
  margin-top: 20px !important;
  line-height: 23px !important;
}
.iwAccordion .mobileonly {
  display: none;
}
.iwAccordion .panel {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.iwAccordion.panel-group .panel + .panel {
  margin-top: 15px;
}
.iwAccordion .panel-etf .heading {
  background-color: #ec8f3e;
  color: #fff;
}
.iwAccordion .panel-rd1 .heading {
  background-color: #269e87;
  color: #fff;
}
.iwAccordion .panel-zw .heading {
  background-color: #24bbc2;
  color: #fff;
}
.iwAccordion .flexwrapper {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
}
.iwAccordion .flexwrapper > div {
  flex: 1 0 25%;
  white-space: nowrap;
  padding: 8px 16px;
  border-right: 1px solid #ece9e8;
}
.iwAccordion .flexwrapper > div:first-child {
  flex: 0 0 50%;
}
.iwAccordion .flexwrapper > div:last-child {
  border: none;
}
.calculatorRow {
  position: relative;
}
.calculatorRow .calculatorbg {
  position: absolute;
  top: 290px;
  right: 0;
  left: 0;
  background: #d7f0f2;
}
.calculatorRow .calculatorbg img {
  float: right;
}
.calculatorRow #calculatorForm {
  background: #09bdc6;
  font-size: 1.2rem;
  color: #fff;
}
.calculatorRow #calculatorForm.style3 {
  background: #15a087;
}
.calculatorRow #calculatorForm.form-horizontal .control-label {
  text-align: left;
  font-weight: 300;
  padding-top: 4px;
}
.calculatorRow #calculatorForm.form-horizontal .control-label small {
  font-size: 60%;
}
.calculatorRow #calculatorForm.form-horizontal .form-control {
  height: 44px;
  padding: 8px 20px;
  border-color: #fff;
}
.calculatorRow #calculatorForm.form-horizontal .form-control:focus {
  box-shadow: none;
  outline: 0;
  border-color: #fff;
}
.calculatorRow #calculatorForm.form-horizontal .input-group .form-control {
  border-left: 0;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 10px;
}
.calculatorRow #calculatorForm.form-horizontal .input-group .input-group-addon {
  background: #fff;
  border: 0;
  height: 44px;
  color: #333333;
  padding: 0 0px 0 20px;
}
.calculatorRow #calculatorResults {
  color: #fff;
  font-size: 1.0rem;
  line-height: 2rem;
}
.calculatorRow #calculatorResults hr {
  margin-top: 15px;
  margin-bottom: 15px;
}
.calculatorRow #calculatorResults .btn {
  border-color: #fff;
  border-width: 1px;
  font-size: 16px;
}
.calculatorRow #calculatorResults .rendement {
  font-size: 4.0rem;
  line-height: 4.0rem;
  font-weight: 600;
}
.calculatorRow #calculatorResults #calculatorYield {
  font-weight: 500;
}
.calculatorRow #calculatorResults .larger {
  font-size: 1.2rem;
}
.jumbotron.banner-link:focus,
.jumbotron.banner-link:hover {
  text-decoration: none;
  outline: none;
}
.jumbotron.banner-link:focus > .btn,
.jumbotron.banner-link:hover > .btn {
  background-color: #fff !important;
  color: #086375;
  border-color: #086375 !important;
}
.filterbuttons__title {
  color: #09bdc6;
  margin-right: 20px;
  font-size: 20px;
  font-weight: 400;
}
.filterbuttons__current {
  display: inline-block;
  position: relative;
  width: 150px;
  outline: none;
}
.filterbuttons__current > .btn {
  width: 100%;
  margin: 0;
  text-align: left;
  padding-right: 50px;
}
.filterbuttons__current > .btn > i.fa {
  position: absolute;
  right: 12px;
  top: 10px;
}
.filterbuttons__current > .btn > i.fa:before {
  content: "\f063";
}
@media (min-width: 778px) {
  .filterbuttons__current {
    width: 200px;
  }
  .filterbuttons__current > .btn {
    text-align: center;
  }
  .filterbuttons__current > .btn > i.fa {
    top: 14px;
  }
}
.filterbuttons__current:focus > .btn,
.filterbuttons__current:hover > .btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.filterbuttons__current:focus > .btn > i.fa:before,
.filterbuttons__current:hover > .btn > i.fa:before {
  content: "\f062";
}
.filterbuttons__current:focus .filterbuttons__wrap,
.filterbuttons__current:hover .filterbuttons__wrap {
  display: block;
}
.filterbuttons__wrap {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 200;
  left: 0;
  right: 0;
  width: 100%;
}
.filterbuttons__wrap > .btn {
  display: block;
  margin: 0;
  border-radius: 0;
}
#vacatures-container {
  position: relative;
}
.page-vacatures__container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  margin-bottom: 40px;
}
.page-vacatures__container__left {
  flex: 1 1 auto;
  margin-right: 40px;
}
.page-vacatures__container__right {
  flex: 0 1 auto;
  width: 100%;
  max-width: 360px;
}
@media (max-width: 991px) {
  .page-vacatures__container {
    flex-direction: column-reverse;
  }
  .page-vacatures__container__left {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .page-vacatures__container__right {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
  }
}
.pdfdownload {
  display: flex;
}
.pdfdownload i {
  margin-top: 4px;
}
.vacatures-title {
  font-size: 32px;
  margin-bottom: 60px;
}
.vacatures-block {
  background-color: #cef2f4;
  padding: 20px 30px;
  margin-bottom: 40px;
}
.vacatures-block--contact {
  display: block;
}
@media (max-width: 991px) {
  .vacatures-block--contact {
    display: none;
  }
}
.vacatures-block--contact--mobile {
  display: none;
}
@media (max-width: 991px) {
  .vacatures-block--contact--mobile {
    display: block;
  }
}
.vacatures-block__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin: 15px 0;
}
.vacatures-block__content {
  margin: 15px 0;
}
.vacatures-block__content ul.vacatures-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vacatures-block__content ul.vacatures-block__list > li {
  padding: 10px 0;
}
.vacatures-block__content ul.vacatures-block__list > li a.vacature-link {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-decoration: none;
}
.vacatures-block__content ul.vacatures-block__list > li a.vacature-link.current {
  color: #ef9008;
}
.vacatures-block__btn {
  margin: 15px 0;
}
.vacature-item {
  display: none;
  position: relative;
}
.vacature-item__image {
  width: 100%;
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 50px;
}
.vacature-item__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 50px;
}
.page-partner-top-bar {
  width: 100%;
  height: 64px;
  background-color: #cef2f4;
}
.page-partner-header-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.page-partner-header-container > img {
  width: 100%;
  height: 294px;
  object-fit: cover;
}
.page-partner-inner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -236px;
}
.page-partner-bar {
  background-color: #fff;
  width: 100%;
  height: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.page-partner-bar-filled {
  width: 0;
  height: 20px;
  border-radius: 8px;
  background-image: linear-gradient(to right, #3ac6ff, #7af5ff);
  text-align: right;
  line-height: 20px;
  font-size: 12px;
  font-weight: 400;
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}
.page-partner-bar-text {
  margin: 0 10px;
}
.page-partner .text-gray {
  color: #b7b7b7;
}
.page-partner .conditions-agree input[type=checkbox] {
  display: none;
}
.page-partner .conditions-agree label {
  position: relative;
  color: #9cc1c8;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  padding-left: 20px;
  cursor: pointer;
}
.page-partner .conditions-agree input[type=checkbox] + label::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0c8";
  position: absolute;
  top: 3px;
  left: 0;
  color: #fff;
}
.page-partner .conditions-agree input[type=checkbox]:checked + label::before {
  content: "\f14a";
}
.page-partner .conditions-agree.invalid label {
  color: #ff6868;
}
.input-placeholder-info {
  position: absolute;
  bottom: 0;
  right: 10px;
  font-size: 12px;
  color: #b7b7b7;
  pointer-events: none;
}
.check-list {
  list-style-type: none;
  padding-left: 20px;
}
.check-list li::before {
  content: "\f00c";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 12px;
  color: #2db9c4;
  font-size: 14px;
}
.page-children h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 3rem;
}
.page-children h4 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 2.5rem;
  margin-bottom: 0.2rem;
  color: #ef9008;
}
.page-children p {
  font-size: 18px;
}
.page-children p strong a {
  color: inherit;
}
.childUsps {
  margin-top: 2.5rem;
  padding-top: 10px;
  padding-bottom: 60px;
}
.childUsps .h3 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: bold;
}
.childUsps hr {
  background: #09bdc6;
  height: 4px;
  margin: 0;
  margin-bottom: 30px;
}
.childUsps ol {
  display: inline-block;
  counter-reset: usp;
  list-style: none;
}
.childUsps ol li {
  counter-increment: usp;
  margin-bottom: 10px;
}
.childUsps ol li:before {
  content: counter(usp);
  background: #09bdc6;
  width: 2rem;
  height: 2rem;
  font-weight: bold;
  border-radius: 50%;
  display: inline-block;
  line-height: 2rem;
  color: white;
  text-align: center;
  margin-right: 1.2rem;
}
.childUsps ol + div {
  margin-top: 20px;
}
.rwd-break {
  display: none;
}
.onlymobile {
  display: none !important;
}
@media (min-width: 1259px) {
  .rwd-break {
    display: inline;
  }
}
@media (max-width: 1199px) {
  .calculatorRow .calculatorbg {
    height: calc(100% - 220px);
  }
  .calculatorRow .calculatorbg img {
    display: none;
  }
}
@media (max-width: 1599px) {
  body {
    font-size: 15px;
  }
  h1,
  .h1 {
    font-size: 39px;
    line-height: 50px;
  }
  h2,
  .h2 {
    font-size: 28px;
    line-height: 40px;
  }
  h3,
  .h3 {
    font-size: 30px;
    line-height: 44px;
  }
  h4,
  .h4 {
    font-size: 20px;
    line-height: 30px;
  }
  .font-xl {
    font-size: 22px;
    line-height: 34px;
  }
  .font-lg {
    font-size: 20px;
    line-height: 30px;
  }
  .font-md {
    font-size: 14px;
    line-height: 24px;
  }
  .font-sm {
    font-size: 12px;
    line-height: 22px;
  }
  .font16 {
    font-size: 15px;
    line-height: 22px;
  }
  .font25 {
    font-size: 21px;
  }
  .font40 {
    font-size: 28px;
  }
  .row-horizon .col-xs-4 {
    width: 80%;
    display: inline-block;
    max-width: 540px;
    margin: 0 auto 40px auto;
    float: none !important;
  }
  .blockquote {
    font-size: 34px;
  }
  .footer .socialicon {
    height: 30px;
    width: 30px;
    font-size: 18px;
    line-height: 33px;
  }
  .footer .navbar-nav li a {
    padding: 6px 12px;
  }
}
@media (max-width: 992px) {
  body,
  p,
  .page-fund-single .tab-content p {
    font-size: 18px;
    line-height: 1.5;
  }
  .d-block-md {
    display: block !important;
  }
  .iwAccordion .mobileonly {
    display: inline-block;
    float: left;
  }
  .iwAccordion .flexwrapper {
    -webkit-display: block;
    -moz-display: block;
    -ms-display: block;
    -o-display: block;
    display: block;
  }
  .iwAccordion .flexwrapper > div {
    text-align: right;
    width: 100%;
    white-space: nowrap;
    padding: 8px 16px;
    border-bottom: 1px solid #ece9e8;
  }
  .iwAccordion .flexwrapper > div:after {
    content: "";
    clear: both;
    display: table;
  }
  .iwAccordion .flexwrapper > div:first-child {
    flex: none;
  }
  .iwAccordion .flexwrapper > div:last-child {
    border: none;
  }
  .banner.minimalistic {
    line-height: 46px;
  }
  .checkListNumbered li {
    line-height: 28px;
  }
  .mobilesticky-top.affix {
    position: fixed;
    top: 0;
    left: 0;
    background: #cef2f4;
    display: block;
    width: 100%;
    z-index: 9999;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin: 0 !important;
    border-bottom: 1px solid #09bdc6;
  }
}
@media (min-width: 992px) {
  .row-horizon {
    overflow: auto;
  }
  .row-horizon .col-centered {
    max-width: 80%;
  }
  .affix {
    position: relative;
  }
}
@media (max-width: 1260px) {
  .font18 {
    font-size: 16px;
    line-height: 24px;
  }
  .font20 {
    font-size: 17px;
    line-height: 25px;
  }
  .font22 {
    font-size: 18px;
    line-height: 26px;
  }
  .font25 {
    font-size: 18px;
    line-height: 28px;
  }
  .font60 {
    font-size: 45px;
    line-height: 55px;
  }
  h1,
  .h1 {
    font-size: 30px;
    line-height: 40px;
  }
  h2,
  .h2 {
    font-size: 26px;
    line-height: 36px;
  }
  h3,
  .h3 {
    font-size: 24px;
    line-height: 34px;
  }
  h4,
  .h4 {
    font-size: 18px;
    line-height: 28px;
  }
  .btn.btn-xl {
    font-size: 18px;
  }
  .btn.btn-arrow-right {
    height: 25px;
    width: 25px;
  }
  .btn.btn-arrow-left {
    height: 25px;
    width: 25px;
  }
  .uspcontainer {
    font-size: 17px;
  }
  .input-group .form-control {
    font-size: 17px;
    height: 45px;
  }
  .input-group .input-group-btn .btn {
    height: 45px !important;
    background-position: right 22px center !important;
    width: 61px !important;
  }
  .modal-lg {
    width: 90%;
  }
  .modal-body {
    padding-top: 0;
  }
  .page-fund-single .fund-header .fund-overlay .rightcol .btn-round-large {
    width: 120px;
    height: 120px;
    font-size: 16px;
    padding: 24px 11px;
  }
  .page-fund-single .fund-header .fund-overlay .rightcol .btn-round-large:last-child {
    margin-left: 10px;
  }
  .page-fund-single .fund-header .fund-overlay .rightcol.two-buttons {
    width: 270px;
  }
  .tab-content ul li {
    font-size: 18px;
  }
  .history-container .swiper-pagination .swiper-pagination-bullet .title {
    line-height: 14px;
    font-size: 13px;
    height: 41px;
  }
  .valuebar {
    position: relative;
  }
  .valuebar .fundvalue .fundname {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    display: none;
    margin: 0;
    background: #fff;
    padding: 0 16px;
    -webkit-box-shadow: 3px 3px 3px 0px rgba(120, 120, 120, 0.1);
    -moz-box-shadow: 3px 3px 3px 0px rgba(120, 120, 120, 0.1);
    box-shadow: 3px 3px 3px 0px rgba(120, 120, 120, 0.1);
    white-space: nowrap;
  }
  .valuebar .fundvalue:hover .fundname {
    display: block;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 18px;
    line-height: 27px;
  }
  h1,
  .h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .onlymobile {
    display: block !important;
  }
  .font24 {
    font-size: 18px;
    line-height: 28px;
  }
  .topbar .navbar ul {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 2px;
  }
  .topbar .navbar ul li {
    display: inline;
  }
  .topbar .navbar .btn {
    padding: 6px 16px;
  }
  .mainnavigation .navbar .navbar-brand .mainlogo {
    margin-top: 11px;
    height: 33px;
  }
  .mainnavigation .navbar .navbar-brand .bottomlogo {
    height: 10px;
  }
  #mainmenu {
    margin-top: 15px;
  }
  #mainmenu ul li {
    text-align: right;
  }
  #mainmenu ul li a {
    padding: 10px 7px;
    font-size: 17px;
  }
  .row-horizon .col-xs-4 {
    width: 80%;
    display: inline-block;
    max-width: 540px;
    margin: 0 auto 40px auto;
    float: none !important;
  }
  .secondfooter .navbar-nav li {
    display: inline-block;
  }
  .blockquote {
    font-size: 24px;
    line-height: 34px;
    padding: 15px 20px;
  }
  .blockquote .quote-img-open,
  .blockquote .quote-img-close {
    height: 22px;
  }
  .font12 {
    font-size: 13px;
  }
  .font13 {
    font-size: 13px;
  }
  .font22 {
    font-size: 18px;
  }
  .fundblock.style1 .yield {
    font-size: 45px;
  }
  .fundblock.style2 p {
    font-size: 16px;
  }
  .fundblock.landscape .left,
  .fundblock.landscape .contentwrap {
    float: none;
    width: 100%;
  }
  .btn {
    font-size: 15px;
  }
  .btn.btn-arrow {
    padding-right: 46px !important;
  }
  .btn.btn-xl {
    font-size: 15px;
    padding: 10px 20px;
  }
  .btn.btn-arrow-right {
    height: 25px;
    width: 25px;
  }
  .btn.btn-arrow-left {
    height: 25px;
    width: 25px;
  }
  .modal-dialog {
    width: 99%;
  }
  .page-fund-single .fund-header .fund-overlay .rightcol .btn-round-large {
    width: 105px;
    height: 105px;
    font-size: 15px;
    padding: 15px 11px;
    background-size: 21px 20px;
  }
  .page-fund-single .fund-header .fund-overlay .rightcol .btn-round-large:last-child {
    margin-left: 10px;
  }
  .history-container .swiper-pagination .swiper-pagination-bullet .title {
    display: none;
  }
  .history-container .swiper-pagination .swiper-pagination-bullet .wrapper {
    font-size: 12px;
    padding: 0 7px;
  }
  .history-container .swiper-button-prev,
  .history-container .swiper-button-next {
    display: none;
  }
  .footer .navbar-nav li a {
    padding: 6px 10px;
  }
  .container .jumbotron {
    background-size: 100%;
  }
  #ebiModal .ebikeuze .wrapper,
  #prospectusModal .ebikeuze .wrapper,
  #ebiPerslijst .ebikeuze .wrapper,
  #referentieachterlaten .ebikeuze .wrapper,
  #gegevenswijzigenModal .ebikeuze .wrapper,
  #prospectusModal .gegevenswijzigenKeuze .wrapper,
  #ebiPerslijst .gegevenswijzigenKeuze .wrapper,
  #referentieachterlaten .gegevenswijzigenKeuze .wrapper,
  #gegevenswijzigenModal .gegevenswijzigenKeuze .wrapper {
    padding: 10px 15px;
    font-size: 15px;
    line-height: 25px;
    min-height: 0;
  }
  #ebiModal,
  #prospectusModal,
  #ebiPerslijst,
  #referentieachterlaten,
  #gegevenswijzigenModal,
  #prospectusModal,
  #ebiPerslijst,
  #referentieachterlaten,
  #gegevenswijzigenModal {
    top: 48px;
  }
  #ebiModal .modal-header,
  #prospectusModal .modal-header {
    display: none;
  }
  #ebiModal .modal-footer,
  #prospectusModal .modal-footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #ebiModal .modal-body,
  #prospectusModal .modal-body {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .well p {
    font-size: 18px;
    line-height: 27px;
  }
  .well .h4 {
    font-size: 22px;
    line-height: 32px;
  }
  .font-xl {
    font-size: 18px;
    line-height: 27px;
  }
  .font32 {
    font-size: 25px;
  }
  .banner ul li {
    padding-left: 25px;
  }
  .banner ul li i.fa {
    top: -1px;
  }
  .single-fund .nav-tabs li {
    display: block;
    width: 100%;
  }
  .container .jumbotron.style1 h5,
  .container .jumbotron.style2 h5,
  .container .jumbotron.style3 h5,
  .container .jumbotron.style4 h5,
  .container .jumbotron.style5 h5,
  .container .jumbotron.style1 .h5,
  .container .jumbotron.style2 .h5,
  .container .jumbotron.style3 .h5,
  .container .jumbotron.style4 .h5,
  .container .jumbotron.style5 .h5,
  .container .jumbotron.style1 h6,
  .container .jumbotron.style2 h6,
  .container .jumbotron.style3 h6,
  .container .jumbotron.style4 h6,
  .container .jumbotron.style5 h6,
  .container .jumbotron.style1 .h6,
  .container .jumbotron.style2 .h6,
  .container .jumbotron.style3 .h6,
  .container .jumbotron.style4 .h6,
  .container .jumbotron.style5 .h6 {
    font-size: 12px;
    line-height: 1.4;
    font-weight: normal;
  }
}
@media (min-width: 767px) {
  .affixJumpWrapper {
    min-height: 85px;
  }
  .affixwrapper.affix {
    width: 100%;
    top: 0;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.33);
    background: #fff;
    z-index: 999;
  }
  .affixwrapper.affix .mainnavigation {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .affixwrapper.affix .navbar {
    margin-bottom: 5px;
  }
  .affixwrapper.affix .bottomlogo {
    display: none;
  }
}
@media (max-width: 767px) {
  .responsive-word-break {
    word-break: break-word;
  }
  .affixwrapper {
    position: relative;
  }
  .footerlogo {
    margin: auto;
  }
  .footer .socialicon {
    margin-left: 10px;
    margin-right: 10px;
  }
  .footer-illutstration {
    height: 97px;
  }
  .xs-text-center {
    text-align: center;
  }
  body {
    font-size: 18px;
  }
  .row.ebikeuze.row-eq-height {
    flex-wrap: wrap;
  }
  .modal-dialog {
    width: 100%;
    margin: 0;
  }
  .topbar .navbar {
    margin-bottom: 0;
  }
  .topbar .navbar ul {
    text-align: right;
    margin-top: -5px;
  }
  .topbar .navbar ul li {
    float: right;
  }
  .mainnavigation {
    background: #09bdc6;
  }
  .navbar-toggle {
    margin-top: 5px;
    margin-bottom: 1px;
  }
  #mainmenu ul li {
    border-bottom: 1px solid #fff;
  }
  #mainmenu ul li a {
    text-align: center;
    color: #fff;
    font-weight: 500;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  #mainmenu ul li:last-child {
    border-bottom: none;
  }
  .mobile-logo .mobilesearch {
    margin-right: 5%;
    margin-top: 6%;
  }
  .navbar {
    min-height: 0;
    margin-bottom: 0;
    border: none;
  }
  .footer .navbar-nav {
    text-align: center;
  }
  .footer .navbar-nav li {
    display: inline-block;
  }
  h1,
  .h1 {
    font-size: 28px;
    line-height: 36px;
  }
  h1 br,
  .h1 br {
    display: none;
  }
  h2,
  .h2 {
    font-size: 18px;
    line-height: 28px;
  }
  h3,
  .h3 {
    font-size: 25px;
    line-height: 44px;
  }
  h4,
  .h4 {
    font-size: 18px;
    line-height: 30px;
  }
  .font-xl {
    font-size: 18px;
    line-height: 34px;
  }
  .font-lg {
    font-size: 18px;
    line-height: 27px;
  }
  .font-md {
    font-size: 13px;
    line-height: 24px;
  }
  .font16 {
    font-size: 13px;
  }
  .font22 {
    font-size: 18px;
    line-height: 27px;
  }
  .font24 {
    font-size: 18px;
    line-height: 27px;
  }
  .font25 {
    font-size: 18px;
    line-height: 27px;
  }
  .font40 {
    font-size: 19px;
    line-height: 24px;
  }
  .font60 {
    font-size: 19px;
    line-height: 24px;
  }
  .btn.btn-xl {
    font-size: 16px;
  }
  .fundblock.style1 .header {
    padding: 10px 0px;
  }
  .fundblock.style1 .contentwrap {
    padding: 20px 30px;
  }
  .fundblock.style1 .yield {
    line-height: 1;
    font-size: 55px;
  }
  .fundblock.style2 .header {
    padding: 10px 0px;
  }
  .fundblock.style2 .contentwrap {
    padding: 20px 30px;
  }
  .fundblock.style2 .contentwrap {
    padding: 20px 30px;
  }
  .fundblock.style2 .yield {
    line-height: 1;
    font-size: 55px;
  }
  .container {
    /* was needed to override bootstrap, strange */
  }
  .container .jumbotron {
    padding: 15px 20px;
  }
  .container .jumbotron.style1 {
    background-size: 60%;
  }
  .container .jumbotron.style1 .h2 {
    font-size: 18px;
    line-height: 21px;
  }
  .container .jumbotron.style2 {
    padding: 15px 20px;
  }
  .form-control {
    font-size: 15px;
  }
  .well.well-lg {
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 18px;
    line-height: 27px;
  }
  .page-fund-single .horizontal-list {
    width: 100%;
    display: block;
  }
  .page-fund-single .horizontal-list li {
    display: block;
    width: 100% !important;
    border: none !important;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-fund-single .horizontal-list li.xs-pr-20 {
    padding: 0;
  }
  .page-fund-single .horizontal-list li br {
    display: none;
  }
  .page-fund-single .rightcol {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 !important;
  }
  .page-fund-single .rightcol a {
    display: inline-block;
  }
  .page-fund-single .rightcol a img {
    width: 75px !important;
    margin: 0 5px !important;
  }
  .page-fund-single .fund-header .fund-overlay .leftcol,
  .page-fund-single .fund-header .fund-overlay .rightcol,
  .page-fund-single .fund-header .fund-overlay .rightcol.two-buttons {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .stick-to-bottom {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .tab-content ul {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .tab-content ul li {
    padding: 15px 0px 15px 20px;
    font-size: 16px;
    line-height: 18px;
  }
  .factsandfigures.etf .content {
    padding: 15px 0px 20px 0px;
    font-size: 18px;
    line-height: 27px;
  }
  .factsandfigures .content {
    font-size: 18px;
    line-height: 27px;
  }
  .project-swiper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .project-swiper .swiper-footer {
    margin-top: 20px;
  }
  .project-swiper .swiper-footer .swiper-button-next,
  .project-swiper .swiper-footer .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: inline-block;
    margin: 0 10px;
  }
  .project-swiper .swiper-footer .btn {
    float: left;
  }
  .banner ul li {
    padding-left: 20px;
  }
  .banner ul li i.fa {
    top: 3px;
  }
  .gform_wrapper .ginput_container input,
  .gform_wrapper .ginput_container select,
  .gform_wrapper .ginput_container textarea {
    font-size: 14px;
  }
  .btn {
    font-size: 15px;
    padding: 6px 12px;
  }
  .btn.btn-xl {
    font-size: 15px;
    padding: 6px 12px;
  }
  .calculatorRow {
    background: none;
  }
  .calculatorRow #calculatorForm {
    font-size: 16px;
  }
  .calculatorRow #calculatorResults {
    font-size: 14px;
    line-height: 22px;
  }
  .calculatorRow #calculatorResults .btn {
    font-size: 16px;
  }
  .calculatorRow #calculatorResults .rendement {
    font-size: 60px;
  }
  .calculatorRow #calculatorResults .larger {
    font-size: 14px;
  }
}
/**
 * MOBILE
 */
@media (max-width: 475px) {
  .font-xl {
    font-size: 18px;
    line-height: 27px;
  }
  .popover {
    max-width: 374px;
  }
  .popover .popover-content {
    min-width: 300px;
  }
  .fundblock.style1 .contentwrap,
  .fundblock.style2 .contentwrap,
  .fundblock.style3 .contentwrap {
    padding: 10px 15px;
  }
  .fundblock.style1 .yield,
  .fundblock.style2 .yield,
  .fundblock.style3 .yield {
    font-size: 35px;
  }
  .fundblock.style1 .header,
  .fundblock.style2 .header,
  .fundblock.style3 .header {
    font-size: 16px;
  }
  .fundblock.style1 p,
  .fundblock.style2 p,
  .fundblock.style3 p {
    font-size: 16px;
    line-height: 27px;
  }
  .font13 {
    font-size: 12px;
  }
  .font15 {
    font-size: 16px;
  }
  .font17 {
    font-size: 18px;
    line-height: 27px;
  }
  .font22 {
    font-size: 18px;
    line-height: 27px;
  }
  .newsitem .content {
    padding: 25px;
  }
  .newsitem .type {
    font-size: 12px;
  }
  .newsitem .title {
    font-size: 18px;
    line-height: 27px;
  }
  .btn {
    font-size: 16px;
    padding: 8px 19px;
  }
  .btn.btn-xl {
    font-size: 16px;
    padding: 8px 19px;
  }
  h3,
  .h3 {
    font-size: 17px;
    line-height: 27px;
  }
  .uspimage {
    text-align: left;
  }
  .uspimage img {
    float: left;
    width: 94px;
    margin-right: 20px;
    margin-left: 20px;
  }
  .uspimage div.first {
    margin-top: 18px;
  }
  .risicomelding {
    font-size: 11px !important;
  }
  .input-group .form-control {
    font-size: 12px;
    padding: 5px 20px;
  }
  .secondfooter .navbar .nav li a {
    font-size: 11px;
  }
  .footer .xs-pr-20 {
    padding: 0;
  }
  .footer .socialicon {
    margin-left: 5px;
    margin-right: 5px;
  }
  .mobile-logo .mainlogo {
    height: 25px;
  }
  .topbar .btn.xs-mr-10 {
    margin-right: 2px;
  }
  .page-faq .btn-primary {
    margin-bottom: 5px;
  }
  .page-faq .faq .panel .panel-title {
    position: relative;
  }
  .page-faq .faq .panel .panel-title .faq-icon2 {
    position: absolute;
    right: 0;
    top: 0;
  }
  .page-faq .faq .panel .panel-body {
    padding: 15px 0px;
  }
  .page-faq .faq .panel .panel-body p {
    font-size: 12px;
  }
  .gform_wrapper .ginput_container input,
  .gform_wrapper .ginput_container select,
  .gform_wrapper .ginput_container textarea {
    font-size: 13px;
  }
  .organisationlist .col-xs-6 {
    width: 100%;
  }
  .container .jumbotron.style1 h1,
  .container .jumbotron.style2 h1,
  .container .jumbotron.style3 h1,
  .container .jumbotron.style4 h1,
  .container .jumbotron.style5 h1,
  .container .jumbotron.style1 .h1,
  .container .jumbotron.style2 .h1,
  .container .jumbotron.style3 .h1,
  .container .jumbotron.style4 .h1,
  .container .jumbotron.style5 .h1,
  .container .jumbotron.style1 h2,
  .container .jumbotron.style2 h2,
  .container .jumbotron.style3 h2,
  .container .jumbotron.style4 h2,
  .container .jumbotron.style5 h2,
  .container .jumbotron.style1 .h2,
  .container .jumbotron.style2 .h2,
  .container .jumbotron.style3 .h2,
  .container .jumbotron.style4 .h2,
  .container .jumbotron.style5 .h2,
  .container .jumbotron.style1 h3,
  .container .jumbotron.style2 h3,
  .container .jumbotron.style3 h3,
  .container .jumbotron.style4 h3,
  .container .jumbotron.style5 h3,
  .container .jumbotron.style1 .h3,
  .container .jumbotron.style2 .h3,
  .container .jumbotron.style3 .h3,
  .container .jumbotron.style4 .h3,
  .container .jumbotron.style5 .h3,
  .container .jumbotron.style1 h4,
  .container .jumbotron.style2 h4,
  .container .jumbotron.style3 h4,
  .container .jumbotron.style4 h4,
  .container .jumbotron.style5 h4,
  .container .jumbotron.style1 .h4,
  .container .jumbotron.style2 .h4,
  .container .jumbotron.style3 .h4,
  .container .jumbotron.style4 .h4,
  .container .jumbotron.style5 .h4,
  .container .jumbotron.style1 p,
  .container .jumbotron.style2 p,
  .container .jumbotron.style3 p,
  .container .jumbotron.style4 p,
  .container .jumbotron.style5 p {
    font-size: 16px;
    line-height: 1.5;
  }
  .container .jumbotron.style1 h5,
  .container .jumbotron.style2 h5,
  .container .jumbotron.style3 h5,
  .container .jumbotron.style4 h5,
  .container .jumbotron.style5 h5,
  .container .jumbotron.style1 .h5,
  .container .jumbotron.style2 .h5,
  .container .jumbotron.style3 .h5,
  .container .jumbotron.style4 .h5,
  .container .jumbotron.style5 .h5,
  .container .jumbotron.style1 h6,
  .container .jumbotron.style2 h6,
  .container .jumbotron.style3 h6,
  .container .jumbotron.style4 h6,
  .container .jumbotron.style5 h6,
  .container .jumbotron.style1 .h6,
  .container .jumbotron.style2 .h6,
  .container .jumbotron.style3 .h6,
  .container .jumbotron.style4 .h6,
  .container .jumbotron.style5 .h6 {
    font-size: 12px;
    line-height: 1.4;
    font-weight: normal;
  }
}
@media (min-width: 768px) {
  .col-sm-offset-35 {
    margin-left: 29.1%;
  }
}
