@aarhus-university/au-lib-react-components 10.7.0 → 10.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/__tests__/jest/AUErrorComponent.test.tsx +142 -0
- package/__tests__/jest/AUModalComponent.test.tsx +70 -0
- package/__tests__/jest/AUNotificationComponent.test.tsx +115 -0
- package/build/umd/all.css +2 -2
- package/build/umd/all.js +1 -1
- package/build/umd/alphabox.js +1 -1
- package/build/umd/databox.js +1 -1
- package/build/umd/diagramme.js +1 -1
- package/build/umd/flowbox.js +1 -1
- package/build/umd/universe.js +1 -1
- package/build/umd/universe.js.map +1 -1
- package/package.json +3 -2
- package/src/components/AUErrorComponent.tsx +78 -0
- package/src/components/AUNotificationComponent.tsx +42 -0
- package/stories/AUErrorComponent.stories.tsx +117 -0
- package/stories/AUNotificationComponent.stories.tsx +116 -0
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { render } from '@testing-library/react';
|
|
4
|
+
import { SerializedError } from '@reduxjs/toolkit';
|
|
5
|
+
import { FetchBaseQueryError } from '@reduxjs/toolkit/dist/query';
|
|
6
|
+
// import userEvent from '@testing-library/user-event';
|
|
7
|
+
import '@testing-library/jest-dom';
|
|
8
|
+
import AUErrorComponent from '../../src/components/AUErrorComponent';
|
|
9
|
+
|
|
10
|
+
const auError: AU.IError = {
|
|
11
|
+
header: 'Our own custom error',
|
|
12
|
+
message: 'With a nice header and descriptive error message',
|
|
13
|
+
status: 500,
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
const fetchError1: FetchBaseQueryError = {
|
|
17
|
+
status: 'FETCH_ERROR',
|
|
18
|
+
error: 'Sum Ting Wong',
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const fetchError2: FetchBaseQueryError = {
|
|
22
|
+
status: 500,
|
|
23
|
+
data: {
|
|
24
|
+
status: 'Error',
|
|
25
|
+
message: 'Sum Ting Wong',
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const serializedError: SerializedError = {
|
|
30
|
+
code: '500',
|
|
31
|
+
message: 'Sum Ting Wong',
|
|
32
|
+
name: 'Some kind of error',
|
|
33
|
+
stack: 'Some kind of stack trace',
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
describe('<AUErrorComponent />', () => {
|
|
37
|
+
it('renders an AU custom error without a status code', () => {
|
|
38
|
+
const { container } = render(
|
|
39
|
+
<AUErrorComponent
|
|
40
|
+
error={auError}
|
|
41
|
+
/>,
|
|
42
|
+
);
|
|
43
|
+
|
|
44
|
+
const header = container.querySelector('.notification__header');
|
|
45
|
+
const p = container.querySelector('.notification__content p');
|
|
46
|
+
expect(header).toBeInTheDocument();
|
|
47
|
+
expect(p?.innerHTML).toBe(auError.message);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
it('renders an AU custom error with a status code', () => {
|
|
51
|
+
const { container } = render(
|
|
52
|
+
<AUErrorComponent
|
|
53
|
+
error={auError}
|
|
54
|
+
withStatus
|
|
55
|
+
/>,
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
const header = container.querySelector('.notification__header');
|
|
59
|
+
expect(header?.innerHTML).toBe(`${auError.status}: ${auError.header}`);
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
it('renders a fetch error without a status code', () => {
|
|
63
|
+
const { container } = render(
|
|
64
|
+
<AUErrorComponent
|
|
65
|
+
fetchError={fetchError1}
|
|
66
|
+
/>,
|
|
67
|
+
);
|
|
68
|
+
|
|
69
|
+
const header = container.querySelector('.notification__header');
|
|
70
|
+
const p = container.querySelector('.notification__content p');
|
|
71
|
+
expect(header).toBe(null);
|
|
72
|
+
expect(p?.innerHTML).toBe(fetchError1.error);
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
it('renders a fetch error with a status code', () => {
|
|
76
|
+
const { container } = render(
|
|
77
|
+
<AUErrorComponent
|
|
78
|
+
fetchError={fetchError1}
|
|
79
|
+
withStatus
|
|
80
|
+
/>,
|
|
81
|
+
);
|
|
82
|
+
|
|
83
|
+
const header = container.querySelector('.notification__header');
|
|
84
|
+
const p = container.querySelector('.notification__content p');
|
|
85
|
+
expect(header?.innerHTML).toBe(fetchError1.status);
|
|
86
|
+
expect(p?.innerHTML).toBe(fetchError1.error);
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
it('renders a fetch error with stringified text without a status code', () => {
|
|
90
|
+
const { container } = render(
|
|
91
|
+
<AUErrorComponent
|
|
92
|
+
fetchError={fetchError2}
|
|
93
|
+
/>,
|
|
94
|
+
);
|
|
95
|
+
|
|
96
|
+
const header = container.querySelector('.notification__header');
|
|
97
|
+
const p = container.querySelector('.notification__content p');
|
|
98
|
+
expect(header).toBe(null);
|
|
99
|
+
expect(p?.innerHTML).toBe(JSON.stringify(fetchError2.data));
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
it('renders a fetch error with stringified text with a status code', () => {
|
|
103
|
+
const { container } = render(
|
|
104
|
+
<AUErrorComponent
|
|
105
|
+
fetchError={fetchError2}
|
|
106
|
+
withStatus
|
|
107
|
+
/>,
|
|
108
|
+
);
|
|
109
|
+
|
|
110
|
+
const header = container.querySelector('.notification__header');
|
|
111
|
+
const p = container.querySelector('.notification__content p');
|
|
112
|
+
expect(header?.innerHTML).toBe(`${fetchError2.status}`);
|
|
113
|
+
expect(p?.innerHTML).toBe(JSON.stringify(fetchError2.data));
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
it('renders a serialized error with without a status code', () => {
|
|
117
|
+
const { container } = render(
|
|
118
|
+
<AUErrorComponent
|
|
119
|
+
serializedError={serializedError}
|
|
120
|
+
/>,
|
|
121
|
+
);
|
|
122
|
+
|
|
123
|
+
const header = container.querySelector('.notification__header');
|
|
124
|
+
const p = container.querySelector('.notification__content p');
|
|
125
|
+
expect(header).toBe(null);
|
|
126
|
+
expect(p?.innerHTML).toBe(serializedError.message);
|
|
127
|
+
});
|
|
128
|
+
|
|
129
|
+
it('renders a serialized error with a status code', () => {
|
|
130
|
+
const { container } = render(
|
|
131
|
+
<AUErrorComponent
|
|
132
|
+
serializedError={serializedError}
|
|
133
|
+
withStatus
|
|
134
|
+
/>,
|
|
135
|
+
);
|
|
136
|
+
|
|
137
|
+
const header = container.querySelector('.notification__header');
|
|
138
|
+
const p = container.querySelector('.notification__content p');
|
|
139
|
+
expect(header?.innerHTML).toBe(serializedError.code);
|
|
140
|
+
expect(p?.innerHTML).toBe(serializedError.message);
|
|
141
|
+
});
|
|
142
|
+
});
|
|
@@ -113,4 +113,74 @@ describe('<AUModalComponent />', () => {
|
|
|
113
113
|
fireEvent.click(btn);
|
|
114
114
|
expect(modal?.classList.contains('modal-view--visible')).toBe(true);
|
|
115
115
|
});
|
|
116
|
+
|
|
117
|
+
it('can be closed by clicking outside the modal', () => {
|
|
118
|
+
const { container } = render(
|
|
119
|
+
<div className="page">
|
|
120
|
+
<AUModalComponent
|
|
121
|
+
domId="test-modal"
|
|
122
|
+
show
|
|
123
|
+
sender={fakeBtn}
|
|
124
|
+
>
|
|
125
|
+
<div className="modal-view__body">
|
|
126
|
+
<h2 className="modal-view__header theme--dark">
|
|
127
|
+
Header
|
|
128
|
+
</h2>
|
|
129
|
+
<div className="modal-view__content">
|
|
130
|
+
<p>Content</p>
|
|
131
|
+
</div>
|
|
132
|
+
</div>
|
|
133
|
+
</AUModalComponent>
|
|
134
|
+
</div>,
|
|
135
|
+
);
|
|
136
|
+
|
|
137
|
+
const modal = container.querySelector('.modal-view.modal-view--visible');
|
|
138
|
+
expect(modal).toBeInTheDocument();
|
|
139
|
+
fireEvent.click(modal as HTMLElement);
|
|
140
|
+
expect(modal?.classList.contains('modal-view--visible')).toBe(false);
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
it('can be closed by pressing ESC', () => {
|
|
144
|
+
const { container } = render(
|
|
145
|
+
<div className="page">
|
|
146
|
+
<AUModalComponent
|
|
147
|
+
domId="test-modal"
|
|
148
|
+
show
|
|
149
|
+
sender={fakeBtn}
|
|
150
|
+
>
|
|
151
|
+
<div className="modal-view__body">
|
|
152
|
+
<h2 className="modal-view__header theme--dark">
|
|
153
|
+
Header
|
|
154
|
+
</h2>
|
|
155
|
+
<div className="modal-view__content">
|
|
156
|
+
<p>Content</p>
|
|
157
|
+
</div>
|
|
158
|
+
</div>
|
|
159
|
+
</AUModalComponent>
|
|
160
|
+
</div>,
|
|
161
|
+
);
|
|
162
|
+
|
|
163
|
+
const modal = container.querySelector('.modal-view.modal-view--visible');
|
|
164
|
+
expect(modal).toBeInTheDocument();
|
|
165
|
+
fireEvent.keyUp(window, { key: 'Escape', code: 'Escape', charCode: 27 });
|
|
166
|
+
expect(modal?.classList.contains('modal-view--visible')).toBe(false);
|
|
167
|
+
});
|
|
168
|
+
|
|
169
|
+
it('can be closed by clicking the close button', () => {
|
|
170
|
+
const { container, getByText } = render(
|
|
171
|
+
<div className="page">
|
|
172
|
+
<ModalWrapper />
|
|
173
|
+
</div>,
|
|
174
|
+
);
|
|
175
|
+
|
|
176
|
+
const modal = container.querySelector('.modal-view');
|
|
177
|
+
const btn = getByText('Open modal');
|
|
178
|
+
const closeBtn = container.querySelector('.modal-view__close');
|
|
179
|
+
expect(modal).toBeInTheDocument();
|
|
180
|
+
expect(modal?.classList.contains('modal-view--visible')).toBe(false);
|
|
181
|
+
fireEvent.click(btn);
|
|
182
|
+
expect(modal?.classList.contains('modal-view--visible')).toBe(true);
|
|
183
|
+
fireEvent.click(closeBtn as HTMLButtonElement);
|
|
184
|
+
expect(modal?.classList.contains('modal-view--visible')).toBe(false);
|
|
185
|
+
});
|
|
116
186
|
});
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { render } from '@testing-library/react';
|
|
4
|
+
// import userEvent from '@testing-library/user-event';
|
|
5
|
+
import '@testing-library/jest-dom';
|
|
6
|
+
import AUNotificationComponent from '../../src/components/AUNotificationComponent';
|
|
7
|
+
import AUButtonComponent from '../../src/components/AUButtonComponent';
|
|
8
|
+
|
|
9
|
+
describe('<AUNotificationComponent />', () => {
|
|
10
|
+
it('renders a notification without a header but with a paragraph', () => {
|
|
11
|
+
const { container } = render(
|
|
12
|
+
<AUNotificationComponent
|
|
13
|
+
content={[
|
|
14
|
+
<p>This is a notification</p>,
|
|
15
|
+
]}
|
|
16
|
+
/>,
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
expect(container).toBeInTheDocument();
|
|
20
|
+
const header = container.querySelector('.notification__header');
|
|
21
|
+
const p = container.querySelector('p');
|
|
22
|
+
expect(header).toBe(null);
|
|
23
|
+
expect(p?.innerHTML).toBe('This is a notification');
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
it('renders a notification with a header and three paragraphs', () => {
|
|
27
|
+
const { container } = render(
|
|
28
|
+
<AUNotificationComponent
|
|
29
|
+
header="This is a header"
|
|
30
|
+
content={[
|
|
31
|
+
<p>This is a notification</p>,
|
|
32
|
+
<p>With multiple paragraphs</p>,
|
|
33
|
+
<p>Awesome sauce</p>,
|
|
34
|
+
]}
|
|
35
|
+
/>,
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
expect(container).toBeInTheDocument();
|
|
39
|
+
const header = container.querySelector('.notification__header');
|
|
40
|
+
const p = container.querySelectorAll('p');
|
|
41
|
+
expect(header?.innerHTML).toBe('This is a header');
|
|
42
|
+
expect(p.length).toBe(3);
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
it('renders a notification with an action', () => {
|
|
46
|
+
const { container } = render(
|
|
47
|
+
<AUNotificationComponent
|
|
48
|
+
header="This is a header"
|
|
49
|
+
content={[
|
|
50
|
+
<p>This is a notification</p>,
|
|
51
|
+
]}
|
|
52
|
+
actions={[
|
|
53
|
+
<AUButtonComponent label="Action button" />,
|
|
54
|
+
]}
|
|
55
|
+
/>,
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
const actions = container.querySelector('.notification__actions');
|
|
59
|
+
expect(actions).toBeInTheDocument();
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
it('renders a warning notification', () => {
|
|
63
|
+
const { container } = render(
|
|
64
|
+
<AUNotificationComponent
|
|
65
|
+
type="warning"
|
|
66
|
+
header="This is a header"
|
|
67
|
+
content={[
|
|
68
|
+
<p>This is a notification</p>,
|
|
69
|
+
]}
|
|
70
|
+
actions={[
|
|
71
|
+
<AUButtonComponent label="Action button" />,
|
|
72
|
+
]}
|
|
73
|
+
/>,
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
const actions = container.querySelector('.notification--warning');
|
|
77
|
+
expect(actions).toBeInTheDocument();
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
it('renders a attention notification', () => {
|
|
81
|
+
const { container } = render(
|
|
82
|
+
<AUNotificationComponent
|
|
83
|
+
type="attention"
|
|
84
|
+
header="This is a header"
|
|
85
|
+
content={[
|
|
86
|
+
<p>This is a notification</p>,
|
|
87
|
+
]}
|
|
88
|
+
actions={[
|
|
89
|
+
<AUButtonComponent label="Action button" />,
|
|
90
|
+
]}
|
|
91
|
+
/>,
|
|
92
|
+
);
|
|
93
|
+
|
|
94
|
+
const actions = container.querySelector('.notification--attention');
|
|
95
|
+
expect(actions).toBeInTheDocument();
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
it('renders a confirm notification', () => {
|
|
99
|
+
const { container } = render(
|
|
100
|
+
<AUNotificationComponent
|
|
101
|
+
type="confirm"
|
|
102
|
+
header="This is a header"
|
|
103
|
+
content={[
|
|
104
|
+
<p>This is a notification</p>,
|
|
105
|
+
]}
|
|
106
|
+
actions={[
|
|
107
|
+
<AUButtonComponent label="Action button" />,
|
|
108
|
+
]}
|
|
109
|
+
/>,
|
|
110
|
+
);
|
|
111
|
+
|
|
112
|
+
const actions = container.querySelector('.notification--confirm');
|
|
113
|
+
expect(actions).toBeInTheDocument();
|
|
114
|
+
});
|
|
115
|
+
});
|
package/build/umd/all.css
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
.au_alphabox{overflow:visible;margin-bottom:1rem;position:relative}.au_alphabox>.au_alphabox{margin-bottom:0}.dropdown-pane .au_alphabox{margin-bottom:0}.au_alphabox>div:not(.au_alphabox_content):not(.au_alphabox){padding:1rem 1rem 0 1rem;overflow:auto}.au_alphabox p.no-results{background-color:#fff;color:#555;padding:1rem}.au_alphabox li.no-results a{font-weight:bold}.au_alphabox ul.letters{display:flex;justify-content:flex-start;flex-flow:row wrap;font-size:1.1rem;margin-top:.15rem;margin-bottom:.75rem;margin-left:0;padding-bottom:.75rem}.au_alphabox ul.letters li{padding:0;margin:2px 2px;background-color:#aaa;text-align:center;font-size:1.2rem}.au_alphabox ul.letters li.available button{cursor:pointer;color:#fff}.au_alphabox ul.letters li.active{font-weight:bold}.au_alphabox ul.letters li:before{content:""}.au_alphabox ul.letters li button{font-family:"AUPassataRegular";color:#ccc;text-transform:uppercase;width:20px;line-height:inherit}.au_alphabox ul.items{padding:1rem;margin:0;position:relative}.student .au_alphabox{background:#2a4a0f}.student .au_alphabox .listNav .ln-letters a{background-color:#8bad3f}.student .au_alphabox .listNav .ln-letters a.ln-selected{color:#2a4a0f !important}.student .au_alphabox .listNav .ln-letters a.ln-disabled{background-color:#8bad3f}.student .au_alphabox .alphabox_list_container{border:2px solid #2a4a0f}.student .au_alphabox .alphabox_list_container h3{color:#8bad3f;border-bottom:2px solid #8bad3f}.student .au_alphabox .alphabox_list_container ul li:before{color:#8bad3f}.student .au_alphabox ul.quicklinks a{background:#447400}.au_alphabox h2{color:#fff;margin:0;border:0}.au_alphabox h2 a{color:#fff !important;border:none !important}.au_alphabox h2 a:hover{text-decoration:underline !important}.au_alphabox h3{color:#fff;margin:0 0 1rem 0 !important;padding-top:1rem;font-size:1.25rem;border-top:1px solid #fff}.au_alphabox input[type=text]{background:#afc3ce url("https://cdn.au.dk/2016/assets/img/databox/find.png") no-repeat right center;border:0;float:none;width:100%;margin-bottom:1.45455rem !important}.au_alphabox input[type=text].active{background-color:#afc3ce}.au_alphabox ::-webkit-input-placeholder{color:#333}.au_alphabox ::-moz-placeholder{color:#333;opacity:1}.au_alphabox :-ms-input-placeholder{color:#333}.au_alphabox .listNav{margin:0 0 calc(.5rem - 2px) 0;font-family:"AUPassataBold"}.au_alphabox .listNav .ln-letters{margin:1rem 0}.au_alphabox .listNav .ln-letters a{background-color:#006ca4;border:none !important;margin:0 2px 2px 0;color:#fff;padding:2px;font-size:1.25rem}.au_alphabox .listNav .ln-letters a.ln-selected{background-color:#fff;color:#006ca4 !important}.au_alphabox .listNav .ln-letters a.ln-disabled{background-color:#006ca4;color:#7c98a8 !important}.au_alphabox .listNav .ln-letters .all{display:none}.au_alphabox .alphabox_list_container{background:#fff;border:2px solid #006ca4;padding:0 1rem 0 1rem;display:none;overflow-y:scroll;-webkit-overflow-scrolling:touch}.au_alphabox .alphabox_list_container h3{color:#009ee0;border-bottom:2px solid #379fcb}.au_alphabox .alphabox_list_container>ul{max-height:200px;overflow:initial !important;margin-bottom:2em;position:relative}.au_alphabox .alphabox_list_container>ul li a{color:#003e5c;border-bottom:1px dotted}.au_alphabox ul.quicklinks{display:flex;flex-wrap:wrap;justify-content:space-between;margin-left:0}.au_alphabox ul.quicklinks li{font:1.25rem "AUPassataRegular";text-transform:uppercase;width:48.9%;padding:0;line-height:1;margin-bottom:6px}.au_alphabox ul.quicklinks li:nth-child(odd){margin-right:.5em}.au_alphabox ul.quicklinks li a{display:block;background:#006ca4;color:#fff;border:none !important;padding:.5em}@media(max-width: 400px){.au_alphabox ul.quicklinks li{width:100%;margin-right:0 !important;font-size:1.72727rem}}.au_alphabox .au_alphabox_content{margin-top:1rem;margin-bottom:1rem;clear:both}.au_alphabox .au_alphabox_content>div{background:#fff;max-height:300px;overflow-y:scroll}.react-autosuggest__container{cursor:pointer}.react-autosuggest__container input[type=text]{margin-bottom:0}.page__content__block .react-autosuggest__container{position:relative;width:100%}.page__content__block .react-autosuggest__suggestions-list{margin-top:0}.react-autosuggest__suggestions-container{border-left:1px solid #ccc;border-right:1px solid #ccc;position:absolute;left:0;right:0;background-color:#fff;margin:0;z-index:1;color:#333 !important;font-size:1.2727272727rem;line-height:1;max-height:430px;overflow:auto}.react-autosuggest__suggestions-container li,.react-autosuggest__suggestions-container li:before{list-style-type:none !important;background-image:none !important;margin:0;padding:0;content:"" !important;line-height:1 !important;background:none}li.react-autosuggest__suggestion{border-bottom:1px solid #ccc;padding:1.2727272727rem 1rem}.react-autosuggest__suggestion--highlighted{background-color:#f0f0f0 !important}.react-autosuggest__suggestions-list{margin-bottom:0;margin-left:0}.au_databox{margin-bottom:2em;position:relative}.au_databox .button-wrapper{position:relative}.au_databox .button-wrapper>div{width:100%;position:absolute;bottom:0}@media(max-width: 640px){.au_databox .button-wrapper{background-image:none !important;height:auto !important;position:static;overflow:auto}.au_databox .button-wrapper>div{position:static}.au_databox .button-wrapper .db-button{float:none;width:100% !important}.au_databox .button-wrapper .db-button>span{border-left:0 !important;height:51px}.au_databox .button-wrapper .db-button>input[type=text]{left:70px;top:11px}.au_databox .button-wrapper .buttons-5.first-line-full .button-wrapper{height:auto}.au_databox .button-wrapper .buttons-6 .button-wrapper{height:auto}}.au_databox .button-wrapper .au_focus{margin-bottom:0;padding-left:1rem}.au_databox .content{width:100%;background:#f0f0f0;padding:1rem 0;overflow:auto}.au_databox .content>div{padding:0 1rem;position:relative}.au_databox .content>div .expandall{position:absolute;right:10px;top:0;text-decoration:underline;cursor:pointer}.au_databox .content ul{margin-top:0;margin-left:0}.au_databox .content ul ul{margin-top:.65rem}.au_databox .content ul li a{text-decoration:none}.au_databox .content ul li a:hover{text-decoration:underline}.au_databox .content ul.letters{display:flex;justify-content:flex-start;flex-flow:row wrap;font-size:1.1rem;margin-top:.15rem;margin-bottom:.75rem;margin-left:0;padding-bottom:.75rem;border-bottom:1px solid #ccc}.au_databox .content ul.letters li{padding:0;margin:2px 2px;background-color:#aaa;text-align:center;font-size:1.2rem}.au_databox .content ul.letters li.available button{cursor:pointer;color:#fff}.au_databox .content ul.letters li.active{font-weight:bold}.au_databox .content ul.letters li:before{content:""}.au_databox .content ul.letters li button{font-family:"AUPassataRegular";color:#ccc;text-transform:uppercase;width:20px;line-height:inherit}.au_databox .content .au_collapsible{margin-bottom:0;padding:.6rem 0}.au_databox .content .au_collapsible>.csc-header{margin-bottom:1rem}.au_databox .content .au_collapsible>.csc-header:after{font-size:24px}.au_databox .content .au_collapsible>.csc-header h3{margin:0}.au_databox .content .au_collapsible.au_collapsed>.csc-header{margin-bottom:0}.au_databox .au_focus{margin-left:24px;position:absolute;margin-bottom:0}.au_databox .au_focus.before{position:static;padding:1.5em 0 1.5em 14px;margin-left:0}.au_databox .clear{clear:both}.au_databox.width-full{width:100%}.au_databox .db-button{float:left;text-indent:1rem;color:#fff;position:relative;text-align:left;padding:0;margin:0;border:0;font:1.7272727273rem "AUPassataRegular"}.au_databox .db-button:not(.db-search),.au_databox .db-button.search-filter{cursor:pointer}.au_databox .db-button>span{display:block;border-top:1px solid #fff;padding:16px 0px;line-height:1}.au_databox .db-button>span a{color:#fff;text-decoration:none}.au_databox .db-button>span a:hover{text-decoration:underline}.au_databox .db-button input[type=text]{font-size:1.25rem;position:absolute;top:11px;left:65px;background:#fff url("https://cdn.au.dk/2016/assets/img/databox/find.png") no-repeat right center;background:rgba(255,255,255,.75) url("https://cdn.au.dk/2016/assets/img/databox/find.png") no-repeat right center;border:0;width:calc(100% - 65px - 1rem);padding:0;margin:0;height:32px;text-indent:10px}.au_databox .db-button input[type=text].active{background:#fff;background:rgba(255,255,255,.75)}.au_databox .db-button.overlay{background:#ccc;background:rgba(204,204,204,.25)}.au_databox .db-button.active{background:#f0f0f0;color:#000}.au_databox .db-button.active a{color:#000}.au_databox.collapse .db-button:after{color:#fff;opacity:.8;font-family:"au_icons";content:"+";float:right;font-size:32px;position:absolute;top:10px;right:0;margin-right:.3em}.au_databox.collapse .db-button.active:after{color:#000;opacity:1;content:"-"}.au_databox.collapse .db-button.db-search:after{content:""}.au_databox.stacked .button-wrapper{background-image:none !important;height:auto !important;position:static}.au_databox.stacked .button-wrapper>div{position:static}.au_databox.stacked .button-wrapper .db-button{float:none;width:100% !important}.au_databox.stacked .button-wrapper .db-button>span{border-left:0 !important;height:51px}.au_databox.stacked .button-wrapper .db-button>input[type=text]{left:70px;top:11px}.au_databox.stacked .button-wrapper .buttons-5.first-line-full .button-wrapper{height:auto}.au_databox.stacked .button-wrapper .buttons-6 .button-wrapper{height:auto}.au_databox.stacked .content{padding-top:0}.au_databox.buttons-1 .au_focus{bottom:75px}.au_databox.buttons-1 .button-wrapper{height:51px}.au_databox.buttons-1 .db-button{width:100%}.au_databox.buttons-1 .db-button>span{text-indent:-9999px}.au_databox.buttons-1 .db-button>input[type=text]{left:14px}.au_databox.buttons-2 .button-wrapper{height:51px}.au_databox.buttons-2 .au_focus{bottom:75px}.au_databox.buttons-2 .db-button{width:50%}.au_databox.buttons-2 .db-button:nth-child(2) span{border-left:1px solid #fff}.au_databox.buttons-3 .button-wrapper{height:51px}.au_databox.buttons-3 .au_focus{bottom:75px}.au_databox.buttons-3.first-line-full .button-wrapper{height:102px}.au_databox.buttons-3.first-line-full .au_focus{bottom:126px}.au_databox.buttons-3.first-line-full .button-1{width:100%}.au_databox.buttons-3.first-line-full .button-2,.au_databox.buttons-3.first-line-full .button-3{width:50%}.au_databox.buttons-3.first-line-full .button-2 span{border-left:0}.au_databox.buttons-3.first-line-full .button-3 span{border-left:1px solid #fff}.au_databox.buttons-3 .button-1,.au_databox.buttons-3 .button-3{width:33%}.au_databox.buttons-3 .button-2{width:34%}.au_databox.buttons-3 .button-2 span,.au_databox.buttons-3 .button-3 span{border-left:1px solid #fff}.au_databox.buttons-4 .button-wrapper{height:102px}.au_databox.buttons-4 .au_focus{bottom:126px}.au_databox.buttons-4.first-line-full .button-1{width:100%}.au_databox.buttons-4.first-line-full .button-2 span{border-left:0}.au_databox.buttons-4.first-line-full .button-2,.au_databox.buttons-4.first-line-full .button-4{width:33%}.au_databox.buttons-4.first-line-full .button-3{width:34%}.au_databox.buttons-4.first-line-full .button-3 span,.au_databox.buttons-4.first-line-full .button-4 span{border-left:1px solid #fff}.au_databox.buttons-4 .db-button{width:50%}.au_databox.buttons-4 .button-2 span,.au_databox.buttons-4 .button-4 span{border-left:1px solid #fff}.au_databox.buttons-5 .button-wrapper{height:153px}.au_databox.buttons-5 .au_focus{bottom:177px}.au_databox.buttons-5.first-line-full .button-wrapper{height:102px}.au_databox.buttons-5.first-line-full .au_focus{bottom:126px}.au_databox.buttons-5.first-line-full .button-1{width:100%}.au_databox.buttons-5.first-line-full .button-2,.au_databox.buttons-5.first-line-full .button-3,.au_databox.buttons-5.first-line-full .button-4,.au_databox.buttons-5.first-line-full .button-5{width:25%}.au_databox.buttons-5.first-line-full .button-3 span,.au_databox.buttons-5.first-line-full .button-4 span,.au_databox.buttons-5.first-line-full .button-5 span{border-left:1px solid #fff}.au_databox.buttons-5 .button-1{width:100%}.au_databox.buttons-5 .button-2,.au_databox.buttons-5 .button-3,.au_databox.buttons-5 .button-4,.au_databox.buttons-5 .button-5{width:50%}.au_databox.buttons-5 .button-3 span,.au_databox.buttons-5 .button-5 span{border-left:1px solid #fff}.au_databox.buttons-6.first-line-full .button-wrapper{height:102px}.au_databox.buttons-6.first-line-full .au_focus{bottom:126px}.au_databox.buttons-6.first-line-full .button-1{width:100%}.au_databox.buttons-6.first-line-full .db-button.button-2 span{border-left:none}.au_databox.buttons-6.first-line-full .button-2,.au_databox.buttons-6.first-line-full .button-3,.au_databox.buttons-6.first-line-full .button-4,.au_databox.buttons-6.first-line-full .button-5,.au_databox.buttons-6.first-line-full .button-6{width:20%}.au_databox.buttons-6.first-line-full .button-3 span,.au_databox.buttons-6.first-line-full .button-4 span,.au_databox.buttons-6.first-line-full .button-5 span,.au_databox.buttons-6.first-line-full .button-6 span{border-left:1px solid #fff}.au_databox.buttons-6 .button-wrapper{height:153px}.au_databox.buttons-6 .au_focus{bottom:177px}.au_databox.buttons-6 .db-button{width:50%}.au_databox.buttons-6 .db-button:nth-child(even) span{border-left:1px solid #fff}.au_databox.buttons-7 .button-wrapper{height:153px}.au_databox.buttons-7 .au_focus{bottom:177px}.au_databox.buttons-7.first-line-full .button-wrapper{height:102px}.au_databox.buttons-7.first-line-full .au_focus{bottom:126px}.au_databox.buttons-7.first-line-full .button-1{width:100%}.au_databox.buttons-7.first-line-full .button-2,.au_databox.buttons-7.first-line-full .button-3,.au_databox.buttons-7.first-line-full .button-4,.au_databox.buttons-7.first-line-full .button-5,.au_databox.buttons-7.first-line-full .button-6,.au_databox.buttons-7.first-line-full .button-7{width:16.66667%}.au_databox.buttons-7.first-line-full .button-3 span,.au_databox.buttons-7.first-line-full .button-4 span,.au_databox.buttons-7.first-line-full .button-5 span,.au_databox.buttons-7.first-line-full .button-6 span,.au_databox.buttons-7.first-line-full .button-7 span{border-left:1px solid #fff}.au_databox.buttons-7 .button-1{width:100%}.au_databox.buttons-7 .button-2,.au_databox.buttons-7 .button-4,.au_databox.buttons-7 .button-5,.au_databox.buttons-7 .button-7{width:33%}.au_databox.buttons-7 .button-3,.au_databox.buttons-7 .button-6{width:34%}.au_databox.buttons-7 .button-3 span,.au_databox.buttons-7 .button-4 span,.au_databox.buttons-7 .button-6 span,.au_databox.buttons-7 .button-7 span{border-left:1px solid #fff}.utility-links .au_databox.stacked{margin-bottom:0}.utility-links .au_databox.stacked .content{max-height:200px;overflow:auto}.au_edutable_eddi_container .print{display:inline-block;margin-bottom:1rem}.study-diagramme{padding:1rem;margin-bottom:2rem;font-family:"AUPassataRegular";background-color:#e4e4e4}.study-diagramme.list p{padding:.6rem 1rem;contain:content}.study-diagramme.list p a{text-decoration:none}.study-diagramme.list p span:last-child{float:right}.study-diagramme table{table-layout:fixed;width:100%;border-collapse:collapse}.study-diagramme table,.study-diagramme thead,.study-diagramme tbody{background-color:rgba(0,0,0,0) !important}.study-diagramme tr{background-color:rgba(0,0,0,0) !important}.study-diagramme th{font-family:"AUPassataBold";font-weight:normal}.study-diagramme th,.study-diagramme td{border:4px solid #fefefe}.study-diagramme td{padding:0}.study-diagramme td:hover{background-color:#656565}.study-diagramme td:hover.sf a{color:#cfe1e7}.study-diagramme td:hover.obl a{color:#f2e4d4}.study-diagramme td:hover.val a{color:#d1e1d6}.study-diagramme td:hover.tlv a{color:#e9ccda}.study-diagramme td:hover.ogr a{color:#f2e4d4}.study-diagramme td a{padding:2rem 1rem;display:block;text-decoration:none;border-bottom:none !important;font-size:12px;word-break:break-word;hyphens:auto}.study-diagramme td[rowspan="1"] a{min-height:130px}.study-diagramme td[rowspan="2"] a{min-height:260px}.study-diagramme td[rowspan="3"] a{min-height:390px}.study-diagramme td[rowspan="4"] a{min-height:520px}.study-diagramme td[rowspan="5"] a{min-height:650px}.study-diagramme td[rowspan="6"] a{min-height:780px}.study-diagramme .sf{background-color:#cfe1e7}.study-diagramme .obl{background-color:#f2e4d4}.study-diagramme .val{background-color:#d1e1d6}.study-diagramme .tlv{background-color:#e9ccda}.study-diagramme .ogr{background-color:#f2e4d4}@media print{.study-diagramme.show-for-small-only{display:none}}.au_flowbox{background:#f0efef;padding:2rem;margin-bottom:1rem}.au_flowbox button{text-align:left;font-family:"AUPassataRegular";text-decoration:underline;cursor:pointer}.au_flowbox>div>h2{margin:0 0 1rem 0 !important;text-transform:uppercase;border:none !important;padding:0 !important}.au_flowbox .vcard{padding:1rem;background-color:rgba(255,255,255,.95);border:0 none;margin:0 0 1rem 0}.au_flowbox .vcard .fn{font-weight:bold;font-size:1.3636363636rem}.au_flowbox .vcard p{font-family:inherit;font-size:1.2rem;font-weight:normal;line-height:1.6;margin-bottom:1.8181818182rem;text-rendering:optimizeLegibility}.au_flowbox.partner{background:#379fcb}.au_flowbox.partner>div>h2{color:#fff}.au_flowbox.partner>div>p{color:#fff}.au_flowbox.partner>div>p a{color:#fff !important;border-bottom:none !important;text-decoration:underline !important}.au_flowbox.partner>div>ul li{padding-left:0}.au_flowbox.partner>div>ul li::before{display:none}.au_flowbox_data{display:none}.au_staffcontactbox{color:#fff;padding:1.3636364rem;background-color:#379fcb;margin-bottom:1em}.au_staffcontactbox>h2{color:#fff;text-transform:uppercase;margin:0 0 1em 0 !important}@font-face{font-family:"font-awesome";src:url("https://fonts.au.dk/fonts/fa-pro-regular-400.otf");font-weight:400;font-style:normal}.layout13 .au-map,.layout14 .au-map,.layout15 .au-map,.layout16 .au-map,.layout17 .au-map{margin-bottom:1.363636364rem}.layout13 .au-map .react-autosuggest__container,.layout14 .au-map .react-autosuggest__container,.layout15 .au-map .react-autosuggest__container,.layout16 .au-map .react-autosuggest__container,.layout17 .au-map .react-autosuggest__container{margin-bottom:1rem;position:relative}.layout13 .au-map .react-autosuggest__suggestions-container,.layout14 .au-map .react-autosuggest__suggestions-container,.layout15 .au-map .react-autosuggest__suggestions-container,.layout16 .au-map .react-autosuggest__suggestions-container,.layout17 .au-map .react-autosuggest__suggestions-container{max-height:none;overflow:visible}.layout13 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21),.layout14 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21),.layout15 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21),.layout16 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21),.layout17 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21){display:none}.layout13 .au-map .gm-style-iw .au_collapsible,.layout13 .au-map .gm-style-iw hr,.layout14 .au-map .gm-style-iw .au_collapsible,.layout14 .au-map .gm-style-iw hr,.layout15 .au-map .gm-style-iw .au_collapsible,.layout15 .au-map .gm-style-iw hr,.layout16 .au-map .gm-style-iw .au_collapsible,.layout16 .au-map .gm-style-iw hr,.layout17 .au-map .gm-style-iw .au_collapsible,.layout17 .au-map .gm-style-iw hr{display:none}.layout13 .au-map__search,.layout14 .au-map__search,.layout15 .au-map__search,.layout16 .au-map__search,.layout17 .au-map__search{display:flex}.layout13 .au-map__search>div,.layout14 .au-map__search>div,.layout15 .au-map__search>div,.layout16 .au-map__search>div,.layout17 .au-map__search>div{flex-basis:85%}@media(max-width: 640px){.layout13 .au-map__search>div,.layout14 .au-map__search>div,.layout15 .au-map__search>div,.layout16 .au-map__search>div,.layout17 .au-map__search>div{flex-basis:76%}}.layout13 .au-map__search button,.layout14 .au-map__search button,.layout15 .au-map__search button,.layout16 .au-map__search button,.layout17 .au-map__search button{flex-basis:15%;font-family:"AUPassataRegular";border-top:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #ccc;height:3.5454545464rem;cursor:pointer;background:none;color:#000;padding:0}.layout13 .au-map__search button:hover,.layout14 .au-map__search button:hover,.layout15 .au-map__search button:hover,.layout16 .au-map__search button:hover,.layout17 .au-map__search button:hover{background:none;color:inherit}.layout13 .au-map__search button span::before,.layout14 .au-map__search button span::before,.layout15 .au-map__search button span::before,.layout16 .au-map__search button span::before,.layout17 .au-map__search button span::before{font-family:"font-awesome";content:"";display:inline-block;margin-right:1rem}@media(max-width: 640px){.layout13 .au-map__search button,.layout14 .au-map__search button,.layout15 .au-map__search button,.layout16 .au-map__search button,.layout17 .au-map__search button{flex-basis:24%}}.layout13 .au-map__overlay-buttons,.layout14 .au-map__overlay-buttons,.layout15 .au-map__overlay-buttons,.layout16 .au-map__overlay-buttons,.layout17 .au-map__overlay-buttons{display:flex;flex-wrap:wrap}.layout13 .au-map__overlay-buttons button,.layout14 .au-map__overlay-buttons button,.layout15 .au-map__overlay-buttons button,.layout16 .au-map__overlay-buttons button,.layout17 .au-map__overlay-buttons button{margin-right:1rem}.layout13 .au-map__person-suggestion>div:first-child,.layout14 .au-map__person-suggestion>div:first-child,.layout15 .au-map__person-suggestion>div:first-child,.layout16 .au-map__person-suggestion>div:first-child,.layout17 .au-map__person-suggestion>div:first-child{padding-left:1.363636364rem;width:15%}.layout13 .au-map__person-suggestion>div:last-child,.layout14 .au-map__person-suggestion>div:last-child,.layout15 .au-map__person-suggestion>div:last-child,.layout16 .au-map__person-suggestion>div:last-child,.layout17 .au-map__person-suggestion>div:last-child{padding-left:1.363636364rem;width:85%}.layout13 .au-map__person-suggestion h4,.layout13 .au-map__person-suggestion p,.layout14 .au-map__person-suggestion h4,.layout14 .au-map__person-suggestion p,.layout15 .au-map__person-suggestion h4,.layout15 .au-map__person-suggestion p,.layout16 .au-map__person-suggestion h4,.layout16 .au-map__person-suggestion p,.layout17 .au-map__person-suggestion h4,.layout17 .au-map__person-suggestion p{margin:0}.layout13 .au-map__person-suggestion img,.layout14 .au-map__person-suggestion img,.layout15 .au-map__person-suggestion img,.layout16 .au-map__person-suggestion img,.layout17 .au-map__person-suggestion img{max-width:100px}.layout13 .au-map .vcard>h2,.layout13 .au-map .bld-card>h2,.layout13 .au-map .overlay-card>h2,.layout13 .au-map .top-search>h2,.layout14 .au-map .vcard>h2,.layout14 .au-map .bld-card>h2,.layout14 .au-map .overlay-card>h2,.layout14 .au-map .top-search>h2,.layout15 .au-map .vcard>h2,.layout15 .au-map .bld-card>h2,.layout15 .au-map .overlay-card>h2,.layout15 .au-map .top-search>h2,.layout16 .au-map .vcard>h2,.layout16 .au-map .bld-card>h2,.layout16 .au-map .overlay-card>h2,.layout16 .au-map .top-search>h2,.layout17 .au-map .vcard>h2,.layout17 .au-map .bld-card>h2,.layout17 .au-map .overlay-card>h2,.layout17 .au-map .top-search>h2{margin-top:0}.layout13 .au-map .vcard button,.layout13 .au-map .bld-card button,.layout13 .au-map .overlay-card button,.layout13 .au-map .top-search button,.layout14 .au-map .vcard button,.layout14 .au-map .bld-card button,.layout14 .au-map .overlay-card button,.layout14 .au-map .top-search button,.layout15 .au-map .vcard button,.layout15 .au-map .bld-card button,.layout15 .au-map .overlay-card button,.layout15 .au-map .top-search button,.layout16 .au-map .vcard button,.layout16 .au-map .bld-card button,.layout16 .au-map .overlay-card button,.layout16 .au-map .top-search button,.layout17 .au-map .vcard button,.layout17 .au-map .bld-card button,.layout17 .au-map .overlay-card button,.layout17 .au-map .top-search button{cursor:pointer;text-decoration:underline;font-family:inherit;text-align:left}.layout13 .au-map .vcard strong button,.layout13 .au-map .bld-card strong button,.layout13 .au-map .overlay-card strong button,.layout13 .au-map .top-search strong button,.layout14 .au-map .vcard strong button,.layout14 .au-map .bld-card strong button,.layout14 .au-map .overlay-card strong button,.layout14 .au-map .top-search strong button,.layout15 .au-map .vcard strong button,.layout15 .au-map .bld-card strong button,.layout15 .au-map .overlay-card strong button,.layout15 .au-map .top-search strong button,.layout16 .au-map .vcard strong button,.layout16 .au-map .bld-card strong button,.layout16 .au-map .overlay-card strong button,.layout16 .au-map .top-search strong button,.layout17 .au-map .vcard strong button,.layout17 .au-map .bld-card strong button,.layout17 .au-map .overlay-card strong button,.layout17 .au-map .top-search strong button{font-weight:bold}@media(max-width: 640px){.layout13 .au-map .vcard,.layout13 .au-map .bld-card,.layout13 .au-map .overlay-card,.layout13 .au-map .top-search,.layout14 .au-map .vcard,.layout14 .au-map .bld-card,.layout14 .au-map .overlay-card,.layout14 .au-map .top-search,.layout15 .au-map .vcard,.layout15 .au-map .bld-card,.layout15 .au-map .overlay-card,.layout15 .au-map .top-search,.layout16 .au-map .vcard,.layout16 .au-map .bld-card,.layout16 .au-map .overlay-card,.layout16 .au-map .top-search,.layout17 .au-map .vcard,.layout17 .au-map .bld-card,.layout17 .au-map .overlay-card,.layout17 .au-map .top-search{padding:1.363636364rem 0}}.layout13 .au-map .vcard img,.layout14 .au-map .vcard img,.layout15 .au-map .vcard img,.layout16 .au-map .vcard img,.layout17 .au-map .vcard img{float:right;margin-left:1.363636364rem;margin-bottom:1.363636364rem;max-width:120px}.layout13 .au-map .vcard::after,.layout14 .au-map .vcard::after,.layout15 .au-map .vcard::after,.layout16 .au-map .vcard::after,.layout17 .au-map .vcard::after{display:block;content:"";clear:both}.layout13 .au-map__route,.layout14 .au-map__route,.layout15 .au-map__route,.layout16 .au-map__route,.layout17 .au-map__route{margin-bottom:1.363636364rem}.layout13 .au-map .show-on-map,.layout14 .au-map .show-on-map,.layout15 .au-map .show-on-map,.layout16 .au-map .show-on-map,.layout17 .au-map .show-on-map{display:none}.layout13 .au-map .au_collapsible .csc-header+*,.layout14 .au-map .au_collapsible .csc-header+*,.layout15 .au-map .au_collapsible .csc-header+*,.layout16 .au-map .au_collapsible .csc-header+*,.layout17 .au-map .au_collapsible .csc-header+*{position:relative;max-height:350px;overflow-y:auto}.layout13 .au-map__directions-panel,.layout14 .au-map__directions-panel,.layout15 .au-map__directions-panel,.layout16 .au-map__directions-panel,.layout17 .au-map__directions-panel{display:flex;flex-wrap:wrap;padding:1rem 0 1rem 1rem;margin-bottom:1rem;border:1px solid #cacaca}.layout13 .au-map__directions-panel__modes-of-transportation,.layout14 .au-map__directions-panel__modes-of-transportation,.layout15 .au-map__directions-panel__modes-of-transportation,.layout16 .au-map__directions-panel__modes-of-transportation,.layout17 .au-map__directions-panel__modes-of-transportation{flex-basis:100%;display:flex}.layout13 .au-map__directions-panel__from-to,.layout14 .au-map__directions-panel__from-to,.layout15 .au-map__directions-panel__from-to,.layout16 .au-map__directions-panel__from-to,.layout17 .au-map__directions-panel__from-to{flex-basis:85%}.layout13 .au-map__directions-panel__swap,.layout14 .au-map__directions-panel__swap,.layout15 .au-map__directions-panel__swap,.layout16 .au-map__directions-panel__swap,.layout17 .au-map__directions-panel__swap{flex-basis:15%;display:flex;align-items:center;justify-content:center}.layout13 .au-map__directions-panel .button-route,.layout14 .au-map__directions-panel .button-route,.layout15 .au-map__directions-panel .button-route,.layout16 .au-map__directions-panel .button-route,.layout17 .au-map__directions-panel .button-route{background-color:rgba(0,0,0,0);color:#878787;height:3rem;overflow:hidden;padding:0;margin-right:1rem;display:inline-flex;border:none}.layout13 .au-map__directions-panel .button-route--selected,.layout14 .au-map__directions-panel .button-route--selected,.layout15 .au-map__directions-panel .button-route--selected,.layout16 .au-map__directions-panel .button-route--selected,.layout17 .au-map__directions-panel .button-route--selected{border-bottom:2px solid #000}.layout13 .au-map__directions-panel .button-route::before,.layout14 .au-map__directions-panel .button-route::before,.layout15 .au-map__directions-panel .button-route::before,.layout16 .au-map__directions-panel .button-route::before,.layout17 .au-map__directions-panel .button-route::before{font-family:"font-awesome";font-size:2rem;display:inline-block}.layout13 .au-map__directions-panel .button-route--car,.layout14 .au-map__directions-panel .button-route--car,.layout15 .au-map__directions-panel .button-route--car,.layout16 .au-map__directions-panel .button-route--car,.layout17 .au-map__directions-panel .button-route--car{width:22px}.layout13 .au-map__directions-panel .button-route--car::before,.layout14 .au-map__directions-panel .button-route--car::before,.layout15 .au-map__directions-panel .button-route--car::before,.layout16 .au-map__directions-panel .button-route--car::before,.layout17 .au-map__directions-panel .button-route--car::before{content:""}.layout13 .au-map__directions-panel .button-route--walk,.layout14 .au-map__directions-panel .button-route--walk,.layout15 .au-map__directions-panel .button-route--walk,.layout16 .au-map__directions-panel .button-route--walk,.layout17 .au-map__directions-panel .button-route--walk{width:13px}.layout13 .au-map__directions-panel .button-route--walk::before,.layout14 .au-map__directions-panel .button-route--walk::before,.layout15 .au-map__directions-panel .button-route--walk::before,.layout16 .au-map__directions-panel .button-route--walk::before,.layout17 .au-map__directions-panel .button-route--walk::before{content:""}.layout13 .au-map__directions-panel .button-route--bicycle,.layout14 .au-map__directions-panel .button-route--bicycle,.layout15 .au-map__directions-panel .button-route--bicycle,.layout16 .au-map__directions-panel .button-route--bicycle,.layout17 .au-map__directions-panel .button-route--bicycle{width:27px}.layout13 .au-map__directions-panel .button-route--bicycle::before,.layout14 .au-map__directions-panel .button-route--bicycle::before,.layout15 .au-map__directions-panel .button-route--bicycle::before,.layout16 .au-map__directions-panel .button-route--bicycle::before,.layout17 .au-map__directions-panel .button-route--bicycle::before{content:""}.layout13 .au-map__directions-panel .button-route--public,.layout14 .au-map__directions-panel .button-route--public,.layout15 .au-map__directions-panel .button-route--public,.layout16 .au-map__directions-panel .button-route--public,.layout17 .au-map__directions-panel .button-route--public{width:22px;padding-top:4px}.layout13 .au-map__directions-panel .button-route--public::before,.layout14 .au-map__directions-panel .button-route--public::before,.layout15 .au-map__directions-panel .button-route--public::before,.layout16 .au-map__directions-panel .button-route--public::before,.layout17 .au-map__directions-panel .button-route--public::before{content:""}.layout13 .au-map__directions-panel .button-route--close,.layout14 .au-map__directions-panel .button-route--close,.layout15 .au-map__directions-panel .button-route--close,.layout16 .au-map__directions-panel .button-route--close,.layout17 .au-map__directions-panel .button-route--close{margin-left:auto;width:14px}.layout13 .au-map__directions-panel .button-route--close::before,.layout14 .au-map__directions-panel .button-route--close::before,.layout15 .au-map__directions-panel .button-route--close::before,.layout16 .au-map__directions-panel .button-route--close::before,.layout17 .au-map__directions-panel .button-route--close::before{content:""}.layout13 .au-map__directions-panel .button-route--swap,.layout14 .au-map__directions-panel .button-route--swap,.layout15 .au-map__directions-panel .button-route--swap,.layout16 .au-map__directions-panel .button-route--swap,.layout17 .au-map__directions-panel .button-route--swap{margin:0 0 1.45455rem 0;width:24px}.layout13 .au-map__directions-panel .button-route--swap::before,.layout14 .au-map__directions-panel .button-route--swap::before,.layout15 .au-map__directions-panel .button-route--swap::before,.layout16 .au-map__directions-panel .button-route--swap::before,.layout17 .au-map__directions-panel .button-route--swap::before{font-size:3rem;content:""}.layout13 .au-map__suggestion,.layout14 .au-map__suggestion,.layout15 .au-map__suggestion,.layout16 .au-map__suggestion,.layout17 .au-map__suggestion{display:inline-block}.layout13 .au-map__suggestion::before,.layout14 .au-map__suggestion::before,.layout15 .au-map__suggestion::before,.layout16 .au-map__suggestion::before,.layout17 .au-map__suggestion::before{font-family:"font-awesome";display:inline-block;margin-right:.5rem}.layout13 .au-map__suggestion__building::before,.layout14 .au-map__suggestion__building::before,.layout15 .au-map__suggestion__building::before,.layout16 .au-map__suggestion__building::before,.layout17 .au-map__suggestion__building::before{content:""}.layout13 .au-map__suggestion__department::before,.layout14 .au-map__suggestion__department::before,.layout15 .au-map__suggestion__department::before,.layout16 .au-map__suggestion__department::before,.layout17 .au-map__suggestion__department::before{content:""}.layout13 .au-map__suggestion__denmark::before,.layout14 .au-map__suggestion__denmark::before,.layout15 .au-map__suggestion__denmark::before,.layout16 .au-map__suggestion__denmark::before,.layout17 .au-map__suggestion__denmark::before{content:""}.layout13 .au-map__suggestion__denmark::before,.layout14 .au-map__suggestion__denmark::before,.layout15 .au-map__suggestion__denmark::before,.layout16 .au-map__suggestion__denmark::before,.layout17 .au-map__suggestion__denmark::before{content:""}.layout13 .au-map__suggestion__lecture-hall::before,.layout14 .au-map__suggestion__lecture-hall::before,.layout15 .au-map__suggestion__lecture-hall::before,.layout16 .au-map__suggestion__lecture-hall::before,.layout17 .au-map__suggestion__lecture-hall::before{content:""}.layout13 .au-map__suggestion__library::before,.layout14 .au-map__suggestion__library::before,.layout15 .au-map__suggestion__library::before,.layout16 .au-map__suggestion__library::before,.layout17 .au-map__suggestion__library::before{content:""}.layout13 .au-map__suggestion__friday-bar::before,.layout14 .au-map__suggestion__friday-bar::before,.layout15 .au-map__suggestion__friday-bar::before,.layout16 .au-map__suggestion__friday-bar::before,.layout17 .au-map__suggestion__friday-bar::before{content:""}.layout13 .au-map__suggestion__study-place::before,.layout14 .au-map__suggestion__study-place::before,.layout15 .au-map__suggestion__study-place::before,.layout16 .au-map__suggestion__study-place::before,.layout17 .au-map__suggestion__study-place::before{content:""}.layout13 .au-map__suggestion__canteen::before,.layout14 .au-map__suggestion__canteen::before,.layout15 .au-map__suggestion__canteen::before,.layout16 .au-map__suggestion__canteen::before,.layout17 .au-map__suggestion__canteen::before{content:""}.layout13 .au-map__suggestion__counselling::before,.layout14 .au-map__suggestion__counselling::before,.layout15 .au-map__suggestion__counselling::before,.layout16 .au-map__suggestion__counselling::before,.layout17 .au-map__suggestion__counselling::before{content:""}.layout13 .au-map__suggestion__it-support::before,.layout14 .au-map__suggestion__it-support::before,.layout15 .au-map__suggestion__it-support::before,.layout16 .au-map__suggestion__it-support::before,.layout17 .au-map__suggestion__it-support::before{content:""}.layout13 .au-map__suggestion__myprint::before,.layout14 .au-map__suggestion__myprint::before,.layout15 .au-map__suggestion__myprint::before,.layout16 .au-map__suggestion__myprint::before,.layout17 .au-map__suggestion__myprint::before{content:""}.layout13 .au-map.find-container>.row>.column,.layout13 .dropdown-pane .find-container>.row>.column,.layout14 .au-map.find-container>.row>.column,.layout14 .dropdown-pane .find-container>.row>.column,.layout15 .au-map.find-container>.row>.column,.layout15 .dropdown-pane .find-container>.row>.column,.layout16 .au-map.find-container>.row>.column,.layout16 .dropdown-pane .find-container>.row>.column,.layout17 .au-map.find-container>.row>.column,.layout17 .dropdown-pane .find-container>.row>.column{position:relative}.layout13 .au-map.find-container h3,.layout13 .dropdown-pane .find-container h3,.layout14 .au-map.find-container h3,.layout14 .dropdown-pane .find-container h3,.layout15 .au-map.find-container h3,.layout15 .dropdown-pane .find-container h3,.layout16 .au-map.find-container h3,.layout16 .dropdown-pane .find-container h3,.layout17 .au-map.find-container h3,.layout17 .dropdown-pane .find-container h3{margin-top:0}.layout13 .au-map.find-container .au-map__person-suggestion img,.layout13 .dropdown-pane .find-container .au-map__person-suggestion img,.layout14 .au-map.find-container .au-map__person-suggestion img,.layout14 .dropdown-pane .find-container .au-map__person-suggestion img,.layout15 .au-map.find-container .au-map__person-suggestion img,.layout15 .dropdown-pane .find-container .au-map__person-suggestion img,.layout16 .au-map.find-container .au-map__person-suggestion img,.layout16 .dropdown-pane .find-container .au-map__person-suggestion img,.layout17 .au-map.find-container .au-map__person-suggestion img,.layout17 .dropdown-pane .find-container .au-map__person-suggestion img{max-width:30px}.layout13 .au-map.find-container .react-autosuggest__suggestions-container li,.layout13 .dropdown-pane .find-container .react-autosuggest__suggestions-container li,.layout14 .au-map.find-container .react-autosuggest__suggestions-container li,.layout14 .dropdown-pane .find-container .react-autosuggest__suggestions-container li,.layout15 .au-map.find-container .react-autosuggest__suggestions-container li,.layout15 .dropdown-pane .find-container .react-autosuggest__suggestions-container li,.layout16 .au-map.find-container .react-autosuggest__suggestions-container li,.layout16 .dropdown-pane .find-container .react-autosuggest__suggestions-container li,.layout17 .au-map.find-container .react-autosuggest__suggestions-container li,.layout17 .dropdown-pane .find-container .react-autosuggest__suggestions-container li{margin-bottom:0}.layout13 .au-map.find-container .vcard,.layout13 .au-map.find-container .bld-card,.layout13 .dropdown-pane .find-container .vcard,.layout13 .dropdown-pane .find-container .bld-card,.layout14 .au-map.find-container .vcard,.layout14 .au-map.find-container .bld-card,.layout14 .dropdown-pane .find-container .vcard,.layout14 .dropdown-pane .find-container .bld-card,.layout15 .au-map.find-container .vcard,.layout15 .au-map.find-container .bld-card,.layout15 .dropdown-pane .find-container .vcard,.layout15 .dropdown-pane .find-container .bld-card,.layout16 .au-map.find-container .vcard,.layout16 .au-map.find-container .bld-card,.layout16 .dropdown-pane .find-container .vcard,.layout16 .dropdown-pane .find-container .bld-card,.layout17 .au-map.find-container .vcard,.layout17 .au-map.find-container .bld-card,.layout17 .dropdown-pane .find-container .vcard,.layout17 .dropdown-pane .find-container .bld-card{margin-top:1.363636364rem;padding:1rem;background:#fff;color:#333;font-size:1.25rem;font-family:Georgia,"Times New Roman",Times,serif}.layout13 .au-map.find-container .vcard hr,.layout13 .au-map.find-container .bld-card hr,.layout13 .dropdown-pane .find-container .vcard hr,.layout13 .dropdown-pane .find-container .bld-card hr,.layout14 .au-map.find-container .vcard hr,.layout14 .au-map.find-container .bld-card hr,.layout14 .dropdown-pane .find-container .vcard hr,.layout14 .dropdown-pane .find-container .bld-card hr,.layout15 .au-map.find-container .vcard hr,.layout15 .au-map.find-container .bld-card hr,.layout15 .dropdown-pane .find-container .vcard hr,.layout15 .dropdown-pane .find-container .bld-card hr,.layout16 .au-map.find-container .vcard hr,.layout16 .au-map.find-container .bld-card hr,.layout16 .dropdown-pane .find-container .vcard hr,.layout16 .dropdown-pane .find-container .bld-card hr,.layout17 .au-map.find-container .vcard hr,.layout17 .au-map.find-container .bld-card hr,.layout17 .dropdown-pane .find-container .vcard hr,.layout17 .dropdown-pane .find-container .bld-card hr{display:none}.layout13 .au-map.find-container .vcard img,.layout13 .au-map.find-container .bld-card img,.layout13 .dropdown-pane .find-container .vcard img,.layout13 .dropdown-pane .find-container .bld-card img,.layout14 .au-map.find-container .vcard img,.layout14 .au-map.find-container .bld-card img,.layout14 .dropdown-pane .find-container .vcard img,.layout14 .dropdown-pane .find-container .bld-card img,.layout15 .au-map.find-container .vcard img,.layout15 .au-map.find-container .bld-card img,.layout15 .dropdown-pane .find-container .vcard img,.layout15 .dropdown-pane .find-container .bld-card img,.layout16 .au-map.find-container .vcard img,.layout16 .au-map.find-container .bld-card img,.layout16 .dropdown-pane .find-container .vcard img,.layout16 .dropdown-pane .find-container .bld-card img,.layout17 .au-map.find-container .vcard img,.layout17 .au-map.find-container .bld-card img,.layout17 .dropdown-pane .find-container .vcard img,.layout17 .dropdown-pane .find-container .bld-card img{width:70px;float:right;margin-left:1rem}.layout13 .au-map.find-container .vcard a,.layout13 .au-map.find-container .bld-card a,.layout13 .dropdown-pane .find-container .vcard a,.layout13 .dropdown-pane .find-container .bld-card a,.layout14 .au-map.find-container .vcard a,.layout14 .au-map.find-container .bld-card a,.layout14 .dropdown-pane .find-container .vcard a,.layout14 .dropdown-pane .find-container .bld-card a,.layout15 .au-map.find-container .vcard a,.layout15 .au-map.find-container .bld-card a,.layout15 .dropdown-pane .find-container .vcard a,.layout15 .dropdown-pane .find-container .bld-card a,.layout16 .au-map.find-container .vcard a,.layout16 .au-map.find-container .bld-card a,.layout16 .dropdown-pane .find-container .vcard a,.layout16 .dropdown-pane .find-container .bld-card a,.layout17 .au-map.find-container .vcard a,.layout17 .au-map.find-container .bld-card a,.layout17 .dropdown-pane .find-container .vcard a,.layout17 .dropdown-pane .find-container .bld-card a{color:#000 !important;text-decoration:underline}
|
|
2
|
-
|
|
1
|
+
.au_alphabox{overflow:visible;margin-bottom:1rem;position:relative}.au_alphabox>.au_alphabox{margin-bottom:0}.dropdown-pane .au_alphabox{margin-bottom:0}.au_alphabox>div:not(.au_alphabox_content):not(.au_alphabox){padding:1rem 1rem 0 1rem;overflow:auto}.au_alphabox p.no-results{background-color:#fff;color:#555;padding:1rem}.au_alphabox li.no-results a{font-weight:bold}.au_alphabox ul.letters{display:flex;justify-content:flex-start;flex-flow:row wrap;font-size:1.1rem;margin-top:.15rem;margin-bottom:.75rem;margin-left:0;padding-bottom:.75rem}.au_alphabox ul.letters li{padding:0;margin:2px 2px;background-color:#aaa;text-align:center;font-size:1.2rem}.au_alphabox ul.letters li.available button{cursor:pointer;color:#fff}.au_alphabox ul.letters li.active{font-weight:bold}.au_alphabox ul.letters li:before{content:""}.au_alphabox ul.letters li button{font-family:"AUPassataRegular";color:#ccc;text-transform:uppercase;width:20px;line-height:inherit}.au_alphabox ul.items{padding:1rem;margin:0;position:relative}.student .au_alphabox{background:#2a4a0f}.student .au_alphabox .listNav .ln-letters a{background-color:#8bad3f}.student .au_alphabox .listNav .ln-letters a.ln-selected{color:#2a4a0f !important}.student .au_alphabox .listNav .ln-letters a.ln-disabled{background-color:#8bad3f}.student .au_alphabox .alphabox_list_container{border:2px solid #2a4a0f}.student .au_alphabox .alphabox_list_container h3{color:#8bad3f;border-bottom:2px solid #8bad3f}.student .au_alphabox .alphabox_list_container ul li:before{color:#8bad3f}.student .au_alphabox ul.quicklinks a{background:#447400}.au_alphabox h2{color:#fff;margin:0;border:0}.au_alphabox h2 a{color:#fff !important;border:none !important}.au_alphabox h2 a:hover{text-decoration:underline !important}.au_alphabox h3{color:#fff;margin:0 0 1rem 0 !important;padding-top:1rem;font-size:1.25rem;border-top:1px solid #fff}.au_alphabox input[type=text]{background:#afc3ce url("https://cdn.au.dk/2016/assets/img/databox/find.png") no-repeat right center;border:0;float:none;width:100%;margin-bottom:1.45455rem !important}.au_alphabox input[type=text].active{background-color:#afc3ce}.au_alphabox ::-webkit-input-placeholder{color:#333}.au_alphabox ::-moz-placeholder{color:#333;opacity:1}.au_alphabox :-ms-input-placeholder{color:#333}.au_alphabox .listNav{margin:0 0 calc(.5rem - 2px) 0;font-family:"AUPassataBold"}.au_alphabox .listNav .ln-letters{margin:1rem 0}.au_alphabox .listNav .ln-letters a{background-color:#006ca4;border:none !important;margin:0 2px 2px 0;color:#fff;padding:2px;font-size:1.25rem}.au_alphabox .listNav .ln-letters a.ln-selected{background-color:#fff;color:#006ca4 !important}.au_alphabox .listNav .ln-letters a.ln-disabled{background-color:#006ca4;color:#7c98a8 !important}.au_alphabox .listNav .ln-letters .all{display:none}.au_alphabox .alphabox_list_container{background:#fff;border:2px solid #006ca4;padding:0 1rem 0 1rem;display:none;overflow-y:scroll;-webkit-overflow-scrolling:touch}.au_alphabox .alphabox_list_container h3{color:#009ee0;border-bottom:2px solid #379fcb}.au_alphabox .alphabox_list_container>ul{max-height:200px;overflow:initial !important;margin-bottom:2em;position:relative}.au_alphabox .alphabox_list_container>ul li a{color:#003e5c;border-bottom:1px dotted}.au_alphabox ul.quicklinks{display:flex;flex-wrap:wrap;justify-content:space-between;margin-left:0}.au_alphabox ul.quicklinks li{font:1.25rem "AUPassataRegular";text-transform:uppercase;width:48.9%;padding:0;line-height:1;margin-bottom:6px}.au_alphabox ul.quicklinks li:nth-child(odd){margin-right:.5em}.au_alphabox ul.quicklinks li a{display:block;background:#006ca4;color:#fff;border:none !important;padding:.5em}@media(max-width: 400px){.au_alphabox ul.quicklinks li{width:100%;margin-right:0 !important;font-size:1.72727rem}}.au_alphabox .au_alphabox_content{margin-top:1rem;margin-bottom:1rem;clear:both}.au_alphabox .au_alphabox_content>div{background:#fff;max-height:300px;overflow-y:scroll}.react-autosuggest__container{cursor:pointer}.react-autosuggest__container input[type=text]{margin-bottom:0}.page__content__block .react-autosuggest__container{position:relative;width:100%}.page__content__block .react-autosuggest__suggestions-list{margin-top:0}.react-autosuggest__suggestions-container{border-left:1px solid #ccc;border-right:1px solid #ccc;position:absolute;left:0;right:0;background-color:#fff;margin:0;z-index:1;color:#333 !important;font-size:1.2727272727rem;line-height:1;max-height:430px;overflow:auto}.react-autosuggest__suggestions-container li,.react-autosuggest__suggestions-container li:before{list-style-type:none !important;background-image:none !important;margin:0;padding:0;content:"" !important;line-height:1 !important;background:none}li.react-autosuggest__suggestion{border-bottom:1px solid #ccc;padding:1.2727272727rem 1rem}.react-autosuggest__suggestion--highlighted{background-color:#f0f0f0 !important}.react-autosuggest__suggestions-list{margin-bottom:0;margin-left:0}.au_databox{margin-bottom:2em;position:relative}.au_databox .button-wrapper{position:relative}.au_databox .button-wrapper>div{width:100%;position:absolute;bottom:0}@media(max-width: 640px){.au_databox .button-wrapper{background-image:none !important;height:auto !important;position:static;overflow:auto}.au_databox .button-wrapper>div{position:static}.au_databox .button-wrapper .db-button{float:none;width:100% !important}.au_databox .button-wrapper .db-button>span{border-left:0 !important;height:51px}.au_databox .button-wrapper .db-button>input[type=text]{left:70px;top:11px}.au_databox .button-wrapper .buttons-5.first-line-full .button-wrapper{height:auto}.au_databox .button-wrapper .buttons-6 .button-wrapper{height:auto}}.au_databox .button-wrapper .au_focus{margin-bottom:0;padding-left:1rem}.au_databox .content{width:100%;background:#f0f0f0;padding:1rem 0;overflow:auto}.au_databox .content>div{padding:0 1rem;position:relative}.au_databox .content>div .expandall{position:absolute;right:10px;top:0;text-decoration:underline;cursor:pointer}.au_databox .content ul{margin-top:0;margin-left:0}.au_databox .content ul ul{margin-top:.65rem}.au_databox .content ul li a{text-decoration:none}.au_databox .content ul li a:hover{text-decoration:underline}.au_databox .content ul.letters{display:flex;justify-content:flex-start;flex-flow:row wrap;font-size:1.1rem;margin-top:.15rem;margin-bottom:.75rem;margin-left:0;padding-bottom:.75rem;border-bottom:1px solid #ccc}.au_databox .content ul.letters li{padding:0;margin:2px 2px;background-color:#aaa;text-align:center;font-size:1.2rem}.au_databox .content ul.letters li.available button{cursor:pointer;color:#fff}.au_databox .content ul.letters li.active{font-weight:bold}.au_databox .content ul.letters li:before{content:""}.au_databox .content ul.letters li button{font-family:"AUPassataRegular";color:#ccc;text-transform:uppercase;width:20px;line-height:inherit}.au_databox .content .au_collapsible{margin-bottom:0;padding:.6rem 0}.au_databox .content .au_collapsible>.csc-header{margin-bottom:1rem}.au_databox .content .au_collapsible>.csc-header:after{font-size:24px}.au_databox .content .au_collapsible>.csc-header h3{margin:0}.au_databox .content .au_collapsible.au_collapsed>.csc-header{margin-bottom:0}.au_databox .au_focus{margin-left:24px;position:absolute;margin-bottom:0}.au_databox .au_focus.before{position:static;padding:1.5em 0 1.5em 14px;margin-left:0}.au_databox .clear{clear:both}.au_databox.width-full{width:100%}.au_databox .db-button{float:left;text-indent:1rem;color:#fff;position:relative;text-align:left;padding:0;margin:0;border:0;font:1.7272727273rem "AUPassataRegular"}.au_databox .db-button:not(.db-search),.au_databox .db-button.search-filter{cursor:pointer}.au_databox .db-button>span{display:block;border-top:1px solid #fff;padding:16px 0px;line-height:1}.au_databox .db-button>span a{color:#fff;text-decoration:none}.au_databox .db-button>span a:hover{text-decoration:underline}.au_databox .db-button input[type=text]{font-size:1.25rem;position:absolute;top:11px;left:65px;background:#fff url("https://cdn.au.dk/2016/assets/img/databox/find.png") no-repeat right center;background:rgba(255,255,255,.75) url("https://cdn.au.dk/2016/assets/img/databox/find.png") no-repeat right center;border:0;width:calc(100% - 65px - 1rem);padding:0;margin:0;height:32px;text-indent:10px}.au_databox .db-button input[type=text].active{background:#fff;background:rgba(255,255,255,.75)}.au_databox .db-button.overlay{background:#ccc;background:rgba(204,204,204,.25)}.au_databox .db-button.active{background:#f0f0f0;color:#000}.au_databox .db-button.active a{color:#000}.au_databox.collapse .db-button:after{color:#fff;opacity:.8;font-family:"au_icons";content:"+";float:right;font-size:32px;position:absolute;top:10px;right:0;margin-right:.3em}.au_databox.collapse .db-button.active:after{color:#000;opacity:1;content:"-"}.au_databox.collapse .db-button.db-search:after{content:""}.au_databox.stacked .button-wrapper{background-image:none !important;height:auto !important;position:static}.au_databox.stacked .button-wrapper>div{position:static}.au_databox.stacked .button-wrapper .db-button{float:none;width:100% !important}.au_databox.stacked .button-wrapper .db-button>span{border-left:0 !important;height:51px}.au_databox.stacked .button-wrapper .db-button>input[type=text]{left:70px;top:11px}.au_databox.stacked .button-wrapper .buttons-5.first-line-full .button-wrapper{height:auto}.au_databox.stacked .button-wrapper .buttons-6 .button-wrapper{height:auto}.au_databox.stacked .content{padding-top:0}.au_databox.buttons-1 .au_focus{bottom:75px}.au_databox.buttons-1 .button-wrapper{height:51px}.au_databox.buttons-1 .db-button{width:100%}.au_databox.buttons-1 .db-button>span{text-indent:-9999px}.au_databox.buttons-1 .db-button>input[type=text]{left:14px}.au_databox.buttons-2 .button-wrapper{height:51px}.au_databox.buttons-2 .au_focus{bottom:75px}.au_databox.buttons-2 .db-button{width:50%}.au_databox.buttons-2 .db-button:nth-child(2) span{border-left:1px solid #fff}.au_databox.buttons-3 .button-wrapper{height:51px}.au_databox.buttons-3 .au_focus{bottom:75px}.au_databox.buttons-3.first-line-full .button-wrapper{height:102px}.au_databox.buttons-3.first-line-full .au_focus{bottom:126px}.au_databox.buttons-3.first-line-full .button-1{width:100%}.au_databox.buttons-3.first-line-full .button-2,.au_databox.buttons-3.first-line-full .button-3{width:50%}.au_databox.buttons-3.first-line-full .button-2 span{border-left:0}.au_databox.buttons-3.first-line-full .button-3 span{border-left:1px solid #fff}.au_databox.buttons-3 .button-1,.au_databox.buttons-3 .button-3{width:33%}.au_databox.buttons-3 .button-2{width:34%}.au_databox.buttons-3 .button-2 span,.au_databox.buttons-3 .button-3 span{border-left:1px solid #fff}.au_databox.buttons-4 .button-wrapper{height:102px}.au_databox.buttons-4 .au_focus{bottom:126px}.au_databox.buttons-4.first-line-full .button-1{width:100%}.au_databox.buttons-4.first-line-full .button-2 span{border-left:0}.au_databox.buttons-4.first-line-full .button-2,.au_databox.buttons-4.first-line-full .button-4{width:33%}.au_databox.buttons-4.first-line-full .button-3{width:34%}.au_databox.buttons-4.first-line-full .button-3 span,.au_databox.buttons-4.first-line-full .button-4 span{border-left:1px solid #fff}.au_databox.buttons-4 .db-button{width:50%}.au_databox.buttons-4 .button-2 span,.au_databox.buttons-4 .button-4 span{border-left:1px solid #fff}.au_databox.buttons-5 .button-wrapper{height:153px}.au_databox.buttons-5 .au_focus{bottom:177px}.au_databox.buttons-5.first-line-full .button-wrapper{height:102px}.au_databox.buttons-5.first-line-full .au_focus{bottom:126px}.au_databox.buttons-5.first-line-full .button-1{width:100%}.au_databox.buttons-5.first-line-full .button-2,.au_databox.buttons-5.first-line-full .button-3,.au_databox.buttons-5.first-line-full .button-4,.au_databox.buttons-5.first-line-full .button-5{width:25%}.au_databox.buttons-5.first-line-full .button-3 span,.au_databox.buttons-5.first-line-full .button-4 span,.au_databox.buttons-5.first-line-full .button-5 span{border-left:1px solid #fff}.au_databox.buttons-5 .button-1{width:100%}.au_databox.buttons-5 .button-2,.au_databox.buttons-5 .button-3,.au_databox.buttons-5 .button-4,.au_databox.buttons-5 .button-5{width:50%}.au_databox.buttons-5 .button-3 span,.au_databox.buttons-5 .button-5 span{border-left:1px solid #fff}.au_databox.buttons-6.first-line-full .button-wrapper{height:102px}.au_databox.buttons-6.first-line-full .au_focus{bottom:126px}.au_databox.buttons-6.first-line-full .button-1{width:100%}.au_databox.buttons-6.first-line-full .db-button.button-2 span{border-left:none}.au_databox.buttons-6.first-line-full .button-2,.au_databox.buttons-6.first-line-full .button-3,.au_databox.buttons-6.first-line-full .button-4,.au_databox.buttons-6.first-line-full .button-5,.au_databox.buttons-6.first-line-full .button-6{width:20%}.au_databox.buttons-6.first-line-full .button-3 span,.au_databox.buttons-6.first-line-full .button-4 span,.au_databox.buttons-6.first-line-full .button-5 span,.au_databox.buttons-6.first-line-full .button-6 span{border-left:1px solid #fff}.au_databox.buttons-6 .button-wrapper{height:153px}.au_databox.buttons-6 .au_focus{bottom:177px}.au_databox.buttons-6 .db-button{width:50%}.au_databox.buttons-6 .db-button:nth-child(even) span{border-left:1px solid #fff}.au_databox.buttons-7 .button-wrapper{height:153px}.au_databox.buttons-7 .au_focus{bottom:177px}.au_databox.buttons-7.first-line-full .button-wrapper{height:102px}.au_databox.buttons-7.first-line-full .au_focus{bottom:126px}.au_databox.buttons-7.first-line-full .button-1{width:100%}.au_databox.buttons-7.first-line-full .button-2,.au_databox.buttons-7.first-line-full .button-3,.au_databox.buttons-7.first-line-full .button-4,.au_databox.buttons-7.first-line-full .button-5,.au_databox.buttons-7.first-line-full .button-6,.au_databox.buttons-7.first-line-full .button-7{width:16.66667%}.au_databox.buttons-7.first-line-full .button-3 span,.au_databox.buttons-7.first-line-full .button-4 span,.au_databox.buttons-7.first-line-full .button-5 span,.au_databox.buttons-7.first-line-full .button-6 span,.au_databox.buttons-7.first-line-full .button-7 span{border-left:1px solid #fff}.au_databox.buttons-7 .button-1{width:100%}.au_databox.buttons-7 .button-2,.au_databox.buttons-7 .button-4,.au_databox.buttons-7 .button-5,.au_databox.buttons-7 .button-7{width:33%}.au_databox.buttons-7 .button-3,.au_databox.buttons-7 .button-6{width:34%}.au_databox.buttons-7 .button-3 span,.au_databox.buttons-7 .button-4 span,.au_databox.buttons-7 .button-6 span,.au_databox.buttons-7 .button-7 span{border-left:1px solid #fff}.utility-links .au_databox.stacked{margin-bottom:0}.utility-links .au_databox.stacked .content{max-height:200px;overflow:auto}.au_edutable_eddi_container .print{display:inline-block;margin-bottom:1rem}.study-diagramme{padding:1rem;margin-bottom:2rem;font-family:"AUPassataRegular";background-color:#e4e4e4}.study-diagramme.list p{padding:.6rem 1rem;contain:content}.study-diagramme.list p a{text-decoration:none}.study-diagramme.list p span:last-child{float:right}.study-diagramme table{table-layout:fixed;width:100%;border-collapse:collapse}.study-diagramme table,.study-diagramme thead,.study-diagramme tbody{background-color:rgba(0,0,0,0) !important}.study-diagramme tr{background-color:rgba(0,0,0,0) !important}.study-diagramme th{font-family:"AUPassataBold";font-weight:normal}.study-diagramme th,.study-diagramme td{border:4px solid #fefefe}.study-diagramme td{padding:0}.study-diagramme td:hover{background-color:#656565}.study-diagramme td:hover.sf a{color:#cfe1e7}.study-diagramme td:hover.obl a{color:#f2e4d4}.study-diagramme td:hover.val a{color:#d1e1d6}.study-diagramme td:hover.tlv a{color:#e9ccda}.study-diagramme td:hover.ogr a{color:#f2e4d4}.study-diagramme td a{padding:2rem 1rem;display:block;text-decoration:none;border-bottom:none !important;font-size:12px;word-break:break-word;hyphens:auto}.study-diagramme td[rowspan="1"] a{min-height:130px}.study-diagramme td[rowspan="2"] a{min-height:260px}.study-diagramme td[rowspan="3"] a{min-height:390px}.study-diagramme td[rowspan="4"] a{min-height:520px}.study-diagramme td[rowspan="5"] a{min-height:650px}.study-diagramme td[rowspan="6"] a{min-height:780px}.study-diagramme .sf{background-color:#cfe1e7}.study-diagramme .obl{background-color:#f2e4d4}.study-diagramme .val{background-color:#d1e1d6}.study-diagramme .tlv{background-color:#e9ccda}.study-diagramme .ogr{background-color:#f2e4d4}@media print{.study-diagramme.show-for-small-only{display:none}}.au_flowbox{background:#f0efef;padding:2rem;margin-bottom:1rem}.au_flowbox button{text-align:left;font-family:"AUPassataRegular";text-decoration:underline;cursor:pointer}.au_flowbox>div>h2{margin:0 0 1rem 0 !important;text-transform:uppercase;border:none !important;padding:0 !important}.au_flowbox .vcard{padding:1rem;background-color:rgba(255,255,255,.95);border:0 none;margin:0 0 1rem 0}.au_flowbox .vcard .fn{font-weight:bold;font-size:1.3636363636rem}.au_flowbox .vcard p{font-family:inherit;font-size:1.2rem;font-weight:normal;line-height:1.6;margin-bottom:1.8181818182rem;text-rendering:optimizeLegibility}.au_flowbox.partner{background:#379fcb}.au_flowbox.partner>div>h2{color:#fff}.au_flowbox.partner>div>p{color:#fff}.au_flowbox.partner>div>p a{color:#fff !important;border-bottom:none !important;text-decoration:underline !important}.au_flowbox.partner>div>ul li{padding-left:0}.au_flowbox.partner>div>ul li::before{display:none}.au_flowbox_data{display:none}.au_staffcontactbox{color:#fff;padding:1.3636364rem;background-color:#379fcb;margin-bottom:1em}.au_staffcontactbox>h2{color:#fff;text-transform:uppercase;margin:0 0 1em 0 !important}@font-face{font-family:"font-awesome";src:url("https://fonts.au.dk/fonts/fa-pro-regular-400.otf");font-weight:400;font-style:normal}.layout13 .au-map,.layout14 .au-map,.layout15 .au-map,.layout16 .au-map,.layout17 .au-map{margin-bottom:1.363636364rem}.layout13 .au-map .react-autosuggest__container,.layout14 .au-map .react-autosuggest__container,.layout15 .au-map .react-autosuggest__container,.layout16 .au-map .react-autosuggest__container,.layout17 .au-map .react-autosuggest__container{margin-bottom:1rem;position:relative}.layout13 .au-map .react-autosuggest__suggestions-container,.layout14 .au-map .react-autosuggest__suggestions-container,.layout15 .au-map .react-autosuggest__suggestions-container,.layout16 .au-map .react-autosuggest__suggestions-container,.layout17 .au-map .react-autosuggest__suggestions-container{max-height:none;overflow:visible}.layout13 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21),.layout14 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21),.layout15 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21),.layout16 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21),.layout17 .au-map .react-autosuggest__suggestions-container li:nth-child(n+21){display:none}.layout13 .au-map .gm-style-iw .au_collapsible,.layout13 .au-map .gm-style-iw hr,.layout14 .au-map .gm-style-iw .au_collapsible,.layout14 .au-map .gm-style-iw hr,.layout15 .au-map .gm-style-iw .au_collapsible,.layout15 .au-map .gm-style-iw hr,.layout16 .au-map .gm-style-iw .au_collapsible,.layout16 .au-map .gm-style-iw hr,.layout17 .au-map .gm-style-iw .au_collapsible,.layout17 .au-map .gm-style-iw hr{display:none}.layout13 .au-map__search,.layout14 .au-map__search,.layout15 .au-map__search,.layout16 .au-map__search,.layout17 .au-map__search{display:flex}.layout13 .au-map__search>div,.layout14 .au-map__search>div,.layout15 .au-map__search>div,.layout16 .au-map__search>div,.layout17 .au-map__search>div{flex-basis:85%}@media(max-width: 640px){.layout13 .au-map__search>div,.layout14 .au-map__search>div,.layout15 .au-map__search>div,.layout16 .au-map__search>div,.layout17 .au-map__search>div{flex-basis:76%}}.layout13 .au-map__search button,.layout14 .au-map__search button,.layout15 .au-map__search button,.layout16 .au-map__search button,.layout17 .au-map__search button{flex-basis:15%;font-family:"AUPassataRegular";border-top:1px solid #ccc;border-right:1px solid #ccc;border-bottom:1px solid #ccc;height:3.5454545464rem;cursor:pointer;background:none;color:#000;padding:0}.layout13 .au-map__search button:hover,.layout14 .au-map__search button:hover,.layout15 .au-map__search button:hover,.layout16 .au-map__search button:hover,.layout17 .au-map__search button:hover{background:none;color:inherit}.layout13 .au-map__search button span::before,.layout14 .au-map__search button span::before,.layout15 .au-map__search button span::before,.layout16 .au-map__search button span::before,.layout17 .au-map__search button span::before{font-family:"font-awesome";content:"";display:inline-block;margin-right:1rem}@media(max-width: 640px){.layout13 .au-map__search button,.layout14 .au-map__search button,.layout15 .au-map__search button,.layout16 .au-map__search button,.layout17 .au-map__search button{flex-basis:24%}}.layout13 .au-map__overlay-buttons,.layout14 .au-map__overlay-buttons,.layout15 .au-map__overlay-buttons,.layout16 .au-map__overlay-buttons,.layout17 .au-map__overlay-buttons{display:flex;flex-wrap:wrap}.layout13 .au-map__overlay-buttons button,.layout14 .au-map__overlay-buttons button,.layout15 .au-map__overlay-buttons button,.layout16 .au-map__overlay-buttons button,.layout17 .au-map__overlay-buttons button{margin-right:1rem}.layout13 .au-map__person-suggestion>div:first-child,.layout14 .au-map__person-suggestion>div:first-child,.layout15 .au-map__person-suggestion>div:first-child,.layout16 .au-map__person-suggestion>div:first-child,.layout17 .au-map__person-suggestion>div:first-child{padding-left:1.363636364rem;width:15%}.layout13 .au-map__person-suggestion>div:last-child,.layout14 .au-map__person-suggestion>div:last-child,.layout15 .au-map__person-suggestion>div:last-child,.layout16 .au-map__person-suggestion>div:last-child,.layout17 .au-map__person-suggestion>div:last-child{padding-left:1.363636364rem;width:85%}.layout13 .au-map__person-suggestion h4,.layout13 .au-map__person-suggestion p,.layout14 .au-map__person-suggestion h4,.layout14 .au-map__person-suggestion p,.layout15 .au-map__person-suggestion h4,.layout15 .au-map__person-suggestion p,.layout16 .au-map__person-suggestion h4,.layout16 .au-map__person-suggestion p,.layout17 .au-map__person-suggestion h4,.layout17 .au-map__person-suggestion p{margin:0}.layout13 .au-map__person-suggestion img,.layout14 .au-map__person-suggestion img,.layout15 .au-map__person-suggestion img,.layout16 .au-map__person-suggestion img,.layout17 .au-map__person-suggestion img{max-width:100px}.layout13 .au-map .vcard>h2,.layout13 .au-map .bld-card>h2,.layout13 .au-map .overlay-card>h2,.layout13 .au-map .top-search>h2,.layout14 .au-map .vcard>h2,.layout14 .au-map .bld-card>h2,.layout14 .au-map .overlay-card>h2,.layout14 .au-map .top-search>h2,.layout15 .au-map .vcard>h2,.layout15 .au-map .bld-card>h2,.layout15 .au-map .overlay-card>h2,.layout15 .au-map .top-search>h2,.layout16 .au-map .vcard>h2,.layout16 .au-map .bld-card>h2,.layout16 .au-map .overlay-card>h2,.layout16 .au-map .top-search>h2,.layout17 .au-map .vcard>h2,.layout17 .au-map .bld-card>h2,.layout17 .au-map .overlay-card>h2,.layout17 .au-map .top-search>h2{margin-top:0}.layout13 .au-map .vcard button,.layout13 .au-map .bld-card button,.layout13 .au-map .overlay-card button,.layout13 .au-map .top-search button,.layout14 .au-map .vcard button,.layout14 .au-map .bld-card button,.layout14 .au-map .overlay-card button,.layout14 .au-map .top-search button,.layout15 .au-map .vcard button,.layout15 .au-map .bld-card button,.layout15 .au-map .overlay-card button,.layout15 .au-map .top-search button,.layout16 .au-map .vcard button,.layout16 .au-map .bld-card button,.layout16 .au-map .overlay-card button,.layout16 .au-map .top-search button,.layout17 .au-map .vcard button,.layout17 .au-map .bld-card button,.layout17 .au-map .overlay-card button,.layout17 .au-map .top-search button{cursor:pointer;text-decoration:underline;font-family:inherit;text-align:left}.layout13 .au-map .vcard strong button,.layout13 .au-map .bld-card strong button,.layout13 .au-map .overlay-card strong button,.layout13 .au-map .top-search strong button,.layout14 .au-map .vcard strong button,.layout14 .au-map .bld-card strong button,.layout14 .au-map .overlay-card strong button,.layout14 .au-map .top-search strong button,.layout15 .au-map .vcard strong button,.layout15 .au-map .bld-card strong button,.layout15 .au-map .overlay-card strong button,.layout15 .au-map .top-search strong button,.layout16 .au-map .vcard strong button,.layout16 .au-map .bld-card strong button,.layout16 .au-map .overlay-card strong button,.layout16 .au-map .top-search strong button,.layout17 .au-map .vcard strong button,.layout17 .au-map .bld-card strong button,.layout17 .au-map .overlay-card strong button,.layout17 .au-map .top-search strong button{font-weight:bold}@media(max-width: 640px){.layout13 .au-map .vcard,.layout13 .au-map .bld-card,.layout13 .au-map .overlay-card,.layout13 .au-map .top-search,.layout14 .au-map .vcard,.layout14 .au-map .bld-card,.layout14 .au-map .overlay-card,.layout14 .au-map .top-search,.layout15 .au-map .vcard,.layout15 .au-map .bld-card,.layout15 .au-map .overlay-card,.layout15 .au-map .top-search,.layout16 .au-map .vcard,.layout16 .au-map .bld-card,.layout16 .au-map .overlay-card,.layout16 .au-map .top-search,.layout17 .au-map .vcard,.layout17 .au-map .bld-card,.layout17 .au-map .overlay-card,.layout17 .au-map .top-search{padding:1.363636364rem 0}}.layout13 .au-map .vcard img,.layout14 .au-map .vcard img,.layout15 .au-map .vcard img,.layout16 .au-map .vcard img,.layout17 .au-map .vcard img{float:right;margin-left:1.363636364rem;margin-bottom:1.363636364rem;max-width:120px}.layout13 .au-map .vcard::after,.layout14 .au-map .vcard::after,.layout15 .au-map .vcard::after,.layout16 .au-map .vcard::after,.layout17 .au-map .vcard::after{display:block;content:"";clear:both}.layout13 .au-map__route,.layout14 .au-map__route,.layout15 .au-map__route,.layout16 .au-map__route,.layout17 .au-map__route{margin-bottom:1.363636364rem}.layout13 .au-map .show-on-map,.layout14 .au-map .show-on-map,.layout15 .au-map .show-on-map,.layout16 .au-map .show-on-map,.layout17 .au-map .show-on-map{display:none}.layout13 .au-map .au_collapsible .csc-header+*,.layout14 .au-map .au_collapsible .csc-header+*,.layout15 .au-map .au_collapsible .csc-header+*,.layout16 .au-map .au_collapsible .csc-header+*,.layout17 .au-map .au_collapsible .csc-header+*{position:relative;max-height:350px;overflow-y:auto}.layout13 .au-map__directions-panel,.layout14 .au-map__directions-panel,.layout15 .au-map__directions-panel,.layout16 .au-map__directions-panel,.layout17 .au-map__directions-panel{display:flex;flex-wrap:wrap;padding:1rem 0 1rem 1rem;margin-bottom:1rem;border:1px solid #cacaca}.layout13 .au-map__directions-panel__modes-of-transportation,.layout14 .au-map__directions-panel__modes-of-transportation,.layout15 .au-map__directions-panel__modes-of-transportation,.layout16 .au-map__directions-panel__modes-of-transportation,.layout17 .au-map__directions-panel__modes-of-transportation{flex-basis:100%;display:flex}.layout13 .au-map__directions-panel__from-to,.layout14 .au-map__directions-panel__from-to,.layout15 .au-map__directions-panel__from-to,.layout16 .au-map__directions-panel__from-to,.layout17 .au-map__directions-panel__from-to{flex-basis:85%}.layout13 .au-map__directions-panel__swap,.layout14 .au-map__directions-panel__swap,.layout15 .au-map__directions-panel__swap,.layout16 .au-map__directions-panel__swap,.layout17 .au-map__directions-panel__swap{flex-basis:15%;display:flex;align-items:center;justify-content:center}.layout13 .au-map__directions-panel .button-route,.layout14 .au-map__directions-panel .button-route,.layout15 .au-map__directions-panel .button-route,.layout16 .au-map__directions-panel .button-route,.layout17 .au-map__directions-panel .button-route{background-color:rgba(0,0,0,0);color:#878787;height:3rem;overflow:hidden;padding:0;margin-right:1rem;display:inline-flex;border:none}.layout13 .au-map__directions-panel .button-route--selected,.layout14 .au-map__directions-panel .button-route--selected,.layout15 .au-map__directions-panel .button-route--selected,.layout16 .au-map__directions-panel .button-route--selected,.layout17 .au-map__directions-panel .button-route--selected{border-bottom:2px solid #000}.layout13 .au-map__directions-panel .button-route::before,.layout14 .au-map__directions-panel .button-route::before,.layout15 .au-map__directions-panel .button-route::before,.layout16 .au-map__directions-panel .button-route::before,.layout17 .au-map__directions-panel .button-route::before{font-family:"font-awesome";font-size:2rem;display:inline-block}.layout13 .au-map__directions-panel .button-route--car,.layout14 .au-map__directions-panel .button-route--car,.layout15 .au-map__directions-panel .button-route--car,.layout16 .au-map__directions-panel .button-route--car,.layout17 .au-map__directions-panel .button-route--car{width:22px}.layout13 .au-map__directions-panel .button-route--car::before,.layout14 .au-map__directions-panel .button-route--car::before,.layout15 .au-map__directions-panel .button-route--car::before,.layout16 .au-map__directions-panel .button-route--car::before,.layout17 .au-map__directions-panel .button-route--car::before{content:""}.layout13 .au-map__directions-panel .button-route--walk,.layout14 .au-map__directions-panel .button-route--walk,.layout15 .au-map__directions-panel .button-route--walk,.layout16 .au-map__directions-panel .button-route--walk,.layout17 .au-map__directions-panel .button-route--walk{width:13px}.layout13 .au-map__directions-panel .button-route--walk::before,.layout14 .au-map__directions-panel .button-route--walk::before,.layout15 .au-map__directions-panel .button-route--walk::before,.layout16 .au-map__directions-panel .button-route--walk::before,.layout17 .au-map__directions-panel .button-route--walk::before{content:""}.layout13 .au-map__directions-panel .button-route--bicycle,.layout14 .au-map__directions-panel .button-route--bicycle,.layout15 .au-map__directions-panel .button-route--bicycle,.layout16 .au-map__directions-panel .button-route--bicycle,.layout17 .au-map__directions-panel .button-route--bicycle{width:27px}.layout13 .au-map__directions-panel .button-route--bicycle::before,.layout14 .au-map__directions-panel .button-route--bicycle::before,.layout15 .au-map__directions-panel .button-route--bicycle::before,.layout16 .au-map__directions-panel .button-route--bicycle::before,.layout17 .au-map__directions-panel .button-route--bicycle::before{content:""}.layout13 .au-map__directions-panel .button-route--public,.layout14 .au-map__directions-panel .button-route--public,.layout15 .au-map__directions-panel .button-route--public,.layout16 .au-map__directions-panel .button-route--public,.layout17 .au-map__directions-panel .button-route--public{width:22px;padding-top:4px}.layout13 .au-map__directions-panel .button-route--public::before,.layout14 .au-map__directions-panel .button-route--public::before,.layout15 .au-map__directions-panel .button-route--public::before,.layout16 .au-map__directions-panel .button-route--public::before,.layout17 .au-map__directions-panel .button-route--public::before{content:""}.layout13 .au-map__directions-panel .button-route--close,.layout14 .au-map__directions-panel .button-route--close,.layout15 .au-map__directions-panel .button-route--close,.layout16 .au-map__directions-panel .button-route--close,.layout17 .au-map__directions-panel .button-route--close{margin-left:auto;width:14px}.layout13 .au-map__directions-panel .button-route--close::before,.layout14 .au-map__directions-panel .button-route--close::before,.layout15 .au-map__directions-panel .button-route--close::before,.layout16 .au-map__directions-panel .button-route--close::before,.layout17 .au-map__directions-panel .button-route--close::before{content:""}.layout13 .au-map__directions-panel .button-route--swap,.layout14 .au-map__directions-panel .button-route--swap,.layout15 .au-map__directions-panel .button-route--swap,.layout16 .au-map__directions-panel .button-route--swap,.layout17 .au-map__directions-panel .button-route--swap{margin:0 0 1.45455rem 0;width:24px}.layout13 .au-map__directions-panel .button-route--swap::before,.layout14 .au-map__directions-panel .button-route--swap::before,.layout15 .au-map__directions-panel .button-route--swap::before,.layout16 .au-map__directions-panel .button-route--swap::before,.layout17 .au-map__directions-panel .button-route--swap::before{font-size:3rem;content:""}.layout13 .au-map__suggestion,.layout14 .au-map__suggestion,.layout15 .au-map__suggestion,.layout16 .au-map__suggestion,.layout17 .au-map__suggestion{display:inline-block}.layout13 .au-map__suggestion::before,.layout14 .au-map__suggestion::before,.layout15 .au-map__suggestion::before,.layout16 .au-map__suggestion::before,.layout17 .au-map__suggestion::before{font-family:"font-awesome";display:inline-block;margin-right:.5rem}.layout13 .au-map__suggestion__building::before,.layout14 .au-map__suggestion__building::before,.layout15 .au-map__suggestion__building::before,.layout16 .au-map__suggestion__building::before,.layout17 .au-map__suggestion__building::before{content:""}.layout13 .au-map__suggestion__department::before,.layout14 .au-map__suggestion__department::before,.layout15 .au-map__suggestion__department::before,.layout16 .au-map__suggestion__department::before,.layout17 .au-map__suggestion__department::before{content:""}.layout13 .au-map__suggestion__denmark::before,.layout14 .au-map__suggestion__denmark::before,.layout15 .au-map__suggestion__denmark::before,.layout16 .au-map__suggestion__denmark::before,.layout17 .au-map__suggestion__denmark::before{content:""}.layout13 .au-map__suggestion__denmark::before,.layout14 .au-map__suggestion__denmark::before,.layout15 .au-map__suggestion__denmark::before,.layout16 .au-map__suggestion__denmark::before,.layout17 .au-map__suggestion__denmark::before{content:""}.layout13 .au-map__suggestion__lecture-hall::before,.layout14 .au-map__suggestion__lecture-hall::before,.layout15 .au-map__suggestion__lecture-hall::before,.layout16 .au-map__suggestion__lecture-hall::before,.layout17 .au-map__suggestion__lecture-hall::before{content:""}.layout13 .au-map__suggestion__library::before,.layout14 .au-map__suggestion__library::before,.layout15 .au-map__suggestion__library::before,.layout16 .au-map__suggestion__library::before,.layout17 .au-map__suggestion__library::before{content:""}.layout13 .au-map__suggestion__friday-bar::before,.layout14 .au-map__suggestion__friday-bar::before,.layout15 .au-map__suggestion__friday-bar::before,.layout16 .au-map__suggestion__friday-bar::before,.layout17 .au-map__suggestion__friday-bar::before{content:""}.layout13 .au-map__suggestion__study-place::before,.layout14 .au-map__suggestion__study-place::before,.layout15 .au-map__suggestion__study-place::before,.layout16 .au-map__suggestion__study-place::before,.layout17 .au-map__suggestion__study-place::before{content:""}.layout13 .au-map__suggestion__canteen::before,.layout14 .au-map__suggestion__canteen::before,.layout15 .au-map__suggestion__canteen::before,.layout16 .au-map__suggestion__canteen::before,.layout17 .au-map__suggestion__canteen::before{content:""}.layout13 .au-map__suggestion__counselling::before,.layout14 .au-map__suggestion__counselling::before,.layout15 .au-map__suggestion__counselling::before,.layout16 .au-map__suggestion__counselling::before,.layout17 .au-map__suggestion__counselling::before{content:""}.layout13 .au-map__suggestion__it-support::before,.layout14 .au-map__suggestion__it-support::before,.layout15 .au-map__suggestion__it-support::before,.layout16 .au-map__suggestion__it-support::before,.layout17 .au-map__suggestion__it-support::before{content:""}.layout13 .au-map__suggestion__myprint::before,.layout14 .au-map__suggestion__myprint::before,.layout15 .au-map__suggestion__myprint::before,.layout16 .au-map__suggestion__myprint::before,.layout17 .au-map__suggestion__myprint::before{content:""}.layout13 .au-map.find-container>.row>.column,.layout13 .dropdown-pane .find-container>.row>.column,.layout14 .au-map.find-container>.row>.column,.layout14 .dropdown-pane .find-container>.row>.column,.layout15 .au-map.find-container>.row>.column,.layout15 .dropdown-pane .find-container>.row>.column,.layout16 .au-map.find-container>.row>.column,.layout16 .dropdown-pane .find-container>.row>.column,.layout17 .au-map.find-container>.row>.column,.layout17 .dropdown-pane .find-container>.row>.column{position:relative}.layout13 .au-map.find-container h3,.layout13 .dropdown-pane .find-container h3,.layout14 .au-map.find-container h3,.layout14 .dropdown-pane .find-container h3,.layout15 .au-map.find-container h3,.layout15 .dropdown-pane .find-container h3,.layout16 .au-map.find-container h3,.layout16 .dropdown-pane .find-container h3,.layout17 .au-map.find-container h3,.layout17 .dropdown-pane .find-container h3{margin-top:0}.layout13 .au-map.find-container .au-map__person-suggestion img,.layout13 .dropdown-pane .find-container .au-map__person-suggestion img,.layout14 .au-map.find-container .au-map__person-suggestion img,.layout14 .dropdown-pane .find-container .au-map__person-suggestion img,.layout15 .au-map.find-container .au-map__person-suggestion img,.layout15 .dropdown-pane .find-container .au-map__person-suggestion img,.layout16 .au-map.find-container .au-map__person-suggestion img,.layout16 .dropdown-pane .find-container .au-map__person-suggestion img,.layout17 .au-map.find-container .au-map__person-suggestion img,.layout17 .dropdown-pane .find-container .au-map__person-suggestion img{max-width:30px}.layout13 .au-map.find-container .react-autosuggest__suggestions-container li,.layout13 .dropdown-pane .find-container .react-autosuggest__suggestions-container li,.layout14 .au-map.find-container .react-autosuggest__suggestions-container li,.layout14 .dropdown-pane .find-container .react-autosuggest__suggestions-container li,.layout15 .au-map.find-container .react-autosuggest__suggestions-container li,.layout15 .dropdown-pane .find-container .react-autosuggest__suggestions-container li,.layout16 .au-map.find-container .react-autosuggest__suggestions-container li,.layout16 .dropdown-pane .find-container .react-autosuggest__suggestions-container li,.layout17 .au-map.find-container .react-autosuggest__suggestions-container li,.layout17 .dropdown-pane .find-container .react-autosuggest__suggestions-container li{margin-bottom:0}.layout13 .au-map.find-container .vcard,.layout13 .au-map.find-container .bld-card,.layout13 .dropdown-pane .find-container .vcard,.layout13 .dropdown-pane .find-container .bld-card,.layout14 .au-map.find-container .vcard,.layout14 .au-map.find-container .bld-card,.layout14 .dropdown-pane .find-container .vcard,.layout14 .dropdown-pane .find-container .bld-card,.layout15 .au-map.find-container .vcard,.layout15 .au-map.find-container .bld-card,.layout15 .dropdown-pane .find-container .vcard,.layout15 .dropdown-pane .find-container .bld-card,.layout16 .au-map.find-container .vcard,.layout16 .au-map.find-container .bld-card,.layout16 .dropdown-pane .find-container .vcard,.layout16 .dropdown-pane .find-container .bld-card,.layout17 .au-map.find-container .vcard,.layout17 .au-map.find-container .bld-card,.layout17 .dropdown-pane .find-container .vcard,.layout17 .dropdown-pane .find-container .bld-card{margin-top:1.363636364rem;padding:1rem;background:#fff;color:#333;font-size:1.25rem;font-family:Georgia,"Times New Roman",Times,serif}.layout13 .au-map.find-container .vcard hr,.layout13 .au-map.find-container .bld-card hr,.layout13 .dropdown-pane .find-container .vcard hr,.layout13 .dropdown-pane .find-container .bld-card hr,.layout14 .au-map.find-container .vcard hr,.layout14 .au-map.find-container .bld-card hr,.layout14 .dropdown-pane .find-container .vcard hr,.layout14 .dropdown-pane .find-container .bld-card hr,.layout15 .au-map.find-container .vcard hr,.layout15 .au-map.find-container .bld-card hr,.layout15 .dropdown-pane .find-container .vcard hr,.layout15 .dropdown-pane .find-container .bld-card hr,.layout16 .au-map.find-container .vcard hr,.layout16 .au-map.find-container .bld-card hr,.layout16 .dropdown-pane .find-container .vcard hr,.layout16 .dropdown-pane .find-container .bld-card hr,.layout17 .au-map.find-container .vcard hr,.layout17 .au-map.find-container .bld-card hr,.layout17 .dropdown-pane .find-container .vcard hr,.layout17 .dropdown-pane .find-container .bld-card hr{display:none}.layout13 .au-map.find-container .vcard img,.layout13 .au-map.find-container .bld-card img,.layout13 .dropdown-pane .find-container .vcard img,.layout13 .dropdown-pane .find-container .bld-card img,.layout14 .au-map.find-container .vcard img,.layout14 .au-map.find-container .bld-card img,.layout14 .dropdown-pane .find-container .vcard img,.layout14 .dropdown-pane .find-container .bld-card img,.layout15 .au-map.find-container .vcard img,.layout15 .au-map.find-container .bld-card img,.layout15 .dropdown-pane .find-container .vcard img,.layout15 .dropdown-pane .find-container .bld-card img,.layout16 .au-map.find-container .vcard img,.layout16 .au-map.find-container .bld-card img,.layout16 .dropdown-pane .find-container .vcard img,.layout16 .dropdown-pane .find-container .bld-card img,.layout17 .au-map.find-container .vcard img,.layout17 .au-map.find-container .bld-card img,.layout17 .dropdown-pane .find-container .vcard img,.layout17 .dropdown-pane .find-container .bld-card img{width:70px;float:right;margin-left:1rem}.layout13 .au-map.find-container .vcard a,.layout13 .au-map.find-container .bld-card a,.layout13 .dropdown-pane .find-container .vcard a,.layout13 .dropdown-pane .find-container .bld-card a,.layout14 .au-map.find-container .vcard a,.layout14 .au-map.find-container .bld-card a,.layout14 .dropdown-pane .find-container .vcard a,.layout14 .dropdown-pane .find-container .bld-card a,.layout15 .au-map.find-container .vcard a,.layout15 .au-map.find-container .bld-card a,.layout15 .dropdown-pane .find-container .vcard a,.layout15 .dropdown-pane .find-container .bld-card a,.layout16 .au-map.find-container .vcard a,.layout16 .au-map.find-container .bld-card a,.layout16 .dropdown-pane .find-container .vcard a,.layout16 .dropdown-pane .find-container .bld-card a,.layout17 .au-map.find-container .vcard a,.layout17 .au-map.find-container .bld-card a,.layout17 .dropdown-pane .find-container .vcard a,.layout17 .dropdown-pane .find-container .bld-card a{color:#000 !important;text-decoration:underline}
|
|
2
|
+
|
|
3
3
|
/*# sourceMappingURL=all.css.map*/
|
package/build/umd/all.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
!function(e,o){if("object"==typeof exports&&"object"==typeof module)module.exports=o();else if("function"==typeof define&&define.amd)define([],o);else{var t=o();for(var f in t)("object"==typeof exports?exports:e)[f]=t[f]}}(self,(()=>(()=>{"use strict";var e={};return(e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})})(e),e})()));
|
|
1
|
+
!function(e,o){if("object"==typeof exports&&"object"==typeof module)module.exports=o();else if("function"==typeof define&&define.amd)define([],o);else{var t=o();for(var f in t)("object"==typeof exports?exports:e)[f]=t[f]}}(self,(()=>(()=>{"use strict";var e={};return(e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})})(e),e})()));
|
|
2
2
|
//# sourceMappingURL=all.js.map
|