:root {
    --form-input-width: 250px;
    --form-gap: 1.5em;
    --form-input-roundness: 10px;
    --form-input-bg: #FFFFFF;
    --form-input-padding: 10px 10px;
    --form-input-font: 'Poppins', sans-serif;

    --input-shadow: #929dbf;
    --input-focus: #7773e6;
}

.btn {
    margin: 15px 0;
}

.btn-wrap {
    width: 100% !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
}

#lastBtn {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#submitBtn {
    display: none;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
    background-color: #fff;
}

.form-wrapper>.form-tip {
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
    margin: 0 0 20px 0;
    padding: var(--default-mobile-padding);
}

/* FORM CSS */
/* FORM CSS */
#multiStepForm {
    height: 300px;
    display: flex;
    flex-direction: column;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #EAFEFF;
    transition: opacity .5s ease-in-out;
    width: 100%;
    height: 400px;
}

.fields-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #EAFEFF;
    transition: opacity .5s ease-in-out;
    width: 100%;
}

.inputwrap {
    transition: opacity 0.5s ease-in-out;
}

textarea {
    resize: none;
    padding: 7px 12px !important;
}

.form-input {
    outline: 0;
    border: 0;
    width: 550px;
    height: 48px;
    padding: 0 16px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 0 1px var(--input-shadow);
    font-family: "OpenSansModern";
    font-size: 1.2em;
    font-weight: 300;
    transition: border .5s ease-in-out;
    align-self: flex-start;
    transition: height .5s ease-in-out;
}

.form-input:focus-within {
    box-shadow: 0 0 0 2px var(--input-focus);
}

.form-label {
    font-size: 30px;
    margin: 20px 0;
    display: block;
}

/* UNDER FORM */
.henvendelse {
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
    display: flex;
    margin: 0 0 20px 0;
    padding: var(--default-mobile-padding);
    flex-direction: column;
    align-items: center;
}

/* API SEARCH MENU */
.lookupAddress {
    position: relative;
}

.lookupAddress .searchtemp {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 500;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    box-shadow: 0 1px 0 2px var(--input-focus);
}

.lookupAddress .searchtemp .contentwrap:hover {
    background: #ddd;
    cursor: pointer;
}

.lookupAddress .searchtemp .contentwrap {
    display: flex;
    flex-direction: column;
    grid-gap: 0.5em;
    overflow: hidden;
    justify-content: center;
    height: 48px;
    font-size: 1.2em;
    background: var(--form-input-bg);
    padding: 0 16px;
    transition: background 0.2s ease-in-out;
    width: inherit;
}

.lookupAddress .searchtemp .contentwrap img {
    width: 50px;
    border-radius: 50%;
    height: 50px;
    object-fit: cover;
}

.lookupAddress .searchtemp .contentwrap .searchdetails {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.lookupAddress .searchtemp .contentwrap .searchdetails * {
    margin: 0;
}

.lookupAddress .searchtemp .contentwrap .searchdetails h3 {
    font-weight: 400;
    font-size: 1em;
}

.lookupAddress .searchtemp .contentwrap .searchdetails p {
    color: #0007;
    font-size: 0.75em;
    font-weight: 500;
}

@media screen and (max-width: 65em) {
    .tilbudform .form-group {
        flex-direction: column;
    }
}

@media only screen and (max-width: 40em) {
    .form-input {
        width: 90vw;
    }

    .form-label {
        font-size: 20px;
    }

    .btn {
        font-size: 10px !important;
    }

    .lookupAddress .searchtemp .contentwrap .searchdetails h3 {
        font-size: .75em;
    }

    .lookupAddress .searchtemp .contentwrap .searchdetails p {
        font-size:.65em;
    }
}