html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#map {
  width: 100%;
  height: 100%;
}

.horizontal #map {
  height: calc(100% - 70px);
}

#cookie {
  z-index: 200;
  width: 320px;
  position: fixed;
  top: 100px;
  right: calc(50% - 160px);
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate3d(0,-500px,0);
  -moz-transform: translate3d(0,-500px,0);
  -ms-transform: translate3d(0,-500px,0);
  -o-transform: translate3d(0,-500px,0);
  transform: translate3d(0,-500px,0);
  background-color: #fff;

  padding: 16px;
  text-align: center;
  border-radius: 1em;
  box-shadow: 0 0 10px 5px rgba(74,74,74,.1);
  box-sizing: border-box;
}

#cookie.active {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-transition: linear all .5s;
  -moz-transition: linear all .5s;
  -o-transition: linear all .5s;
  transition: linear all .5s;
}

#cookie.active.hide {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate3d(0,-500px,0);
  -moz-transform: translate3d(0,-500px,0);
  -ms-transform: translate3d(0,-500px,0);
  -o-transform: translate3d(0,-500px,0);
  transform: translate3d(0,-500px,0);
  -webkit-transition: linear all .5s;
  -moz-transition: linear all .5s;
  -o-transition: linear all .5s;
  transition: linear all .5s;
}

#cookie-title {
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 8px;
}

#cookie-description {
  font-size: .9em;
  margin-bottom: 16px;
}

#cookie-button {
  display: inline-block;
  border-radius: 50px;
  color: #fff;
  background-color: #0cefba;
  text-decoration: none;
  padding: 4px 26px;
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

#cookie-decline {
  color: #0cefba;
  text-decoration: underline;
  font-size: .9em;
  margin-top: 8px;
  cursor: pointer;
}

#menu {
  position: fixed;
  top: 0px;
  left: 0px;
  transform: translateX(-240px);
  box-sizing: border-box;
  z-index: 105;
  font-size: 14px;
  line-height: 26px;
  font-weight: 900;
  height: 100%;
  width: 240px;
  transition: transform .5s ease;
  display: none;
}
#menu.active {
  transform: translateX(0);
  box-shadow: -3px 0 8px #555;
  transition: transform .5s ease;
}

#menu-toggle {
  position: absolute;
  right: -60px;
  top: 10px;
  padding: 10px;
  background-color: white;
  cursor: pointer;
  border: 1px solid white;
  z-index: 1;
}
#menu-toggle:hover {
  border: 1px solid #cccccc;
}

.menu-inner-toggle-wrap {
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}
.menu-inner-toggle-wrap span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #000000;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
.menu-inner-toggle-wrap span:nth-child(1) {
  top: 0px;
}

.menu-inner-toggle-wrap span:nth-child(2), .menu-inner-toggle-wrap span:nth-child(3) {
  top: 10px;
}

.menu-inner-toggle-wrap span:nth-child(4) {
  top: 20px;
}

#menu-inner-items {
  width: 100%;
  max-width: 240px;
  background-color: #ffffff;
  padding: 10px 5px;
  height: 100%;
  min-height: 100%;
  box-shadow: -3px 0 8px #555;
  overflow: scroll;
  box-sizing: border-box;

}

#menu-inner-items .group {
  margin: 2px;
}

#menu-inner-items .group .group-title {
  position: relative;
  background-color: #eeeeee;
  font-weight: bold;
  cursor: pointer;
  padding-left: 5px;
}

#menu-inner-items .group .group-title:after {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  content: '';
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
#menu-inner-items .group.active .group-title:after {
  transform: translateY(-50%) rotate(-135deg);
  -webkit-transform: translateY(-50%) rotate(-135deg);
}

#menu-inner-items .group .subfilter {
  display: none;
  padding-left: 5px;
}

#menu-inner-items .group.active .subfilter {
  display: block;
  cursor: pointer;
}

#menu-inner-items .group .subfilter:before {
  display: inline-block;
  content: '\2610';
  font-size: 1.4em;
  line-height: 1em;
  padding-right: 3px;
}
#menu-inner-items .group .subfilter.active:before {
  display: inline-block;
  content: '\2611';
}

#dropdown-filter {
  position: absolute;
  top: 10px;
  right: 65px;
  color: #fff;
  background-color: #0cefba;
  padding: 12px 15px;
  border-radius: 7px;
  line-height: 16px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  box-shadow: none;
  background-image: none;
  -webkit-appearance: none;
  text-align-last: center;
  font-weight: 200;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  -moz-appearance: none;
  z-index: 100;
}
#legenda {
  position: fixed;
  z-index: 5;
  top: 0px;
  left: 0px;
  width: 120px;
  padding: 5px;
  padding-bottom: 0px;
}

#legenda.horizontal {
  position: relative;
  width: 100%;
}
#legenda.horizontal .category {
  margin-right: 5px;
  float: left;
  max-width: 70px;
}
#legenda .category, #legenda .subfilter {
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  color: black;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 5px;
  cursor: pointer;
  background-color: white;
}
#legenda .category .close, #legenda .subfilter .close {
  display: none;
  position: absolute;
  color: white;
  top: -1px;
  right: 5px;
  font-size: 18px;
}
#legenda .category.active .close, #legenda .subfilter.active .close {
  display: block;
}
@media screen and (max-width: 600px) {
  #legenda {
    max-width: 460px;
    width: auto;
  }
  #legenda .category, #legenda .subfilter {
    width: 65px;
    padding: 5px;
    margin-right: 5px;
  }
  #dropdown-filter {
    left: 10px;
    right: inherit;
  }
  .horizontal #map {
    height: calc(100% - 63px);
  }
}
@media screen and (max-width: 400px) {
  #legenda .category, #legenda .subfilter {
    font-size: 12px;
  }
  .infowindow {
    width: 300px!important;
  }
}
#legenda .category.active, #legenda .subfilter.active {
  background-color: #0cefba;
}
#legenda .category.active:hover, #legenda .subfilter.active:hover {
  background-color: #07d2a3;
}
#legenda .category:hover, #legenda .subfilter:hover {
  background-color: #efefef;
}
#legenda .category img, #legenda .subfilter img{
  position: relative;
    width: 32%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: block;
}
#legenda .category span, #legenda .subfilter span {
  display: block;
  color: #444;
  margin-top: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.infowindow {
  position: relative;
  //overflow: hidden;
  width: 350px;
}
.gm-style-iw {
  width: auto!important;
  height: auto!important;
  left: 0!important;
  font-size: 15px!important;
  font-weight: normal!important;
  top: 0!important;
  //overflow: hidden!important;
  overflow: scroll!important;
  border-radius: 3px;
  padding: 0px!important;
  max-width: 100%!important;
}
.gm-style-iw button {
  background-color: white!important;
  width: 20px!important;
  height: 20px!important;
  top: 0px!important;
  right: 0px!important;
}
.gm-style-iw button img {
  margin: 4px!important;
}
.gm-style-iw-t::after {
  z-index: -1;
}
.gm-style-iw-d {
  overflow: visible!important;
  max-width: 100%!important;
}
.infowindow header {
  position: absolute;
  display: block;
  z-index: 1;
  background-color: transparent;
  padding: 8px;
}
.infowindow header i {
  color: white;
  font-size: 20px;
  margin-right: 8px;
}
.infowindow header i.big {
  font-weight: bold;
}
.infowindow header .icon {
  color: white;
  width: auto;
  height: 16px;
  display: inline-block;
  margin-right: 5px;
}
.infowindow article {
  height: auto;
  min-height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}
.infowindow.image article:after, .infowindow article.image:after {
  display: none;
}
.infowindow article.image .description {
  padding: 0 10px 10px;
}

.infowindow article.image .description .button {
margin-top: 20px;
  color: #fff;
  background-color: #0cefba;
  display: block;
  border-radius: 15px;
  line-height: 16px;
  font-size: 15px;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
}

.infowindow article img {
  width: 100%;
  height: auto;
}
.infowindow article:after {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    opacity: .3;
    filter: alpha(opacity=30);
    top: 0;
    left: 0;
    border-radius: 10px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(0% transparent), color-stop(50% transparent), color-stop(100% #000));
    background-image: -webkit-linear-gradient(top, #000 0, transparent 0%, transparent 50%, #000 100%);
    background-image: -moz-linear-gradient(top, #000 0, transparent 0%, transparent 50%, #000 100%);
    background-image: -ms-linear-gradient(top, #000 0, transparent 0%, transparent 50%, #000 100%);
    background-image: -o-linear-gradient(top, #000 0, transparent 0%, transparent 50%, #000 100%);
    background-image: linear-gradient(top, #000 0, transparent 0%, transparent 50%, #000 100%);
    background-color: rgba(0,0,0,0.35);
}
.infowindow .centered {
  display: block;
  position: absolute;
  width: 100%;
  top: 46%;
  transform: translateY(-50%);
  color: white;
  text-align: center;
  z-index: 1;
}
.infowindow .centered h3 {
  font-size: 20px;
  margin-top: 45px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 1px black;
}
.infowindow .centered h5 {
  margin-top: 0px;
  color: #fff;
  background-color: #0cefba;
  display: inline-block;
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 15px;
  line-height: 16px;
  font-size: 15px;
  padding-top: 7px;
}
.infowindow .centered h5:hover {
  background-color: #07d2a3;
}
.infowindow .read-more {
  display: inline-block;
  cursor: pointer;
  color: #023592;
}
.infowindow .read-more:hover {
  text-decoration: underline;
}


@font-face {font-family: 'Gilroy-SemiBold';src: url('/fonts/326CE1_0_0.eot');src: url('/fonts/326CE1_0_0.eot?#iefix') format('embedded-opentype'),url('/fonts/326CE1_0_0.woff2') format('woff2'),url('/fonts/326CE1_0_0.woff') format('woff'),url('/fonts/326CE1_0_0.ttf') format('truetype');}
@font-face {font-family: 'Gilroy-Regular';src: url('/fonts/326CE1_1_0.eot');src: url('/fonts/326CE1_1_0.eot?#iefix') format('embedded-opentype'),url('/fonts/326CE1_1_0.woff2') format('woff2'),url('/fonts/326CE1_1_0.woff') format('woff'),url('/fonts/326CE1_1_0.ttf') format('truetype');}
@font-face {font-family: 'Gilroy-Medium';src: url('/fonts/326CE1_2_0.eot');src: url('/fonts/326CE1_2_0.eot?#iefix') format('embedded-opentype'),url('/fonts/326CE1_2_0.woff2') format('woff2'),url('/fonts/326CE1_2_0.woff') format('woff'),url('/fonts/326CE1_2_0.ttf') format('truetype');}

@font-face {
    font-family: 'Gilroy-bold';
    font-weight: 600;
    src: url("/fonts/Gilroy-Bold.otf") format("opentype");
}

* {
  font-family: 'Gilroy-Regular', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Gilroy-Medium';
}

@font-face {
  font-family: 'breakzy_font';
  src:  url('/fonts/breakzy_font.eot?1myad3');
  src:  url('/fonts/breakzy_font.eot?1myad3#iefix') format('embedded-opentype'),
  url('/fonts/breakzy_font.ttf?1myad3') format('truetype'),
  url('/fonts/breakzy_font.woff?1myad3') format('woff'),
  url('/fonts/breakzy_font.svg?1myad3#breakzy_font') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="breakzy_icon_"], [class*=" breakzy_icon_"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'breakzy_font' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.breakzy_icon_x__micro:before {
  content: "\e941";
}
.breakzy_icon_x__medium:before {
  content: "\e942";
}
.breakzy_icon_voeg_toe:before {
  content: "\e943";
}
.breakzy_icon_swimming:before {
  content: "\e944";
}
.breakzy_icon_share__ios:before {
  content: "\e945";
}
.breakzy_icon_share__android:before {
  content: "\e946";
}
.breakzy_icon_search_small:before {
  content: "\e947";
}
.breakzy_icon_plan_route:before {
  content: "\e948";
}
.breakzy_icon_pet_friendly:before {
  content: "\e949";
}
.breakzy_icon_onderweg__main:before {
  content: "\e94a";
}
.breakzy_icon_medaille:before {
  content: "\e94b";
}
.breakzy_icon_location_marker_outline_plus:before {
  content: "\e94c";
}
.breakzy_icon_location_drop__micro:before {
  content: "\e94d";
  color: #9da09d;
}
.breakzy_icon_lane_indicator__left:before {
  content: "\e94e";
}
.breakzy_icon_lane_indicator__right:before {
  content: "\e94f";
}
.breakzy_icon_info:before {
  content: "\e950";
}
.breakzy_icon_heart:before {
  content: "\e951";
}
.breakzy_icon_go_to_website:before {
  content: "\e952";
}
.breakzy_icon_food:before {
  content: "\e953";
}
.breakzy_icon_filter_icon_small:before {
  content: "\e954";
}
.breakzy_icon_filter_icon_micro:before {
  content: "\e955";
}
.breakzy_icon_eye_open:before {
  content: "\e956";
}
.breakzy_icon_favoriet:before {
  content: "\e957";
}
.breakzy_icon_drag_handles:before {
  content: "\e940";
}
.breakzy_icon_clock__small:before {
  content: "\e93c";
}
.breakzy_icon_cat_uit_eten:before {
  content: "\e93d";
}
.breakzy_icon_car_sideways:before {
  content: "\e93e";
}
.breakzy_icon_arrow:before {
  content: "\e93f";
}
.breakzy_icon_cat_plaatsen:before {
  content: "\e93b";
}
.breakzy_icon_question_algemeen:before {
  content: "\e93a";
}
.breakzy_icon_Flag:before {
  content: "\e939";
}
.breakzy_icon_bandb:before {
  content: "\e934";
}
.breakzy_icon_camping:before {
  content: "\e935";
}
.breakzy_icon_cat_amusement:before {
  content: "\e936";
}
.breakzy_icon_cat_cultuur:before {
  content: "\e937";
}
.breakzy_icon_cat_tip:before {
  content: "\e938";
}
.breakzy_icon_question_groen:before {
  content: "\e900";
}
.breakzy_icon_cat_hotel:before {
  content: "\e901";
}
.breakzy_icon_cat_rustiek:before {
  content: "\e902";
}
.breakzy_icon_cat_tankstation:before {
  content: "\e903";
}
.breakzy_icon_caravan:before {
  content: "\e904";
}
.breakzy_icon_sostelefoon:before {
  content: "\e905";
}
.breakzy_icon_freewifi:before {
  content: "\e906";
}
.breakzy_icon_cat_parkeerplaats:before {
  content: "\e907";
}
.breakzy_icon_lokaleproducten:before {
  content: "\e908";
}
.breakzy_icon_croissanterie:before {
  content: "\e909";
}
.breakzy_icon_toilet:before {
  content: "\e90a";
}
.breakzy_icon_wasmachine:before {
  content: "\e90b";
}
.breakzy_icon_luchtpomp:before {
  content: "\e90c";
}
.breakzy_icon_douche:before {
  content: "\e90d";
}
.breakzy_icon_neveldouche:before {
  content: "\e90e";
}
.breakzy_icon_winkel:before {
  content: "\e90f";
}
.breakzy_icon_hotel:before {
  content: "\e910";
}
.breakzy_icon_vrachtwagen:before {
  content: "\e911";
}
.breakzy_icon_camper:before {
  content: "\e912";
}
.breakzy_icon_groen:before {
  content: "\e913";
}
.breakzy_icon_laadstation:before {
  content: "\e914";
}
.breakzy_icon_restaurant:before {
  content: "\e915";
}
.breakzy_icon_speelplaats:before {
  content: "\e916";
}
.breakzy_icon_koffie:before {
  content: "\e917";
}
.breakzy_icon_verschonen:before {
  content: "\e918";
}
.breakzy_icon_question_leuk_voor_kids:before {
  content: "\e919";
}
.breakzy_icon_question_schoon:before {
  content: "\e91a";
}
.breakzy_icon_question_eten_drinken:before {
  content: "\e91b";
}
.breakzy_icon_functie_wissel_route:before {
  content: "\e91c";
}
.breakzy_icon_functie_rating_star:before {
  content: "\e91d";
}
.breakzy_icon_functie_settings_tandwiel:before {
  content: "\e91e";
}
.breakzy_icon_breakzy_logo_large:before {
  content: "\e91f";
}
.breakzy_icon_breakzy_logo_small:before {
  content: "\e920";
}
.breakzy_icon_functie_approve_checkmark:before {
  content: "\e921";
}
.breakzy_icon_functie_share_arrow:before {
  content: "\e922";
}
.breakzy_icon_functie_discard_cross:before {
  content: "\e923";
}
.breakzy_icon_functie_camera_large:before {
  content: "\e924";
}
.breakzy_icon_functie_camera_small:before {
  content: "\e925";
}
.breakzy_icon_functie_img_library_small:before {
  content: "\e926";
}
.breakzy_icon_functie_filter:before {
  content: "\e927";
}
.breakzy_icon_functie_search:before {
  content: "\e928";
}
.breakzy_icon_user_icon_login_false:before {
  content: "\e929";
}
.breakzy_icon_functie_rijlaan_duiding:before {
  content: "\e92a";
}
.breakzy_icon_functie_edit:before {
  content: "\e92b";
}
.breakzy_icon_tanken:before {
  content: "\e92c";
}
.breakzy_icon_functie_arrow_back:before {
  content: "\e92d";
}
.breakzy_icon_functie_locatie_marker:before {
  content: "\e92e";
}
.breakzy_icon_functie_close_cross:before {
  content: "\e92f";
}
.breakzy_icon_functie_photogallery_arrow_next:before {
  content: "\e930";
}
.breakzy_icon_functie_photogallery_arrow_previous:before {
  content: "\e931";
}
.breakzy_icon_cat_camping:before {
  content: "\e932";
}
.breakzy_icon_cat_bedandbreakfast:before {
  content: "\e933";
}
