:root {
  --white: #ffffff;
  --black: #000000;

  --iscared: #db0021;
  --iscared_dark: #cf292d;
  --iscared_darker: #e62d31;

  --verylightblue: #e7eaf4;
  --lightblue: #d0d5ea;

  --blue: #0d3094;
  --darkblue: #092165;

  --verylightgrey: #f0f0f0;
  --lightgrey: #dddddd;
  --grey: #999999;
  --darkgrey: #333333;

  --textred: #db0021;
}

/* =========================
   2) Base / reset
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  background-color: var(--iscared);
  color: var(--black);
  font: 400 16px/26px "SUSE", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

address {
  font-style: normal;
}

p {
  margin-bottom: 1rem;
}

p a {
  color: var(--blue);
  text-decoration: underline;
}

ul {
  margin-bottom: 25px;
}

ol li {
  margin-left: 50px;
  margin-bottom: 20px;
}

/* =========================
   3) Typography
   ========================= */
h1,
h2,
h3,
h4 {
  font-family: "SUSE", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700 !important;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 3.5rem;
  font-feature-settings: "cv02", "cv03", "cv04";
}

h2 {
  font-size: 2rem;
  line-height: 3rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 2.5rem;
}

h4 {
  font-size: 1.25rem;
  line-height: 2.25rem;
}

/* =========================
   4) Layout wrappers
   ========================= */
#header {
  width: 100vw;
  max-width: 100%;
  height: auto;
  margin: 0;
}

#top_bar {
  width: 100%;
  height: auto;
  background-color: var(--darkblue);
  margin: 0;
  padding: 10px 2%;
}

.screen_width {
  width: 1440px;
  height: auto;
  display: block;
  overflow: hidden;
  margin: 0 auto;
}

/* =========================
   5) Bars / sections
   ========================= */
.top_message {
  width: 100vw;
  height: 40px;
  background-color: #cfd6ea;
  color: #0d3094;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "cv02"1, "cv03"1, "cv04"1;
  clear: both;
  padding: 10px 25px 0;
}

.text_bar,
.text_bar_py25,
.text_bar_py50 {
  width: 100%;
  height: auto;
  margin: 0;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
}

.text_bar {
  padding-top: 125px;
  padding-bottom: 25px;
  background-color: var(--white);
}

.text_bar_py25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.text_bar_py50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* =========================
   6) Form controls
   ========================= */
:where(input[type="text"], input[type="number"], select, textarea) {
  appearance: none;
  width: 80%;
  font-size: 1rem;
  padding: 3px 3px 3px 5px;
  border: 1px solid var(--grey);
  border-radius: 3px;
}

:where(input[type="text"], input[type="number"], select) {
  height: 33px;
}

textarea {
  height: 99px;
}

input[type="radio"] {
  margin-top: 0;
}

select {
  background-image: url("../layout/caret-down.png");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.8em auto, 100%;
}

input[type="submit"] {
  border: 0;
}

button {
  appearance: none;
  border: none;
}

/* =========================
   7) Footer bars
   ========================= */
.footer_bar,
.footer_bar_red {
  width: 100vw;
  height: auto;
  margin: 0;
  padding: 10px 2%;
  position: relative;
}

.footer_bar {
  background-color: var(--white);
}

.footer_bar_red {
  background-color: var(--iscared);
  z-index: 90;
}

.footer_bar_red a {
  color: var(--white);
}

/* =========================
   8) Header / top stripes
   ========================= */
.top_line_red {
  position: relative;
  width: 100vw;
  height: 90px;
  background-color: var(--iscared);
  overflow: hidden;
}

.top_line_red:after {
  position: absolute;
  top: 0;
  left: 65%;
  right: -15px;
  bottom: 0;
  background: var(--iscared_dark);
  transform: skew(-15deg, 0);
  content: "";
}

.top_line {
  position: absolute;
  width: 100%;
  height: 90px;
  z-index: 10;
  top: 0;
}

.top_light_grey {
  width: 100%;
  height: 55px;
  background-color: var(--verylightgrey);
}

.top_white {
  width: 100%;
  height: 54px;
  background-color: transparent;
}

.hero {
  position: relative;
  width: 100vw;
  height: 20px;
  background: var(--iscared_darker);
  overflow: hidden;
}

.hero:after {
  position: absolute;
  top: 0;
  left: 50%;
  right: -15px;
  bottom: 0;
  background: #ad1417;
  transform: skew(-15deg, 0);
  content: "";
}

/* =========================
   9) USP
   ========================= */
.top_usp {
  width: 100%;
  height: auto;
  background-color: var(--white);
  border-bottom: 1px solid var(--verylightgrey);
  padding: 25px 0;
}

.usp_list {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.usp_list li {
  display: inline-block;
  margin: 0 25px;
}

/* =========================
   10) Top navigation blocks
   ========================= */
.top_logo {
  width: 15%;
  height: 70px;
  float: left;
  text-align: left;
  padding-top: 10px;
}

.top_logo img {
  position: absolute;
  filter: drop-shadow(3px 5px 7px rgb(0 0 0 / 0.4));
  z-index: 100;
}

.top_home {
  width: 10%;
  height: 70px;
  float: left;
  text-align: left;
  padding-top: 32px;
}

.top_home a {
  color: var(--white);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
}

.top_search {
  width: 50%;
  height: 70px;
  float: left;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 2.2em;
  text-transform: uppercase;
  padding-top: 30px;
  color: var(--white);
}

.top_navigation {
  width: 25%;
  height: 70px;
  float: left;
  text-align: right;
  font-weight: 400;
  padding-top: 30px;
}

.top_menu {
  width: 100%;
  height: auto;
  float: left;
  text-align: right;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1em;
  padding-top: 15px;
}

.nav_item {
  width: auto;
  height: auto;
  padding: 2px 0 2px 40px;
  float: right;
}

.nav_icon {
  font-size: 1.2rem;
  margin-right: 7px;
}

.nav_usp {
  font-size: 1rem;
  margin-right: 7px;
  color: var(--textred);
}

/* =========================
   11) Category tiles
   ========================= */
.category_box {
  width: 22%;
  height: 389px;
  margin: 0 4% 50px 0;
  float: left;
  text-align: center;
  background-color: var(--white);
  padding: 35px;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(170deg, white, 70%, var(--lightgrey)) 1;
}

.category_box:nth-child(4n) {
  margin-right: 0;
}

.category_title {
  width: 100%;
  height: 75px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.5625rem;
}

.category_image {
  width: 100%;
  height: 265px;
}

.category_button {
  width: 100%;
  height: auto;
}

.categoryBox1 {
  width: 18%;
  height: auto;
  padding: 30px 1%;
  margin: 0 2% 25px 0;
  float: left;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  background-color: var(--white);
  font-family: "Varela Round", sans-serif;
  font-size: 1.05rem;
  line-height: 1.35rem;
  font-weight: 700;
  color: #313131;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(170deg, white, 70%, var(--lightgrey)) 1;
}

.categoryBox1:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  border: 1px solid var(--blue);
}

.categoryBox1 img {
  width: auto;
  height: auto;
  max-height: 150px;
  margin: 0 auto;
}

.categoryBox1 a {
  color: #313131;
  text-decoration: none;
}

/* =========================
   12) Footer blocks
   ========================= */
.footer_logo {
  width: 25%;
  height: auto;
  float: left;
  text-align: left;
  padding-top: 0;
  overflow: visible;
}

.footer_logo img {
  position: absolute;
  top: -25px;
  z-index: 99;
  filter: drop-shadow(3px 5px 7px rgb(0 0 0 / 0.4));
}

.footer_block_left {
  width: 12%;
  height: auto;
  float: left;
  text-align: left;
  padding: 55px 0;
  color: var(--white);
  font-weight: 300;
}

.footer_block {
  width: 15%;
  height: auto;
  float: left;
  text-align: left;
  padding: 55px 0;
  color: var(--white);
  font-weight: 300;
  margin-right: 2%;
}

.footer_block h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.footer_block a {
  text-decoration: none;
}

.footer_block_icons {
  width: 150px;
  clear: both;
  margin-bottom: 25px;
}

.footer_block_logos img {
  margin-bottom: 4px;
}

/* =========================
   13) Utilities
   ========================= */
.condensed {
  font-family: "Roboto Condensed", sans-serif;
}

.background_white {
  background-color: var(--white);
}

.background_verylightgrey {
  background-color: var(--verylightgrey);
}

.background_iscared {
  background-color: var(--iscared);
}

.background_iscareddark {
  background-color: var(--iscared_dark);
}

.text_left {
  text-align: left;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.vertical_padding_10 {
  padding: 10px 0;
}

.vertical_padding_20 {
  padding: 20px 0;
}

.color_white {
  color: var(--white);
}

.color_grey,
.color_grey a {
  color: var(--grey) !important;
}

.color_dark_red,
.color_dark_red a {
  color: #800417 !important;
}

.color_dark_red a:hover {
  text-decoration: underline;
}

.weight_300 {
  font-weight: 300;
}

.weight_400 {
  font-weight: 400;
}

.margin_bottom_extra {
  margin-bottom: 15px;
}

.text_small {
  font-size: 0.7rem;
}

/* =========================
   14) Buttons
   ========================= */
.blue_button,
.red_button,
.grey_button {
  width: auto;
  height: auto;
  padding: 12px 28px;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25rem;
  color: var(--white);
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
}

.blue_button {
  background-color: var(--blue);
}

.blue_button:hover {
  background-color: var(--darkblue);
}

.red_button {
  background-color: var(--iscared_dark);
}

.red_button:hover {
  background-color: var(--iscared_darker);
}

.grey_button {
  background-color: var(--grey);
}

.grey_button:hover {
  background-color: var(--grey);
}

.upload_button {
  width: auto;
  height: auto;
  padding: 5px 28px;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
  color: var(--white);
  border-radius: 6px;
  background-color: var(--blue);
  cursor: pointer;
}

/* =========================
   15) Order / pricing layout
   ========================= */
.order_box {
  width: 65%;
  min-height: 450px;
  height: auto;
  float: left;
  overflow: hidden;
  margin-top: 20px;
}

.order_box h4 {
  margin-top: 0;
}

.price_box {
  width: 33%;
  min-height: 450px;
  float: left;
  overflow: hidden;
  padding-left: 2%;
  margin-top: 20px;
}

/* =========================
   16) Side boxes
   ========================= */
.side_box23 {
  width: 90%;
  height: auto;
  margin: 0 auto 40px;
  padding: 0;
  border: 1px solid var(--white);
  background-color: var(--white);
  overflow: hidden;
  border-radius: 6px;
  box-sizing: border-box;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 8px 40px 0px;
}

.side_box {
  width: 100%;
  height: auto;
  padding: 3px 2%;
  border: 3px solid var(--iscared);
  background-color: #ff00ff;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
}

.side_box_head {
  width: 100%;
  height: auto;
  background-color: var(--iscared);
  padding: 9px 0 9px 4%;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: normal;
  border-radius: 6px 6px 0 0 !important;
  box-sizing: border-box;
  margin-bottom: 7px;
}

.side_box_item {
  width: 100%;
  height: auto;
  padding: 3px 2%;
  font-size: 0.95rem;
  font-weight: normal;
  clear: both;
  overflow: hidden;
}

.side_box_item_high {
  width: 100%;
  height: auto;
  padding: 20px 2% 10px;
  text-align: center;
  clear: both;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.side_box_item_left,
.side_box_item_right {
  width: 48%;
  height: auto;
  padding: 3px 1%;
  float: left;
}

.side_box_price {
  width: 100%;
  height: auto;
  padding: 5px 2% 5px 3%;
  font-size: 17px;
  font-weight: normal;
  margin-top: 30px;
  text-align: center;
}

.clear_50 {
  width: 100%;
  height: 50px;
  clear: both;
}

/* =========================
   17) “Table” grid helpers
   ========================= */
.tr {
  width: 100%;
  height: auto;
  overflow: hidden;
  clear: both;
}

/* Deduped td_*: alleen verschillen blijven per class */
.td_05,
.td_05_auto,
.td_10,
.td_10_auto,
.td_15,
.td_15_auto,
.td_20,
.td_20_auto,
.td_25,
.td_25_auto,
.td_30,
.td_30_auto,
.td_35,
.td_35_auto,
.td_40,
.td_40_auto,
.td_45,
.td_45_auto,
.td_50,
.td_50_auto,
.td_55,
.td_55_auto,
.td_60,
.td_60_auto,
.td_65,
.td_65_auto,
.td_70,
.td_70_auto,
.td_75,
.td_75_auto,
.td_80,
.td_80_auto,
.td_85,
.td_90,
.td_90_auto,
.td_95 {
  margin-bottom: 7px;
  float: left;
}

.td_05,
.td_05_auto {
  width: 5%;
}

.td_10,
.td_10_auto {
  width: 10%;
}

.td_15,
.td_15_auto {
  width: 15%;
}

.td_20,
.td_20_auto {
  width: 20%;
}

.td_25,
.td_25_auto {
  width: 25%;
}

.td_30,
.td_30_auto {
  width: 30%;
}

.td_35,
.td_35_auto {
  width: 35%;
}

.td_40,
.td_40_auto {
  width: 40%;
}

.td_45,
.td_45_auto {
  width: 45%;
}

.td_50,
.td_50_auto {
  width: 50%;
}

.td_55,
.td_55_auto {
  width: 55%;
}

.td_60,
.td_60_auto {
  width: 60%;
}

.td_65,
.td_65_auto {
  width: 65%;
}

.td_70,
.td_70_auto {
  width: 70%;
}

.td_75,
.td_75_auto {
  width: 75%;
}

.td_80,
.td_80_auto {
  width: 80%;
}

.td_85 {
  width: 85%;
}

.td_90,
.td_90_auto {
  width: 90%;
}

.td_95 {
  width: 95%;
}

.td_05,
.td_10,
.td_15,
.td_20,
.td_25,
.td_50,
.td_55,
.td_60,
.td_65,
.td_80,
.td_85,
.td_90,
.td_95 {
  height: 27px;
}

.td_30,
.td_35,
.td_100 {
  height: 40px;
  overflow: visible;
}

.td_40,
.td_45 {
  min-height: 27px;
}

.td_70,
.td_75 {
  min-height: 40px;
  height: auto;
  overflow: hidden;
}

.td_100 {
  width: 100%;
  margin-bottom: 7px;
  float: none;
}

.td_100_auto {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

/* =========================
   18) Social buttons
   ========================= */
.social_button {
  position: relative;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 18px;
  transition: color 0.2s ease;
  float: left;
  color: var(--white);
  margin: 0 10px 10px 5px;
}

.social_button:hover {
  color: var(--iscared);
  text-decoration: none;
}

.social_button:before {
  position: absolute;
  inset: 0;
  border: 1px solid #fff;
  border-bottom-left-radius: 6px;
  transform: skew(-15deg, 0);
  transition: background-color 0.2s ease;
  content: "";
}

.social_button:hover:before {
  background: #fff;
}

.social_button i {
  position: relative;
  z-index: 1;
}


.uitsnede_box,
.uitsnede_box_inactive {
  width: 23%;
  height: 150px;
  margin: 0 2% 10px 0;
  float: left;
  border: 1px solid var(--lightgrey);
  border-radius: 4px;
  display: inline-block;
  background-color: var(--white);
  vertical-align: top;
}

.uitsnede_box_inactive {
  opacity: 70%;
}

.uitsnede_box img {
  width: auto;
  max-height: 90px;
  margin-top: -10px;
}

.uitsnede_box_active {
  border: 2px solid #436bb6;
  border-radius: 3px;
  color: #335699;
  background-image: url("../afbeeldingen/check-blue.png");
  background-position: top right;
  background-repeat: no-repeat;
}

/* “low” variants */
.uitsnede_box_low,
.uitsnede_box_low_inactive,
.uitsnede_box_low_active {
  width: 23%;
  height: 55px;
  margin: 0 2% 10px 0;
  float: left;
  border-radius: 4px;
  display: inline-block;
  background-color: var(--white);
  padding-top: 5px;
  vertical-align: top;
  box-sizing: border-box;
}

.uitsnede_box_low,
.uitsnede_box_low_inactive {
  border: 1px solid var(--lightgrey);
}

.uitsnede_box_low_inactive {
  opacity: 70%;
}

.uitsnede_box_low_active {
  border: 2px solid #436bb6;
  color: #335699;
  background-image: url("../afbeeldingen/check-blue.png");
  background-position: top right;
  background-repeat: no-repeat;
}

/* =========================
   20) Misc blocks
   ========================= */
.tr_third {
  width: 25%;
  height: auto;
  float: left;
  margin-right: 3%;
}

.tr_third input[type="text"] {
  margin-top: 7px;
}

.sticker {
  width: 300px;
  background-color: aliceblue;
}

.panel-default {
  margin-bottom: 15px;
  border-radius: 3px;
  overflow: hidden;
  background-color: var(--white);
  width: 97%;
  box-shadow: inset 0 0 0 1px var(--lightgrey);
  box-sizing: border-box;
  padding-bottom: 10px;
}

.panel-default:empty {
  display: none;
}

.panel-default>.panel-heading {
  color: #333;
  background-color: var(--lightgrey);
  box-shadow: inset 0 0 0 1px var(--lightgrey);
}

.panel-title {
  margin: 0;
  font-size: 16px;
  color: #000000 !important;
  padding: 7px 7px 7px 12px;
}

.btn-gradient-1 {
  border-width: 3px;
  border-style: solid;
  border-image: linear-gradient(175deg, white, 80%, var(--lightgrey)) 1;
}

/* =========================
   21) Modal
   ========================= */
.modal {
  display: none;
  position: fixed;
  width: 50vw;
  height: 275px;
  top: 30vh;
  left: calc((100vw - 50vw) / 2);
  background: var(--white);
  border-radius: 6px;
  z-index: 1001;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 8px 40px 0px;
  text-align: center;
}

.modal_header {
  width: 100%;
  height: auto;
  background-color: var(--iscared);
  padding: 11px 3% 9px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: normal;
  border-radius: 6px 6px 0 0 !important;
  box-sizing: border-box;
  margin-bottom: 7px;
}

.modal_content {
  padding: 9px 0 9px 4%;
}

#modal_toggle {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  padding: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.modal_background {
  display: none;
  background: black;
  position: fixed;
  inset: 0;
  opacity: 0.7;
  z-index: 1000;
}

.fixed {
  position: fixed;
  top: 30px;
  left: calc(50vw + 185px);
  width: 455px;
  z-index: 200;
}

/* =========================
   22) Cookie alert
   ========================= */
.cookie_alert {
  position: fixed;
  left: 20px;
  z-index: 1000;
  background: var(--white);
  bottom: 20px;
  width: 500px;
  min-height: 150px;
  padding: 60px 20px 20px;
  border-radius: 6px;
  box-shadow: rgb(0 0 0 / 18%) 0px 8px 40px 0px;
  animation-name: cookie_alert;
  animation-duration: 1s;
}

.cookie_alert_header {
  background: var(--iscared);
  color: var(--white);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 5px 20px;
  box-sizing: border-box;
}

.cookie_alert_header h4 {
  margin: 0;
}

.cookie_alert button {
  float: right;
}

@keyframes cookie_alert {
  from {
    bottom: -200px;
  }

  to {
    bottom: 20px;
  }
}

/* =========================
   23) Examples grid
   ========================= */
.example_container {
  width: 100%;
  height: auto;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 30px;
  row-gap: 0.1rem;
}

.example_box {
  width: auto;
  max-width: 100%;
  height: 300px;
  text-align: center;
}

.example_image {
  width: auto;
  height: 300px;
  vertical-align: middle;
}

.example_image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.example_text {
  width: auto;
  height: 10px;
}

/* =========================
   24) Visibility toggles
   ========================= */
#uitsnede_4,
#uitsnede_5 {
  display: none;
}

/* =========================
   25) Cards (DEDUPED)
   ========================= */
.card-header {
  height: 80px;
  line-height: 1.1rem;
}

.card-header-low {
  height: auto;
  line-height: 1.1rem;
}

.card {
  height: 220px;
}

.card-low {
  height: auto;
  padding: 10px;
  background-color: whitesmoke;
  border-bottom: 1px solid lightgray !important;
  border-radius: 7px;
  text-align: center;
}

/* =========================
   26) Map
   ========================= */
.map-wrap {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  float: left;
}

.map-iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* =========================
   27) Responsive
   ========================= */

@media only screen and (max-width: 1480px) {
  .screen_width {
    width: 98%;
    margin: 0 auto;
  }

  h4 {
    font-size: 1.25rem !important;
  }

  .blue_button,
  .red_button,
  .grey_button {
    font-size: 0.8rem;
    padding: 11px 20px;
    display: block;
    margin-top: -10px;
  }

  .nav_item {
    padding: 2px 0;
  }

  .tr {
    width: 94%;
    margin: 0 auto;
  }

  .text_bar {
    padding-left: 1%;
    padding-right: 1%;
  }

  .top_logo {
    width: 13%;
    padding-left: 2%;
  }

  .top_home {
    width: 5%;
    padding-left: 2%;
  }

  .top_search {
    width: 50%;
    font-size: 2em;
  }

  .top_navigation {
    width: 25%;
  }
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .screen_width {
    width: 100%;
    height: auto;
    padding: 0 10px;
  }

  .tr {
    width: 94%;
    margin: 0 auto;
  }

  .top_logo {
    width: 38%;
    padding-left: 2%;
  }

  .top_home,
  .top_search {
    display: none;
  }

  .top_navigation {
    width: 60%;
  }

  .category_box {
    width: 94%;
    height: 389px;
    margin: 0 3% 50px;
  }

  .category_box:nth-child(4n) {
    margin: 0 3% 50px;
  }

  .footer_block,
  .footer_block_icons {
    width: 100%;
    clear: both;
    margin: 0;
    padding: 10px 0;
  }

  .footer_block h4 {
    margin-top: 0;
  }

  .td_05,
  .td_05_auto,
  .td_30,
  .td_30_auto,
  .td_35,
  .td_35_auto,
  .td_60,
  .td_60_auto,
  .td_65,
  .td_65_auto,
  .td_70,
  .td_70_auto,
  .td_75,
  .td_75_auto {
    width: 94%;
    height: auto;
    overflow: hidden;
    clear: both;
    margin: 0 auto;
    float: none;
  }

  .order_box {
    width: 90%;
    height: auto;
    overflow: hidden;
    clear: both;
    margin: 20px auto 0;
    float: none;
  }

  .price_box {
    width: 94%;
    height: auto;
    overflow: hidden;
    clear: both;
    margin: 20px auto 0;
    float: none;
    padding-left: 0;
  }

  .categoryBox1 {
    width: 48%;
  }

  .uitsnede_box,
  .uitsnede_box_inactive {
    width: 30%;
  }

  .panel-default {
    width: 94%;
    height: auto;
    overflow: hidden;
    clear: both;
    margin: 0 auto 20px;
  }

  .cookie_alert {
    width: calc(100vw - 40px);
  }

  .example_container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 0.65rem;
  }

  .example_box,
  .example_image {
    width: auto;
    height: auto;
    display: block;
  }
}

@media (max-width: 576px) {
  .map-iframe {
    height: 320px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .card-header {
    height: 80px;
    line-height: 1rem;
  }

  .card-header-low {
    height: auto;
    line-height: 1rem;
  }
}

#faqLichtreclames .accordion-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #e2e2e2;
}

#faqLichtreclames .accordion-button {
  font-weight: 600;
}

#faqLichtreclames .accordion-button:focus {
  box-shadow: none;
}

#faqLichtreclames .accordion-button:not(.collapsed) {
  color: #198754;
  background: #f7fff9;
}