/************************************************* General ******************************************/
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  line-height: 1;
}
html,
body {
  max-width: 100vw;
  max-height: 100vh;
}
*:focus,
*:active,
*:hover,
*:visited {
  outline: none !important;
}
.img-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.img-contain {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
header {
  display: inline-block;
  width: 100%;
  position: fixed;
  z-index: 1000;
  background-color: white;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
header.transform {
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.2);
}
h2 {
  font-family: 'Open Sans', sans-serif;
  margin: 0px;
  text-transform: uppercase;
  display: inline-block;
  padding: 7px;
  font-size: 45px;
  font-weight: 700;
}
@media (max-width: 992px) {
  h2 {
    font-size: 25px;
  }
}
h3 {
  font-family: 'Open Sans', sans-serif;
  margin: 0px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0px;
  font-size: 24px;
  font-weight: 700;
}
h4 {
  font-family: 'Montserrat', sans-serif;
  margin: 0px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0px;
  font-size: 15px;
  font-weight: 400;
}
h5 {
  font-family: 'Montserrat', sans-serif;
  margin: 0px 0px 20px 0px;
  text-transform: none;
  display: block;
  padding: 0px;
  font-size: 18px;
  font-weight: 300;
}
p,
li,
a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  padding: 0px;
  margin: 0px;
  display: inline-block;
  font-size: 14px;
}
a:hover {
  cursor: pointer;
}
p strong,
p bold {
  font-weight: 700;
  text-transform: uppercase;
}
.alert-success {
  color: white;
  background-color: #17a938;
  border-color: white;
  text-align: center;
}
.alert-danger {
  color: white;
  background-color: #c10c10;
  border-color: white;
  text-align: center;
}
/************************************************* Buttons ******************************************/
button {
  border: none;
}
.btn-flat {
  padding: 10px 15px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  margin: 0px;
  border-radius: 0px;
  text-transform: uppercase;
}
.btn-flat:hover {
  text-decoration: none;
}
.btn-flat:active,
.btn-flat:focus {
  text-decoration: none;
}
.btn-continue {
  color: #000000;
  text-decoration: underline;
  margin-left: 15px;
}
.btn-continue:hover,
.btn-continue.active,
.btn-continue:focus {
  color: #000000;
}
.btn-blue {
  background-color: #67c7b3;
  color: #ffffff;
}
.btn-blue:visited {
  background-color: #67c7b3;
  color: #ffffff;
}
.btn-blue:hover,
.btn-blue:active,
.btn-blue:focus {
  background-color: #5eb5a3;
  color: #ffffff;
}
.btn-filter {
  color: #67c7b3;
  background-color: white;
  border: 1px solid #67c7b3;
}
.btn-filter.active {
  background-color: #67c7b3;
  color: #ffffff;
}
.btn-filter.active:hover,
.btn-filter.active:active,
.btn-filter.active:focus {
  background-color: #5eb5a3;
  color: #ffffff;
}
.btn-grey {
  background-color: #aec0c4;
  color: #ffffff;
}
.btn-grey:visited {
  background-color: #aec0c4;
  color: #ffffff;
}
.btn-grey:hover,
.btn-grey:active,
.btn-grey:focus {
  background-color: #9babaf;
  color: #ffffff;
}
.btn-white {
  background-color: #ffffff;
  color: #000000;
}
.btn-white:visited {
  background-color: #ffffff;
  color: #000000;
}
.btn-white:hover,
.btn-white:active,
.btn-white:focus {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.btn-black {
  background-color: #000000;
  color: #ffffff;
}
.btn-black:visited {
  background-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:active,
.btn-black:focus {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.btn-transparant-black {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
}
.btn-transparant-black:visited {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
}
.btn-transparant-black:hover,
.btn-transparant-black:active,
.btn-transparant-black:focus {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}
.btn-transparant-white {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn-transparant-white:visited {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn-transparant-white:hover,
.btn-transparant-white:active,
.btn-transparant-white:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
}
/************************************************* Taskbar + navigation ******************************************/
.hidden {
  display: none;
}
.taskbar-top {
  display: inline-block;
  width: 100%;
  padding: 0px 90px;
  background-color: #edf3f4;
  text-align: right;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-position: left center;
}
.taskbar-top .logo {
  display: inline-block;
  width: 200px;
  height: 0px;
  float: left;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-position: left center;
}
.taskbar-top a {
  height: 0px;
  opacity: 0;
  padding: 0px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.taskbar-top.transform {
  padding: 10px 90px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-position: left center;
}
@media (max-width: 767px) {
  .taskbar-top.transform {
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .taskbar-top.transform {
    padding: 10px 30px 10px 30px;
  }
}
.taskbar-top.transform .logo {
  display: inline-block;
  width: 200px;
  height: 35px;
  float: left;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-position: left center;
}
.taskbar-top.transform a {
  height: auto;
  padding: 10px 15px;
  opacity: 1;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
@media (min-width: 768px) and (max-width: 992px) {
  .taskbar-top {
    padding: 10px 30px 10px 30px;
  }
}
.taskbar-top p {
  margin-right: 15px;
  line-height: 100%;
}
@media (max-width: 992px) {
  .taskbar-top p {
    margin-right: 0px;
  }
}
.taskbar-top a {
  margin-right: 15px;
}
.taskbar-top a:last-of-type {
  margin-right: 0px;
}
.taskbar {
  width: 100%;
  border: none;
  height: 115px;
  display: inline-block;
  padding: 20px 90px 0px 90px;
  opacity: 1;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.taskbar.taskbar-transform {
  opacity: 0;
  height: 0px;
  padding: 0px 90px;
  display: inline-block;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.taskbar.taskbar-transform .logo {
  height: 0px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
@media (max-width: 767px) {
  .taskbar {
    padding: 20px 10px 10px 10px;
    border-bottom: 1px solid black;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .taskbar {
    padding: 20px 30px 10px 30px;
  }
}
.taskbar .logo {
  display: inline-block;
  width: 200px;
  height: 115px;
  background-position: left center;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
@media (max-width: 767px) {
  .taskbar .logo {
    width: 100px;
    margin-left: 20px;
    margin-bottom: 0px;
    margin-top: 15px;
    display: inline-block;
    height: 55px;
  }
}
.taskbar .taskbar-content {
  display: table;
  height: 115px;
  text-align: right;
  float: right;
}
@media (max-width: 767px) {
  .taskbar .taskbar-content {
    height: auto;
  }
}
.taskbar .taskbar-content .content {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .taskbar .taskbar-content {
    display: inline-block;
    width: 100%;
    text-align: right;
  }
}
.taskbar .taskbar-content a {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .taskbar .taskbar-content a {
    margin-right: 10px;
    margin-bottom: 0px;
    font-size: 12px;
  }
}
.taskbar .taskbar-content a:last-of-type {
  margin-right: 0px;
}
.taskbar .taskbar-content a i {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .navbar {
    min-height: auto !important;
  }
}
.navbar.navbar-default {
  background-color: transparent;
  border-bottom: 1px solid #000000;
  border-top: none;
  border-left: none;
  border-right: none;
  position: relative;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  box-shadow: none;
  border-radius: 0px;
  margin-left: 90px;
  margin-right: 90px;
  margin-bottom: 0px;
}
.navbar.navbar-default.transform {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .navbar.navbar-default {
    bottom: 0px;
    right: 0px;
    border: none;
    margin: 0px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .navbar.navbar-default {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .navbar.navbar-default .navbar-header {
    display: inline-block;
    height: 20px;
  }
  .navbar.navbar-default .navbar-header .navbar-toggle {
    border-radius: 0px;
    text-align: right;
    height: 20px;
    width: 20px;
    border: none;
    margin: 0px;
    padding: 0px;
    font-size: 1.5em;
    background-color: transparent;
    position: absolute;
    top: -40px;
    right: 10px;
  }
  .navbar.navbar-default .navbar-header .navbar-toggle:hover,
  .navbar.navbar-default .navbar-header .navbar-toggle:active,
  .navbar.navbar-default .navbar-header .navbar-toggle:focus {
    background-color: transparent;
  }
  .navbar.navbar-default .navbar-header .navbar-toggle i {
    line-height: 25px;
    color: #aec0c4;
  }
  .navbar.navbar-default .navbar-header .navbar-brand {
    display: inline-block;
    width: 300px;
    height: 120%;
    position: absolute;
    top: 20%;
    left: 90px;
    background-position: left center;
    background-size: contain;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    background-image: url('../img/logo.png');
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .navbar.navbar-default .navbar-header .navbar-brand {
    height: 80%;
    left: 20px;
    background-image: url('../img/logo.png');
    top: 10%;
    position: relative;
  }
}
.navbar.navbar-default .navbar-collapse {
  padding: 25px 0px;
  text-align: center;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.navbar.navbar-default .navbar-collapse.transform {
  padding: 5px 0px 0px 0px;
}
@media (max-width: 767px) {
  .navbar.navbar-default .navbar-collapse {
    padding: 0px;
    border-top: none;
    margin-top: -22px;
  }
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav {
  display: inline-block;
  float: left;
}
@media (max-width: 767px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav {
    margin: 0px;
    border-bottom: 1px solid white;
  }
}
@media (min-width: 768px) and (max-width: 940px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav {
    text-align: center;
    float: none;
    margin-bottom: 20px;
  }
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li {
  display: inline-block;
  margin-right: 60px;
  padding-top: 9px;
  text-align: left;
}
@media (max-width: 767px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li {
    padding-top: 0px;
  }
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li:last-of-type {
  margin-right: 0px;
}
@media (max-width: 767px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li {
    width: 100%;
    text-align: center;
  }
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li:hover a {
    background-color: #aec0c4;
    color: white;
    display: inline-block;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li {
    text-align: center;
    margin-right: 30px;
  }
}
@media (min-width: 901px) and (max-width: 1110px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li {
    text-align: center;
    margin-right: 30px;
  }
}
@media (min-width: 1111px) and (max-width: 1200px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li {
    text-align: center;
    margin-right: 45px;
  }
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li.active a:not(.no-active) {
  background-color: transparent;
  border-bottom: 3px solid #aec0c4;
}
@media (max-width: 767px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li.active a:not(.no-active) {
    background-color: #aec0c4;
    border-bottom: none;
    color: white;
    width: 100%;
    padding: 7px 0px;
  }
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li a {
  padding: 0px 0px 5px 0px;
  margin-right: 0px;
  text-transform: uppercase;
  color: #000000;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 767px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li a {
    width: 100%;
    padding: 7px 0px;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li a {
    font-size: 13px;
  }
}
@media (min-width: 1251px) and (max-width: 1280px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li a {
    font-size: 14px;
  }
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li:last-child a {
  margin-right: 0px;
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li.dropdown.open a {
  color: #000000;
  background-color: transparent;
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li.dropdown.open a:hover {
  color: #000000;
  background-color: transparent;
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li.dropdown.open .dropdown-menu {
  padding: 0px;
  margin-top: 10px;
  border-radius: 0px;
}
@media (max-width: 767px) {
  .navbar.navbar-default .navbar-collapse ul.navbar-nav li.dropdown.open .dropdown-menu {
    margin-top: 0px;
  }
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li.dropdown.open .dropdown-menu li {
  display: inline-block;
  width: 100%;
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li.dropdown.open .dropdown-menu li a {
  display: inline-block;
  width: 100%;
  padding: 10px;
  color: #000000;
  margin-right: 0px;
}
.navbar.navbar-default .navbar-collapse ul.navbar-nav li.dropdown.open .dropdown-menu li a:hover {
  background-color: transparent;
  color: #000000;
}
.navbar-form {
  display: inline-block;
  float: right;
  padding: 0px;
  margin: 0px;
}
@media (max-width: 767px) {
  .navbar-form {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    border-bottom: 1px solid #000000;
    border-top: none;
    border-color: #000000 !important;
  }
}
.navbar-form input {
  display: inline-block;
  width: 125px !important;
  border-radius: 3px;
  padding: 10px 10px;
  margin-bottom: 0px;
  color: #000000;
  border: 1px solid #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  resize: none;
}
@media (max-width: 767px) {
  .navbar-form input {
    width: 250px !important;
  }
}
.navbar-form input:active,
.navbar-form input:focus,
.navbar-form input:hover {
  outline: none !important;
  border-color: black !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.navbar-form button {
  display: inline-block;
  border-radius: 3px;
  padding: 6px 10px;
  margin-bottom: 0px;
  color: #000000;
  border: 1px solid #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  resize: none;
}
.navbar-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aec0c4;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.navbar-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #aec0c4;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.navbar-form :-ms-input-placeholder {
  /* IE 10+ */
  color: #aec0c4;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.navbar-form :-moz-placeholder {
  /* Firefox 18- */
  color: #aec0c4;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
/************************************************* footer ******************************************/
.footer {
  display: inline-block;
  width: 100%;
  padding: 50px 90px;
  background-color: #edf3f4;
  position: relative;
}
@media (max-width: 992px) {
  .footer {
    padding: 30px 20px 50px 20px;
  }
}
@media (min-width: 767px) {
  .footer {
    margin-top: 0px;
  }
}
.footer p,
.footer a {
  width: 100%;
  color: black;
  line-height: 180%;
}
.footer p bold {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .footer p bold {
    margin-top: 20px;
    display: inline-block;
    margin-bottom: 5px;
  }
}
.footer .logo {
  display: inline-block;
  width: 100%;
  height: 100px;
  background-color: transparent;
  background-position: left center;
}
@media (max-width: 767px) {
  .footer .logo {
    margin-bottom: 20px;
  }
}
.footer .social {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}
.footer .social a {
  display: inline-block;
  width: auto;
  margin-right: 15px;
}
.footer .social a i {
  color: black;
  font-size: 16px;
}
.footer .footer-img {
  display: inline-block;
  height: 40px;
  width: 60px;
  background-color: white;
  position: relative;
  margin-bottom: 10px;
  margin-right: 10px;
}
.copyright {
  display: inline-block;
  width: 100%;
  padding: 15px 90px;
  margin-top: -5px;
  margin-bottom: -5px;
  background-color: #000000;
}
@media (max-width: 992px) {
  .copyright {
    padding: 15px 20px;
  }
}
.copyright p {
  color: #ffffff;
}
@media (max-width: 767px) {
  .copyright p {
    font-size: 0.8em;
  }
}
.copyright p a:before {
  display: inline-block;
  content: '|';
  margin-left: 5px;
  margin-right: 5px;
}
.copyright a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .copyright a {
    font-size: 0.8em;
  }
}
.copyright .owner {
  display: inline-block;
  float: left;
}
.copyright .created {
  display: inline-block;
  float: right;
}
.container-fluid {
  display: inline-block;
  width: 100%;
  padding: 44px 0px 0px 0px;
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 138px 0px 0px 0px;
  }
}
.container-content {
  display: inline-block;
  width: 100%;
  padding: 265px 0px 0px 0px;
}
@media (max-width: 767px) {
  .container-content {
    padding: 200px 0px 0px 0px;
  }
}
@media (min-width: 768px) and (max-width: 940px) {
  .container-content {
    padding: 330px 0px 0px 0px;
  }
}
.container-content.grey {
  background-color: #edf3f4;
}
.padding-content {
  display: inline-block;
  width: 100%;
  padding: 70px 90px;
}
@media (max-width: 767px) {
  .padding-content {
    padding: 50px 20px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .padding-content {
    padding: 50px 20px;
  }
}
.col-flex {
  display: flex;
  flex-direction: column;
}
.col-flex > * {
  flex: 1 auto;
}
@media (max-width: 767px) {
  .col-flex {
    min-width: 100%;
  }
}
.row-flex:before {
  display: none;
}
@media (min-width: 768px) {
  .row-flex {
    display: flex;
    flex-wrap: wrap;
  }
}
.slick-prev {
  left: 0px;
  z-index: 900;
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #edf3f4;
  border-radius: 50%;
  top: 40%;
}
.slick-prev:hover,
.slick-prev:active,
.slick-prev:focus {
  background-color: #aec0c4;
}
.slick-next {
  right: 0px;
  z-index: 900;
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #edf3f4;
  border-radius: 50%;
  top: 40%;
}
.slick-next:hover,
.slick-next:active,
.slick-next:focus {
  background-color: #aec0c4;
}
.slick-prev:before {
  color: white;
  content: '\f060';
  font-family: FontAwesome;
  font-size: 18px;
  opacity: 1;
  line-height: 30px;
}
.slick-next:before {
  color: white;
  content: '\f061';
  font-family: FontAwesome;
  font-size: 18px;
  opacity: 1;
  line-height: 30px;
}
@media (max-width: 767px) {
  .slick-prev {
    left: 20px;
    z-index: 900;
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: #edf3f4;
    border-radius: 50%;
    top: 40%;
  }
  .slick-prev:hover {
    background-color: #aec0c4;
  }
  .slick-prev:focus,
  .slick-prev:active {
    background-color: #edf3f4;
  }
  .slick-next {
    right: 20px;
    z-index: 900;
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: #edf3f4;
    border-radius: 50%;
    top: 40%;
  }
  .slick-next:hover {
    background-color: #aec0c4;
  }
  .slick-next:focus,
  .slick-next:active {
    background-color: #edf3f4;
  }
}
.slick-slide {
  margin: 0 10px;
}
/* the parent */
.slick-list {
  margin: 0 -10px;
}
/************************************************* formulier contactpagina ******************************************/
.nieuwsbrief input,
.nieuwsbrief textarea {
  display: inline-block;
  width: 100%;
  border: none;
  border-radius: 0px;
  padding: 10px 10px;
  margin-bottom: 15px;
  color: #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  resize: none;
}
.nieuwsbrief ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c7c7c7;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.nieuwsbrief ::-moz-placeholder {
  /* Firefox 19+ */
  color: #c7c7c7;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.nieuwsbrief :-ms-input-placeholder {
  /* IE 10+ */
  color: #c7c7c7;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.nieuwsbrief :-moz-placeholder {
  /* Firefox 18- */
  color: #c7c7c7;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.nieuwsbrief label {
  display: block;
}
.contact form {
  display: inline-block;
  width: 100%;
  background-color: transparent;
  padding: 0px;
  border-top: none;
}
.contact input,
.contact textarea {
  display: inline-block;
  width: 100%;
  border: none;
  border-radius: 0px;
  padding: 10px 10px;
  margin-bottom: 15px;
  color: #000000;
  border: 1px solid #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  resize: none;
}
.contact ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #c7c7c7;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.contact ::-moz-placeholder {
  /* Firefox 19+ */
  color: #c7c7c7;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.contact :-ms-input-placeholder {
  /* IE 10+ */
  color: #c7c7c7;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.contact :-moz-placeholder {
  /* Firefox 18- */
  color: #c7c7c7;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 100%;
  border: none;
  border-radius: 0px;
  padding: 10px 10px;
  margin-bottom: 15px;
  background-color: white;
  color: #696969;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  background-image: url('/assets/img/select.png');
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 8px;
}
.contact option {
  color: #696969;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.webshop label,
.account label,
.inloggen label {
  display: inline-block;
  width: 100%;
  padding: 20px 0px 5px 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  margin: 0px;
  font-size: 14px;
  color: #000000;
}
.webshop input,
.account input,
.inloggen input,
.webshop select,
.account select,
.inloggen select {
  display: inline-block;
  width: 100%;
  padding: 5px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  margin: 0px;
  font-size: 14px;
  color: #000000;
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid #dcdcdc;
}
.webshop select,
.account select,
.inloggen select {
  -webkit-appearance: none;
  background-color: #ffffff;
  height: 31px;
  background-image: url('/assets/img/select.png');
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 2%;
}
.webshop .check,
.account .check,
.inloggen .check {
  display: inline-block;
  padding-top: 20px;
}
.webshop .check label,
.account .check label,
.inloggen .check label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-right: 15px;
  font-size: 14px;
  padding: 0px 0px 0px 25px;
  min-height: 0px;
}
.webshop .check label:not(.error):before,
.account .check label:not(.error):before,
.inloggen .check label:not(.error):before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 3px;
}
.webshop .check label.error,
.account .check label.error,
.inloggen .check label.error {
  display: inline-block;
  width: 100%;
  padding: 20px 0px 5px 0px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  margin: 0px;
  font-size: 14px;
  color: #000000;
}
.webshop .check input[type=checkbox],
.account .check input[type=checkbox],
.inloggen .check input[type=checkbox] {
  visibility: hidden;
}
.webshop .check input[type=radio],
.account .check input[type=radio],
.inloggen .check input[type=radio] {
  visibility: hidden;
}
.webshop .check .checkbox label:before,
.account .check .checkbox label:before,
.inloggen .check .checkbox label:before {
  border-radius: 3px;
}
.webshop .check input[type=radio]:checked + label:before,
.account .check input[type=radio]:checked + label:before,
.inloggen .check input[type=radio]:checked + label:before {
  content: "\f00c";
  font-size: 10px;
  color: black;
  text-align: center;
  line-height: 10px;
  font-family: FontAwesome;
}
.webshop .check input[type=checkbox]:checked + label:before,
.account .check input[type=checkbox]:checked + label:before,
.inloggen .check input[type=checkbox]:checked + label:before {
  content: "\f00c";
  font-size: 10px;
  color: black;
  text-align: center;
  line-height: 10px;
  font-family: FontAwesome;
}
.webshop .btn-flat,
.account .btn-flat,
.inloggen .btn-flat {
  margin-top: 20px;
}
.remodal form {
  display: inline-block;
  width: 100%;
  background-color: transparent;
  padding: 0px;
  border-top: none;
  text-align: left;
}
.remodal input,
.remodal textarea,
.remodal select {
  display: inline-block;
  width: 100%;
  border: none;
  border-radius: 0px;
  padding: 10px 10px;
  margin-bottom: 15px;
  color: #000000;
  border: 1px solid #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  resize: none;
}
.remodal select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 100%;
  border-radius: 0px;
  padding: 10px 10px;
  margin-bottom: 15px;
  background-color: white;
  color: #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 41px;
  background-image: url('/assets/img/select.png');
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 8px;
}
.remodal option {
  color: #696969;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.remodal label {
  color: white;
}
.remodal label.error {
  color: #ffaa9f;
}
.checkbox input[type="checkbox"] {
  margin-left: -5px !important;
  padding: 10px !important;
}
.checkbox label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  padding: 0 0 0 20px;
}
.checkbox label.error {
  font-weight: 700;
}
.home .home-top-img {
  display: inline-block;
  width: 100%;
  padding: 0px 75px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home .home-top-img {
    padding: 0px 20px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .home .home-top-img {
    padding: 0px 20px;
  }
}
.home .home-top-img .bovenste-rij {
  display: inline-block;
  width: 100%;
}
.home .home-top-img .bovenste-rij .foto {
  display: inline-block;
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .home .home-top-img .bovenste-rij .foto {
    height: 250px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .home .home-top-img .bovenste-rij .foto {
    height: 250px;
  }
}
.home .home-top-img .bovenste-rij .foto:first-of-type {
  display: table;
}
.home .home-top-img .bovenste-rij .foto:first-of-type .content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.home .home-top-img .bovenste-rij .foto:first-of-type .content .white-background {
  display: inline-block;
  padding: 20px;
  background-color: white;
}
.home .home-top-img .bovenste-rij iframe {
  height: 400px;
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 992px) {
  .home .home-top-img .bovenste-rij iframe {
    height: 250px;
  }
}
.home .home-top-img .bovenste-rij .foto {
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .home .home-top-img .bovenste-rij .foto {
    margin-bottom: 30px;
    height: 150px;
  }
}
.home .home-top-img .onderste-rij {
  display: inline-block;
  width: 100%;
}
.home .home-top-img .onderste-rij .foto {
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .home .home-top-img .onderste-rij .foto {
    margin-bottom: 30px;
    height: 150px;
  }
}
.home .stoffen {
  display: inline-block;
  width: 100%;
}
.home .stoffen .single-item {
  display: inline-block;
  width: 100%;
  padding: 0px 90px;
}
.home .stoffen .single-item .item {
  text-align: center;
}
.home .stoffen .single-item .item .stof-foto {
  display: inline-block;
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .home .stoffen .single-item .item .stof-foto {
    height: 200px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .home .stoffen .single-item .item .stof-foto {
    height: 175px;
  }
}
.home .stoffen .single-item .item .stof-foto p {
  display: none;
}
.home .stoffen .single-item .item .stof-foto.nieuw p {
  color: white;
  background-color: #67c7b3;
  padding: 16px 13px;
  display: inline-block;
  width: auto;
  position: absolute;
  top: 20px;
  left: 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.home .stoffen .single-item .item .stof-foto.actie p {
  color: white;
  background-color: #ef7d00;
  padding: 16px 13px;
  display: inline-block;
  width: auto;
  position: absolute;
  top: 20px;
  left: 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.home .stoffen .single-item .item .stof-foto a {
  display: none;
}
.home .stoffen .single-item .item .stof-foto:hover a {
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 15px 0px;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  text-decoration: none;
}
.home .stoffen .single-item .item h4 {
  line-height: 140%;
}
.home .stoffen .single-item .item p {
  display: inline-block;
  width: 100%;
  margin-top: 7px;
  color: #646464;
}
.home .actie {
  display: inline-block;
  width: 100%;
  margin-top: 50px;
}
.home .actie .tekst {
  display: inline-block;
  width: 100%;
}
.home .actie .tekst .blauwe-kader {
  display: inline-block;
  width: 100%;
  background-color: #67c7b3;
  padding: 30px;
}
.home .actie .tekst .blauwe-kader .stippellijn-kader {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 3px dashed white;
  padding: 30px;
}
.home .actie .tekst .blauwe-kader .stippellijn-kader h2 {
  color: white;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.home .actie .tekst .blauwe-kader .stippellijn-kader p {
  color: white;
  line-height: 180%;
}
.home .actie .tekst .blauwe-kader .stippellijn-kader .btn-black {
  display: inline-block;
  margin-top: 20px;
  padding: 17px 15px;
}
.home .actie .foto {
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .home .actie .foto {
    height: 200px;
    margin-bottom: -5px;
  }
}
.home .workshops {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.home .workshops .lijn-schaar {
  display: inline-block;
  width: 480px;
  height: 3px;
  margin-bottom: 35px;
  border-top: 3px dashed #000000;
  position: relative;
}
@media (max-width: 767px) {
  .home .workshops .lijn-schaar {
    width: 250px;
  }
}
.home .workshops .lijn-schaar .schaar {
  display: inline-block;
  width: 44px;
  height: 14px;
  top: -13px;
  position: absolute;
  left: 0px;
  background-image: url('/assets/img/schaar.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  background-color: white;
}
.home .workshops h2 {
  color: #000000;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.home .workshops p {
  color: #000000;
  line-height: 180%;
  display: inline-block;
  width: 100%;
  margin-bottom: 35px;
  padding: 0px 250px;
}
@media (max-width: 992px) {
  .home .workshops p {
    padding: 0px 20px;
  }
}
.home .workshops a:first-of-type {
  margin-right: 10px;
}
@media (max-width: 992px) {
  .home .workshops a:first-of-type {
    margin-bottom: 15px;
    margin-right: 0px;
  }
}
.over-ons p b,
.over-ons p strong {
  text-transform: none;
}
.over-ons .actie {
  display: inline-block;
  width: 100%;
}
.over-ons .actie .tekst {
  display: inline-block;
  width: 100%;
}
.over-ons .actie .tekst .blauwe-kader {
  display: inline-block;
  width: 100%;
  background-color: #67c7b3;
  padding: 30px;
}
.over-ons .actie .tekst .blauwe-kader .stippellijn-kader {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 3px dashed white;
  padding: 30px;
}
.over-ons .actie .tekst .blauwe-kader .stippellijn-kader h2 {
  color: white;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.over-ons .actie .tekst .blauwe-kader .stippellijn-kader p {
  color: white;
  line-height: 180%;
}
.over-ons .actie .tekst .blauwe-kader .stippellijn-kader .btn-black {
  display: inline-block;
  margin-top: 20px;
  padding: 17px 15px;
}
.over-ons .actie .foto {
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .over-ons .actie .foto {
    height: 200px;
    margin-bottom: -5px;
  }
}
.over-ons .over-ons-tekst {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.over-ons .over-ons-tekst p {
  line-height: 180%;
}
@media (min-width: 992px) {
  .over-ons .over-ons-tekst .over-ons-tekst-split {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
.over-ons .over-ons-tekst .over-ons-tekst-split p {
  display: block;
}
@media (max-width: 767px) {
  .over-ons .over-ons-tekst .col-md-6:first-of-type {
    margin-bottom: 20px;
  }
}
.over-ons .wie-ben-ik {
  display: inline-block;
  width: 100%;
  padding-top: 0px;
  text-align: center;
}
.over-ons .wie-ben-ik .lijn-schaar {
  display: inline-block;
  width: 480px;
  height: 3px;
  margin-bottom: 35px;
  border-top: 3px dashed #000000;
  position: relative;
}
@media (max-width: 767px) {
  .over-ons .wie-ben-ik .lijn-schaar {
    width: 250px;
  }
}
.over-ons .wie-ben-ik .lijn-schaar .schaar {
  display: inline-block;
  width: 44px;
  height: 14px;
  top: -13px;
  position: absolute;
  left: 0px;
  background-image: url('/assets/img/schaar.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  background-color: white;
}
.over-ons .wie-ben-ik h2 {
  color: #000000;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.over-ons .wie-ben-ik .foto {
  display: inline-block;
  width: 100%;
  height: 250px;
  text-align: center;
  margin: 15px 0px 50px 0px;
}
.over-ons .wie-ben-ik .foto .pop {
  display: inline-block;
  width: 250px;
  height: 250px;
  border-radius: 50%;
}
.over-ons .wie-ben-ik p {
  color: #000000;
  line-height: 180%;
  display: inline-block;
  width: 100%;
  margin-bottom: 35px;
  padding: 0px 0px;
}
@media (max-width: 992px) {
  .over-ons .wie-ben-ik p {
    padding: 0px 20px;
  }
}
.workshops p b,
.workshops p strong {
  text-transform: none;
}
.workshops .actie {
  display: inline-block;
  width: 100%;
}
.workshops .actie .tekst {
  display: inline-block;
  width: 100%;
}
.workshops .actie .tekst .blauwe-kader {
  display: inline-block;
  width: 100%;
  background-color: #67c7b3;
  padding: 30px;
}
.workshops .actie .tekst .blauwe-kader .stippellijn-kader {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 3px dashed white;
  padding: 30px;
}
.workshops .actie .tekst .blauwe-kader .stippellijn-kader h2 {
  color: white;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.workshops .actie .tekst .blauwe-kader .stippellijn-kader p {
  color: white;
  line-height: 180%;
}
.workshops .actie .tekst .blauwe-kader .stippellijn-kader p bold {
  display: inline-block;
  margin-top: 20px;
}
.workshops .actie .tekst .blauwe-kader .stippellijn-kader p bold:before {
  display: inline-block;
  margin-right: 10px;
  font-family: FontAwesome;
  content: '\f01a';
  font-weight: 400;
  font-size: 16px;
}
.workshops .actie .tekst .blauwe-kader .stippellijn-kader .btn-black {
  display: inline-block;
  margin-top: 20px;
  padding: 17px 15px;
}
.workshops .actie .foto {
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .workshops .actie .foto {
    height: 200px;
    margin-bottom: -5px;
  }
}
.workshops .overzicht-workshops {
  display: inline-block;
  width: 100%;
}
.workshops .overzicht-workshops .workshops-filter {
  margin-top: 40px;
}
.workshops .overzicht-workshops .workshops-filter button {
  margin: 5px 8px 5px 0;
}
.workshops .overzicht-workshops .padding-content {
  display: inline-block;
  width: 100%;
  padding: 0px 90px;
}
@media (max-width: 929px) {
  .workshops .overzicht-workshops .padding-content {
    padding: 0px 20px;
  }
}
.workshops .overzicht-workshops .padding-content:last-of-type .workshop-detail {
  border-bottom: none;
}
.workshops .overzicht-workshops .padding-content .workshops-wrapper {
  margin-bottom: 80px;
}
.workshops .overzicht-workshops .padding-content .workshop {
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}
.workshops .overzicht-workshops .padding-content .workshop .card-body {
  padding: 60px;
}
@media (max-width: 991px) {
  .workshops .overzicht-workshops .padding-content .workshop .card-body {
    padding: 45px;
  }
}
@media (max-width: 767px) {
  .workshops .overzicht-workshops .padding-content .workshop .card-body {
    padding: 30px;
  }
}
.workshops .overzicht-workshops .padding-content .workshop .card-body h3 {
  margin-bottom: 40px;
}
.workshops .overzicht-workshops .padding-content .workshop .card-body .gegevens {
  margin: 30px 0;
  flex: 1 1 auto;
}
.workshops .overzicht-workshops .padding-content .workshop .card-body .gegevens p {
  padding: 8px 0;
  border-bottom: 1px solid #67c7b3;
  display: block;
}
.workshops .overzicht-workshops .padding-content .workshop .card-body .gegevens p:last-of-type {
  border-bottom: none;
}
.workshops .overzicht-workshops .padding-content .workshop .card-body .gegevens p i.fa {
  color: #67c7b3;
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  font-size: 16px;
}
.workshops .overzicht-workshops .padding-content .workshop .card-body .gegevens p i.fa.fa-red {
  color: #c10c10;
}
.workshops .overzicht-workshops .padding-content .workshop .card-body a.btn {
  margin-top: 40px;
}
.workshop-detail h2 {
  margin-bottom: 30px;
  font-size: 35px;
  padding: 0;
}
.workshop-detail .beschrijving {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.workshop-detail .beschrijving p {
  line-height: 180%;
  display: inline-block;
  width: 100%;
}
.workshop-detail section#formulier {
  border: 1px solid #edf3f4;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
  padding: 50px;
}
@media (max-width: 767px) {
  .workshop-detail section#formulier {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .workshop-detail section#formulier {
    padding: 30px;
  }
}
.workshop-detail section#formulier h3 {
  margin-bottom: 30px;
}
.workshop-detail section#formulier .info-block {
  display: flex;
  justify-content: space-between;
}
.workshop-detail section#formulier .info-block p.info {
  text-transform: uppercase;
}
.workshop-detail section#formulier .info-block p.info i {
  color: #67c7b3;
  margin-right: 10px;
}
.workshop-detail section#formulier .contact .form-group {
  margin-bottom: 10px;
}
.workshop-detail section#formulier .contact label.col-form-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .workshop-detail section#formulier .contact label.col-form-label {
    line-height: 34px;
  }
}
.workshop-detail section#formulier .contact input {
  border: 1px solid #aec0c4;
  margin-bottom: 0;
}
.workshop-detail section#formulier .privacy {
  margin: 20px 0;
}
.workshop-detail section#formulier p.disclaimer {
  display: block;
  margin-bottom: 20px;
  font-style: italic;
}
.workshop-detail section#formulier p.disclaimer a {
  display: inline;
}
.workshop-detail section#formulier .extra-info p {
  display: block;
  margin-top: 20px;
  font-style: italic;
}
.workshop-detail section#formulier .extra-info p a {
  display: inline;
}
.workshop-detail section#formulier hr {
  margin: 20px 0;
  border-color: #edf3f4;
}
.naaicafe p b,
.naaicafe p strong {
  text-transform: none;
}
.naaicafe .actie {
  display: inline-block;
  width: 100%;
}
.naaicafe .actie .tekst {
  display: inline-block;
  width: 100%;
}
.naaicafe .actie .tekst .blauwe-kader {
  display: inline-block;
  width: 100%;
  background-color: #67c7b3;
  padding: 30px;
}
.naaicafe .actie .tekst .blauwe-kader .stippellijn-kader {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 3px dashed white;
  padding: 30px;
}
.naaicafe .actie .tekst .blauwe-kader .stippellijn-kader h2 {
  color: white;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.naaicafe .actie .tekst .blauwe-kader .stippellijn-kader p {
  color: white;
  line-height: 180%;
}
.naaicafe .actie .tekst .blauwe-kader .stippellijn-kader p bold {
  display: inline-block;
  margin-top: 20px;
}
.naaicafe .actie .tekst .blauwe-kader .stippellijn-kader p bold:before {
  display: inline-block;
  margin-right: 10px;
  font-family: FontAwesome;
  content: '\f01a';
  font-weight: 400;
  font-size: 16px;
}
.naaicafe .actie .tekst .blauwe-kader .stippellijn-kader .btn-black {
  display: inline-block;
  margin-top: 20px;
  padding: 17px 15px;
}
.naaicafe .actie .foto {
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .naaicafe .actie .foto {
    height: 200px;
    margin-bottom: -5px;
  }
}
.naaicafe .over-ons-tekst {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.naaicafe .over-ons-tekst ul {
  display: inline-block;
  width: 100%;
}
.naaicafe .over-ons-tekst ul li {
  display: inline-block;
  width: 100%;
  line-height: 150%;
}
.naaicafe .over-ons-tekst p {
  line-height: 180%;
}
.naaicafe .over-ons-tekst p strong,
.naaicafe .over-ons-tekst p b {
  text-transform: none;
}
@media (min-width: 992px) {
  .naaicafe .over-ons-tekst .over-ons-tekst-split {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
.naaicafe .over-ons-tekst .over-ons-tekst-split p {
  display: block;
}
@media (max-width: 767px) {
  .naaicafe .over-ons-tekst .col-md-6:first-of-type {
    margin-bottom: 20px;
  }
}
.contact h2 {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  padding: 0px;
}
.contact p {
  display: inline-block;
  width: 100%;
  line-height: 180%;
}
.contact form {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.contact .contact-gegevens {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .contact .contact-gegevens {
    padding-left: 30px;
    margin-top: 60px;
  }
}
.contact .contact-gegevens p:first-of-type {
  margin-top: -40px;
}
.contact .contact-gegevens p bold {
  margin-top: 40px;
  display: inline-block;
}
.contact .contact-gegevens a {
  color: black;
  display: inline-block;
  width: 100%;
  line-height: 180%;
}
.contact #map {
  display: inline-block;
  width: 100%;
  height: 300px;
  margin-bottom: -10px;
}
.contact .alert-dismissible p {
  display: block;
  line-height: 140%;
}
.partial-naaicafe {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 70px 240px;
  text-align: center;
}
.partial-naaicafe .filter {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0px;
  left: 0px;
  z-index: 0;
}
.partial-naaicafe .content {
  display: inline-block;
  position: relative;
  z-index: 10;
}
@media (max-width: 992px) {
  .partial-naaicafe {
    padding: 70px 20px;
  }
}
.partial-naaicafe h2 {
  color: white;
  line-height: 130%;
  margin-bottom: 35px;
}
.partial-menukaart {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 50px 0px;
  text-align: center;
  background-color: #c6dbe1;
}
@media (max-width: 992px) {
  .partial-menukaart {
    padding: 30px 0px;
  }
}
.partial-aankopen {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 50px 90px;
  text-align: center;
  background-image: url('assets/img/partial.png');
}
@media (max-width: 767px) {
  .partial-aankopen {
    padding: 30px 20px;
  }
}
.partial-aankopen a {
  float: right;
}
@media (max-width: 992px) {
  .partial-aankopen a {
    float: none;
  }
}
.partial-aankopen h3 {
  float: left;
  color: white;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .partial-aankopen h3 {
    float: none;
    line-height: 180%;
    margin-bottom: 25px;
  }
}
.voorwaarden h2 {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  padding: 0px;
}
.voorwaarden p {
  display: inline-block;
  width: 100%;
  line-height: 180%;
  margin-bottom: 15px;
}
.test {
  background-color: transparent;
}
.nieuwsbrief {
  display: inline-block;
  width: 100%;
  padding: 50px 0px;
  background-color: #edf3f4;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: left;
}
@media (max-width: 767px) {
  .nieuwsbrief {
    text-align: center;
  }
}
.nieuwsbrief h2 {
  font-size: 35px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .nieuwsbrief h2 {
    font-size: 25px;
  }
}
.nieuwsbrief p {
  margin-bottom: 20px;
  line-height: 150%;
}
.nieuwsbrief form {
  display: inline-block;
  width: 100%;
}
.nieuwsbrief form input {
  display: inline-block;
  width: 60%;
}
@media (max-width: 767px) {
  .nieuwsbrief form input {
    width: 100%;
  }
}
.nieuwsbrief .afbeelding {
  background-position: left center;
}
@media (max-width: 767px) {
  .nieuwsbrief .afbeelding {
    height: 200px;
    background-position: center;
    margin-bottom: 30px;
  }
}
.alert.alert-warning {
  border-radius: 0;
  background-color: #5eb5a3;
  color: #ffffff;
  border: none;
  margin-bottom: 15px;
}
.alert.alert-warning p {
  margin: 5px 0 !important;
}
.rondleiding {
  padding: 0 90px 40px 90px;
}
@media (max-width: 992px) {
  .rondleiding {
    padding: 0 30px 40px 30px;
  }
}
.rondleiding iframe {
  width: 100%;
  height: 450px;
}
#page-bedankt {
  text-align: center;
  padding: 100px 0;
}
#page-bedankt h2,
#page-bedankt h3 {
  margin-bottom: 20px;
  display: block;
}
#page-bedankt p {
  padding: 30px 0;
  display: block;
}
#page-bedankt a {
  margin-top: 20px;
  display: inline-block;
}
.webshop {
  display: inline-block;
  width: 100%;
  padding: 0px 90px 50px 90px;
}
@media (max-width: 992px) {
  .webshop {
    padding: 0px 20px 50px 20px;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .webshop {
    padding: 0px 100px 50px 100px !important;
  }
}
.webshop.no-padding {
  padding: 0px;
}
@media (max-width: 767px) {
  .webshop .product-overzicht .filters {
    display: inline-block;
    padding: 0px 30px;
  }
}
.webshop .product-overzicht .filters .accordion input {
  display: none;
}
.webshop .product-overzicht .producten .top {
  display: inline-block;
  margin-bottom: 35px;
}
.webshop .product-overzicht .producten .top select {
  float: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 200px;
  line-height: 35px;
  border: 1px solid #3c3c3c;
  border-radius: 0px;
  padding: 0px 15px;
  height: 35px;
  background-color: transparent;
  color: #3c3c3c;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  background-image: url('/assets/img/dropdown.png');
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 3.5%;
}
@media (max-width: 767px) {
  .webshop .product-overzicht .producten .top select {
    width: 100%;
    margin-bottom: 10px;
  }
}
.webshop .product-overzicht .producten .top p {
  display: inline-block;
  float: right;
  line-height: 35px;
}
.webshop .product-overzicht .producten .box-producten {
  display: inline-block;
  width: 100%;
}
.webshop .product-overzicht .producten .box-producten .item {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 35px;
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto {
  display: inline-block;
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 992px) {
  .webshop .product-overzicht .producten .box-producten .item .stof-foto {
    cursor: pointer;
  }
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto .filter {
  display: none;
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto:hover .filter {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: table;
  background-color: rgba(0, 0, 0, 0.4);
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto:hover .filter .content {
  display: table-cell;
  vertical-align: middle;
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto:hover .filter .content a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  text-align: center;
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto:hover .filter .content a:hover {
  background-color: white;
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto:hover .filter .content a:hover i {
  color: #67c7b3;
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto:hover .filter .content a i {
  line-height: 35px;
  color: white;
  font-size: 16px;
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto:hover .filter .content a:first-of-type {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .webshop .product-overzicht .producten .box-producten .item .stof-foto {
    height: 200px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .webshop .product-overzicht .producten .box-producten .item .stof-foto {
    height: 175px;
  }
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto p {
  display: none;
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto.nieuw p {
  color: white;
  background-color: #67c7b3;
  padding: 16px 13px;
  display: inline-block;
  width: auto;
  position: absolute;
  top: 20px;
  left: 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.webshop .product-overzicht .producten .box-producten .item .stof-foto.actie p {
  color: white;
  background-color: #ef7d00;
  padding: 16px 13px;
  display: inline-block;
  width: auto;
  position: absolute;
  top: 20px;
  left: 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.webshop .product-overzicht .producten .box-producten .item .beschrijving {
  display: inline-block;
  width: 100%;
}
.webshop .product-overzicht .producten .box-producten .item .beschrijving h4 {
  line-height: 140%;
  color: #000000;
}
.webshop .product-overzicht .producten .box-producten .item p {
  display: inline-block;
  width: 100%;
  margin-top: 7px;
  color: #646464;
}
.webshop .product-overzicht .producten .box-producten .item form {
  display: inline;
}
.webshop .product-overzicht .producten .paginatie {
  display: inline-block;
  padding: 50px 15px;
}
.webshop .product-overzicht .producten .paginatie p {
  display: inline-block;
  float: left;
  line-height: 29px;
}
.webshop .product-overzicht .producten .paginatie .pagination {
  display: inline-block;
  float: right;
  margin: 0px;
}
.webshop .product-overzicht .producten .paginatie .pagination li {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #000000;
  text-align: center;
  border-radius: 0px;
  margin-right: -5px;
}
.webshop .product-overzicht .producten .paginatie .pagination li.active {
  background-color: #edf3f4;
}
.webshop .product-overzicht .producten .paginatie .pagination li:hover {
  background-color: #edf3f4;
}
.webshop .product-overzicht .producten .paginatie .pagination li a {
  display: block;
  padding: 0px;
  line-height: 25px;
  float: none;
  background-color: transparent;
  color: #000000;
  border: none;
  font-size: 11px;
  cursor: pointer;
}
.webshop .product-overzicht .producten .paginatie .pagination li a i {
  font-size: 10px;
}
.webshop .product-detail {
  display: inline-block;
  width: 100%;
}
.webshop .product-detail .breadcrumbs {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
}
.webshop .product-detail .breadcrumbs a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  padding: 0px;
  margin: 0px;
  display: inline-block;
  font-size: 14px;
  color: #646464;
  text-transform: capitalize;
}
.webshop .product-detail .breadcrumbs a:after {
  display: inline-block;
  content: '|';
  margin: 0px 7px;
}
.webshop .product-detail .slider {
  display: inline-block;
  width: 100%;
}
.webshop .product-detail .slider .slider-for {
  display: inline-block;
  width: 100%;
}
.webshop .product-detail .slider .slider-for div {
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .webshop .product-detail .slider .slider-for div {
    height: 250px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .webshop .product-detail .slider .slider-for div {
    height: 300px;
  }
}
@media (min-width: 993px) {
  .webshop .product-detail .slider .slider-for div {
    max-height: 450px;
  }
}
.webshop .product-detail .slider .slider-nav {
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .webshop .product-detail .slider .slider-nav {
    margin-bottom: 30px;
  }
}
.webshop .product-detail .slider .slider-nav div {
  display: inline-block;
  height: 150px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .webshop .product-detail .slider .slider-nav div {
    height: 100px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .webshop .product-detail .slider .slider-nav div {
    height: 120px;
  }
}
.webshop .product-detail .top {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #646464;
  padding-bottom: 20px;
}
.webshop .product-detail .top h4 {
  display: inline-block;
  width: 100%;
  line-height: 180%;
}
.webshop .product-detail .top p {
  display: inline-block;
  width: 100%;
  line-height: 180%;
}
.webshop .product-detail .top .social {
  display: inline-block;
  text-align: right;
}
.webshop .product-detail .top .social a {
  display: inline-block;
  margin-right: 10px;
}
.webshop .product-detail .top .social a:last-of-type {
  margin-right: 0px;
}
.webshop .product-detail .top .social a i {
  color: #646464;
  font-size: 16px;
}
.webshop .product-detail .top .social a i.fa-pinterest:hover {
  color: #bd081c;
}
.webshop .product-detail .top .social a i.fa-facebook:hover {
  color: #3b5998;
}
.webshop .product-detail .top .social a i.fa-twitter:hover {
  color: #1da1f2;
}
.webshop .product-detail .top .social a i.fa-instagram:hover {
  color: #5851db;
}
.webshop .product-detail .midden {
  display: inline-block;
  width: 100%;
  padding-bottom: 45px;
  padding-top: 45px;
  border-bottom: 1px solid #646464;
  /* Override browser form filling */
}
.webshop .product-detail .midden input[type="number"] {
  position: relative;
  margin: 0px 10px 0px 10px;
  padding: 6px 5px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  width: 90px;
}
.webshop .product-detail .midden input[type="number"].mod::-webkit-outer-spin-button,
.webshop .product-detail .midden input[type="number"].mod::-webkit-inner-spin-button {
  -webkit-appearance: none;
  background: #ffffff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKUlEQVQYlWNgwAT/sYhhKPiPT+F/LJgEsHv37v+EMGkmkuImoh2NoQAANlcun/q4OoYAAAAASUVORK5CYII=) no-repeat center center;
  width: 1em;
  border-left: 1px solid #BBB;
  opacity: .5;
  /* shows Spin Buttons per default (Chrome >= 39) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.webshop .product-detail .midden input:-webkit-autofill {
  background: black;
  color: red;
}
.webshop .product-detail .midden .btn-flat:hover {
  cursor: pointer;
}
.webshop .product-detail .onder {
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
  padding-top: 20px;
}
.webshop .product-detail .onder p {
  line-height: 180%;
}
.webshop .product-detail .onder table.product-table {
  margin-top: 40px;
}
.webshop .product-detail .onder table.product-table th,
.webshop .product-detail .onder table.product-table td {
  border-top: none;
  font-family: 'Open Sans', sans-serif;
}
.webshop .product-detail .onder table.product-table td {
  font-weight: 300;
}
.webshop .product-detail .onder .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #edf3f4;
}
.webshop .product-detail .gerelateerd {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid #646464;
  padding: 40px 0px 20px 0px;
}
.webshop .product-detail .gerelateerd p {
  display: inline-block;
  width: 100%;
  padding: 0px 0px 20px 15px;
}
.webshop .product-detail .gerelateerd .item {
  text-align: center;
  display: inline-block;
  margin-bottom: 35px;
}
.webshop .product-detail .gerelateerd .item .stof-foto {
  display: inline-block;
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  position: relative;
}
.webshop .product-detail .gerelateerd .item .stof-foto .filter {
  display: none;
}
.webshop .product-detail .gerelateerd .item .stof-foto:hover .filter {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: table;
  background-color: rgba(0, 0, 0, 0.4);
}
.webshop .product-detail .gerelateerd .item .stof-foto:hover .filter .content {
  display: table-cell;
  vertical-align: middle;
}
.webshop .product-detail .gerelateerd .item .stof-foto:hover .filter .content a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  text-align: center;
}
.webshop .product-detail .gerelateerd .item .stof-foto:hover .filter .content a:hover {
  background-color: white;
}
.webshop .product-detail .gerelateerd .item .stof-foto:hover .filter .content a:hover i {
  color: #67c7b3;
}
.webshop .product-detail .gerelateerd .item .stof-foto:hover .filter .content a i {
  line-height: 35px;
  color: white;
  font-size: 16px;
}
.webshop .product-detail .gerelateerd .item .stof-foto:hover .filter .content a:first-of-type {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .webshop .product-detail .gerelateerd .item .stof-foto {
    height: 200px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .webshop .product-detail .gerelateerd .item .stof-foto {
    height: 175px;
  }
}
.webshop .product-detail .gerelateerd .item .stof-foto p {
  display: none;
}
.webshop .product-detail .gerelateerd .item .stof-foto.nieuw p {
  color: white;
  background-color: #67c7b3;
  padding: 16px 13px;
  display: inline-block;
  width: auto;
  position: absolute;
  top: 20px;
  left: 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.webshop .product-detail .gerelateerd .item .stof-foto.actie p {
  color: white;
  background-color: #ef7d00;
  padding: 16px 13px;
  display: inline-block;
  width: auto;
  position: absolute;
  top: 20px;
  left: 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.webshop .product-detail .gerelateerd .item .beschrijving {
  display: inline-block;
  width: 100%;
}
.webshop .product-detail .gerelateerd .item .beschrijving h4 {
  line-height: 140%;
  color: #000000;
}
.webshop .product-detail .gerelateerd .item p {
  display: inline-block;
  width: 100%;
  margin-top: 7px;
  color: #646464;
}
.webshop .winkelmandje .product {
  display: inline-block;
  width: 100%;
  padding: 20px 0px;
  border-bottom: 1px solid #edf3f4;
}
.webshop .winkelmandje .product:last-of-type {
  border-bottom: none;
}
.webshop .winkelmandje .product .foto {
  display: table;
  height: 100px;
  text-align: left;
}
.webshop .winkelmandje .product .foto .content {
  display: table-cell;
  width: 100px;
  height: 100px;
  vertical-align: middle;
}
.webshop .winkelmandje .product .beschrijving {
  display: table;
  height: 100px;
  text-align: left;
}
.webshop .winkelmandje .product .beschrijving .content {
  display: table-cell;
  vertical-align: middle;
}
.webshop .winkelmandje .product .beschrijving .content h4 {
  text-transform: none;
  line-height: 180%;
  width: 100%;
}
.webshop .winkelmandje .product .beschrijving .content p {
  line-height: 180%;
  width: 100%;
}
.webshop .winkelmandje .product .aantal {
  display: table;
  height: 100px;
  text-align: left;
}
.webshop .winkelmandje .product .aantal .content {
  display: table-cell;
  vertical-align: middle;
  /* Override browser form filling */
}
.webshop .winkelmandje .product .aantal .content input[type="number"] {
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 6px 5px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  width: 100%;
}
.webshop .winkelmandje .product .aantal .content input[type="number"].mod::-webkit-outer-spin-button,
.webshop .winkelmandje .product .aantal .content input[type="number"].mod::-webkit-inner-spin-button {
  -webkit-appearance: none;
  background: #ffffff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKUlEQVQYlWNgwAT/sYhhKPiPT+F/LJgEsHv37v+EMGkmkuImoh2NoQAANlcun/q4OoYAAAAASUVORK5CYII=) no-repeat center center;
  width: 1em;
  border-left: 1px solid #BBB;
  opacity: .5;
  /* shows Spin Buttons per default (Chrome >= 39) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.webshop .winkelmandje .product .aantal .content input:-webkit-autofill {
  background: black;
  color: red;
}
.webshop .winkelmandje .product .sluiten {
  display: table;
  height: 100px;
  text-align: right;
  width: 100%;
}
.webshop .winkelmandje .product .sluiten .content {
  display: table-cell;
  vertical-align: middle;
}
.webshop .winkelmandje .product .sluiten .content a {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #646464;
  text-align: center;
}
.webshop .winkelmandje .product .sluiten .content a:hover {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.webshop .winkelmandje .product .sluiten .content a i {
  color: white;
  font-size: 11px;
  line-height: 19px;
}
.webshop .winkelmandje .overzicht {
  display: inline-block;
  width: 100%;
  padding: 20px;
  border-radius: 7px;
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
}
.webshop .winkelmandje .overzicht h5 {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.webshop .winkelmandje .overzicht p {
  line-height: 150%;
}
.webshop .winkelmandje .overzicht .totaal {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #dcdcdc;
  padding: 20px 0px 0px 0px;
  margin-top: 20px;
}
.webshop .winkelmandje .overzicht .totaal p bold {
  text-transform: none;
}
.webshop .winkelmandje .overzicht .totaal p i {
  font-size: 12px;
}
.webshop .winkelmandje .overzicht .totaal .btn-flat {
  margin-top: 15px;
  border-radius: 5px;
  font-size: 13px;
  padding: 15px 0px;
  text-align: center;
  width: 100%;
  line-height: 110%;
}
.webshop .winkelmandje .overzicht .totaal .btn-continue {
  color: #67c7b3;
  margin-top: 15px;
  margin-left: 0px;
}
.webshop .winkelmandje .korting {
  display: inline-block;
  width: 100%;
  padding: 20px;
  border-radius: 7px;
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  margin-top: 10px;
}
.webshop .winkelmandje .korting h5 {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.webshop .winkelmandje .korting input {
  display: inline-block;
  width: 100%;
  border: 1px solid #dcdcdc;
  padding: 5px;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  margin: 0px;
  font-size: 14px;
  color: #646464;
}
.webshop .winkelmandje .korting .btn-continue {
  color: #67c7b3;
  margin-top: 15px;
  margin-left: 0px;
}
.webshop.gegevens {
  display: inline-block;
  width: 100%;
  padding: 50px 300px 65px 300px;
}
@media (max-width: 992px) {
  .webshop.gegevens {
    padding: 50px 20px;
  }
}
.webshop.gegevens .stappen {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.webshop.gegevens .stappen .stap {
  display: inline-block;
  height: 50px;
  vertical-align: top;
}
.webshop.gegevens .stappen .stap .nummer {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #dcdcdc;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}
.webshop.gegevens .stappen .stap .nummer p {
  line-height: 25px;
  font-weight: 700;
  color: #ffffff;
}
.webshop.gegevens .stappen .stap p {
  display: inline-block;
  color: #dcdcdc;
}
.webshop.gegevens .stappen .stap.active .nummer {
  background-color: #67c7b3;
  color: #ffffff;
}
.webshop.gegevens .stappen .stap.active .nummer p {
  color: #ffffff;
}
.webshop.gegevens .stappen .stap.active p {
  color: #67c7b3;
}
.webshop.gegevens .stappen .lijn {
  display: inline-block;
  width: 78px;
  height: 1px;
  background-color: #dcdcdc;
  margin-top: 12px;
}
@media (max-width: 992px) {
  .webshop.gegevens .stappen .lijn {
    width: 30px;
    margin-top: 13px;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .webshop.gegevens .stappen .lijn {
    margin-top: 13px;
  }
}
.webshop.gegevens .factuurgegevens {
  display: inline-block;
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  padding: 40px 20px;
  width: 100%;
  border-radius: 0px;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .webshop.gegevens .factuurgegevens {
    margin-top: 10px;
    padding: 40px 0px;
  }
}
.webshop.gegevens .factuurgegevens h5 {
  margin: 0px 0px 5px 0px;
  padding: 0px 15px;
}
.webshop.gegevens .factuurgegevens .adres {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #dcdcdc;
  padding-top: 20px;
  margin-top: 50px;
}
.webshop.gegevens .verzendmethode .logo-verzendmethode {
  display: inline-block;
  width: 100%;
  height: 70px;
  background-position: top left;
  background-size: 70%;
}
.webshop.gegevens .verzendmethode .check {
  padding-top: 0px;
}
.webshop.gegevens .verzendmethode .leveradres {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  padding-left: 10px;
}
.webshop.gegevens .verzendmethode .leveradres p {
  display: inline-block;
  width: 100%;
  line-height: 130%;
}
.webshop.gegevens .verzendmethode label bold {
  font-weight: 400;
}
.webshop.gegevens .verzendmethode .afhaal {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #dcdcdc;
  margin-top: 20px;
  padding-top: 20px;
}
.webshop.gegevens .verzendmethode .btn-continue {
  color: #67c7b3;
  margin-left: 0px;
}
.webshop.gegevens .verzendmethode .btn-flat {
  margin-top: 35px;
}
.webshop.gegevens .betalingsinfo .check {
  padding: 0px;
}
.webshop.gegevens .betalingsinfo .check .checkbox {
  margin: 0px;
}
.webshop.gegevens .betalingsinfo .check .checkbox label {
  margin: 0px;
}
.webshop.gegevens .betalingsinfo .col-md-4 {
  text-align: right;
}
.webshop.gegevens .betalingsinfo .logo-verzendmethode {
  display: inline-block;
  width: 35px;
  height: 20px;
  background-position: top left;
  margin-right: 5px;
}
.webshop.gegevens .betalingsinfo .logo-verzendmethode:last-of-type {
  margin-right: 0px;
}
.webshop.gegevens .betalingsinfo .btn-flat {
  margin-top: 35px;
}
.webshop.gegevens .betalingsinfo .streep {
  display: inline-block;
  width: 100%;
  margin: 20px 0px;
  height: 1px;
  background-color: #dcdcdc;
}
.webshop.gegevens .overzicht {
  display: inline-block;
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  padding: 40px 20px;
  width: 100%;
  border-radius: 0px;
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 1200px) {
  .webshop.gegevens .overzicht {
    margin-top: 10px;
    padding: 40px 0px;
  }
}
.webshop.gegevens .overzicht h5 {
  margin: 0px;
  padding: 0px;
}
.webshop.gegevens .overzicht i {
  color: #67c7b3;
  margin: 35px 0px 25px 0px;
  font-size: 70px;
}
.webshop.gegevens .overzicht p {
  line-height: 180%;
}
.webshop ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #3c3c3c;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.webshop ::-moz-placeholder {
  /* Firefox 19+ */
  color: #3c3c3c;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.webshop :-ms-input-placeholder {
  /* IE 10+ */
  color: #3c3c3c;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.webshop :-moz-placeholder {
  /* Firefox 18- */
  color: #3c3c3c;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
}
.webshop .strike-text {
  position: relative;
}
.webshop .strike-text:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid;
  border-color: inherit;
  color: red;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
.webshop .promo {
  background-color: #5eb5a3;
  color: white;
  display: inline-block;
  margin-left: 10px;
  padding: 5px;
}
.account {
  display: inline-block;
  width: 100%;
  padding: 0px 90px 50px 90px;
}
@media (max-width: 992px) {
  .account {
    padding: 0px 20px 50px 20px;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .account {
    padding: 0px 100px 50px 100px !important;
  }
}
.account .check.no-padding-top {
  padding-top: 0px;
}
.account .margin-btm {
  margin-bottom: 20px;
}
.account .margin-top {
  margin-top: 20px;
}
.account .padding {
  display: inline-block;
  width: 100%;
  height: 50px;
}
.account h4 {
  font-size: 24px;
  text-transform: none;
  font-weight: 400;
  margin: 0px 0px 15px 0px;
}
.account h5 {
  font-size: 20px;
  text-transform: none;
  font-weight: 300;
  margin: 0px;
  font-family: 'Open Sans', sans-serif;
}
.account p {
  display: inline-block;
  width: 100%;
  line-height: 180%;
}
.account ul {
  display: inline-block;
  width: 100%;
  padding: 0px;
}
@media (max-width: 767px) {
  .account ul {
    margin-top: 30px;
  }
}
.account ul p {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  background-color: #aec0c4;
  color: #fcfcfc;
}
.account ul li {
  display: inline-block;
  width: 100%;
}
.account ul li:last-of-type a {
  border-bottom: none;
}
.account ul li a {
  display: inline-block;
  width: 100%;
  padding: 20px 20px;
  background-color: #fcfcfc;
  border-bottom: 1px solid #dcdcdc;
  color: #646464;
}
.account ul li a:hover {
  text-decoration: none;
  background-color: #f3f3f3;
}
.account ul li a:focus,
.account ul li a.active,
.account ul li a.visited {
  text-decoration: none;
}
.account ul li a.active {
  color: #aec0c4;
}
.account .streep {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
  margin: 20px 0px;
}
.account .tabel table {
  border-collapse: collapse;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
}
.account .tabel table i {
  color: black;
}
.account .tabel table thead {
  display: table-header-group;
  vertical-align: middle;
  background-color: #f6f6f6;
  padding: 20px 0px;
  font-weight: 600;
}
.account .tabel table thead tr th {
  white-space: nowrap;
  padding: 20px 8px ;
  font-weight: 400 !important;
}
.account .tabel table thead tr th:first-child {
  border-bottom-left-radius: 7px;
  border-top-left-radius: 7px;
}
.account .tabel table thead tr th:last-child {
  border-bottom-right-radius: 7px;
  border-top-right-radius: 7px;
}
.account .tabel table tbody tr {
  border-bottom: 1px solid #dcdcdc;
}
.account .tabel table tbody tr td {
  padding: 20px 8px;
  vertical-align: middle;
}
.account.gegevens {
  display: inline-block;
  width: 100%;
  padding: 50px 300px 65px 300px;
}
@media (max-width: 992px) {
  .account.gegevens {
    padding: 50px 20px;
  }
}
.account.gegevens .stappen {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.account.gegevens .stappen .stap {
  display: inline-block;
  height: 50px;
  vertical-align: top;
}
.account.gegevens .stappen .stap .nummer {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #dcdcdc;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}
.account.gegevens .stappen .stap .nummer p {
  line-height: 25px;
  font-weight: 700;
  color: #ffffff;
}
.account.gegevens .stappen .stap p {
  display: inline-block;
  color: #dcdcdc;
}
.account.gegevens .stappen .stap.active .nummer {
  background-color: #67c7b3;
  color: #ffffff;
}
.account.gegevens .stappen .stap.active .nummer p {
  color: #ffffff;
}
.account.gegevens .stappen .stap.active p {
  color: #67c7b3;
}
.account.gegevens .stappen .lijn {
  display: inline-block;
  width: 78px;
  height: 1px;
  background-color: #dcdcdc;
  margin-top: 12px;
}
@media (max-width: 992px) {
  .account.gegevens .stappen .lijn {
    width: 30px;
    margin-top: 13px;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .account.gegevens .stappen .lijn {
    margin-top: 13px;
  }
}
.account.gegevens .factuurgegevens {
  display: inline-block;
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  padding: 40px 20px;
  width: 100%;
  border-radius: 0px;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .account.gegevens .factuurgegevens {
    margin-top: 10px;
    padding: 40px 0px;
  }
}
.account.gegevens .factuurgegevens h5 {
  margin: 0px 0px 5px 0px;
  padding: 0px 15px;
}
.account.gegevens .factuurgegevens .adres {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #dcdcdc;
  padding-top: 20px;
  margin-top: 50px;
}
.account.gegevens .verzendmethode .logo-verzendmethode {
  display: inline-block;
  width: 100%;
  height: 70px;
  background-position: top left;
  background-size: 70%;
}
.account.gegevens .verzendmethode .check {
  padding-top: 0px;
}
.account.gegevens .verzendmethode .leveradres {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  padding-left: 10px;
}
.account.gegevens .verzendmethode .leveradres p {
  display: inline-block;
  width: 100%;
  line-height: 130%;
}
.account.gegevens .verzendmethode label bold {
  font-weight: 400;
}
.account.gegevens .verzendmethode .afhaal {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #dcdcdc;
  margin-top: 20px;
  padding-top: 20px;
}
.account.gegevens .verzendmethode .btn-continue {
  color: #67c7b3;
  margin-left: 0px;
}
.account.gegevens .verzendmethode .btn-flat {
  margin-top: 35px;
}
.account.gegevens .betalingsinfo .check {
  padding: 0px;
}
.account.gegevens .betalingsinfo .check .checkbox {
  margin: 0px;
}
.account.gegevens .betalingsinfo .check .checkbox label {
  margin: 0px;
}
.account.gegevens .betalingsinfo .col-md-4 {
  text-align: right;
}
.account.gegevens .betalingsinfo .logo-verzendmethode {
  display: inline-block;
  width: 35px;
  height: 20px;
  background-position: top left;
  margin-right: 5px;
}
.account.gegevens .betalingsinfo .logo-verzendmethode:last-of-type {
  margin-right: 0px;
}
.account.gegevens .betalingsinfo .btn-flat {
  margin-top: 35px;
}
.account.gegevens .betalingsinfo .streep {
  display: inline-block;
  width: 100%;
  margin: 20px 0px;
  height: 1px;
  background-color: #dcdcdc;
}
.account.gegevens .overzicht {
  display: inline-block;
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  padding: 40px 20px;
  width: 100%;
  border-radius: 0px;
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 1200px) {
  .account.gegevens .overzicht {
    margin-top: 10px;
    padding: 40px 0px;
  }
}
.account.gegevens .overzicht h5 {
  margin: 0px;
  padding: 0px;
}
.account.gegevens .overzicht i {
  color: #67c7b3;
  margin: 35px 0px 25px 0px;
  font-size: 70px;
}
.account.gegevens .overzicht p {
  line-height: 180%;
}
.account .adres {
  display: inline-block;
  width: 100%;
  padding: 20px;
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  margin-bottom: 15px;
}
.account .adres p {
  line-height: 140%;
}
.account .adres p bold {
  display: inline-block;
  margin: 0px 0px 20px 0px;
  padding: 0px;
  line-height: 100%;
  text-transform: none;
}
.inloggen {
  display: inline-block;
  width: 100%;
  padding: 0px 200px 50px 200px;
  text-align: center;
}
@media (max-width: 992px) {
  .inloggen {
    padding: 0px 20px;
  }
}
.inloggen .kader {
  display: inline-block;
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #dcdcdc;
  background-color: #fcfcfc;
  text-align: left;
  margin-bottom: 30px;
}
.inloggen .kader h5 {
  border-bottom: 1px solid #dcdcdc;
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 0px;
}
.inloggen .kader .btn-continue {
  margin-top: 20px;
  line-height: 34px;
}
.product-toegevoegd {
  display: inline-block;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
}
.product-toegevoegd .filter {
  display: table;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
}
.product-toegevoegd .filter .content {
  display: table-cell;
  vertical-align: middle;
  padding: 0px;
}
.product-toegevoegd .filter .content .box {
  display: inline-block;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 50px;
  position: relative;
  text-align: left;
}
.product-toegevoegd .filter .content .box .sluiten {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #646464;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
}
.product-toegevoegd .filter .content .box .sluiten:hover {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.product-toegevoegd .filter .content .box .sluiten i {
  color: white;
  line-height: 20px;
}
.product-toegevoegd .filter .content .box .product {
  display: block;
  float: left;
}
.product-toegevoegd .filter .content .box .product .foto {
  display: inline-block;
  width: 100px;
  height: 100px;
  float: left;
  margin-right: 25px;
}
.product-toegevoegd .filter .content .box .product .clearfix {
  display: block;
  width: 100%;
  height: 1px;
}
.product-toegevoegd .filter .content .box .product .rij {
  display: inline-block;
  width: 100%;
  padding-top: 5px;
}
.product-toegevoegd .filter .content .box .product .rij p {
  display: inline-block;
  float: left;
  margin-right: 10px;
  padding-top: 5px;
}
.product-toegevoegd .filter .content .box .product .rij input {
  float: left;
}
.product-toegevoegd .filter .content .box .product .beschrijving {
  display: block;
  float: left;
}
.product-toegevoegd .filter .content .box .product .beschrijving h4 {
  display: block;
  line-height: 180%;
  text-transform: none;
  font-weight: 700;
  font-size: 14px;
}
.product-toegevoegd .filter .content .box .product .beschrijving p {
  display: block;
  line-height: 180%;
}
.product-toegevoegd .filter .content .box .product .beschrijving input[type="number"] {
  position: relative;
  margin: 0px 10px 0px 0px;
  padding: 6px 5px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  width: 90px;
}
.product-toegevoegd .filter .content .box .product .beschrijving input[type="number"].mod::-webkit-outer-spin-button,
.product-toegevoegd .filter .content .box .product .beschrijving input[type="number"].mod::-webkit-inner-spin-button {
  -webkit-appearance: none;
  background: #ffffff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKUlEQVQYlWNgwAT/sYhhKPiPT+F/LJgEsHv37v+EMGkmkuImoh2NoQAANlcun/q4OoYAAAAASUVORK5CYII=) no-repeat center center;
  width: 1em;
  border-left: 1px solid #BBB;
  opacity: .5;
  /* shows Spin Buttons per default (Chrome >= 39) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.product-toegevoegd .filter .content .box .keuze {
  display: block;
  float: left;
  margin-top: 20px;
}
.product-toegevoegd .filter .content .box .keuze p.btn-continue:hover {
  cursor: pointer;
}
.accordion label {
  display: inline-block;
  width: 100%;
  padding: 15px 20px;
  color: #ffffff;
  background-color: #5eb5a3;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  margin-bottom: 13px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
}
.accordion label:hover,
.accordion label:focus {
  color: white;
  background: #67c7b3;
  cursor: pointer;
  text-decoration: none;
}
.accordion label.group-label {
  cursor: pointer;
}
.accordion li {
  display: inline-block;
  width: 100%;
}
.accordion .group-list {
  display: none;
}
.accordion .group-list.open {
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
  margin-top: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  font-weight: 300;
  padding: 15px 15px 35px 15px;
  border: 1px solid black;
}
.accordion .group-list li {
  display: inline-block;
  width: 100%;
}
.accordion .group-list .sub-group-label {
  display: inline-block;
  padding: 15px 5px;
  width: 100%;
  color: #000000;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  margin-bottom: 0px;
  text-transform: none;
  background-color: transparent;
  border-bottom: 1px solid #000000;
}
.accordion .group-list .sub-group-label:hover,
.accordion .group-list .sub-group-label:focus {
  color: #000000;
  background-color: #fafafa;
  cursor: pointer;
  text-decoration: none;
}
.accordion .group-list .sub-group-list {
  display: none;
}
.accordion .group-list .sub-group-list.open {
  display: inline-block;
  padding: 15px 0px 0px 0px;
}
.accordion .group-list .sub-group-list.open li {
  display: inline-block;
}
.accordion .group-list .sub-group-list.open li a {
  padding: 5px 15px 5px 0px;
  margin-left: 15px;
  background: transparent;
  color: #000000;
  text-transform: none;
}
.accordion .group-list .sub-group-list.open li a.active {
  color: #67c7b3;
}
.accordion .group-list .sub-group-list.open li a:hover {
  text-decoration: none;
  color: #67c7b3;
}
.accordion .group-list .sub-group-list.open li label {
  padding: 5px 5px 5px 15px;
  background: transparent;
  color: #000000;
  text-transform: none;
  font-weight: 300;
}
.accordion .group-list .sub-group-list.open li label:hover {
  color: #67c7b3;
}
.accordion .group-list .sub-group-list.open li .sub-sub-group-label {
  padding: 5px 5px 5px 0px;
  margin-left: 15px;
  background: transparent;
  color: #000000 !important;
  border-bottom: 1px solid #000000 !important;
  text-transform: none;
  font-weight: 300;
  width: 90%;
}
.accordion .group-list .sub-group-list.open li .sub-sub-group-label:hover {
  color: #67c7b3;
}
.accordion .group-list .sub-group-list.open li .sub-sub-group-list {
  display: none;
}
.accordion .group-list .sub-group-list.open li .sub-sub-group-list.open {
  display: inline-block;
  padding: 0px 0px 10px 15px;
}
.accordion .group-list .sub-group-list.open li .sub-sub-group-list.open li a {
  color: black;
}
.accordion .group-list .sub-group-list.open li .sub-sub-group-list.open li a.active {
  color: #67c7b3;
}
.accordion .group-list,
.accordion .sub-group-list,
.accordion .sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}
.accordion .nav__list input[type=checkbox]:checked + label + ul {
  /* reset the height when checkbox is checked */
  max-height: none;
}
.accordion label > span {
  float: right;
  -webkit-transition: -webkit-transform 0.65s ease;
  transition: transform .65s ease;
}
.accordion .nav__list input[type=checkbox]:checked + label > span {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
/************************************************* Remodal ******************************************/
.remodal {
  background-color: #5eb5a3;
}
.remodal .remodal-content {
  padding: 30px;
  border: 3px dashed white;
}
.remodal .remodal-close {
  color: #525252;
}
.remodal .remodal-close:hover {
  color: #000000;
}
#privacy .gdpr-block {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  #privacy .gdpr-block .nav-tabs li {
    width: 100%;
    border: 1px solid #dddddd;
  }
  #privacy .gdpr-block .nav-tabs li a {
    border: none;
    margin-right: 0;
  }
  #privacy .gdpr-block .nav-tabs li.active a {
    background-color: #dfdfdf;
  }
}
#privacy .gdpr-block .nav-tabs li a {
  color: black;
}
#privacy .gdpr-block .tab-content .tab-pane {
  padding: 30px 0;
}
#privacy .gdpr-block .tab-content .tab-pane h1,
#privacy .gdpr-block .tab-content .tab-pane h2,
#privacy .gdpr-block .tab-content .tab-pane h3,
#privacy .gdpr-block .tab-content .tab-pane h4,
#privacy .gdpr-block .tab-content .tab-pane p {
  display: block;
}
#privacy .gdpr-block .tab-content .tab-pane h4 {
  margin-bottom: 20px;
}
#privacy .gdpr-block .tab-content .tab-pane p {
  margin-bottom: 10px;
  line-height: 180%;
}
#privacy .gdpr-block .tab-content .tab-pane p:last-of-type {
  margin-bottom: 0;
}
.cc-message {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
}
