@font-face {
  font-family: OrpheusPro;
  src: url(./../Fonts/Orpheus%20Pro/Orpheus%20Pro.otf);
}
@font-face {
  font-family: CircularStd-Book;
  src: url(./../Fonts/Circular%20Std%20Book/CircularStd-Book.otf);
}

* {
  box-sizing: border-box;
  font-family: CircularStd-Book;

  --topheight:53px;
  --secondtopheight:83px;
  --footerheight:33px;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  font-size: 110%;
  border:none;
  transition: top 0.3s;
  background-color: black;
}

@media (orientation: portrait) and (min-device-pixel-ratio: 2), 
       (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2), 
       (orientation: portrait) and (min--moz-device-pixel-ratio: 2), 
       (orientation: portrait) and (-o-min-device-pixel-ratio: 2/1) {
    /* Styles for high-DPI screens in portrait mode */
  body {
    font-size: 250%;
  }  
  * {
    --topheight:106px;
    --secondtopheight: 166px;
    --footerheight:66px;
  }
  .form input {
      font-size: 32px;
  }
}  
  
.content {
  padding-top: calc(var(--secondtopheight) + var(--topheight));
  padding-bottom: var(--footerheight); 
  min-height: calc(100vh - (var(--footerheight)));
}
/* Styles for smaller screens (e.g., mobile devices) */
@media (max-width: 1067px) {
  .content {
    padding-top: calc(var(--secondtopheight));
  }
}
  
.content h1 {
  font-family: OrpheusPro;
  font-size: 2em; //54px;
  //color: #e1bb8c;
  color: #D1AE82;
}
.content h2 {
  font-family: CircularStd-Book;
  font-size: 1em; //25px;
  color: #FFFFFF;
  text-transform: uppercase; 
  //border-top: 2px solid #4D4D4D;
  padding-top: 12px;
  }
.content p {
  font-size: 0.90em; //22px;
  }
/* Styles for smaller screens (e.g., mobile devices) */
@media (max-width: 1067px) {
  .content p {
  font-size: 0.80em;
  }
}



.footer {
  position: inline-block;
  float: left;
  width: 100%;
  height: var(--footerheight);
  background-color: #000000;
  color: #D1D1D1;
  text-align: left;
  padding: 7px;
  font-size: 0.7em;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
}

.delete {
  z-index: 100;
}


.content a, .content a:visited {
  color: inherit;
}

.black {
  color:white;
  background-color: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(24px);
}

.gray {
  color:white;
  background-color: rgba(150, 150, 150, 0.75);
  backdrop-filter: blur(24px);
}
.white {
  color:black;
  background-color: rgba(252, 252, 252, 0.85);
  backdrop-filter: blur(24px);
}
.realblack {
  color:white;
  background-color: #000000;
}
.realgray {
  color:white;
  background-color: #4D4D4D;
}
.realwhite {
  color:black;
  background-color: #FFFFFF;
}
.realwhite h2,
.white h2 {
  color: black;
}

.block {
  position: relative;
  width: 100%;
  float: left;
  margin:0;
}

.column {
  column-count: 2;
  column-gap: 20px;
  margin-bottom: 12px;
}
/* Styles for smaller screens (e.g., mobile devices) */
@media (max-width: 1067px) {
  .column {
    column-count: 1;
    column-gap: 0;
  }
  label {
    display: inline-block;
    width: 170px;
  }
}

.nobreak {
  break-inside: avoid;
}

.fullpageheight {
  min-height: calc(100vh - (var(--footerheight)) - var(--secondtopheight) - var(--topheight)); 
}
.paddedcontent {
  padding: 30px 25px;
}

/* Styles for smaller screens (e.g., mobile devices) */
@media (max-width: 1067px) {
  .fullpageheight {
    min-height: calc(100vh - (var(--footerheight)) - var(--secondtopheight)); 
  }
}


div.fixed_bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: black;
}

div.fixed_bg img {
  position: absolute;
  display: block;
  float: right;
  right: 0;
  height: 100%;
  width: auto; /* Make the image cover the container */
  min-width: 50%;
  object-fit: cover; /* Cover the entire area without stretching */
}

.half {
  display: inline-block;
  height: 100%;
  width: 50%;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1067px) {
  .grid
     {
     display: inline-block;
     width : 100%;
     }
}

  
/* Styles for smaller screens (e.g., mobile devices) */
@media (max-width: 1067px) {
  .half {
  width: 100%;
  }
}

.form-row {
  display: flex;
  align-items: center; /* Vertically center input and label */
  gap: 0.5em;          /* Space between label and input */
  margin-bottom: 1em;  /* Space between rows, optional */
}

.form-row label {
  min-width: 140px;    /* Adjust as needed for your labels */
}

.form {
  //width: 100%;
  white-space: normal;
}

.form label {
    width: 10%;
    //min-width: 200px;
    //padding: .625rem 12px 2px 12px;
    float: left;
    vertical-align: top;
  }
.form input{
    background-color: #E8E8E8;
    font-size: 1em;
    margin-bottom: 12px;
    width: 100%;
}
.form input:first-child {
    margin-bottom: 0px;
}
.form input[type="text"],
.form input[type="password"],
.form select
 {
    width: 100%;
    clear:right; 
    padding: 12px;
    border: 1px solid #888888;
  }
.form input[type="text"]:focus,
.form input[type="password"]:focus {
    outline: none;
    border: 1px solid #111111;
  }
.form input[type="password"] {
    margin-top: 12px;
  }
.form textarea {
    width: 100%;
    height: 180px;
    outline: none;
    resize: vertical;
    font-size: 1em;
    font-weight: lighter;
    background-color: #E8E8E8;
    border: none;
    padding: 12px;
  }
.form textarea:focus {
    border: 1px solid #666666;
}
  
.form input[type="file"] {
    border: 1px solid #e0ba8b;
    width: 100%;
    margin: 0 0 20px 0;
  }  
.form input[type="file"]::file-selector-button {
    border: none;
    border-right: 1px solid #e0ba8b;
    color: black;
    background-color: #EEEEEE; 
    padding: .625rem 20px;
    text-transform: capitalize;
    /font-weight: bolder;
  }  
.form input[type="file"]:hover ,
.form input[type="file"]::file-selector-button:hover {
    color: #e0ba8b;
    background-color: white; 
  } 
  
.form input[type="submit"] {
  border: 1px solid #e0ba8b;
  color: black;
  //width: 100%;
  height: 50px;
  padding: .625rem 20px;
  text-transform: capitalize;
  font-weight: bolder;
  background-color: #e0ba8b;
}  
.form input[type="submit"]:hover  {
  color: #e0ba8b;
  background-color: white;

}

.form .radio input[type="radio"],
.form .radio input[type="checkbox"] {
  display: none;
} 
.form .radio input[type="radio"]:checked + label,
.form .radio input[type="checkbox"]:checked + label {
  background-color: #e0ba8b;
  color: white;
}
.form .radio input[type="radio"] + label,
.form .radio input[type="checkbox"] + label {
  display: inline-block;
  //width: auto;
  min-width: 200px;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid #e0ba8b;
  cursor: pointer;
  margin: 0 12px 0 0;
  background-color: #FFF;
}

.form input[type="checkbox"] {
  accent-color: #e0ba8b;
  outline: 2px solid #888888;
  width: 32px;
  height: 32px;
}

div.radio {
  display: inline-block; 
  //width: 100%;
  background-color: #E8E8E8;
  margin-bottom: 12px;
  padding: 0 0 12px 12px;
}


/* hides other language text classes, added 26-07-2022, Jelmer */
.EN, .DE, .NL
   {
   display:none; 
   }

.form .error {
  border: 2px solid red !important;
  background-color: lightred;
  color: red;
}

.flex {
  display: flex;
  gap: 12px;
}

table {
  width: 100%;
}

table tr:nth-child(even) {
  background-color: #E5E5E5; /* Light gray for even rows */
}

table tr:nth-child(odd) {
  background-color: #ffffff; /* White for odd rows (optional, for clarity) */
}

.faqPaths table tr {
  background-color: inherit; 
}
.faqPaths table  {
  width: auto;
}


td {
  padding: 4px 12px;
}
td.label {
  text-align: right;
  //vertical-align: top;
  color: #4D4D4D;
  border-right:2px solid #4D4D4D;
}

a.label {
  padding-right: 20px;
  color: #4A4A4A;
  vertical-align: top;
}

a.button {
 
  border: 1px solid #e0ba8b;
  color: black;
  min-height: 50px;
  padding: .625rem 20px;
  text-transform: capitalize;
  font-weight: bolder;
  text-decoration: none;
  background-color: #e0ba8b;
  margin-right: 6px;
  float:left;
}  
a.button:hover, a.active {
  color: #e0ba8b;
  background-color: white; 
}




.svg-div, .image {
  display: block;
  height: 100%;
  background-color: white;
}

.svg-div svg:first-child {
  height: inherit !important;
  width: inherit !important;
  max-width: 100%;
  max-height: 100%;
}

.image-small {
  position: relative;
  float:left;
  margin:10px 20px 20px 0;
  border: 1px solid white;
  height: 30vh;
}

.image-small img {
  position: relative;
  max-height: 30vh;
  max-width: 400px;
  background-color:white;
}

.image-small:hover {
  border: 1px solid #4D4D4D;
}
.image-small .svg-div {
  max-width: 400px;
}

.part_image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.part_image svg {
  max-width: 100vw;
  padding: 0 35px; 
}
.main_image {
  height: 40vh;
  width: 100%;
}
.scale {
  max-width: 100vw; 
}

.list_text {
  width: 100%;
  //padding-right: 30%;
  vertical-align: middle;

}
.thumbnail img {
  display: inline-block;
  //max-width: 30%;
  max-height: 50px; 
}

.list_thumbnail {
  display: inline-block;
  max-width: 30%;
  max-height: 35px; 
  float: right;
}
.title_thumbnail {
  display: inline-block;
  max-width: 25%;
  max-height: 45px; 
  float: left;
  padding : 6px;
  bottom: 6px;
}
.border-top {
 border-top: 2px solid #4D4D4D;
 padding-top: 6px;
}
.border-bottom {
 border-bottom: 2px solid #4D4D4D;
 padding-bottom: 6px;
}

.show-images {
  display: inline-block;
}

.info {
  white-space: pre-wrap;
  padding: 12px 6px;
  font-size: 0.9em;
}

a.search_reset {
  position: relative;
  float: left;
  border: 1px solid #e0ba8b;
  color: black;
  min-height: 50px;
  padding: .625rem 20px;
  text-transform: capitalize;
  font-weight: bolder;
  text-decoration: none;
  background-color: #e0ba8b;
}  

.enlarged {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  z-index: 99999;
  max-width: none !important;
}
.enlarged .svg-div {
 
}
.enlarged svg {
  padding:20px;
  background-color: white;
  max-width: 100vw;
  max-height: 100vh;
}
.enlarged img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  background-color: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

div.qrcode {
  display: block;
  float: right;
}
div.qrcode img {
  border: 10px solid white;
  height: 200px;
  width: 200px;
}

a.quicklist, a.quicklist:visited {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 2px solid #e0ba8b;
  //border-left: 2px solid #e0ba8b;
  min-height: 80px;
  font-size: 0.8em;
  width: 120px;
  text-decoration: none;
  float:left;
  padding: 6px;
  //color: #e0ba8b;
  color: white;
  background-color: rgba(255,255,255,0.25);
  border-radius:6px;
  z-index: 2;
}
/* Styles for smaller screens (e.g., mobile devices) */
@media (max-width: 1067px) {
  a.quicklist, a.quicklist:visited {
    min-width: 180px;
    font-size: 0.8em;
  }
}
 
.quicklist img {
  align-self: center;
  max-width: 50%;
  max-height: 45px; 
  margin: 0 auto;
  filter: drop-shadow(0 0 12px rgba(200,200,200,1)) drop-shadow(2px 0 8px rgba(200,200,200,1));
  bottom 6px;
  z-index: -3;
} 
a.quicklist:hover {
  color: white;
  border: 2px solid #FFFFFF;
  //border-left: 2px solid #FFFFFF;
}

.h-scroll {
  max-width:100vw;
  overflow-x: auto;
  z-index: 20;
  padding: 6px; 
}


