/******* Do not edit this file *******
Code Snippets Manager
Saved: Sep 10 2026 | 12:25:49 */
@charset "UTF-8";
/* Formidable radio group — pill buttons */
.beurs-form .frm_opt_container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.beurs-form .frm_top_container .frm_primary_label {
  font-size: var(--body) !important;
}
.beurs-form .frm_radio {
  margin: 0;
}
/* Input is nested inside the label; hide visually but keep it
   focusable/tabbable for accessibility. */
.beurs-form .frm_radio input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
}
.beurs-form .frm_radio label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid #d8dcd6;
  border-radius: 999px;
  font-size: 15px;
  color: #1c1c1c;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-indent: -4px;
  /* cancels the leading space in "<input> 1" */
}
.beurs-form .frm_radio label:hover {
  border-color: #1a7a6e;
}
.beurs-form .frm_radio label:has(input[type="radio"]:checked) {
  border-color: #1a7a6e;
  background: #1a7a6e;
  color: #fff;
}
.beurs-form .frm_radio label:has(input[type="radio"]:focus-visible) {
  outline: 2px solid #1a7a6e;
  outline-offset: 2px;
}
/* Separator line above the consent checkbox — pulled past the card's
   padding so it spans edge-to-edge. Adjust 32px to match your card's
   actual padding. */
.beurs-form .long-line {
  border-top: 1px solid #d8dcd6;
  margin-top: 28px;
  padding-top: 28px;
  padding-bottom: 8px;
  margin-left: -32px;
  margin-right: -32px;
  padding-left: 32px;
  padding-right: 32px;
}
/* Consent checkbox — input and text share one <label>, so the label
   is the flex container. */
.beurs-form label[for="field_fdjfp32-0"] {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  color: #1c1c1c;
}
/* Formidable's own rule (.with_frm_style .frm_checkbox
   input[type=checkbox]) has the same specificity as a class-based
   override, so a tie on load order or !important can go either way.
   Targeting by the field's own ID guarantees this wins regardless —
   ID selectors always outrank class selectors. */
.beurs-form #field_fdjfp32-0 {
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  border-radius: 5px !important;
  background-color: #fff !important;
  border-color: #d8dcd6 !important;
  position: relative !important;
}
.beurs-form #field_fdjfp32-0:hover {
  border-color: #1a7a6e !important;
}
.beurs-form #field_fdjfp32-0:checked {
  background-color: #1a7a6e !important;
  border-color: #1a7a6e !important;
}
.beurs-form #field_fdjfp32-0:checked::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.beurs-form #field_fdjfp32-0:focus-visible {
  outline: 2px solid #1a7a6e;
  outline-offset: 2px;
}
.beurs-form label[for="field_fdjfp32-0"] a {
  color: #1a7a6e !important;
  font-weight: 600;
  text-decoration: underline;
}
/* Sector dropdown */
.beurs-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #1a7a6e;
  border-radius: 8px;
  font-size: 16px;
  color: #1c1c1c;
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%231a7a6e' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  box-shadow: 0 0 0 3px #e8f4f2;
}
