.elementor-12424 .elementor-element.elementor-element-a21e88a{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:100px;--padding-bottom:0px;--padding-left:20px;--padding-right:0px;}.elementor-12424 .elementor-element.elementor-element-a21e88a:not(.elementor-motion-effects-element-type-background), .elementor-12424 .elementor-element.elementor-element-a21e88a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F3F0EC;}.elementor-12424 .elementor-element.elementor-element-e3777aa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}#elementor-popup-modal-12424 .dialog-widget-content{background-color:#F3F0EC;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-12424{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-12424 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-12424 .dialog-close-button{display:flex;font-size:28px;}@media(min-width:768px){.elementor-12424 .elementor-element.elementor-element-a21e88a{--width:100%;}.elementor-12424 .elementor-element.elementor-element-e3777aa{--width:100%;}}@media(max-width:1024px) and (min-width:768px){.elementor-12424 .elementor-element.elementor-element-e3777aa{--width:100%;}}@media(max-width:767px){.elementor-12424 .elementor-element.elementor-element-a21e88a{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-bb457d9 */h3 {
            font-family: 'Averta CY', Arial, sans-serif;
            font-weight: 700;
            font-size: 30px;
            line-height: 1.3;
            margin: 0 0 10px 0;
        }
        
        /* form styling */
        .form-container {
            background-color: none;
            padding: 30px;
            border-radius: 10px;
            max-width: 800px;
            width: 100%;
        }
        .form {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
            min-height: 76px; /* Height of label (22px) + input (44px) + gap (8px) */
        }
        .form-group.comment-group {
            min-height: 182px; /* Height of label (22px) + textarea (150px) + gap (8px) */
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .form-group input {
            width: 100%;
            padding: 10px;
            border: 0px solid #333333;
            border-radius: 50px;
            font-size: 16px;
        }
        .form-group textarea {
            width: 100%;
            min-height: 150px;
            padding: 10px;
            border: 0px solid #333333;
            border-radius: 25px;
            font-size: 16px;
            font-family: inherit;
            resize: vertical;
        }
        .form-group input:focus, .form-group textarea:focus {
            border: 0px solid #6F6BF6;
            outline: none;
            box-shadow: 0 0 0 1px #6F6BF6;
        }
        .form-group input.error {
            border-color: #dc3232;
        }
        
        /* dropdown styling for dawa autocomplete and select fields */
        .dropdown-suggestions {
            border: 0px solid #e4e4e4;
            max-height: 200px;
            overflow-y: auto;
            background-color: #fff;
            z-index: 1000;
            position: absolute;
            top: 100%;
            left: 0;
            width: calc(100% - 2px);
            box-sizing: border-box;
            margin-top: 4px;
            border-radius: 25px;
        }
        .dropdown-suggestions:empty {
            display: none;
        }
        .dropdown-suggestion {
            padding: 8px;
            cursor: pointer;
        }
        .dropdown-suggestion:hover {
            background-color: #f0f0f0;
        }
        
        /* submit knap */
        .submit-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 48px;
            background-color: #6F6BF6;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 17px;
            cursor: pointer;
        }

        .submit-btn.loading::after {
            content: '';
            position: absolute;
            right: 12px;
            top: 50%;
            margin-top: -10px;
            width: 20px;
            height: 20px;
            border: 2px solid white;
            border-top: 2px solid transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .submit-btn.loading {
            background-color: #605ce0;
            cursor: wait;
        }
        .submit-btn:hover {
            background-color: #605ce0;
        }
        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }
        
        /* sektioner: privatlivspolitik og nyhedsbrev samtykke */
        .privacy-link {
            color: #6F6BF6;
            text-decoration: none;
        }
        .privacy-link:hover {
            text-decoration: underline;
        }
        
        /* validation styling */
        .error-message {
            color: #dc3232;
            font-size: 14px;
            position: absolute;
            bottom: -24px;
            left: 0;
            margin: 0;
        }
        
        /* Add loading indicator styles */
        .input-loading-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
        }
        .loading-indicator {
            display: none;
            position: absolute;
            right: 12px;
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            border-top-color: #6F6BF6;
            border-radius: 50%;
            margin: auto;
        }
        .loading .loading-indicator {
            display: block;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Add checkbox styling */
        .checkbox-container {
            display: inline-flex;
            gap: 20px;
            align-items: flex-start;
            cursor: pointer;
        }
        .checkbox-input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }
        .checkbox-custom {
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 6px;
            border: 0px #333333 solid;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .checkbox-input:focus + .checkbox-custom {
            border-color: #6F6BF6;
            box-shadow: 0 0 0 1px #6F6BF6;
        }
        .checkbox-input:checked + .checkbox-custom::after {
            content: "";
            width: 22px;
            height: 22px;
            background-color: transparent;
            background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 5L7 13L3 9' stroke='%236F6BF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        /* Custom dropdown styling */
        .custom-dropdown {
            position: relative;
            width: 100%;
        }

        .dropdown-field {
            width: 100%;
            padding: 10px;
            border: 0px solid #333333;
            border-radius: 8px;
            font-family: 'Averta CY', Arial, sans-serif;
            font-size: 16px;
            background: white;
            cursor: pointer;
            box-sizing: border-box;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dropdown-field::after {
            content: '';
            width: 24px;
            height: 24px;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23333433"><path d="M480-360 280-560h400L480-360Z"/></svg>');
            background-repeat: no-repeat;
            background-position: center;
        }

        .dropdown-text {
            color: #666666;
            font-weight: 500;
        }

        .dropdown-field:focus {
            border: 0px solid #6F6BF6;
            outline: none;
            box-shadow: 0 0 0 1px #6F6BF6;
        }

        .custom-dropdown .dropdown-suggestions {
            display: none;
        }

        .dropdown-field:focus + .dropdown-suggestions {
            display: block;
        }

        .custom-dropdown.error .dropdown-field {
            border-color: #dc3232;
        }
        
        /* Add checkbox styling */
        .checkbox-container {
            display: inline-flex;
            gap: 20px;
            align-items: flex-start;
            cursor: pointer;
        }
        .checkbox-input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }
        .checkbox-custom {
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 6px;
            border: 0px #333333 solid;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .checkbox-input:focus + .checkbox-custom {
            border-color: #6F6BF6;
            box-shadow: 0 0 0 1px #6F6BF6;
        }
        .checkbox-input:checked + .checkbox-custom::after {
            content: "";
            width: 22px;
            height: 22px;
            background-color: transparent;
            background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 5L7 13L3 9' stroke='%236F6BF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

        /* Multi Pick List styling*/
        .form-group-multi {
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
            min-height: 76px;
            margin-bottom: 16px;  /* Consistent spacing with room for error */
        }

        .form-group-multi label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .form-group-multi .multipick-ctn {
            position: relative;  /* Create new positioning context */
            z-index: 2;  /* Ensure input stays above error */
        }

        .form-group-multi .multipick-suggestions {
            position: absolute;  /* Create new positioning context */
            z-index: 2;  /* Ensure dropdown stays above error */
            margin-top: 4px;  /* Restore the tighter spacing */
        }

        .form-group-multi .multipick-error {
            color: #dc3232;
            font-size: 14px;
            position: absolute;
            top: calc(100% + 8px);  /* Closer to the input, consistent with other fields */
            left: 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
            width: 100%;
            line-height: 1.2;
        }

        .form-group-multi .multipick-ctn.error {
            border-color: #dc3232;
        }

        .form-group-multi .multipick-ctn {
            width: calc(100%);
            padding: 10px;
            border: 0px solid #333333;
            border-radius: 8px;
            font-size: 16px;
            background: #FFF;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            min-height: 52.4px;
            height: auto;
            cursor: pointer;
            position: relative;
            padding-right: 34px;
        }

        .form-group-multi .multipick-ctn:focus-within {
            border: 2px solid #6F6BF6;
            outline: none;
            box-shadow: 0 0 0 1px #6F6BF6;
        }

        .form-group-multi .multipick-ctn::before {
            content: 'Vælg';
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #666666;
            pointer-events: none;
        }

        .form-group-multi .multipick-ctn:has(.tag)::before {
            display: none;
        }

        .form-group-multi .multipick-suggestions {
            margin-top: 4px;
            border: 1px solid #e4e4e4;
            max-height: 200px;
            overflow-y: auto;
            background-color: #fff;
            z-index: 1000;
            position: absolute;
            top: 100%;
            left: 0;
            width: calc(100% - 2px);
            box-sizing: border-box;
            border-radius: 8px;
        }

        .form-group-multi .multipick-ctn .tag-ctn {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            min-width: 0;
            pointer-events: none;
        }

        .form-group-multi .tag {
            pointer-events: auto;
            position: relative;
            z-index: 2;
        }

        .form-group-multi input {
            position: absolute;
            top: 0;
            left: 0;
            right: 34px;
            bottom: 0;
            width: 100%;
            border: none;
            font-size: 16px;
            background: transparent;
            outline: none;
            padding: 0 10px;
            color: transparent;
            cursor: pointer;
            user-select: none;
            -webkit-user-select: none;
        }

        .form-group-multi .multipick-ctn:after {
            content: '';
            width: 24px;
            height: 24px;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23333433"><path d="M480-360 280-560h400L480-360Z"/></svg>');
            background-repeat: no-repeat;
            background-position: center;
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .form-group-multi .tag {
            display: inline-flex;
            min-height: 24px;
            padding: 3px 12px;
            align-items: center;
            background: rgba(0, 0, 0, 0.08);
            border-radius: 100px;
            gap: 6px;
            cursor: pointer;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .form-group-multi .tag::after {
            content: '';
            width: 16px;
            height: 16px;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23666666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>');
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.7;
        }

        .form-group-multi .tag:hover::after {
            opacity: 1;
        }

        /* Standard tag styling */
        .form-group-multi .tag.standard-tag {
            background-color: #e8f5e9;
            cursor: default;
        }

        .form-group-multi .tag.standard-tag::after {
            display: none;
        }/* End custom CSS */