@aarhus-university/au-lib-react-components 12.5.1 → 12.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/.claude/settings.local.json +12 -0
  2. package/.eslintrc.js +35 -35
  3. package/.storybook/main.js +34 -34
  4. package/.storybook/preview.js +17 -17
  5. package/.vscode/settings.json +22 -0
  6. package/README.md +19 -19
  7. package/__tests__/jest/AUButtonComponent.test.tsx +165 -165
  8. package/__tests__/jest/AUDynamicContentComponent.test.tsx +386 -0
  9. package/__tests__/jest/AUErrorComponent.test.tsx +142 -142
  10. package/__tests__/jest/AUModalComponent.test.tsx +186 -186
  11. package/__tests__/jest/AUNotificationComponent.test.tsx +115 -115
  12. package/__tests__/jest/AUSpinnerComponent.test.tsx +57 -57
  13. package/__tests__/jest/AUToolbarComponent.test.tsx +46 -46
  14. package/__tests__/jest/context.test.ts +25 -25
  15. package/__tests__/jest/helpers.test.ts +15 -15
  16. package/__tests__/jest/setupTests.ts +2 -2
  17. package/babel.config.js +8 -8
  18. package/build/umd/all.css +3 -2
  19. package/build/umd/all.css.map +1 -7
  20. package/build/umd/all.js +2 -45
  21. package/build/umd/all.js.map +1 -7
  22. package/build/umd/alphabox.js +2 -45
  23. package/build/umd/alphabox.js.map +1 -7
  24. package/build/umd/databox.js +2 -45
  25. package/build/umd/databox.js.map +1 -7
  26. package/build/umd/diagramme.js +2 -44
  27. package/build/umd/diagramme.js.map +1 -7
  28. package/build/umd/flowbox.js +2 -44
  29. package/build/umd/flowbox.js.map +1 -7
  30. package/build/umd/universe.js +1 -1
  31. package/build-storybook.log +386 -386
  32. package/esbuild.mjs +22 -22
  33. package/package.json +107 -105
  34. package/src/components/AUAlertComponent.tsx +128 -128
  35. package/src/components/AUAutoSuggestComponent.js +148 -148
  36. package/src/components/AUButtonComponent.tsx +99 -97
  37. package/src/components/AUCalendarComponent.tsx +497 -497
  38. package/src/components/AUCharacterCountComponent.tsx +56 -56
  39. package/src/components/AUComboBoxComponent.tsx +195 -195
  40. package/src/components/AUContentToggleComponent.tsx +50 -50
  41. package/src/components/AUDatepickerComponent.tsx +124 -124
  42. package/src/components/AUDialogModalComponent.tsx +124 -124
  43. package/src/components/AUDynamicContentComponent.tsx +137 -0
  44. package/src/components/AUEditorComponent.tsx +126 -117
  45. package/src/components/AUErrorComponent.tsx +73 -73
  46. package/src/components/AUMobilePrefixComponent.tsx +20 -20
  47. package/src/components/AUModalComponent.tsx +72 -72
  48. package/src/components/AUNotificationComponent.tsx +44 -44
  49. package/src/components/AUReceiptComponent.tsx +34 -34
  50. package/src/components/AUSpinnerComponent.tsx +40 -40
  51. package/src/components/AUStepComponent.tsx +75 -75
  52. package/src/components/AUSubNavComponent.tsx +57 -57
  53. package/src/components/AUSubmitButtonContainerComponent.tsx +38 -38
  54. package/src/components/AUTabbedContentComponent.tsx +154 -154
  55. package/src/components/AUTableComponent.tsx +29 -29
  56. package/src/components/AUToastComponent.tsx +104 -104
  57. package/src/components/AUToolbarComponent.tsx +108 -108
  58. package/src/components/AUTruncatorComponent.tsx +141 -141
  59. package/src/components/wrapping/AUEmbedComponent.js +47 -47
  60. package/src/layout-2016/components/alphabox/AlphaBoxComponent.js +142 -143
  61. package/src/layout-2016/components/alphabox/AlphaBoxContentComponent.js +136 -136
  62. package/src/layout-2016/components/common/AUCollapsibleComponent.js +152 -152
  63. package/src/layout-2016/components/common/AUSpinnerComponent.js +103 -103
  64. package/src/layout-2016/components/databox/DataBoxAlphabetComponent.js +144 -144
  65. package/src/layout-2016/components/databox/DataBoxAssociationComponent.js +122 -122
  66. package/src/layout-2016/components/databox/DataBoxButtonComponent.js +157 -157
  67. package/src/layout-2016/components/databox/DataBoxComponent.js +297 -297
  68. package/src/layout-2016/components/databox/DataBoxGroupingComponent.js +64 -64
  69. package/src/layout-2016/components/databox/DataBoxSearchResultComponent.js +36 -36
  70. package/src/layout-2016/components/databox/DataBoxStackedAssociationComponent.js +54 -54
  71. package/src/layout-2016/components/databox/DataBoxSuggestionComponent.js +39 -39
  72. package/src/layout-2016/components/diagramme/AUDiagrammeComponent.js +309 -309
  73. package/src/layout-2016/components/flowbox/FlowBoxComponent.js +126 -126
  74. package/src/layout-2016/components/flowbox/FlowBoxPhoneComponent.js +104 -104
  75. package/src/layout-2016/lib/all.js +3 -3
  76. package/src/layout-2016/lib/au-alphabox.js +99 -100
  77. package/src/layout-2016/lib/au-databox.js +399 -400
  78. package/src/layout-2016/lib/au-diagramme.js +85 -85
  79. package/src/layout-2016/lib/au-flowbox.js +119 -93
  80. package/src/lib/context.tsx +59 -59
  81. package/src/lib/dates.ts +52 -52
  82. package/src/lib/helpers.ts +208 -208
  83. package/src/lib/hooks.ts +157 -157
  84. package/src/lib/i18n.ts +600 -600
  85. package/src/lib/portals.tsx +150 -150
  86. package/src/lib/tinymce.ts +84 -84
  87. package/src/lib/wrapping.ts +21 -21
  88. package/src/styles/_settings.scss +10 -10
  89. package/src/styles/alphabox.scss +222 -222
  90. package/src/styles/app.scss +7 -7
  91. package/src/styles/autosuggest.scss +57 -57
  92. package/src/styles/databox.scss +563 -563
  93. package/src/styles/diagramme.scss +119 -119
  94. package/src/styles/flowbox.scss +72 -72
  95. package/src/styles/maps.scss +395 -395
  96. package/stories/AUAlertComponent.stories.tsx +133 -133
  97. package/stories/AUAutoSuggestComponent.stories.tsx +95 -95
  98. package/stories/AUButtonComponent.stories.tsx +139 -139
  99. package/stories/AUCharacterCountComponent.stories.tsx +121 -121
  100. package/stories/AUComboBoxComponent.stories.tsx +101 -101
  101. package/stories/AUContentToggleComponent.stories.tsx +87 -87
  102. package/stories/AUDialogModalComponent.stories.tsx +75 -75
  103. package/stories/AUDynamicContentComponent.stories.tsx +119 -0
  104. package/stories/AUEditorComponent.stories.tsx +66 -66
  105. package/stories/AUErrorComponent.stories.tsx +132 -132
  106. package/stories/AUModalComponent.stories.tsx +160 -160
  107. package/stories/AUNotificationComponent.stories.tsx +151 -151
  108. package/stories/AUSpinnerComponent.stories.tsx +44 -44
  109. package/stories/AUStepComponent.stories.tsx +91 -91
  110. package/stories/AUToolbarComponent.stories.tsx +389 -389
  111. package/stories/AUTruncatorComponent.stories.tsx +123 -123
  112. package/stories/lib/helpers.tsx +146 -146
  113. package/tsconfig.json +46 -46
  114. package/webpack.config.js +88 -88
  115. package/src/lib/tracking.ts +0 -69
@@ -1,7 +1 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/styles/alphabox.scss", "../../src/styles/_settings.scss", "../../src/styles/autosuggest.scss", "../../src/styles/databox.scss", "../../src/styles/diagramme.scss", "../../src/styles/flowbox.scss", "../../src/styles/maps.scss"],
4
- "sourcesContent": [".au_alphabox {\n overflow: visible;\n margin-bottom: 1rem;\n position: relative;\n >.au_alphabox {\n margin-bottom: 0;\n }\n .dropdown-pane & {\n margin-bottom: 0;\n }\n >div:not(.au_alphabox_content):not(.au_alphabox) { /* because of nested au_alphabox */\n padding: 1rem 1rem 0 1rem;\n overflow: auto;\n }\n p.no-results {\n background-color: #fff;\n color: #555;\n padding: 1rem;\n }\n li.no-results a {\n font-weight: bold;\n }\n ul.letters {\n display: flex;\n justify-content: flex-start;\n flex-flow: row wrap;\n font-size: 1.1rem;\n margin-top: .15rem;\n margin-bottom: .75rem;\n margin-left: 0;\n padding-bottom: .75rem;\n li {\n padding: 0;\n margin: 2px 2px;\n background-color: #aaa;\n text-align: center;\n font-size: 1.2rem;\n &.available {\n button {\n cursor: pointer;\n color: #fff;\n }\n }\n &.active {\n font-weight: bold;\n }\n &:before {\n content: '';\n }\n button {\n font-family: $font-passata-regular;\n color: #ccc;\n text-transform: uppercase;\n width: 20px;\n line-height: inherit;\n }\n }\n }\n ul.items {\n padding: 1rem;\n margin: 0;\n position: relative;\n }\n .student & {\n background: $student-secondary-color;\n .listNav {\n .ln-letters {\n a {\n background-color: #8bad3f;\n &.ln-selected {\n color: #2a4a0f !important;\n }\n &.ln-disabled {\n background-color: #8bad3f;\n }\n }\n }\n }\n .alphabox_list_container {\n border: 2px solid #2a4a0f;\n h3 {\n color: #8bad3f;\n border-bottom: 2px solid #8bad3f;\n }\n ul li:before {\n color: #8bad3f;\n }\n }\n ul.quicklinks {\n a {\n background: #447400;\n }\n }\n }\n h2 {\n color: #fff;\n margin: 0;\n border: 0;\n a {\n color: #fff !important;\n border: none !important;\n &:hover {\n text-decoration: underline !important;\n }\n }\n }\n h3 {\n color: #fff;\n margin: 0 0 1rem 0 !important;\n padding-top: 1rem;\n font-size: 1.25rem;\n border-top: 1px solid #fff;\n }\n input[type=text] {\n background: #afc3ce url($findicon) no-repeat right center;\n border: 0;\n float: none;\n width: 100%;\n margin-bottom: 1.45455rem !important;\n &.active {\n background-color: #afc3ce;\n }\n }\n ::-webkit-input-placeholder {\n color: #333;\n }\n ::-moz-placeholder {\n color: #333;\n opacity: 1;\n }\n :-ms-input-placeholder {\n color: #333;\n }\n .listNav {\n margin: 0 0 calc(.5rem - 2px) 0;\n .ln-letters {\n margin: 1rem 0;\n a {\n background-color: #006ca4;\n border: none !important;\n margin: 0 2px 2px 0;\n color: #fff;\n padding: 2px;\n font-size: 1.25rem;\n &.ln-selected {\n background-color: #fff;\n color: #006ca4 !important;\n }\n &.ln-disabled {\n background-color: #006ca4;\n color: #7c98a8 !important;\n }\n }\n .all {\n display: none;\n }\n }\n font-family: \"AUPassataBold\";\n }\n .alphabox_list_container {\n background: #fff;\n border: 2px solid #006ca4;\n padding: 0 1rem 0 1rem;\n display: none;\n overflow-y: scroll;\n -webkit-overflow-scrolling: touch;\n h3 {\n color: #009ee0;\n border-bottom: 2px solid $staff-color;\n }\n >ul {\n max-height: 200px;\n overflow: initial !important;\n margin-bottom: 2em;\n position: relative;\n li {\n a {\n color: $staff-secondary-color;\n border-bottom: 1px dotted;\n }\n }\n }\n }\n ul.quicklinks {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n margin-left: 0;\n li {\n font: 1.25rem \"AUPassataRegular\";\n text-transform: uppercase;\n width: 48.9%;\n padding: 0;\n line-height: 1;\n margin-bottom: 6px;\n &:nth-child(odd) {\n margin-right: .5em;\n }\n a {\n display: block;\n background: #006ca4;\n color: #fff;\n border: none !important;\n padding: .5em;\n }\n @media (max-width: 400px) {\n width: 100%;\n margin-right: 0 !important;\n font-size: 1.72727rem;\n }\n }\n }\n .au_alphabox_content {\n margin-top: 1rem;\n margin-bottom: 1rem;\n clear: both;\n >div {\n background: #fff;\n max-height: 300px;\n overflow-y: scroll;\n }\n }\n}", "$font-passata-regular: \"AUPassataRegular\";\n$font-passata-bold: \"AUPassataBold\";\n$gray-color:#e4e4e4;\n$gray-secondary-color:darken($gray-color, 50%);\n$alert-confirm-color: #8bad3f;\n$alert-cancel-color: #687989;\n$student-color:#8bad3f;\n$student-secondary-color:#2a4a0f;\n$staff-color: #379fcb;\n$staff-secondary-color:#003e5c;\n$findicon: 'https://cdn.au.dk/2016/assets/img/databox/find.png';", ".react-autosuggest__container {\n cursor: pointer;\n\n input[type=\"text\"] {\n margin-bottom: 0;\n }\n}\n\n/* delphinus */\n.page__content__block {\n .react-autosuggest__container {\n position: relative;\n width: 100%;\n }\n .react-autosuggest__suggestions-list {\n margin-top: 0;\n }\n}\n\n.react-autosuggest__suggestions-container {\n border-left: 1px solid #ccc;\n border-right: 1px solid #ccc;\n position: absolute;\n left: 0;\n right: 0;\n background-color: #fff;\n margin: 0;\n z-index: 1;\n color: #333 !important;\n font-size: 1.272727272727rem;\n line-height: 1;\n max-height: 430px;\n overflow: auto;\n\n li, li:before {\n list-style-type: none !important;\n background-image: none !important;\n margin: 0;\n padding: 0;\n content: '' !important;\n line-height: 1 !important;\n background: none;\n }\n}\nli.react-autosuggest__suggestion {\n border-bottom: 1px solid #ccc;\n padding: 1.272727272727rem 1rem;\n}\n.react-autosuggest__suggestion--highlighted {\n background-color: #f0f0f0 !important;\n}\n\n.react-autosuggest__suggestions-list {\n margin-bottom: 0;\n margin-left: 0;\n}\n\n", "$span-height: 20px;\n$span-minimum-padding: $span-height - 6px;\n$span-factor: 2;\n$span-padding-tb: $span-factor+$span-minimum-padding;\n$span-border-top: 1px;\n$span-total-height: $span-height+2 * $span-padding-tb;\n$span-height-responsive: 51px;\n$span-minimum-padding-responsive: 0px;\n$span-padding-tb-responsive: $span-factor+$span-minimum-padding-responsive;\n$span-total-height-responsive: $span-height-responsive+2 * $span-padding-tb-responsive;\n$input-text-top: 11px;\n$input-text-top-responsive: $span-padding-tb-responsive - $span-minimum-padding-responsive;\n$box-height-1: 1 * $span-height-responsive;\n$box-height-2: 2 * $span-height-responsive;\n$box-height-3: 3 * $span-height-responsive;\n$box-height-4: 4 * $span-height-responsive;\n$box-height-5: 5 * $span-height-responsive;\n$box-height-6: 6 * $span-height-responsive;\n$content-color: #f0f0f0;\n$box-text-indent: 1rem;\n$focus-indent: 24px;\n$focus-bottom-1: $box-height-1+$focus-indent;\n$focus-bottom-2: $box-height-2+$focus-indent;\n$focus-bottom-3: $box-height-3+$focus-indent;\n$focus-bottom-4: $box-height-4+$focus-indent;\n.au_databox {\n margin-bottom: 2em;\n position: relative;\n .button-wrapper {\n position: relative;\n >div {\n width: 100%;\n position: absolute;\n bottom: 0;\n }\n @media (max-width: 640px) {\n background-image: none !important;\n height: auto !important;\n position: static;\n overflow: auto;\n >div {\n position: static;\n }\n .db-button {\n float: none;\n width: 100% !important;\n >span {\n border-left: 0 !important;\n height: $span-height-responsive; //padding: $span-padding-tb-responsive 0px;\n }\n >input[type=text] {\n left: 70px;\n top: 11px;\n }\n }\n .buttons-5 {\n &.first-line-full {\n .button-wrapper {\n height: auto;\n }\n }\n }\n .buttons-6 {\n .button-wrapper {\n height: auto;\n }\n }\n }\n .au_focus {\n margin-bottom: 0;\n padding-left: 1rem;\n }\n }\n .content {\n width: 100%;\n background: $content-color;\n padding: $box-text-indent 0;\n overflow: auto;\n >div {\n padding: 0 $box-text-indent;\n position: relative;\n .expandall {\n position: absolute;\n right: 10px;\n top: 0;\n text-decoration: underline;\n cursor: pointer;\n }\n }\n ul {\n margin-top: 0;\n margin-left: 0;\n ul {\n margin-top: .65rem;\n }\n li {\n a {\n text-decoration: none;\n &:hover {\n text-decoration: underline;\n }\n }\n }\n }\n ul.letters {\n display: flex;\n justify-content: flex-start;\n flex-flow: row wrap;\n font-size: 1.1rem;\n margin-top: .15rem;\n margin-bottom: .75rem;\n margin-left: 0;\n padding-bottom: .75rem;\n border-bottom: 1px solid #ccc;\n li {\n padding: 0;\n margin: 2px 2px;\n background-color: #aaa;\n text-align: center;\n font-size: 1.2rem;\n &.available {\n button {\n cursor: pointer;\n color: #fff;\n }\n }\n &.active {\n font-weight: bold;\n }\n &:before {\n content: '';\n }\n button {\n font-family: $font-passata-regular;\n color: #ccc;\n text-transform: uppercase;\n width: 20px;\n line-height: inherit;\n }\n }\n }\n .au_collapsible {\n margin-bottom: 0;\n padding: .6rem 0;\n >.csc-header {\n margin-bottom: 1rem;\n &:after {\n font-size: 24px;\n }\n h3 {\n margin: 0;\n }\n }\n &.au_collapsed {\n >.csc-header {\n margin-bottom: 0;\n }\n }\n }\n }\n & .au_focus {\n margin-left: 24px;\n position: absolute;\n margin-bottom: 0;\n &.before {\n position: static;\n padding: 1.5em 0 1.5em 14px;\n margin-left: 0;\n }\n }\n .clear {\n clear: both;\n }\n &.width-full {\n width: 100%;\n }\n .db-button {\n float: left;\n text-indent: $box-text-indent;\n color: #fff;\n position: relative;\n text-align: left;\n padding: 0;\n margin: 0;\n border: 0;\n font: 1.7272727273rem $font-passata-regular;\n &:not(.db-search),\n &.search-filter {\n cursor: pointer;\n }\n >span {\n display: block;\n border-top: $span-border-top solid #fff;\n padding: $span-padding-tb 0px;\n line-height: 1;\n a {\n color: #fff;\n text-decoration: none;\n &:hover {\n text-decoration: underline;\n }\n }\n }\n $input-left: 65px;\n input[type=text] {\n font-size: 1.25rem;\n position: absolute;\n top: $input-text-top;\n left: $input-left;\n background: #fff url($findicon) no-repeat right center;\n background: rgba(255, 255, 255, .75) url($findicon) no-repeat right center;\n border: 0;\n width: calc(100% - #{$input-left} - #{$box-text-indent});\n padding: 0;\n margin: 0;\n height: 32px;\n text-indent: 10px;\n &.active {\n background: #fff;\n background: rgba(255, 255, 255, .75);\n }\n }\n &.overlay {\n background: rgb(204, 204, 204);\n background: rgba(204, 204, 204, .25);\n }\n &.active {\n background: $content-color;\n color: #000;\n a {\n color: #000;\n }\n }\n }\n &.collapse {\n .db-button {\n &:after {\n color: #fff;\n opacity: 0.8;\n font-family: 'au_icons';\n content: '+';\n float: right;\n font-size: 32px;\n position: absolute;\n top: 10px;\n right: 0;\n margin-right: .3em;\n }\n &.active:after {\n color: #000;\n opacity: 1;\n content: '-'\n }\n &.db-search:after {\n content: '';\n }\n }\n }\n &.stacked {\n .button-wrapper {\n background-image: none !important;\n height: auto !important;\n position: static;\n >div {\n position: static;\n }\n .db-button {\n float: none;\n width: 100% !important;\n >span {\n border-left: 0 !important;\n height: $span-height-responsive; //padding: $span-padding-tb-responsive 0px;\n }\n >input[type=text] {\n left: 70px;\n top: 11px;\n }\n }\n .buttons-5 {\n &.first-line-full {\n .button-wrapper {\n height: auto;\n }\n }\n }\n .buttons-6 {\n .button-wrapper {\n height: auto;\n }\n }\n }\n .content {\n padding-top: 0;\n }\n }\n &.buttons-1 {\n .au_focus {\n bottom: $focus-bottom-1;\n }\n .button-wrapper {\n height: $box-height-1;\n }\n .db-button {\n width: 100%;\n >span {\n text-indent: -9999px;\n }\n >input[type=text] {\n left: 14px;\n }\n }\n }\n &.buttons-2 {\n .button-wrapper {\n height: $box-height-1;\n }\n .au_focus {\n bottom: $focus-bottom-1;\n }\n .db-button {\n width: 50%;\n &:nth-child(2) span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-3 {\n .button-wrapper {\n height: $box-height-1;\n }\n .au_focus {\n bottom: $focus-bottom-1;\n }\n &.first-line-full {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-3 {\n width: 50%;\n }\n .button-2 span {\n border-left: 0;\n }\n .button-3 span {\n border-left: 1px solid #fff;\n }\n }\n .button-1,\n .button-3 {\n width: 33%;\n }\n .button-2 {\n width: 34%;\n }\n .button-2,\n .button-3 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-4 {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n &.first-line-full {\n .button-1 {\n width: 100%;\n }\n .button-2 span {\n border-left: 0;\n }\n .button-2,\n .button-4 {\n width: 33%;\n }\n .button-3 {\n width: 34%;\n }\n .button-3,\n .button-4 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n .db-button {\n width: 50%;\n }\n .button-2,\n .button-4 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-5 {\n .button-wrapper {\n height: $box-height-3;\n }\n .au_focus {\n bottom: $focus-bottom-3;\n }\n &.first-line-full {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-3,\n .button-4,\n .button-5 {\n width: 25%;\n }\n .button-3,\n .button-4,\n .button-5 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-3,\n .button-4,\n .button-5 {\n width: 50%;\n }\n .button-3,\n .button-5 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-6 {\n &.first-line-full {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n .button-1 {\n width: 100%;\n }\n .db-button.button-2 {\n span {\n border-left: none;\n }\n }\n .button-2,\n .button-3,\n .button-4,\n .button-5,\n .button-6 {\n width: 20%;\n }\n .button-3,\n .button-4,\n .button-5,\n .button-6 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n .button-wrapper {\n height: $box-height-3;\n }\n .au_focus {\n bottom: $focus-bottom-3;\n }\n .db-button {\n width: 50%;\n &:nth-child(even) span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-7 {\n .button-wrapper {\n height: $box-height-3;\n }\n .au_focus {\n bottom: $focus-bottom-3;\n }\n &.first-line-full {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-3,\n .button-4,\n .button-5,\n .button-6,\n .button-7 {\n width: 16.66667%;\n }\n .button-3,\n .button-4,\n .button-5,\n .button-6,\n .button-7 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-4,\n .button-5,\n .button-7 {\n width: 33%;\n }\n .button-3,\n .button-6 {\n width: 34%;\n }\n .button-3,\n .button-4,\n .button-6,\n .button-7 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n}\n\n.utility-links .au_databox.stacked {\n margin-bottom: 0;\n .content {\n max-height: 200px;\n overflow: auto;\n }\n}", "$padding-default: 1rem;\n$white: #fefefe;\n$gray-color:#e4e4e4;\n$gray-secondary-color:darken($gray-color, 50%);\n$mitstudie-sf-color: #cfe1e7;\n$mitstudie-obl-color: #f2e4d4;\n$mitstudie-val-color: #d1e1d6;\n$mitstudie-tlv-color: #e9ccda;\n$diagramme-cell-height: 130px;\n.au_edutable_eddi_container {\n .print {\n display: inline-block;\n margin-bottom: 1rem;\n }\n}\n\n.study-diagramme {\n &.list {\n p {\n padding: .6rem 1rem;\n contain: content;\n a {\n text-decoration: none;\n }\n span:last-child {\n float: right;\n }\n }\n }\n padding: $padding-default;\n margin-bottom: 2rem;\n font-family: \"AUPassataRegular\";\n background-color: $gray-color;\n table {\n table-layout: fixed;\n width: 100%;\n border-collapse: collapse;\n }\n table,\n thead,\n tbody {\n background-color: transparent !important;\n }\n tr {\n background-color: transparent !important;\n }\n th {\n font-family: \"AUPassataBold\";\n font-weight: normal;\n }\n th,\n td {\n border: 4px solid $white;\n }\n td {\n padding: 0;\n &:hover {\n background-color: $gray-secondary-color;\n &.sf {\n a {\n color: $mitstudie-sf-color;\n }\n }\n &.obl {\n a {\n color: $mitstudie-obl-color;\n }\n }\n &.val {\n a {\n color: $mitstudie-val-color;\n }\n }\n &.tlv {\n a {\n color: $mitstudie-tlv-color;\n }\n }\n &.ogr {\n a {\n color: $mitstudie-obl-color;\n }\n }\n }\n a {\n padding: 2rem 1rem;\n display: block;\n text-decoration: none;\n border-bottom: none !important;\n font-size: 12px;\n word-break: break-word;\n hyphens: auto;\n }\n @for $i from 1 through 6 {\n &[rowspan=\"#{$i}\"] a {\n min-height: $i * $diagramme-cell-height;\n }\n }\n }\n .sf {\n background-color: $mitstudie-sf-color;\n }\n .obl {\n background-color: $mitstudie-obl-color;\n }\n .val {\n background-color: $mitstudie-val-color;\n }\n .tlv {\n background-color: $mitstudie-tlv-color;\n }\n .ogr {\n background-color: $mitstudie-obl-color;\n }\n &.show-for-small-only {\n @media print {\n display: none;\n }\n }\n}", ".au_flowbox {\n background: #f0efef;\n padding: 2rem;\n margin-bottom: 1rem;\n button {\n text-align: left;\n font-family: 'AUPassataRegular';\n text-decoration: underline;\n cursor: pointer;\n }\n >div>h2 {\n margin: 0 0 1rem 0 !important;\n text-transform: uppercase;\n border: none !important;\n padding: 0 !important;\n }\n .vcard {\n padding: 1rem;\n background-color: rgba(255, 255, 255, 0.95);\n border: 0 none;\n margin: 0 0 1rem 0;\n .fn {\n font-weight: bold;\n font-size: 1.3636363636rem;\n }\n p {\n font-family: inherit;\n font-size: 1.2rem;\n font-weight: normal;\n line-height: 1.6;\n margin-bottom: 1.8181818182rem;\n text-rendering: optimizeLegibility;\n }\n }\n &.partner {\n background: $staff-color;\n >div {\n >h2 {\n color: #fff;\n }\n >p {\n color: #fff;\n a {\n color: #fff !important;\n border-bottom: none !important;\n text-decoration: underline !important;\n }\n }\n >ul li {\n padding-left: 0;\n &::before {\n display: none;\n }\n }\n }\n }\n}\n\n.au_flowbox_data {\n display: none;\n}\n\n.au_staffcontactbox {\n color: #fff;\n padding: 1.3636364rem;\n background-color: #379fcb;\n margin-bottom: 1em;\n >h2 {\n color: #fff;\n text-transform: uppercase;\n margin: 0 0 1em 0 !important;\n }\n}", "@font-face {\n font-family: 'font-awesome';\n src: url('https://fonts.au.dk/fonts/fa-pro-regular-400.otf');\n font-weight: 400;\n font-style: normal;\n}\n\n$padding-default: 1.363636364rem;\n\n.layout13,\n.layout14,\n.layout15,\n.layout16,\n.layout17 {\n .au-map {\n margin-bottom: $padding-default;\n\n .react-autosuggest__container {\n margin-bottom: 1rem;\n position: relative;\n }\n\n .react-autosuggest__suggestions-container {\n max-height: none;\n overflow: visible;\n\n li:nth-child(n+21) {\n display: none;\n }\n }\n\n .gm-style-iw {\n\n .au_collapsible,\n hr {\n display: none;\n }\n }\n\n &__search {\n display: flex;\n\n >div {\n flex-basis: 85%;\n\n @media (max-width: 640px) {\n flex-basis: 76%;\n }\n }\n\n button {\n flex-basis: 15%;\n font-family: 'AUPassataRegular';\n border-top: 1px solid #ccc;\n border-right: 1px solid #ccc;\n border-bottom: 1px solid #ccc;\n height: 2.6 * $padding-default;\n cursor: pointer;\n background: none;\n color: black;\n padding: 0;\n\n &:hover {\n background: none;\n color: inherit;\n }\n\n span::before {\n font-family: 'font-awesome';\n content: '\\f5a0';\n display: inline-block;\n margin-right: 1rem;\n }\n\n @media (max-width: 640px) {\n flex-basis: 24%;\n }\n }\n }\n\n &__overlay-buttons {\n display: flex;\n flex-wrap: wrap;\n\n button {\n margin-right: 1rem;\n }\n }\n\n &__person-suggestion {\n >div {\n &:first-child {\n padding-left: $padding-default;\n width: 15%;\n }\n\n &:last-child {\n padding-left: $padding-default;\n width: 85%;\n }\n }\n\n h4,\n p {\n margin: 0;\n }\n\n img {\n max-width: 100px;\n }\n }\n\n .vcard,\n .bld-card,\n .overlay-card,\n .top-search {\n >h2 {\n margin-top: 0;\n }\n\n button {\n cursor: pointer;\n text-decoration: underline;\n font-family: inherit;\n text-align: left;\n }\n\n strong button {\n font-weight: bold;\n }\n\n @media (max-width: 640px) {\n padding: $padding-default 0;\n }\n }\n\n .vcard {\n img {\n float: right;\n margin-left: $padding-default;\n margin-bottom: $padding-default;\n max-width: 120px;\n }\n\n &::after {\n display: block;\n content: '';\n clear: both;\n }\n }\n\n &__route {\n margin-bottom: $padding-default;\n }\n\n .show-on-map {\n display: none;\n }\n\n .au_collapsible {\n .csc-header+* {\n position: relative;\n max-height: 350px;\n overflow-y: auto;\n }\n }\n\n &__directions-panel {\n display: flex;\n flex-wrap: wrap;\n padding: 1rem 0 1rem 1rem;\n margin-bottom: 1rem;\n border: 1px solid #cacaca;\n\n &__modes-of-transportation {\n flex-basis: 100%;\n display: flex;\n }\n\n &__from-to {\n flex-basis: 85%;\n }\n\n &__swap {\n flex-basis: 15%;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n\n .button-route {\n background-color: transparent;\n color: #878787;\n height: 3rem;\n overflow: hidden;\n padding: 0;\n margin-right: 1rem;\n display: inline-flex;\n border: none;\n\n &--selected {\n border-bottom: 2px solid black;\n }\n\n &::before {\n font-family: 'font-awesome';\n font-size: 2rem;\n display: inline-block;\n }\n\n &--car {\n width: 22px;\n\n &::before {\n content: '\\f1b9';\n }\n }\n\n &--walk {\n width: 13px;\n\n &::before {\n content: '\\f554';\n }\n }\n\n &--bicycle {\n width: 27px;\n\n &::before {\n content: '\\f206';\n }\n }\n\n &--public {\n width: 22px;\n padding-top: 4px;\n\n &::before {\n content: '\\f207';\n }\n }\n\n &--close {\n margin-left: auto;\n width: 14px;\n\n &::before {\n content: '\\f00d';\n }\n }\n\n &--swap {\n margin: 0 0 1.45455rem 0;\n width: 24px;\n\n &::before {\n font-size: 3rem;\n content: '\\f883';\n }\n }\n }\n }\n\n &__suggestion {\n display: inline-block;\n\n &::before {\n font-family: 'font-awesome';\n display: inline-block;\n margin-right: .5rem;\n }\n\n &__building {\n &::before {\n content: '\\f1ad';\n }\n }\n\n &__department {\n &::before {\n content: '\\f19c';\n }\n }\n\n &__denmark {\n &::before {\n content: '\\f1ad';\n }\n }\n\n &__denmark {\n &::before {\n content: '\\f276';\n }\n }\n\n &__lecture-hall {\n &::before {\n content: '\\f63d';\n }\n }\n\n &__library {\n &::before {\n content: '\\f02d';\n }\n }\n\n &__friday-bar {\n &::before {\n content: '\\f0fc';\n }\n }\n\n &__study-place {\n &::before {\n content: '\\f63d';\n }\n }\n\n &__canteen {\n &::before {\n content: '\\f2e7';\n }\n }\n\n &__counselling {\n &::before {\n content: '\\f128';\n }\n }\n\n &__it-support {\n &::before {\n content: '\\f82d';\n }\n }\n\n &__myprint {\n &::before {\n content: '\\f02f';\n }\n }\n }\n\n }\n\n .au-map.find-container,\n .dropdown-pane .find-container {\n\n >.row>.column {\n position: relative;\n }\n\n h3 {\n margin-top: 0;\n }\n\n .au-map__person-suggestion {\n img {\n max-width: 30px;\n }\n }\n\n .react-autosuggest__suggestions-container li {\n margin-bottom: 0;\n }\n\n .vcard,\n .bld-card {\n margin-top: $padding-default;\n padding: 1rem;\n background: #fff;\n color: #333;\n font-size: 1.25rem;\n font-family: Georgia, \"Times New Roman\", Times, serif;\n\n hr {\n display: none;\n }\n\n img {\n width: 70px;\n float: right;\n margin-left: 1rem;\n }\n\n a {\n color: #000 !important;\n text-decoration: underline;\n }\n }\n }\n\n}"],
5
- "mappings": "AAAA,aACE,iBACA,mBACA,kBACA,0BACE,gBAEF,4BACE,gBAEF,6DAVF,oBAYI,cAEF,0BACE,sBACA,WAhBJ,aAmBE,6BACE,gBAEF,wBACE,aACA,2BACA,mBACA,iBACA,kBACA,qBACA,cACA,sBACA,2BA/BJ,qBAkCM,sBACA,kBACA,iBAEE,4CACE,eACA,WAGJ,kCACE,gBAEF,kCACE,WAEF,kCACE,6BACA,WACA,yBACA,WACA,oBAIN,sBA1DF,sBA6DI,kBAEF,sBACE,mBAGI,6CACE,yBACA,yDACE,wBAEF,yDACE,yBAKR,+CACE,yBACA,kDACE,cACA,gCAEF,4DACE,cAIF,sCACE,mBAIN,gBACE,WA/FJ,SAiGI,SACA,kBACE,qBACA,sBACA,wBACE,oCAIN,gBACE,WA3GJ,0BA6GI,iBACA,kBACA,0BAEF,8BACE,kGACA,SACA,WACA,WACA,mCACA,qCACE,yBAGJ,yCACE,WAEF,gCACE,WACA,UAEF,oCACE,WAEF,sBACE,+BAuBA,0BAtBA,kCAvIJ,cAyIM,oCACE,yBACA,sBA3IR,mBA6IQ,WA7IR,YA+IQ,kBACA,gDACE,sBACA,wBAEF,gDACE,yBACA,wBAGJ,uCACE,aAKN,sCACE,gBACA,yBAjKJ,eAmKI,aACA,kBACA,iCACA,yCACE,cACA,gCAEF,yCACE,iBACA,2BACA,kBACA,kBAEE,8CACE,cACA,yBAKR,2BACE,aACA,eACA,8BACA,cACA,8BACE,8BACA,yBACA,YA/LN,UAiMM,cACA,kBACA,6CACE,kBAEF,gCACE,cACA,mBACA,WACA,sBA1MR,aA6MM,0BAjBF,8BAkBI,WACA,yBACA,sBAIN,kCACE,gBACA,mBACA,WACA,sCACE,gBACA,iBACA,kBE3NN,8BACE,eAEA,+CACI,gBAMJ,oDACE,kBACA,WAEF,2DACE,aAIJ,0CACE,2BACA,4BACA,kBACA,OACA,QACA,sBFzBF,SE2BE,UACA,qBACA,0BACA,cACA,iBACA,cAEA,iGACI,+BACA,gCFpCN,mBEuCM,qBACA,wBACA,gBAGN,iCACE,6BF7CF,6BEgDA,4CACE,mCAGF,qCACE,gBACA,cC7BF,YACE,kBACA,kBACA,4BACE,kBACA,gCACE,WACA,kBACA,SAEF,0BAPF,4BAQI,gCACA,sBACA,gBACA,cACA,gCACE,gBAEF,uCACE,WACA,qBACA,4CACE,wBACA,YAEF,wDACE,UACA,SAKA,8HACE,aAUR,sCACE,gBACA,kBAGJ,qBACE,WACA,mBH3EJ,eG6EI,cACA,yBH9EJ,eGgFM,kBACA,oCACE,kBACA,WACA,MACA,0BACA,eAGJ,wBACE,aACA,cACA,2BACE,kBAGA,6BACE,qBACA,mCACE,0BAKR,gCACE,aACA,2BACA,mBACA,iBACA,kBACA,qBACA,cACA,sBACA,6BACA,mCHlHN,qBGqHQ,sBACA,kBACA,iBAEE,oDACE,eACA,WAGJ,0CACE,gBAEF,0CACE,WAEF,0CACE,6BACA,WACA,yBACA,WACA,oBAIN,qCACE,gBH9IN,gBGgJM,iDACE,mBACA,uDACE,eAEF,oDHrJR,SG0JQ,8DACE,gBAKR,sBACE,iBACA,kBACA,gBACA,6BACE,gBHrKN,2BGuKM,cAGJ,mBACE,WAEF,uBACE,WAEF,uBACE,WACA,iBACA,WACA,kBACA,gBHrLJ,mBGwLI,SACA,sCACA,4EAEE,eAEF,4BACE,cACA,0BHhMN,eGkMM,cACA,8BACE,WACA,qBACA,oCACE,0BAKN,wCACE,kBACA,kBACA,SACA,UACA,+FACA,gHACA,SACA,+BHpNN,mBGuNM,YACA,iBACA,+CACE,gBACA,iCAGJ,+BACE,4BACA,iCAEF,8BACE,mBACA,WACA,gCACE,WAMF,sCACE,WACA,WACA,qBACA,YACA,YACA,eACA,kBACA,SACA,QACA,kBAEF,6CACE,WACA,UACA,YAEF,gDACE,WAKJ,oCACE,gCACA,sBACA,gBACA,wCACE,gBAEF,+CACE,WACA,qBACA,oDACE,wBACA,YAEF,gEACE,UACA,SAKA,8IACE,YAUR,6BACE,cAIF,gCACE,YAEF,sCACE,YAEF,iCACE,WACA,sCACE,oBAEF,kDACE,UAKJ,sCACE,YAEF,gCACE,YAEF,iCACE,UACA,mDACE,2BAKJ,sCACE,YAEF,gCACE,YAGA,sDACE,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",
6
- "names": []
7
- }
1
+ {"version":3,"file":"all.css","mappings":"AAAA,aCAA,gBACE,mBACA,kBACA,2BACA,eACE,6BAEF,eACE,8DAEF,wBACE,cACA,2BAEF,qBACE,WACA,aACA,8BAEF,gBACE,yBAEF,YACE,2BACA,mBACA,iBACA,kBACA,qBACA,cACA,sBACA,4BACA,SACE,eACA,sBACA,kBACA,iBACA,6CAEE,cACE,WACA,mCAGJ,gBACE,mCAEF,UACE,mCAEF,8BCjDiB,WDmDf,yBACA,WACA,oBACA,uBAIN,YACE,SACA,kBACA,uBAEF,kBCxDuB,8CD4DjB,wBACE,0DACA,wBACE,0DAEF,wBACE,gDAKR,wBACE,mDACA,aACE,gCACA,6DAEF,aACE,uCAIF,kBACE,iBAIN,UACE,SACA,SACA,mBACA,qBACE,uBACA,yBACA,oCACE,iBAIN,UACE,6BACA,iBACA,kBACA,0BACA,+BAEF,mGACE,SACA,WACA,WACA,oCACA,sCACA,wBACE,0CAGJ,UACE,iCAEF,UACE,UACA,qCAEF,UACE,uBAEF,8BACE,4BAuBA,mCAtBA,aACE,qCACA,wBACE,uBACA,mBACA,WACA,YACA,kBACA,iDACA,qBACE,yBACA,iDAEF,wBACE,yBACA,wCAGJ,YACE,uCAKN,eACE,yBACA,sBACA,aACA,kBACA,iCACA,0CACA,aACE,gCACA,0CAEF,gBACE,4BACA,kBACA,kBACA,+CAEE,aCvKe,yBDyKb,4BAKR,YACE,eACA,8BACA,cACA,+BACA,+BACE,yBACA,YACA,UACA,cACA,kBACA,8CACA,iBACE,iCAEF,aACE,mBACA,WACA,uBACA,aACA,0BAEF,8BAjBF,UAkBI,0BACA,qBACA,oCAIN,eACE,mBACA,WACA,uCACA,eACE,iBACA,kBACA,+BE3NN,cACE,gDAEA,eACI,qDAMJ,iBACE,WACA,4DAEF,YACE,2CAIJ,0BACE,4BACA,kBACA,OACA,QACA,sBACA,SACA,UACA,sBACA,0BACA,cACA,iBACA,cACA,kGAEA,+BACI,iCACA,SACA,UACA,sBACA,yBACA,gBACA,kCAGN,4BACE,6BACA,6CAEF,mCACE,sCAGF,eACE,cACA,aC7BF,iBACE,kBACA,6BACA,iBACE,iCACA,UACE,kBACA,SACA,0BAEF,4BAPF,gCAQI,uBACA,gBACA,cACA,iCACA,eACE,wCAEF,UACE,sBACA,6CACA,wBACE,YAzCe,yDA4CjB,SACE,SACA,wEAKA,WACE,wDAKJ,WACE,wCAIN,eACE,kBACA,sBAGJ,UACE,mBAxDY,eA0DZ,cACA,0BACA,cACE,kBACA,qCACA,iBACE,WACA,MACA,0BACA,eACA,yBAGJ,YACE,cACA,4BACA,iBACE,8BAGA,oBACE,oCACA,yBACE,iCAKR,YACE,2BACA,mBACA,iBACA,kBACA,qBACA,cACA,sBACA,6BACA,oCACA,SACE,eACA,sBACA,kBACA,iBACA,qDAEE,cACE,WACA,2CAGJ,gBACE,2CAEF,UACE,2CAEF,8BFpIe,WEsIb,yBACA,WACA,oBACA,sCAIN,eACE,gBACA,kDACA,kBACE,wDACA,cACE,qDAEF,QACE,+DAIF,eACE,uBAKR,gBACE,kBACA,gBACA,8BACA,eACE,2BACA,cACA,oBAGJ,UACE,wBAEF,UACE,wBAEF,UACE,iBA9Jc,WAgKd,kBACA,gBACA,UACA,SACA,SACA,wCACA,6EACA,cAEE,6BAEF,aACE,0BACA,iBACA,cACA,+BACA,UACE,qBACA,qCACA,yBACE,yCAKN,iBACE,kBACA,SApMW,UAiMA,iGAMX,kHACA,SACA,+BACA,UACA,SACA,YACA,iBACA,gDACA,eACE,iCACA,gCAGJ,eACE,iCACA,+BAEF,kBAhNY,WAkNV,iCACA,UACE,uCAMF,UACE,WACA,uBACA,YACA,YACA,eACA,kBACA,SACA,QACA,kBACA,8CAEF,UACE,UACA,YACA,iDAEF,UACE,qCAKJ,gCACE,uBACA,gBACA,yCACA,eACE,gDAEF,UACE,sBACA,qDACA,wBACE,YAxQe,iEA2QjB,SACE,SACA,gFAKA,WACE,gEAKJ,WACE,8BAIN,aACE,iCAIF,WAnRa,uCAsRb,WA/RW,kCAkSX,UACE,uCACA,mBACE,mDAEF,SACE,uCAKJ,WA7SW,iCAgTX,WAvSa,kCA0Sb,SACE,oDACA,0BACE,uCAKJ,WA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","sources":["webpack://@aarhus-university/au-lib-react-components/./src/styles/app.scss","webpack://@aarhus-university/au-lib-react-components/./src/styles/alphabox.scss","webpack://@aarhus-university/au-lib-react-components/./src/styles/_settings.scss","webpack://@aarhus-university/au-lib-react-components/./src/styles/autosuggest.scss","webpack://@aarhus-university/au-lib-react-components/./src/styles/databox.scss","webpack://@aarhus-university/au-lib-react-components/./src/styles/diagramme.scss","webpack://@aarhus-university/au-lib-react-components/./src/styles/flowbox.scss","webpack://@aarhus-university/au-lib-react-components/./src/styles/maps.scss"],"sourcesContent":[".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}",".au_alphabox {\n overflow: visible;\n margin-bottom: 1rem;\n position: relative;\n >.au_alphabox {\n margin-bottom: 0;\n }\n .dropdown-pane & {\n margin-bottom: 0;\n }\n >div:not(.au_alphabox_content):not(.au_alphabox) { /* because of nested au_alphabox */\n padding: 1rem 1rem 0 1rem;\n overflow: auto;\n }\n p.no-results {\n background-color: #fff;\n color: #555;\n padding: 1rem;\n }\n li.no-results a {\n font-weight: bold;\n }\n ul.letters {\n display: flex;\n justify-content: flex-start;\n flex-flow: row wrap;\n font-size: 1.1rem;\n margin-top: .15rem;\n margin-bottom: .75rem;\n margin-left: 0;\n padding-bottom: .75rem;\n li {\n padding: 0;\n margin: 2px 2px;\n background-color: #aaa;\n text-align: center;\n font-size: 1.2rem;\n &.available {\n button {\n cursor: pointer;\n color: #fff;\n }\n }\n &.active {\n font-weight: bold;\n }\n &:before {\n content: '';\n }\n button {\n font-family: $font-passata-regular;\n color: #ccc;\n text-transform: uppercase;\n width: 20px;\n line-height: inherit;\n }\n }\n }\n ul.items {\n padding: 1rem;\n margin: 0;\n position: relative;\n }\n .student & {\n background: $student-secondary-color;\n .listNav {\n .ln-letters {\n a {\n background-color: #8bad3f;\n &.ln-selected {\n color: #2a4a0f !important;\n }\n &.ln-disabled {\n background-color: #8bad3f;\n }\n }\n }\n }\n .alphabox_list_container {\n border: 2px solid #2a4a0f;\n h3 {\n color: #8bad3f;\n border-bottom: 2px solid #8bad3f;\n }\n ul li:before {\n color: #8bad3f;\n }\n }\n ul.quicklinks {\n a {\n background: #447400;\n }\n }\n }\n h2 {\n color: #fff;\n margin: 0;\n border: 0;\n a {\n color: #fff !important;\n border: none !important;\n &:hover {\n text-decoration: underline !important;\n }\n }\n }\n h3 {\n color: #fff;\n margin: 0 0 1rem 0 !important;\n padding-top: 1rem;\n font-size: 1.25rem;\n border-top: 1px solid #fff;\n }\n input[type=text] {\n background: #afc3ce url($findicon) no-repeat right center;\n border: 0;\n float: none;\n width: 100%;\n margin-bottom: 1.45455rem !important;\n &.active {\n background-color: #afc3ce;\n }\n }\n ::-webkit-input-placeholder {\n color: #333;\n }\n ::-moz-placeholder {\n color: #333;\n opacity: 1;\n }\n :-ms-input-placeholder {\n color: #333;\n }\n .listNav {\n margin: 0 0 calc(.5rem - 2px) 0;\n .ln-letters {\n margin: 1rem 0;\n a {\n background-color: #006ca4;\n border: none !important;\n margin: 0 2px 2px 0;\n color: #fff;\n padding: 2px;\n font-size: 1.25rem;\n &.ln-selected {\n background-color: #fff;\n color: #006ca4 !important;\n }\n &.ln-disabled {\n background-color: #006ca4;\n color: #7c98a8 !important;\n }\n }\n .all {\n display: none;\n }\n }\n font-family: \"AUPassataBold\";\n }\n .alphabox_list_container {\n background: #fff;\n border: 2px solid #006ca4;\n padding: 0 1rem 0 1rem;\n display: none;\n overflow-y: scroll;\n -webkit-overflow-scrolling: touch;\n h3 {\n color: #009ee0;\n border-bottom: 2px solid $staff-color;\n }\n >ul {\n max-height: 200px;\n overflow: initial !important;\n margin-bottom: 2em;\n position: relative;\n li {\n a {\n color: $staff-secondary-color;\n border-bottom: 1px dotted;\n }\n }\n }\n }\n ul.quicklinks {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n margin-left: 0;\n li {\n font: 1.25rem \"AUPassataRegular\";\n text-transform: uppercase;\n width: 48.9%;\n padding: 0;\n line-height: 1;\n margin-bottom: 6px;\n &:nth-child(odd) {\n margin-right: .5em;\n }\n a {\n display: block;\n background: #006ca4;\n color: #fff;\n border: none !important;\n padding: .5em;\n }\n @media (max-width: 400px) {\n width: 100%;\n margin-right: 0 !important;\n font-size: 1.72727rem;\n }\n }\n }\n .au_alphabox_content {\n margin-top: 1rem;\n margin-bottom: 1rem;\n clear: both;\n >div {\n background: #fff;\n max-height: 300px;\n overflow-y: scroll;\n }\n }\n}","$font-passata-regular: \"AUPassataRegular\";\n$font-passata-bold: \"AUPassataBold\";\n$gray-color:#e4e4e4;\n$gray-secondary-color:darken($gray-color, 50%);\n$alert-confirm-color: #8bad3f;\n$alert-cancel-color: #687989;\n$student-color:#8bad3f;\n$student-secondary-color:#2a4a0f;\n$staff-color: #379fcb;\n$staff-secondary-color:#003e5c;\n$findicon: 'https://cdn.au.dk/2016/assets/img/databox/find.png';",".react-autosuggest__container {\n cursor: pointer;\n\n input[type=\"text\"] {\n margin-bottom: 0;\n }\n}\n\n/* delphinus */\n.page__content__block {\n .react-autosuggest__container {\n position: relative;\n width: 100%;\n }\n .react-autosuggest__suggestions-list {\n margin-top: 0;\n }\n}\n\n.react-autosuggest__suggestions-container {\n border-left: 1px solid #ccc;\n border-right: 1px solid #ccc;\n position: absolute;\n left: 0;\n right: 0;\n background-color: #fff;\n margin: 0;\n z-index: 1;\n color: #333 !important;\n font-size: 1.272727272727rem;\n line-height: 1;\n max-height: 430px;\n overflow: auto;\n\n li, li:before {\n list-style-type: none !important;\n background-image: none !important;\n margin: 0;\n padding: 0;\n content: '' !important;\n line-height: 1 !important;\n background: none;\n }\n}\nli.react-autosuggest__suggestion {\n border-bottom: 1px solid #ccc;\n padding: 1.272727272727rem 1rem;\n}\n.react-autosuggest__suggestion--highlighted {\n background-color: #f0f0f0 !important;\n}\n\n.react-autosuggest__suggestions-list {\n margin-bottom: 0;\n margin-left: 0;\n}\n\n","$span-height: 20px;\n$span-minimum-padding: $span-height - 6px;\n$span-factor: 2;\n$span-padding-tb: $span-factor+$span-minimum-padding;\n$span-border-top: 1px;\n$span-total-height: $span-height+2 * $span-padding-tb;\n$span-height-responsive: 51px;\n$span-minimum-padding-responsive: 0px;\n$span-padding-tb-responsive: $span-factor+$span-minimum-padding-responsive;\n$span-total-height-responsive: $span-height-responsive+2 * $span-padding-tb-responsive;\n$input-text-top: 11px;\n$input-text-top-responsive: $span-padding-tb-responsive - $span-minimum-padding-responsive;\n$box-height-1: 1 * $span-height-responsive;\n$box-height-2: 2 * $span-height-responsive;\n$box-height-3: 3 * $span-height-responsive;\n$box-height-4: 4 * $span-height-responsive;\n$box-height-5: 5 * $span-height-responsive;\n$box-height-6: 6 * $span-height-responsive;\n$content-color: #f0f0f0;\n$box-text-indent: 1rem;\n$focus-indent: 24px;\n$focus-bottom-1: $box-height-1+$focus-indent;\n$focus-bottom-2: $box-height-2+$focus-indent;\n$focus-bottom-3: $box-height-3+$focus-indent;\n$focus-bottom-4: $box-height-4+$focus-indent;\n.au_databox {\n margin-bottom: 2em;\n position: relative;\n .button-wrapper {\n position: relative;\n >div {\n width: 100%;\n position: absolute;\n bottom: 0;\n }\n @media (max-width: 640px) {\n background-image: none !important;\n height: auto !important;\n position: static;\n overflow: auto;\n >div {\n position: static;\n }\n .db-button {\n float: none;\n width: 100% !important;\n >span {\n border-left: 0 !important;\n height: $span-height-responsive; //padding: $span-padding-tb-responsive 0px;\n }\n >input[type=text] {\n left: 70px;\n top: 11px;\n }\n }\n .buttons-5 {\n &.first-line-full {\n .button-wrapper {\n height: auto;\n }\n }\n }\n .buttons-6 {\n .button-wrapper {\n height: auto;\n }\n }\n }\n .au_focus {\n margin-bottom: 0;\n padding-left: 1rem;\n }\n }\n .content {\n width: 100%;\n background: $content-color;\n padding: $box-text-indent 0;\n overflow: auto;\n >div {\n padding: 0 $box-text-indent;\n position: relative;\n .expandall {\n position: absolute;\n right: 10px;\n top: 0;\n text-decoration: underline;\n cursor: pointer;\n }\n }\n ul {\n margin-top: 0;\n margin-left: 0;\n ul {\n margin-top: .65rem;\n }\n li {\n a {\n text-decoration: none;\n &:hover {\n text-decoration: underline;\n }\n }\n }\n }\n ul.letters {\n display: flex;\n justify-content: flex-start;\n flex-flow: row wrap;\n font-size: 1.1rem;\n margin-top: .15rem;\n margin-bottom: .75rem;\n margin-left: 0;\n padding-bottom: .75rem;\n border-bottom: 1px solid #ccc;\n li {\n padding: 0;\n margin: 2px 2px;\n background-color: #aaa;\n text-align: center;\n font-size: 1.2rem;\n &.available {\n button {\n cursor: pointer;\n color: #fff;\n }\n }\n &.active {\n font-weight: bold;\n }\n &:before {\n content: '';\n }\n button {\n font-family: $font-passata-regular;\n color: #ccc;\n text-transform: uppercase;\n width: 20px;\n line-height: inherit;\n }\n }\n }\n .au_collapsible {\n margin-bottom: 0;\n padding: .6rem 0;\n >.csc-header {\n margin-bottom: 1rem;\n &:after {\n font-size: 24px;\n }\n h3 {\n margin: 0;\n }\n }\n &.au_collapsed {\n >.csc-header {\n margin-bottom: 0;\n }\n }\n }\n }\n & .au_focus {\n margin-left: 24px;\n position: absolute;\n margin-bottom: 0;\n &.before {\n position: static;\n padding: 1.5em 0 1.5em 14px;\n margin-left: 0;\n }\n }\n .clear {\n clear: both;\n }\n &.width-full {\n width: 100%;\n }\n .db-button {\n float: left;\n text-indent: $box-text-indent;\n color: #fff;\n position: relative;\n text-align: left;\n padding: 0;\n margin: 0;\n border: 0;\n font: 1.7272727273rem $font-passata-regular;\n &:not(.db-search),\n &.search-filter {\n cursor: pointer;\n }\n >span {\n display: block;\n border-top: $span-border-top solid #fff;\n padding: $span-padding-tb 0px;\n line-height: 1;\n a {\n color: #fff;\n text-decoration: none;\n &:hover {\n text-decoration: underline;\n }\n }\n }\n $input-left: 65px;\n input[type=text] {\n font-size: 1.25rem;\n position: absolute;\n top: $input-text-top;\n left: $input-left;\n background: #fff url($findicon) no-repeat right center;\n background: rgba(255, 255, 255, .75) url($findicon) no-repeat right center;\n border: 0;\n width: calc(100% - #{$input-left} - #{$box-text-indent});\n padding: 0;\n margin: 0;\n height: 32px;\n text-indent: 10px;\n &.active {\n background: #fff;\n background: rgba(255, 255, 255, .75);\n }\n }\n &.overlay {\n background: rgb(204, 204, 204);\n background: rgba(204, 204, 204, .25);\n }\n &.active {\n background: $content-color;\n color: #000;\n a {\n color: #000;\n }\n }\n }\n &.collapse {\n .db-button {\n &:after {\n color: #fff;\n opacity: 0.8;\n font-family: 'au_icons';\n content: '+';\n float: right;\n font-size: 32px;\n position: absolute;\n top: 10px;\n right: 0;\n margin-right: .3em;\n }\n &.active:after {\n color: #000;\n opacity: 1;\n content: '-'\n }\n &.db-search:after {\n content: '';\n }\n }\n }\n &.stacked {\n .button-wrapper {\n background-image: none !important;\n height: auto !important;\n position: static;\n >div {\n position: static;\n }\n .db-button {\n float: none;\n width: 100% !important;\n >span {\n border-left: 0 !important;\n height: $span-height-responsive; //padding: $span-padding-tb-responsive 0px;\n }\n >input[type=text] {\n left: 70px;\n top: 11px;\n }\n }\n .buttons-5 {\n &.first-line-full {\n .button-wrapper {\n height: auto;\n }\n }\n }\n .buttons-6 {\n .button-wrapper {\n height: auto;\n }\n }\n }\n .content {\n padding-top: 0;\n }\n }\n &.buttons-1 {\n .au_focus {\n bottom: $focus-bottom-1;\n }\n .button-wrapper {\n height: $box-height-1;\n }\n .db-button {\n width: 100%;\n >span {\n text-indent: -9999px;\n }\n >input[type=text] {\n left: 14px;\n }\n }\n }\n &.buttons-2 {\n .button-wrapper {\n height: $box-height-1;\n }\n .au_focus {\n bottom: $focus-bottom-1;\n }\n .db-button {\n width: 50%;\n &:nth-child(2) span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-3 {\n .button-wrapper {\n height: $box-height-1;\n }\n .au_focus {\n bottom: $focus-bottom-1;\n }\n &.first-line-full {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-3 {\n width: 50%;\n }\n .button-2 span {\n border-left: 0;\n }\n .button-3 span {\n border-left: 1px solid #fff;\n }\n }\n .button-1,\n .button-3 {\n width: 33%;\n }\n .button-2 {\n width: 34%;\n }\n .button-2,\n .button-3 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-4 {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n &.first-line-full {\n .button-1 {\n width: 100%;\n }\n .button-2 span {\n border-left: 0;\n }\n .button-2,\n .button-4 {\n width: 33%;\n }\n .button-3 {\n width: 34%;\n }\n .button-3,\n .button-4 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n .db-button {\n width: 50%;\n }\n .button-2,\n .button-4 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-5 {\n .button-wrapper {\n height: $box-height-3;\n }\n .au_focus {\n bottom: $focus-bottom-3;\n }\n &.first-line-full {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-3,\n .button-4,\n .button-5 {\n width: 25%;\n }\n .button-3,\n .button-4,\n .button-5 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-3,\n .button-4,\n .button-5 {\n width: 50%;\n }\n .button-3,\n .button-5 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-6 {\n &.first-line-full {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n .button-1 {\n width: 100%;\n }\n .db-button.button-2 {\n span {\n border-left: none;\n }\n }\n .button-2,\n .button-3,\n .button-4,\n .button-5,\n .button-6 {\n width: 20%;\n }\n .button-3,\n .button-4,\n .button-5,\n .button-6 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n .button-wrapper {\n height: $box-height-3;\n }\n .au_focus {\n bottom: $focus-bottom-3;\n }\n .db-button {\n width: 50%;\n &:nth-child(even) span {\n border-left: 1px solid #fff;\n }\n }\n }\n &.buttons-7 {\n .button-wrapper {\n height: $box-height-3;\n }\n .au_focus {\n bottom: $focus-bottom-3;\n }\n &.first-line-full {\n .button-wrapper {\n height: $box-height-2;\n }\n .au_focus {\n bottom: $focus-bottom-2;\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-3,\n .button-4,\n .button-5,\n .button-6,\n .button-7 {\n width: 16.66667%;\n }\n .button-3,\n .button-4,\n .button-5,\n .button-6,\n .button-7 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n .button-1 {\n width: 100%;\n }\n .button-2,\n .button-4,\n .button-5,\n .button-7 {\n width: 33%;\n }\n .button-3,\n .button-6 {\n width: 34%;\n }\n .button-3,\n .button-4,\n .button-6,\n .button-7 {\n span {\n border-left: 1px solid #fff;\n }\n }\n }\n}\n\n.utility-links .au_databox.stacked {\n margin-bottom: 0;\n .content {\n max-height: 200px;\n overflow: auto;\n }\n}","$padding-default: 1rem;\n$white: #fefefe;\n$gray-color:#e4e4e4;\n$gray-secondary-color:darken($gray-color, 50%);\n$mitstudie-sf-color: #cfe1e7;\n$mitstudie-obl-color: #f2e4d4;\n$mitstudie-val-color: #d1e1d6;\n$mitstudie-tlv-color: #e9ccda;\n$diagramme-cell-height: 130px;\n.au_edutable_eddi_container {\n .print {\n display: inline-block;\n margin-bottom: 1rem;\n }\n}\n\n.study-diagramme {\n &.list {\n p {\n padding: .6rem 1rem;\n contain: content;\n a {\n text-decoration: none;\n }\n span:last-child {\n float: right;\n }\n }\n }\n padding: $padding-default;\n margin-bottom: 2rem;\n font-family: \"AUPassataRegular\";\n background-color: $gray-color;\n table {\n table-layout: fixed;\n width: 100%;\n border-collapse: collapse;\n }\n table,\n thead,\n tbody {\n background-color: transparent !important;\n }\n tr {\n background-color: transparent !important;\n }\n th {\n font-family: \"AUPassataBold\";\n font-weight: normal;\n }\n th,\n td {\n border: 4px solid $white;\n }\n td {\n padding: 0;\n &:hover {\n background-color: $gray-secondary-color;\n &.sf {\n a {\n color: $mitstudie-sf-color;\n }\n }\n &.obl {\n a {\n color: $mitstudie-obl-color;\n }\n }\n &.val {\n a {\n color: $mitstudie-val-color;\n }\n }\n &.tlv {\n a {\n color: $mitstudie-tlv-color;\n }\n }\n &.ogr {\n a {\n color: $mitstudie-obl-color;\n }\n }\n }\n a {\n padding: 2rem 1rem;\n display: block;\n text-decoration: none;\n border-bottom: none !important;\n font-size: 12px;\n word-break: break-word;\n hyphens: auto;\n }\n @for $i from 1 through 6 {\n &[rowspan=\"#{$i}\"] a {\n min-height: $i * $diagramme-cell-height;\n }\n }\n }\n .sf {\n background-color: $mitstudie-sf-color;\n }\n .obl {\n background-color: $mitstudie-obl-color;\n }\n .val {\n background-color: $mitstudie-val-color;\n }\n .tlv {\n background-color: $mitstudie-tlv-color;\n }\n .ogr {\n background-color: $mitstudie-obl-color;\n }\n &.show-for-small-only {\n @media print {\n display: none;\n }\n }\n}",".au_flowbox {\n background: #f0efef;\n padding: 2rem;\n margin-bottom: 1rem;\n button {\n text-align: left;\n font-family: 'AUPassataRegular';\n text-decoration: underline;\n cursor: pointer;\n }\n >div>h2 {\n margin: 0 0 1rem 0 !important;\n text-transform: uppercase;\n border: none !important;\n padding: 0 !important;\n }\n .vcard {\n padding: 1rem;\n background-color: rgba(255, 255, 255, 0.95);\n border: 0 none;\n margin: 0 0 1rem 0;\n .fn {\n font-weight: bold;\n font-size: 1.3636363636rem;\n }\n p {\n font-family: inherit;\n font-size: 1.2rem;\n font-weight: normal;\n line-height: 1.6;\n margin-bottom: 1.8181818182rem;\n text-rendering: optimizeLegibility;\n }\n }\n &.partner {\n background: $staff-color;\n >div {\n >h2 {\n color: #fff;\n }\n >p {\n color: #fff;\n a {\n color: #fff !important;\n border-bottom: none !important;\n text-decoration: underline !important;\n }\n }\n >ul li {\n padding-left: 0;\n &::before {\n display: none;\n }\n }\n }\n }\n}\n\n.au_flowbox_data {\n display: none;\n}\n\n.au_staffcontactbox {\n color: #fff;\n padding: 1.3636364rem;\n background-color: #379fcb;\n margin-bottom: 1em;\n >h2 {\n color: #fff;\n text-transform: uppercase;\n margin: 0 0 1em 0 !important;\n }\n}","@font-face {\n font-family: 'font-awesome';\n src: url('https://fonts.au.dk/fonts/fa-pro-regular-400.otf');\n font-weight: 400;\n font-style: normal;\n}\n\n$padding-default: 1.363636364rem;\n\n.layout13,\n.layout14,\n.layout15,\n.layout16,\n.layout17 {\n .au-map {\n margin-bottom: $padding-default;\n\n .react-autosuggest__container {\n margin-bottom: 1rem;\n position: relative;\n }\n\n .react-autosuggest__suggestions-container {\n max-height: none;\n overflow: visible;\n\n li:nth-child(n+21) {\n display: none;\n }\n }\n\n .gm-style-iw {\n\n .au_collapsible,\n hr {\n display: none;\n }\n }\n\n &__search {\n display: flex;\n\n >div {\n flex-basis: 85%;\n\n @media (max-width: 640px) {\n flex-basis: 76%;\n }\n }\n\n button {\n flex-basis: 15%;\n font-family: 'AUPassataRegular';\n border-top: 1px solid #ccc;\n border-right: 1px solid #ccc;\n border-bottom: 1px solid #ccc;\n height: 2.6 * $padding-default;\n cursor: pointer;\n background: none;\n color: black;\n padding: 0;\n\n &:hover {\n background: none;\n color: inherit;\n }\n\n span::before {\n font-family: 'font-awesome';\n content: '\\f5a0';\n display: inline-block;\n margin-right: 1rem;\n }\n\n @media (max-width: 640px) {\n flex-basis: 24%;\n }\n }\n }\n\n &__overlay-buttons {\n display: flex;\n flex-wrap: wrap;\n\n button {\n margin-right: 1rem;\n }\n }\n\n &__person-suggestion {\n >div {\n &:first-child {\n padding-left: $padding-default;\n width: 15%;\n }\n\n &:last-child {\n padding-left: $padding-default;\n width: 85%;\n }\n }\n\n h4,\n p {\n margin: 0;\n }\n\n img {\n max-width: 100px;\n }\n }\n\n .vcard,\n .bld-card,\n .overlay-card,\n .top-search {\n >h2 {\n margin-top: 0;\n }\n\n button {\n cursor: pointer;\n text-decoration: underline;\n font-family: inherit;\n text-align: left;\n }\n\n strong button {\n font-weight: bold;\n }\n\n @media (max-width: 640px) {\n padding: $padding-default 0;\n }\n }\n\n .vcard {\n img {\n float: right;\n margin-left: $padding-default;\n margin-bottom: $padding-default;\n max-width: 120px;\n }\n\n &::after {\n display: block;\n content: '';\n clear: both;\n }\n }\n\n &__route {\n margin-bottom: $padding-default;\n }\n\n .show-on-map {\n display: none;\n }\n\n .au_collapsible {\n .csc-header+* {\n position: relative;\n max-height: 350px;\n overflow-y: auto;\n }\n }\n\n &__directions-panel {\n display: flex;\n flex-wrap: wrap;\n padding: 1rem 0 1rem 1rem;\n margin-bottom: 1rem;\n border: 1px solid #cacaca;\n\n &__modes-of-transportation {\n flex-basis: 100%;\n display: flex;\n }\n\n &__from-to {\n flex-basis: 85%;\n }\n\n &__swap {\n flex-basis: 15%;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n\n .button-route {\n background-color: transparent;\n color: #878787;\n height: 3rem;\n overflow: hidden;\n padding: 0;\n margin-right: 1rem;\n display: inline-flex;\n border: none;\n\n &--selected {\n border-bottom: 2px solid black;\n }\n\n &::before {\n font-family: 'font-awesome';\n font-size: 2rem;\n display: inline-block;\n }\n\n &--car {\n width: 22px;\n\n &::before {\n content: '\\f1b9';\n }\n }\n\n &--walk {\n width: 13px;\n\n &::before {\n content: '\\f554';\n }\n }\n\n &--bicycle {\n width: 27px;\n\n &::before {\n content: '\\f206';\n }\n }\n\n &--public {\n width: 22px;\n padding-top: 4px;\n\n &::before {\n content: '\\f207';\n }\n }\n\n &--close {\n margin-left: auto;\n width: 14px;\n\n &::before {\n content: '\\f00d';\n }\n }\n\n &--swap {\n margin: 0 0 1.45455rem 0;\n width: 24px;\n\n &::before {\n font-size: 3rem;\n content: '\\f883';\n }\n }\n }\n }\n\n &__suggestion {\n display: inline-block;\n\n &::before {\n font-family: 'font-awesome';\n display: inline-block;\n margin-right: .5rem;\n }\n\n &__building {\n &::before {\n content: '\\f1ad';\n }\n }\n\n &__department {\n &::before {\n content: '\\f19c';\n }\n }\n\n &__denmark {\n &::before {\n content: '\\f1ad';\n }\n }\n\n &__denmark {\n &::before {\n content: '\\f276';\n }\n }\n\n &__lecture-hall {\n &::before {\n content: '\\f63d';\n }\n }\n\n &__library {\n &::before {\n content: '\\f02d';\n }\n }\n\n &__friday-bar {\n &::before {\n content: '\\f0fc';\n }\n }\n\n &__study-place {\n &::before {\n content: '\\f63d';\n }\n }\n\n &__canteen {\n &::before {\n content: '\\f2e7';\n }\n }\n\n &__counselling {\n &::before {\n content: '\\f128';\n }\n }\n\n &__it-support {\n &::before {\n content: '\\f82d';\n }\n }\n\n &__myprint {\n &::before {\n content: '\\f02f';\n }\n }\n }\n\n }\n\n .au-map.find-container,\n .dropdown-pane .find-container {\n\n >.row>.column {\n position: relative;\n }\n\n h3 {\n margin-top: 0;\n }\n\n .au-map__person-suggestion {\n img {\n max-width: 30px;\n }\n }\n\n .react-autosuggest__suggestions-container li {\n margin-bottom: 0;\n }\n\n .vcard,\n .bld-card {\n margin-top: $padding-default;\n padding: 1rem;\n background: #fff;\n color: #333;\n font-size: 1.25rem;\n font-family: Georgia, \"Times New Roman\", Times, serif;\n\n hr {\n display: none;\n }\n\n img {\n width: 70px;\n float: right;\n margin-left: 1rem;\n }\n\n a {\n color: #000 !important;\n text-decoration: underline;\n }\n }\n }\n\n}"],"names":[],"ignoreList":[],"sourceRoot":""}