/** nl_NL - en_US **/

@media (max-width: 980px) {
  .faq-items > .et_pb_column {
        width: 100%;
        margin-bottom: 10px;
    }
}   


.menu_cta {
  display: inline-block !important;
  background-color: #e09900 !important; /* Ensure the background is set */
  border: 1px solid #bf6631 !important; /* Border color matches the desired look */
  font-family: Arial, sans-serif !important; /* Ensure consistent font appearance */
  color: #ffffff !important; /* Force black font color */
  padding: 4px 20px !important; /* Balanced padding for clickability */
  font-size: 12px !important; /* Maintain readability */
  text-align: center !important; /* Center the text inside the button */
  border-radius: 0px !important; /* Ensure sharp edges */
  cursor: pointer !important; /* Make it look clickable */
}

/* Hover state for the button */
.menu_cta:hover {
  background-color: #000000 !important; /* Highlight with the border color on hover */
  color: #ffffff !important; /* Change text color to white on hover */
} 

body.scrolled .menu_cta {
  color: #000000 !important;
}

.menu_cta {
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out !important; /* Smooth and natural effect */
}


.lang-flag-label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-flag-label img {
  width: 16px;
  height: auto;
  vertical-align: middle;
  max-height: 1em;
}

/* Always show language menu on all screen sizes */
.lang-selector {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
}

/* Override hiding rules in mobile nav logic */
@media (max-width: 768px) {
  .lang-selector {
    display: flex !important;
    position: relative;
    top: auto;
    left: auto;
    background: none;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999;
  }

  .lang-selector li {
    display: block;
  }

  .lang-selector a {
    font-size: 16px;
    padding: 4px 8px;
  }
}

#top-header {
	padding-left: 20px;
}

/* new css for the form */
.et_pb_contact_form input[type="text"],
.et_pb_contact_form input[type="email"],
.et_pb_contact_form input[type="tel"],
.et_pb_contact_form textarea {
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.et_pb_contact_form input[type="submit"],
.et_pb_contact_form [type="submit"] {
  background-color: #e8b336;
  color: white;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.et_pb_contact_form select,
.wpcf7-form-control.wpcf7-select {
  border: 1px solid #ccc !important;
}