@aarhus-university/au-lib-react-components 10.0.9 → 10.0.11
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/.eslintrc.js +44 -44
- package/README.md +19 -19
- package/babel.config.js +7 -7
- 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/package.json +67 -67
- package/src/components/AUAlertComponent.tsx +70 -70
- package/src/components/AUAutoSuggestComponent.js +158 -158
- package/src/components/AUCalendarComponent.tsx +493 -493
- package/src/components/AUContentToggleComponent.tsx +33 -33
- package/src/components/AUDatepickerComponent.tsx +117 -117
- package/src/components/AUMobilePrefixComponent.tsx +15 -15
- package/src/components/AUModalComponent.tsx +84 -84
- package/src/components/AUReceiptComponent.tsx +33 -33
- package/src/components/AUSpinnerComponent.tsx +91 -91
- package/src/components/AUSubNavComponent.tsx +38 -38
- package/src/components/AUSubmitButtonContainerComponent.tsx +31 -31
- package/src/components/AUTabbedContentComponent.tsx +83 -145
- package/src/components/AUTableComponent.tsx +24 -24
- package/src/components/AUToastComponent.tsx +103 -103
- package/src/components/AUToolbarComponent.tsx +45 -45
- package/src/components/profile/AUProfileActions.js +128 -128
- package/src/components/profile/AUProfileAvatarComponent.js +83 -83
- package/src/components/profile/AUProfileAvatarV2Component.js +91 -91
- package/src/components/profile/AUProfileAvatarV3Component.tsx +42 -42
- package/src/components/profile/AUProfileContainerComponent.js +283 -283
- package/src/components/profile/AUProfileHooks.js +30 -30
- package/src/components/profile/AUProfileItemComponent.js +54 -54
- package/src/components/profile/AUProfileLanguageComponent.js +131 -131
- package/src/components/profile/AUProfileLoginComponent.tsx +26 -26
- package/src/components/profile/AUProfileMailComponent.js +307 -307
- package/src/components/profile/AUProfileMobileComponent.js +164 -164
- package/src/components/profile/AUProfileNameComponent.js +253 -253
- package/src/components/profile/AUProfileNextOfKinComponent.js +216 -216
- package/src/components/profile/AUProfileReducer.js +230 -230
- package/src/components/profile/AUProfileWidgetComponent.js +95 -95
- package/src/components/profile/AUProfileWidgetV2Component.js +116 -116
- package/src/components/profile/AUProfileWidgetV3Component.tsx +122 -122
- package/src/components/wrapping/AUEmbedComponent.js +47 -47
- package/src/layout-2016/components/alphabox/AlphaBoxComponent.js +143 -143
- package/src/layout-2016/components/alphabox/AlphaBoxContentComponent.js +136 -136
- package/src/layout-2016/components/common/AUCollapsibleComponent.js +152 -152
- package/src/layout-2016/components/common/AUSpinnerComponent.js +103 -103
- package/src/layout-2016/components/databox/DataBoxAlphabetComponent.js +144 -144
- package/src/layout-2016/components/databox/DataBoxAssociationComponent.js +122 -122
- package/src/layout-2016/components/databox/DataBoxButtonComponent.js +157 -157
- package/src/layout-2016/components/databox/DataBoxComponent.js +297 -297
- package/src/layout-2016/components/databox/DataBoxGroupingComponent.js +64 -64
- package/src/layout-2016/components/databox/DataBoxSearchResultComponent.js +36 -36
- package/src/layout-2016/components/databox/DataBoxStackedAssociationComponent.js +54 -54
- package/src/layout-2016/components/databox/DataBoxSuggestionComponent.js +39 -39
- package/src/layout-2016/components/diagramme/AUDiagrammeComponent.js +309 -309
- package/src/layout-2016/components/flowbox/FlowBoxComponent.js +126 -126
- package/src/layout-2016/components/flowbox/FlowBoxPhoneComponent.js +104 -104
- package/src/layout-2016/components/profile/AUProfileAvatar2016Component.js +103 -103
- package/src/layout-2016/components/universe/StaffTopComponent.js +363 -363
- package/src/layout-2016/components/universe/StudentTopComponent.js +137 -137
- package/src/layout-2016/components/universe/UniverseContainerComponent.js +65 -65
- package/src/layout-2016/lib/all.js +3 -3
- package/src/layout-2016/lib/au-alphabox.js +100 -100
- package/src/layout-2016/lib/au-databox.js +400 -400
- package/src/layout-2016/lib/au-diagramme.js +85 -85
- package/src/layout-2016/lib/au-flowbox.js +93 -93
- package/src/layout-2016/lib/universe.js +9 -9
- package/src/lib/helpers.ts +208 -208
- package/src/lib/hooks.ts +53 -53
- package/src/lib/i18n.ts +600 -600
- package/src/lib/tracking.ts +69 -69
- package/src/lib/wrapping.ts +21 -21
- package/src/styles/_settings.scss +10 -10
- package/src/styles/alphabox.scss +222 -222
- package/src/styles/app.scss +7 -7
- package/src/styles/autosuggest.scss +57 -57
- package/src/styles/databox.scss +563 -563
- package/src/styles/diagramme.scss +119 -119
- package/src/styles/flowbox.scss +72 -72
- package/src/styles/maps.scss +395 -395
- package/tsconfig.json +46 -46
- package/webpack.config.js +89 -89
package/.eslintrc.js
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
root: true,
|
|
3
|
-
extends: [
|
|
4
|
-
'airbnb',
|
|
5
|
-
'plugin:@typescript-eslint/eslint-recommended',
|
|
6
|
-
'plugin:@typescript-eslint/recommended',
|
|
7
|
-
],
|
|
8
|
-
plugins: [
|
|
9
|
-
'react',
|
|
10
|
-
'react-hooks',
|
|
11
|
-
'@typescript-eslint',
|
|
12
|
-
],
|
|
13
|
-
parser: '@typescript-eslint/parser',
|
|
14
|
-
rules: {
|
|
15
|
-
'import/extensions': [0],
|
|
16
|
-
'react/jsx-filename-extension': [0],
|
|
17
|
-
'no-use-before-define': [0],
|
|
18
|
-
'@typescript-eslint/no-use-before-define': ['error'],
|
|
19
|
-
'no-shadow': 'off',
|
|
20
|
-
'@typescript-eslint/no-shadow': ['error'],
|
|
21
|
-
'react/no-danger': [0],
|
|
22
|
-
'linebreak-style': [0],
|
|
23
|
-
'react/function-component-definition': [
|
|
24
|
-
2,
|
|
25
|
-
{
|
|
26
|
-
namedComponents: 'arrow-function',
|
|
27
|
-
unnamedComponents: 'arrow-function',
|
|
28
|
-
},
|
|
29
|
-
],
|
|
30
|
-
'react-hooks/rules-of-hooks': 'error',
|
|
31
|
-
},
|
|
32
|
-
settings: {
|
|
33
|
-
react: {
|
|
34
|
-
version: 'detect',
|
|
35
|
-
},
|
|
36
|
-
'import/resolver': {
|
|
37
|
-
typescript: {},
|
|
38
|
-
},
|
|
39
|
-
},
|
|
40
|
-
globals: {
|
|
41
|
-
AU: true,
|
|
42
|
-
$: true,
|
|
43
|
-
},
|
|
44
|
-
};
|
|
1
|
+
module.exports = {
|
|
2
|
+
root: true,
|
|
3
|
+
extends: [
|
|
4
|
+
'airbnb',
|
|
5
|
+
'plugin:@typescript-eslint/eslint-recommended',
|
|
6
|
+
'plugin:@typescript-eslint/recommended',
|
|
7
|
+
],
|
|
8
|
+
plugins: [
|
|
9
|
+
'react',
|
|
10
|
+
'react-hooks',
|
|
11
|
+
'@typescript-eslint',
|
|
12
|
+
],
|
|
13
|
+
parser: '@typescript-eslint/parser',
|
|
14
|
+
rules: {
|
|
15
|
+
'import/extensions': [0],
|
|
16
|
+
'react/jsx-filename-extension': [0],
|
|
17
|
+
'no-use-before-define': [0],
|
|
18
|
+
'@typescript-eslint/no-use-before-define': ['error'],
|
|
19
|
+
'no-shadow': 'off',
|
|
20
|
+
'@typescript-eslint/no-shadow': ['error'],
|
|
21
|
+
'react/no-danger': [0],
|
|
22
|
+
'linebreak-style': [0],
|
|
23
|
+
'react/function-component-definition': [
|
|
24
|
+
2,
|
|
25
|
+
{
|
|
26
|
+
namedComponents: 'arrow-function',
|
|
27
|
+
unnamedComponents: 'arrow-function',
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
'react-hooks/rules-of-hooks': 'error',
|
|
31
|
+
},
|
|
32
|
+
settings: {
|
|
33
|
+
react: {
|
|
34
|
+
version: 'detect',
|
|
35
|
+
},
|
|
36
|
+
'import/resolver': {
|
|
37
|
+
typescript: {},
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
globals: {
|
|
41
|
+
AU: true,
|
|
42
|
+
$: true,
|
|
43
|
+
},
|
|
44
|
+
};
|
package/README.md
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
# AU Lib React Components
|
|
2
|
-
> @aarhus-university/au-lib-react-components
|
|
3
|
-
|
|
4
|
-
## Beskrivelse
|
|
5
|
-
> React-komponentbibliotek, der kan anvendes på tværs af andre React-projekter
|
|
6
|
-
|
|
7
|
-
## Kræver
|
|
8
|
-
Nodejs/npm
|
|
9
|
-
|
|
10
|
-
## Installation
|
|
11
|
-
* Kør `npm install` i en terminal for at installere npm-afhængigheder til dette projekt.
|
|
12
|
-
* Kør `npm install @aarhus-university/au-lib-react-components@latest --save` i en terminal for at installere dette projekt som en afhængighed i et andet npm-projekt.
|
|
13
|
-
|
|
14
|
-
## Afvikling
|
|
15
|
-
* `npm run build` for at bygge de færdige Universal Module Definition-filer (til brug som selvstændige applikationer)
|
|
16
|
-
|
|
17
|
-
## Versionering og udgivelse
|
|
18
|
-
* `npm version major|minor|patch` for 'version bump'.
|
|
19
|
-
* `npm publish` for udgivelse i npm-registry.
|
|
1
|
+
# AU Lib React Components
|
|
2
|
+
> @aarhus-university/au-lib-react-components
|
|
3
|
+
|
|
4
|
+
## Beskrivelse
|
|
5
|
+
> React-komponentbibliotek, der kan anvendes på tværs af andre React-projekter
|
|
6
|
+
|
|
7
|
+
## Kræver
|
|
8
|
+
Nodejs/npm
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
* Kør `npm install` i en terminal for at installere npm-afhængigheder til dette projekt.
|
|
12
|
+
* Kør `npm install @aarhus-university/au-lib-react-components@latest --save` i en terminal for at installere dette projekt som en afhængighed i et andet npm-projekt.
|
|
13
|
+
|
|
14
|
+
## Afvikling
|
|
15
|
+
* `npm run build` for at bygge de færdige Universal Module Definition-filer (til brug som selvstændige applikationer)
|
|
16
|
+
|
|
17
|
+
## Versionering og udgivelse
|
|
18
|
+
* `npm version major|minor|patch` for 'version bump'.
|
|
19
|
+
* `npm publish` for udgivelse i npm-registry.
|
package/babel.config.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
presets: [
|
|
3
|
-
'@babel/react',
|
|
4
|
-
'@babel/preset-typescript',
|
|
5
|
-
],
|
|
6
|
-
plugins: ['@babel/plugin-proposal-class-properties', '@babel/plugin-proposal-object-rest-spread', '@babel/plugin-proposal-optional-chaining'],
|
|
7
|
-
};
|
|
1
|
+
module.exports = {
|
|
2
|
+
presets: [
|
|
3
|
+
'@babel/react',
|
|
4
|
+
'@babel/preset-typescript',
|
|
5
|
+
],
|
|
6
|
+
plugins: ['@babel/plugin-proposal-class-properties', '@babel/plugin-proposal-object-rest-spread', '@babel/plugin-proposal-optional-chaining'],
|
|
7
|
+
};
|
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
|