/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 02 2025 | 14:34:29 */
html, body {
  overflow-x: hidden;
}

a:active, a:hover {
	color: unset;
}
.active-like, .o-site-header__profile-link--heartnew {display:none!important}

.samtykke hr {
 	 border: none;
    height: 2px;
    background-color: #808080;
    margin: 0 0 1.5rem;
}

.samtykke {font-size:20px; 
	font-weight:600}

.samtykke a {color:#30903A}

#field_1_21 legend {display:none}


/* Skjul "* indikerer påkrævede felter" */
.gform_wrapper .gform_required_legend {
  display: none;
}

/* Skjul samtykke overskriften (legend) */
#gform_wrapper_1 #field_1_15 > legend.gfield_label {
  display: none;
}

/* Skjul "Vælg op til 1 valgmuligheder." */
#gform_wrapper_1 #gfield_choice_limit_message_1_12, #gform_wrapper_2 #gfield_choice_limit_message_2_36 {
  display: none;
}

/* Spacing top */
.gform_body {
  padding-top: 60px;
}

.gfield_required_asterisk {color:#A5A5A5;}

legend {
    margin-bottom: .75em !important;
    font-size: 21px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
	color: #525252 !important;
}

label[data-floating] {
  pointer-events: none;
}


@media only screen and (min-width: 640px) {
    legend {
        font-size: 28px !important;
    }
}

/* 1: Basis layout - lodret stacking på små skærme */
.gform_wrapper .gfield_radio {
  display: flex;
  flex-direction: column;
  gap: 15px; /* mellemrum lodret */
  margin-top: 30px; /* spacing over knapperne */
}

/* 2: Hver valg fylder 100% på små skærme */
.gform_wrapper .gfield_radio .gchoice {
  flex: 1 1 100%;
}

/* 3: Vandret layout på store skærme */
@media only screen and (min-width: 640px) {
	/* Default cirkel med tynd kant */
.gform_wrapper .gfield_radio label.gform-field-label::before {
  top: 4px !important; 
}
  .gform_wrapper .gfield_radio {
    flex-direction: row;
    gap: 30px; /* mellemrum vandret */
  }

  .gform_wrapper .gfield_radio .gchoice {
    flex: 1 1 0;
  }
}

/* 4: Skjul native radio input */
.gform_wrapper .gfield_radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

/* 5: Label som blok med plads til custom cirkel */
.gform_wrapper .gfield_radio label.gform-field-label {
  display: block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  color: #525252;
  font-weight: normal;
	line-height: 1em;
  font-size: 21px; /* default størrelse på små skærme */
}

/* 6: Større font på store skærme */
@media only screen and (min-width: 1024px) {
  .gform_wrapper .gfield_radio label.gform-field-label {
    font-size: 28px;
  }
}

/* Default cirkel med tynd kant */
.gform_wrapper .gfield_radio label.gform-field-label::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 2px solid gray;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 0px;
  left: 0;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

/* Når valgt: tykkere kant (mindre transparent indre) */
.gform_wrapper .gfield_radio input[type="radio"]:checked + label.gform-field-label::before {
  border: 8px solid gray;
}

/* !!!! move placeholder !!!! */ 

/* Container */
.ginput_container_text,
.ginput_container_email, .ginput_container_textarea {
  position: relative;
  margin-top: 10px;
}

/* Input uden ramme, kun bundstreg */
.ginput_container_text input, .ginput_container_textarea textarea, 
.ginput_container_email input {
  display: block;
  padding: 8px 0px !important;
  width: 100%;
  border-radius: 0px !important;
  border: none !important;
  border-bottom: 2px solid gray !important; /* kun bundstreg */
  background-color: transparent !important; /* ingen boks */
  color: #525252 !important;
  box-shadow: none !important;
  transition: border-color 0.2s;
  font-size: 21px !important;
}

/* Label starter i midten */
.ginput_container_textarea label,
.ginput_container_text label,
.ginput_container_email label {
  position: absolute;
  font-weight: 400;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  color: rgb(165,165,165) !important;
  cursor: text;
  user-select: none;
  transition: 0.15s ease-in-out;
  font-size: 21px !important;
}

/* Når input har værdi eller fokus */
.ginput_container_text input[data-empty="false"] + label,
.ginput_container_text input:focus + label,
.ginput_container_email input[data-empty="false"] + label,
.ginput_container_email input:focus + label {
  top: -10px;
  left: 0;
  font-size: 12px !important;
  color: #555;
}

/* Når input har værdi eller fokus */
.ginput_container_textarea textarea[data-empty="false"] + label,
.ginput_container_textarea textarea:focus + label {
  top: 15px;
  left: -6px;
  font-size: 12px !important;
  color: #555;
}

/* Fokus på bundstreg */
.ginput_container_text input:focus,
.ginput_container_email input:focus {
  border-color: #555;
  outline: none;
}

/* Større skærm */
@media only screen and (min-width: 1024px) {
  .ginput_container_text input,
  .ginput_container_textarea textarea,
  .ginput_container_email input {
    font-size: 24px !important;
  }
	  .ginput_container_textarea label,
  .ginput_container_text label,
  .ginput_container_email label,
.gfield--input-type-date label	
	{
    font-size: 26px !important;
  }

  .ginput_container_textarea textarea[data-empty="false"] + label,
  .ginput_container_textarea textarea:focus + label,
	.ginput_container_text input[data-empty="false"] + label,
  .ginput_container_text input:focus + label,
  .ginput_container_email input[data-empty="false"] + label,
  .ginput_container_email input:focus + label {
    font-size: 16px !important;
  }
}


/* !!!flere valg boks - tjek bokse!!! */

/* Afstand over hele blokken */
.gfield_checkbox,
.ginput_container_consent {
  margin-top: 20px;
  padding: 0;
}

.gfield_consent_label {font-size:20px!important}

/* Fjerner venstre padding og margin på containeren */
.gfield_checkbox .gchoice {
  margin: 0;
  padding: 0;
}

/* Label styling */
.gfield_checkbox .gform-field-label,
.ginput_container_consent .gform-field-label {
  position: relative;
  padding-left: 40px; /* ⬅️ Dette skaber fast indrykning for AL tekst */
  margin: 0 0 15px 0;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3;
  color: #525252 !important;
  max-width: 100%; /* Sikrer at lange links wrapper pænt */
}


/* Extra styling for textarea */
.ginput_container_textarea {
  position: relative;
	border: 2px solid gray !important; 		
}

.ginput_container_textarea textarea {padding:30px 10px!important; border:0px!important}

.ginput_container_textarea label[data-floating] {
  position: absolute;
  top: 1.8rem; /* adjust as needed */
  /*left: 1rem;
  font-size: 1rem;
  color: #666; */
	padding-left:16px;	
  pointer-events: none;
  transition: all 0.2s ease;
  transform-origin: left top;
}



/* Font-størrelse - stor skærm >1024px */
@media (min-width: 1025px) {
  .gfield_checkbox .gform-field-label,
  .ginput_container_consent .gform-field-label {
    font-size: 24px;
  }
}

/* Font-størrelse - lille skærm <=1024px */
@media (max-width: 1024px) {
  .gfield_checkbox .gform-field-label,
  .ginput_container_consent .gform-field-label {
    font-size: 21px;
  }
}

/* Skjul standard checkbox */
.gfield_checkbox input[type="checkbox"],
.ginput_container_consent input[type="checkbox"] {
  display: none;
}


/* Boksen med absolute position */
.gfield_checkbox .gform-field-label::before,
.ginput_container_consent .gform-field-label::before {
  content: "";
  position: absolute; /* ⬅️ Så boksen står fast ude til venstre */
  top: 0;
  left: 0;
  margin-top: 20px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 2px solid #808080;
  border-radius: 0;
  background-color: transparent;
  transition: all 0.2s ease;
}

/* Når tjekket: baggrund bliver grå */
.gfield_checkbox input[type="checkbox"]:checked + .gform-field-label::before,
.ginput_container_consent input[type="checkbox"]:checked + .gform-field-label::before {
  background-color: #808080;
}

/* Mindre skærme: juster margin-top */
@media (max-width: 1024px) {
  .gfield_checkbox .gform-field-label::before,
  .ginput_container_consent .gform-field-label::before {
    margin-top: 14px !important; /* Justér til hvad der passer til din font */
  }
}

/* Standard flueben */
.gfield_checkbox .gform-field-label::after,
.ginput_container_consent .gform-field-label::after {
  content: "";
  position: absolute;
  top: 10px; /* standard */
  left: 4px;
  width: 17px;
  height: 12px;
  border: solid #f8f6f3;
  border-width: 0 0 2px 2px;
  transform: scale(0.5) rotate(-45deg);
  opacity: 0;
  transition: all 0.2s ease;
}

/* Når tjekket: vis flueben */
.gfield_checkbox input[type="checkbox"]:checked + .gform-field-label::after,
.ginput_container_consent input[type="checkbox"]:checked + .gform-field-label::after {
  transform: scale(1) rotate(-45deg);
  opacity: 1;
}

/* Mindre skærme: justér top-position */
@media (max-width: 1024px) {
  .gfield_checkbox .gform-field-label::after,
  .ginput_container_consent .gform-field-label::after {
    top: 5px; /* eller en anden passende værdi */
  }
} 


/* !!!submit knap!!! */


.gform_button{
  display: inline-flex!important;
  justify-content: center!important;
  align-items: center!important;
  padding: 15px 30px!important;
  border: 2px solid #808080!important;
  border-radius: 100px!important;
  background: transparent!important;
  color: gray!important;
  font-size: 14px!important;
  line-height: 1!important;
  font-weight: 700!important;
  text-transform: uppercase!important;
  text-decoration: none!important;
  cursor: pointer!important;
  transition: all .2s ease-in-out!important;
}

/* Stroke-baseret pil */
.gform_button .icon {
  display: inline-block!important;
  width: 18px!important;
  height: 18px!important;
  margin-left: 10px!important;
  background-color: currentColor!important;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 4l8 8-8 8" fill="none" stroke="currentColor" stroke-width="2"/></svg>') no-repeat center!important;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 4l8 8-8 8" fill="none" stroke="currentColor" stroke-width="2"/></svg>') no-repeat center!important;
  background-size: contain!important;
  transition: all .2s ease-in-out!important;
}

/* Hover-effekt */
.gform_button:hover {
  background-color: #808080!important;
  color: #F8F6F3!important;
}

/* Højrejuster knappen */
.gform_footer {
  display: flex;
  justify-content: flex-end;
}

#field_1_16 {
	display: none;
}

/* !!! fejl submit håndtering!!! */

.gform_validation_errors {
  display: none !important;
}


/* !!!andet!!! */

@media (max-width: 1369px) { .o-profile { display: none !important; }
.o-breadcrumbs-block {
        margin-top: 0px !important;
    }}


.page-id-274 main h1, .page-id-274 main p {text-align:left!important}



