/*Gform*/
/* Input */
.ginput_container.ginput_container_text input,
.ginput_container.ginput_container_email input,
.ginput_container.ginput_container_number input,
.ginput_container.ginput_container_phone input,
.ginput_container.ginput_container_textarea textarea {
    height: 44px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    text-indent: 10px;
    line-height: 200% !important;
}

/* Textarea */
.ginput_container.ginput_container_textarea textarea {
    height: 120px;
    outline-color: black;
}

.gfield {
    position: relative;
}

.gfield_consent_label {
    cursor: pointer;
}

/* Label */
.gform_wrapper.gravity-theme .gfield_label {
    font-weight: 300;
    top: 20px;
    left: 20px;
    transition: 0.2s;
    font-family: Maison Neue;
    font-size: 14px;
    color: var(--e-global-color-text);
}

.gform_wrapper.gravity-theme .gform-field-label {
    color: var(--e-global-color-text);
}

.gform_wrapper.gravity-theme .active-label.active .gfield_label {
    font-size: 12px;
    top: 8px;
}

/*Required*/
.gfield_required_asterisk {
    color: var(--e-global-color-secondary) !important;
}

/* Checkboxes */
.gform_wrapper input[type=checkbox] {
    position: relative;
    cursor: pointer;
    margin-right: 3px;
}

.ginput_container_consent {
    display: flex;
}

.ginput_container_consent input[type=checkbox] {
    visibility: hidden;
    margin-right: 10px;
}

.ginput_container_consent label a {
    color: var(--e-global-color-1314401) !important;
}

.white .ginput_container_consent label a {
    color: #A57C19 !important;
}

.ginput_container_consent input[type=checkbox]+label:before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    border: 1px solid #D1D5DB;
    border-radius: 3px;
    transition: 0.3s;
    visibility: visible;
    background-image: url("/wp-content/uploads/check-yellow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0;
}

.white .ginput_container_consent input[type=checkbox]+label:before {
    background-color: white;
}

.ginput_container_consent input[type=checkbox]:checked+label:before {
    background-color: #ffeec942;
    border-color: var(--e-global-color-secondary);
    background-size: 70%;
}

.white .ginput_container_consent input[type=checkbox]:checked+label:before {
    background-color: white;
}

@media only screen and (max-width: 767px) {
    .ginput_container_consent {
        display: flex;
    }
}


/*Radio flags*/
.radio-flag .gfield_radio {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.radio-flag .gchoice {
    width: max-content;
}

.radio-flag .gchoice input {
    opacity: 0;
    width: 0;
    display: none !important;
}

.radio-flag .gchoice label {
    font-size: 0 !important;
    background-repeat: no-repeat;
    width: 42px;
    height: 28px;
    border-radius: 4px;
    max-width: unset !important;
    background-size: cover;
    opacity: 0.2;
    box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 40%) inset;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.radio-flag input:checked+label {
    opacity: 1;
    box-shadow: unset;
}

.radio-flag .gchoice_1_13_0 label {
    background-image: url(/wp-content/uploads/flag-bl.svg);
}

.radio-flag .gchoice_1_13_1 label {
    background-image: url(/wp-content/uploads/flag-dk.svg);
}

.radio-flag .gchoice_1_13_2 label {
    background-image: url(/wp-content/uploads/flag-nl.svg);
}

.radio-flag .gchoice_1_13_3 label {
    background-image: url(/wp-content/uploads/flag-se.svg);
}

/*Submit button*/
.gform_footer .gform_button {
    background: #2D2D29;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-family: Maison Neue;
}

.gform_footer .gform_button:hover {
    background: #000000;
}

/*File upload*/
.gform_drop_area {
    max-height: 96px;
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.gform_drop_area span {
    margin: 0 !important;
}

.gform_drop_area button {
    border: none;
    padding: 0;
    background: none !important;
    color: var(--e-global-color-secondary) !important;
    font-family: Maison Neue;
}