-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.8bbf081136b62e40.css.map
1 lines (1 loc) · 293 KB
/
styles.8bbf081136b62e40.css.map
1
{"version":3,"sources":["./src/styles/0-base/_index.scss","./src/styles/_mixins.scss","./src/styles/0-base/_typography.scss","./src/styles/_constants.scss","./src/styles/main.scss","./src/styles/1-layouts/_index.scss","./src/styles/1-layouts/app-pages/_api-pages.scss","./src/styles/1-layouts/content-layout/_content-layout.scss","./src/styles/1-layouts/doc_viewer/_doc-viewer.scss","./src/styles/1-layouts/footer/_footer.scss","./src/styles/1-layouts/layout-global/_layout-global.scss","./src/styles/1-layouts/marketing-layout/_marketing-layout.scss","./src/styles/1-layouts/homepage/_homepage.scss","./src/styles/1-layouts/not-found/_not-found.scss","./src/styles/1-layouts/sidenav/_sidenav.scss","./src/styles/1-layouts/table-of-contents/_table-of-contents.scss","./src/styles/1-layouts/top-menu/_top-menu.scss","./src/styles/2-modules/_index.scss","./src/styles/2-modules/alert/_alert.scss","./src/styles/2-modules/api-pages/_api-pages.scss","./src/styles/2-modules/api-list/_api-list.scss","./src/styles/2-modules/buttons/_buttons.scss","./src/styles/2-modules/callout/_callout.scss","./src/styles/2-modules/card/_card.scss","./src/styles/2-modules/code/_code.scss","./src/styles/2-modules/contribute/_contribute.scss","./src/styles/2-modules/contributor/_contributor.scss","./src/styles/2-modules/details/_details.scss","./src/styles/2-modules/edit-page-cta/_edit-page-cta.scss","./src/styles/2-modules/features/_features.scss","./src/styles/2-modules/filetree/_filetree.scss","./src/styles/2-modules/heading-anchors/_heading-anchors.scss","./src/styles/2-modules/hr/_hr.scss","./src/styles/2-modules/images/_images.scss","./src/styles/2-modules/progress-bar/_progress-bar.scss","./src/styles/2-modules/table/_table.scss","./src/styles/2-modules/presskit/_presskit.scss","./src/styles/2-modules/resources/_resources.scss","./src/styles/2-modules/search-results/_search-results.scss","./src/styles/2-modules/toc/_toc.scss","./src/styles/2-modules/select-menu/_select-menu.scss","./src/styles/2-modules/deploy-theme/_deploy-theme.scss","./src/styles/2-modules/notification/_notification.scss","./src/styles/2-modules/label/_label.scss","./src/styles/2-modules/enterprise-support/_enterprise-support.scss","./src/styles/_print.scss","./node_modules/@angular/material/core/style/_sass-utils.scss","./node_modules/@material/theme/_css.scss","./node_modules/@angular/material/core/typography/_typography.scss","./node_modules/@angular/material/core/typography/_typography-utils.scss","./node_modules/@angular/material/chips/_chips-theme.scss","./node_modules/@angular/material/slide-toggle/_slide-toggle-theme.scss","./node_modules/@angular/material/radio/_radio-theme.scss","./node_modules/@angular/material/list/_list-theme.scss","./node_modules/@angular/material/tabs/_tabs-theme.scss","./node_modules/@angular/material/checkbox/_checkbox-theme.scss","./node_modules/@angular/material/core/ripple/_ripple.scss","./node_modules/@angular/cdk/a11y/_index.scss","./node_modules/@angular/cdk/overlay/_index.scss","./node_modules/@angular/cdk/text-field/_index.scss","./node_modules/@angular/material/core/focus-indicators/_private.scss","./node_modules/@angular/material/core/style/_layout-common.scss","./node_modules/@angular/material/core/_core.scss"],"sourcesContent":["/* ==============================\n BASE STYLES\n ============================== */\n\n@forward 'typography';\n","@use './constants';\n\n/************************************\n\n Media queries\n\n To use these, put this snippet in the appropriate selector:\n\n @include bp(tiny) {\n background-color: purple;\n }\n\n Replace \"tiny\" with \"medium\" or \"big\" as necessary.\n*************************************/\n\n@mixin bp($point) {\n $bp-xsmall: \"(min-width: 320px)\";\n $bp-teeny: \"(min-width: 480px)\";\n $bp-tiny: \"(min-width: 600px)\";\n $bp-small: \"(min-width: 650px)\";\n $bp-medium: \"(min-width: 800px)\";\n $bp-big: \"(min-width: 1000px)\";\n\n @if $point == big {\n @media #{$bp-big} { @content; }\n }\n @else if $point == medium {\n @media #{$bp-medium} { @content; }\n }\n @else if $point == small {\n @media #{$bp-small} { @content; }\n }\n @else if $point == tiny {\n @media #{$bp-tiny} { @content; }\n }\n @else if $point == teeny {\n @media #{$bp-teeny} { @content; }\n }\n @else if $point == xsmall {\n @media #{$bp-xsmall} { @content; }\n }\n}\n\n@mixin rotate($degrees) {\n -moz-transform: rotate($degrees);\n -webkit-transform: rotate($degrees);\n -o-transform: rotate($degrees);\n -ms-transform: rotate($degrees);\n transform: rotate($degrees);\n transition: transform 150ms;\n transition-timing-function: ease-in-out;\n}\n\n@mixin codeblock($bgcolor) {\n background-color: $bgcolor;\n border-radius: 5px;\n padding: 20px;\n margin: 0 auto; // was 24\n border: 0.5px solid constants.$lightgray;\n}\n\n// INFO CARD SKELETON\n@mixin card($height, $width) {\n height: $height;\n width: $width;\n border-radius: 4px;\n box-shadow: 0 2px 2px rgba(constants.$black, 0.24), 0 0 2px rgba(constants.$black, 0.12);\n box-sizing: border-box;\n transition: box-shadow .5s;\n\n &:hover {\n box-shadow: 0 8px 8px rgba(constants.$black, 0.24), 0 0 8px rgba(constants.$black, 0.12);\n text-decoration: none;\n }\n}\n\n@mixin typescale-display {\n font-size: 26px;\n line-height: 32px;\n}\n\n@mixin typescale-xlarge {\n font-size: 24px;\n line-height: 30px;\n}\n\n@mixin typescale-large {\n font-size: 20px;\n line-height: 28px;\n}\n\n@mixin typescale-default {\n font-size: 16px;\n line-height: 24px;\n}\n\n@mixin typescale-small {\n font-size: 14px;\n line-height: 20px;\n}\n","@use '../constants';\n@use '../mixins';\n\nbody {\n @include mixins.typescale-default;\n font-family: constants.$main-font;\n margin: 0;\n\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\nh1 {\n display: inline-block;\n @include mixins.typescale-display;\n font-weight: 500;\n margin: 8px 0px;\n\n @media screen and (max-width: 600px) {\n margin-top: 0;\n }\n}\n\nh2 {\n @include mixins.typescale-xlarge;\n font-weight: 500;\n margin: 32px 0px 24px;\n clear: both;\n}\n\nh3 {\n @include mixins.typescale-large;\n font-weight: 500;\n margin: 24px 0px 12px;\n clear: both;\n}\n\nh4 {\n @include mixins.typescale-default;\n font-weight: 500;\n margin: 8px 0px;\n clear: both;\n}\n\nh5 {\n @include mixins.typescale-default;\n font-weight: 400;\n margin: 8px 0px;\n clear: both;\n}\n\nh6 {\n @include mixins.typescale-default;\n font-weight: 400;\n margin: 8px 0px;\n clear: both;\n}\n\nh2, h3, h4, h5, h6 {\n a {\n font-size: inherit;\n }\n\n @media screen and (max-width: 600px) {\n margin: 8px 0;\n }\n}\n\n.mat-tab-body-wrapper h2 {\n margin-top: 0;\n}\n\np, ol, ul, ol, li, input, a {\n @include mixins.typescale-default;\n letter-spacing: 0.30px;\n font-weight: 400;\n & > em {\n letter-spacing: 0.30px;\n }\n}\n\nol {\n li, p {\n margin: 4px 0;\n }\n}\n\nli p {\n margin: 0;\n}\n\na {\n text-decoration: none;\n}\n\n.app-toolbar a {\n @include mixins.typescale-large;\n font-weight: 400;\n font-family: constants.$main-font;\n text-transform: uppercase;\n padding: 21px 0;\n}\n\naio-shell.page-home .app-toolbar a {\n color: constants.$purple;\n}\n\nstrong {\n font-weight: constants.$bold-font-weight;\n}\n\ntable {\n border-collapse: collapse;\n border-radius: 2px;\n border-spacing: 0;\n margin: 12px 0 32px;\n}\n\ntable tbody th {\n max-width: 100px;\n padding: 13px 32px;\n text-align: left;\n}\n\ntd {\n font-weight: 400;\n padding: 8px 30px;\n letter-spacing: 0.30px;\n\n p {\n margin: 0;\n }\n}\n\nth {\n @include mixins.typescale-default;\n font-weight: 500;\n padding: 13px 32px;\n text-align: left;\n}\n\np > code, li > code, td > code, th > code {\n font-family: constants.$code-font;\n font-size: 85%;\n letter-spacing: 0;\n line-height: 1;\n padding: 2px 0;\n background-color: constants.$backgroundgray;\n border-radius: 4px;\n}\n\ncode {\n font-family: constants.$code-font;\n font-size: 90%;\n}\n","// TYPOGRAPHY\n$main-font: \"Roboto\",\"Helvetica Neue Light\",\"Helvetica Neue\",Helvetica,Arial,\"Lucida Grande\",sans-serif;\n$code-font: \"Droid Sans Mono\", monospace;\n$bold-font-weight: 600;\n\n// Z-LAYER\n$layer-1: 1;\n$layer-2: 2;\n$layer-3: 3;\n$layer-4: 4;\n$layer-5: 5;\n\n// COLOR PALETTE\n$lightblue: #7fc9ff;\n$blue: #1976D2;\n$purple: #412846;\n$lightpurple: #84438a;\n$accentblue: #1E88E5;\n$brightred: #DD0031;\n$darkred: #C3002F;\n$white: #FFFFFF;\n$offwhite: #FAFAFA;\n$backgroundgray: #F1F1F1;\n$lightgray: #DBDBDB;\n$mist: #ECEFF1;\n$mediumgray: #6e6e6e;\n$darkgray: #444444;\n$deepgray: #333333;\n$black: #0A1014;\n$orange: #FF9800;\n$darkorange: #940;\n$anti-pattern: $brightred;\n\n// API & CODE COLORS\n$amber-700: #FFA000;\n$purple-400: #42A5F5;\n$purple-500: #2196F3;\n$purple-600: #1E88E5;\n$purple-800: #1565C0;\n$purple-900: #0D47A1;\n$purple-grey-50: #ECEFF1;\n$purple-grey-100: #CFD8DC;\n$purple-grey-200: #B0BEC5;\n$purple-grey-300: #90A4AE;\n$purple-grey-400: #78909C;\n$purple-grey-500: #607D8B;\n$purple-grey-600: #546E7A;\n$purple-grey-700: #455A64;\n$purple-grey-800: #37474F;\n$purple-grey-900: #263238;\n$codegreen: #17ff0b;\n$green-500: #4CAF50;\n$green-800: #2E7D32;\n$light-green-600: #7CB342;\n$pink-600: #D81B60;\n$purple-600: #8E24AA;\n$purple-700: #a829c3;\n$dull-magenta-700: #dc65ff;\n$teal-500: #009688;\n$lightgrey: #F5F6F7;\n\n// GRADIENTS\n$bluegradient: linear-gradient(145deg,#0D47A1,#42A5F5);\n$redgradient: linear-gradient(145deg,$darkred,$brightred);\n\n// API LABEL COLOR AND SYMBOLS MAP\n$api-symbols: (\n all: (\n content: ' ',\n background: $white\n ),\n decorator: (\n content: '@',\n background: $purple-800\n ),\n directive: (\n content: 'D',\n background: $pink-600\n ),\n pipe: (\n content: 'P',\n background: $purple-grey-600\n ),\n class: (\n content: 'C',\n background: $purple-500\n ),\n interface: (\n content: 'I',\n background: $teal-500\n ),\n function: (\n content: 'F',\n background: $green-500\n ),\n enum: (\n content: 'E',\n background: $amber-700\n ),\n const: (\n content: 'K',\n background: $mediumgray\n ),\n let: (\n content: 'K',\n background: $mediumgray\n ),\n var: (\n content: 'K',\n background: $mediumgray\n ),\n ngmodule: (\n content: 'M',\n background: $darkorange\n ),\n type-alias: (\n content: 'T',\n background: $light-green-600\n ),\n package: (\n content: 'Pk',\n background: $purple-600\n )\n);\n\n// OTHER\n$small-breakpoint-width: 840px;\n$phone-breakpoint: 480px;\n$tablet-breakpoint: 800px;\n","/* ==============================\n BASE STYLES\n ============================== */\n/************************************\n\n Media queries\n\n To use these, put this snippet in the appropriate selector:\n\n @include bp(tiny) {\n background-color: purple;\n }\n\n Replace \"tiny\" with \"medium\" or \"big\" as necessary.\n*************************************/\nbody {\n font-size: 16px;\n line-height: 24px;\n font-family: \"Roboto\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n margin: 0;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\nh1 {\n display: inline-block;\n font-size: 26px;\n line-height: 32px;\n font-weight: 500;\n margin: 8px 0px;\n}\n@media screen and (max-width: 600px) {\n h1 {\n margin-top: 0;\n }\n}\n\nh2 {\n font-size: 24px;\n line-height: 30px;\n font-weight: 500;\n margin: 32px 0px 24px;\n clear: both;\n}\n\nh3 {\n font-size: 20px;\n line-height: 28px;\n font-weight: 500;\n margin: 24px 0px 12px;\n clear: both;\n}\n\nh4 {\n font-size: 16px;\n line-height: 24px;\n font-weight: 500;\n margin: 8px 0px;\n clear: both;\n}\n\nh5 {\n font-size: 16px;\n line-height: 24px;\n font-weight: 400;\n margin: 8px 0px;\n clear: both;\n}\n\nh6 {\n font-size: 16px;\n line-height: 24px;\n font-weight: 400;\n margin: 8px 0px;\n clear: both;\n}\n\nh2 a, h3 a, h4 a, h5 a, h6 a {\n font-size: inherit;\n}\n@media screen and (max-width: 600px) {\n h2, h3, h4, h5, h6 {\n margin: 8px 0;\n }\n}\n\n.mat-tab-body-wrapper h2 {\n margin-top: 0;\n}\n\np, ol, ul, ol, li, input, a {\n font-size: 16px;\n line-height: 24px;\n letter-spacing: 0.3px;\n font-weight: 400;\n}\np > em, ol > em, ul > em, ol > em, li > em, input > em, a > em {\n letter-spacing: 0.3px;\n}\n\nol li, ol p {\n margin: 4px 0;\n}\n\nli p {\n margin: 0;\n}\n\na {\n text-decoration: none;\n}\n\n.app-toolbar a {\n font-size: 20px;\n line-height: 28px;\n font-weight: 400;\n font-family: \"Roboto\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n text-transform: uppercase;\n padding: 21px 0;\n}\n\naio-shell.page-home .app-toolbar a {\n color: #412846;\n}\n\nstrong {\n font-weight: 600;\n}\n\ntable {\n border-collapse: collapse;\n border-radius: 2px;\n border-spacing: 0;\n margin: 12px 0 32px;\n}\n\ntable tbody th {\n max-width: 100px;\n padding: 13px 32px;\n text-align: left;\n}\n\ntd {\n font-weight: 400;\n padding: 8px 30px;\n letter-spacing: 0.3px;\n}\ntd p {\n margin: 0;\n}\n\nth {\n font-size: 16px;\n line-height: 24px;\n font-weight: 500;\n padding: 13px 32px;\n text-align: left;\n}\n\np > code, li > code, td > code, th > code {\n font-family: \"Droid Sans Mono\", monospace;\n font-size: 85%;\n letter-spacing: 0;\n line-height: 1;\n padding: 2px 0;\n background-color: #F1F1F1;\n border-radius: 4px;\n}\n\ncode {\n font-family: \"Droid Sans Mono\", monospace;\n font-size: 90%;\n}\n\n/* ==============================\n LAYOUT STYLES\n ============================== */\n.api-body {\n max-width: 1200px;\n}\n.api-body table {\n margin: 12px 0 24px;\n}\n.api-body table th {\n text-transform: none;\n font-size: 16px;\n line-height: 24px;\n font-weight: bold;\n}\n.api-body table tr {\n border-bottom: 1px solid #DBDBDB;\n}\n.api-body table td {\n vertical-align: middle;\n}\n.api-body table hr {\n margin: 16px 0;\n}\n.api-body table tr:last-child {\n border-bottom: none;\n}\n.api-body table.item-table td {\n padding: 32px;\n}\n.api-body table.list-table td {\n padding: 16px 24px;\n}\n.api-body table .short-description {\n margin-left: 0;\n}\n\naio-shell.page-docs .sidenav-content {\n margin: auto;\n}\n\n.sidenav-content {\n min-height: 100vh;\n padding: 80px 3rem 1rem;\n}\n\n@media (max-width: 600px) {\n aio-menu {\n display: none;\n }\n .sidenav-content {\n min-height: 450px;\n padding: 80px 1rem 1rem;\n }\n}\n.sidenav-container {\n width: 100%;\n height: 100vh;\n}\n\n.sidenav-content button {\n min-width: 24px;\n}\n\n#guide-change-log h2::before {\n content: \"\";\n display: block;\n height: 1px;\n margin: 24px 0px;\n background: #DBDBDB;\n}\n\n.no-animations aio-doc-viewer > * {\n transition: none !important;\n}\n\n.video-container {\n width: 100%;\n max-width: 750px;\n margin: auto;\n}\n\n.video-responsive-wrapper {\n position: relative;\n padding-bottom: 56.25%; /* 16:9 */\n height: 0;\n}\n.video-responsive-wrapper > iframe {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n}\n\nfooter {\n position: relative;\n line-height: 24px;\n flex: 1;\n padding: 48px;\n z-index: 0;\n font-weight: 300;\n}\nfooter aio-footer {\n position: relative;\n z-index: 0;\n}\nfooter .footer-block {\n margin: 0 24px;\n vertical-align: top;\n}\nfooter a {\n font-weight: 300;\n text-decoration: none;\n z-index: 20;\n position: relative;\n}\nfooter a:hover {\n text-decoration: underline;\n}\nfooter a:visited {\n text-decoration: none;\n}\nfooter a.action {\n cursor: pointer;\n}\nfooter h3 {\n font-size: 16px;\n line-height: 24px;\n text-transform: uppercase;\n font-weight: 400;\n margin: 0 0 16px;\n}\nfooter p {\n text-align: center;\n margin: 10px 0px 5px;\n}\n@media (max-width: 480px) {\n footer p {\n text-align: left;\n }\n}\nfooter div.grid-fluid {\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n justify-content: center;\n text-align: left;\n margin: 0 0 40px;\n}\nfooter div.grid-fluid ul {\n list-style-position: inside;\n padding: 0px;\n margin: 0px;\n}\nfooter div.grid-fluid ul li {\n list-style-type: none;\n padding: 0px;\n text-align: left;\n}\n@media (max-width: 480px) {\n footer div.grid-fluid {\n flex-direction: column;\n }\n footer div.grid-fluid .footer-block {\n margin: 8px 24px;\n }\n}\n@media (max-width: 700px) {\n footer h3 {\n font-size: 20px;\n line-height: 28px;\n }\n}\n@media (max-width: 600px) {\n footer h3 {\n font-size: 16px;\n line-height: 24px;\n }\n}\n\nfooter::after {\n content: \"\";\n position: absolute;\n z-index: -1;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\nhtml, body {\n height: 100%;\n}\n\n.clearfix {\n content: \"\";\n display: table;\n clear: both;\n}\n\n.clear {\n clear: both;\n}\n\n.l-clearfix:after, .clearfix:after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n.is-visible {\n display: block !important;\n}\n\n.l-flex-wrap {\n display: flex;\n flex-wrap: wrap;\n}\n\n.flex-center {\n display: flex;\n justify-content: center;\n}\n\n.center {\n text-align: center;\n}\n\n.visually-hidden {\n position: absolute !important;\n top: -9999px !important;\n left: -9999px !important;\n}\n\n.text-uppercase {\n text-transform: uppercase;\n}\n\n.hero {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n position: absolute;\n width: 100%;\n min-height: 480px;\n height: 80vh;\n max-height: 480px;\n box-sizing: border-box;\n padding: 48px 48px 32px 48px;\n overflow: hidden;\n transform-origin: 100%;\n}\n@media (max-width: 480px) {\n .hero {\n max-height: 486px;\n padding-top: 40px;\n transform: none;\n }\n}\n.hero .hero-title {\n display: inline-block;\n font-size: 28px;\n font-weight: 400;\n line-height: 48px;\n margin: 0 8px 0 0;\n text-transform: uppercase;\n}\n.hero .hero-title.is-standard-case {\n text-transform: none;\n}\n\n.homepage-header {\n background: url(\"/assets/images/banner.svg\");\n background-size: 100%;\n}\n\nsection#intro {\n display: flex;\n flex-direction: column;\n align-items: center;\n position: relative;\n width: 900px;\n height: 480px;\n margin: 0 auto -32px;\n padding: 48px 0 0;\n}\n@media (max-width: 780px) {\n section#intro {\n justify-content: center;\n width: 100%;\n max-width: 100vw;\n padding: 40px 0 32px;\n }\n section#intro button {\n margin: 0;\n height: 60px;\n }\n}\nsection#intro .homepage-container {\n display: flex;\n flex-direction: column;\n align-items: center;\n width: 100%;\n max-width: 1040px;\n margin: 0 auto;\n margin-top: -7%;\n padding-top: 0;\n padding-bottom: 0;\n}\n@media (max-width: 780px) {\n section#intro .homepage-container {\n width: 100%;\n max-width: 100%;\n padding: 0;\n }\n}\nsection#intro .hero-headline {\n font-size: 40px;\n line-height: 64px;\n font-weight: 500;\n margin: 32px 0 8px 0;\n}\nsection#intro .hero-headline:after {\n display: none;\n}\n@media (max-width: 780px) {\n section#intro .hero-headline {\n text-align: center;\n }\n}\n@media (max-width: 575px) {\n section#intro .hero-headline {\n font-size: 32px;\n line-height: 50px;\n }\n}\nsection#intro .hero-sub-headline {\n font-size: 18px;\n line-height: 32px;\n}\nsection#intro .hero-logo {\n display: flex;\n padding-top: 48px;\n padding-bottom: 24px;\n}\n@media (max-width: 780px) {\n section#intro .hero-logo {\n justify-content: center;\n }\n}\nsection#intro .hero-logo img {\n width: 260px;\n height: 260px;\n margin-bottom: 8px;\n padding: 0;\n filter: drop-shadow(0 2px 2px rgba(10, 16, 20, 0.24));\n}\n@media (max-width: 780px) {\n section#intro .hero-logo img {\n width: 250px;\n height: 250px;\n }\n}\n\n.announcement-bar {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n justify-content: space-around;\n align-items: center;\n max-width: 50vw;\n margin: 0 auto;\n padding: 16px;\n border-radius: 4px;\n box-shadow: 0 2px 2px rgba(10, 16, 20, 0.24), 0 0 2px rgba(10, 16, 20, 0.12);\n box-sizing: border-box;\n transition: all 0.3s ease-in;\n}\n@media (max-width: 992px) {\n .announcement-bar {\n flex-direction: column;\n text-align: center;\n padding: 32px 16px;\n }\n}\n@media (max-width: 768px) {\n .announcement-bar {\n width: 100%;\n max-width: none;\n }\n}\n.announcement-bar > * {\n margin: 8px;\n}\n.announcement-bar .button {\n display: flex;\n justify-content: center;\n align-items: center;\n height: 40px;\n min-width: 160px;\n font-size: 16px;\n border-radius: 48px;\n box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);\n box-sizing: border-box;\n cursor: pointer;\n}\n.announcement-bar .material-icons {\n display: none;\n right: 0;\n position: static;\n transition: all 0.3s ease-in;\n font-size: 16px;\n}\n.announcement-bar p {\n font-size: 16px;\n margin: 8px;\n text-align: center;\n}\n\n.home-row .card {\n height: 70%;\n width: auto;\n border-radius: 4px;\n box-shadow: 0 2px 2px rgba(10, 16, 20, 0.24), 0 0 2px rgba(10, 16, 20, 0.12);\n box-sizing: border-box;\n transition: box-shadow 0.5s;\n display: flex;\n flex-direction: row;\n align-items: center;\n position: relative;\n width: 70%;\n min-width: 350px;\n height: auto;\n margin: auto;\n padding: 24px;\n box-shadow: 0 6px 6px rgba(10, 16, 20, 0.15), 0 0 52px rgba(10, 16, 20, 0.12);\n}\n.home-row .card:hover {\n box-shadow: 0 8px 8px rgba(10, 16, 20, 0.24), 0 0 8px rgba(10, 16, 20, 0.12);\n text-decoration: none;\n}\n@media (max-width: 600px) {\n .home-row .card {\n margin: 16px auto 0;\n }\n .home-row .card h2 {\n margin: 0;\n }\n .home-row .card img {\n max-width: none;\n height: 70px;\n }\n}\n@media (max-width: 1300px) {\n .home-row .card img {\n height: 70px;\n max-width: none;\n }\n}\n.home-row .card img {\n margin: 16px;\n}\n.home-row .card .card-text-container {\n margin: 0 16px;\n}\n.home-row .card .card-text-container p {\n text-align: left;\n margin: 0;\n padding: 8px 0;\n}\n\n.button.hero-cta {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 184px;\n height: 40px;\n padding: 0 24px;\n font-size: 18px;\n font-weight: 600;\n line-height: 40px;\n border-radius: 48px;\n box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);\n box-sizing: border-box;\n cursor: pointer;\n}\n.button.hero-cta:hover {\n opacity: 0.9;\n}\n\naio-shell.page-resources section, aio-shell.page-events section, aio-shell.page-features section, aio-shell.page-contribute section {\n padding: 0rem 0rem 3rem;\n}\naio-shell.page-home section {\n padding: 0;\n}\naio-shell.page-home article, aio-shell.page-resources article, aio-shell.page-events article, aio-shell.page-contribute article {\n padding: 32px;\n}\n@media (max-width: 800px) {\n aio-shell.page-home article, aio-shell.page-resources article, aio-shell.page-events article, aio-shell.page-contribute article {\n padding: 24px;\n }\n}\naio-shell.page-features article {\n padding: 0 3rem;\n}\n@media (max-width: 1300px) {\n aio-shell.page-home .content img, aio-shell.page-resources .content img, aio-shell.page-events .content img, aio-shell.page-features .content img {\n max-width: none;\n }\n}\naio-shell.page-home .feature-section img, aio-shell.page-resources .feature-section img, aio-shell.page-events .feature-section img, aio-shell.page-features .feature-section img {\n max-width: 70px;\n}\n@media (max-width: 600px) {\n aio-shell.page-home mat-sidenav-container.sidenav-container, aio-shell.page-resources mat-sidenav-container.sidenav-container, aio-shell.page-events mat-sidenav-container.sidenav-container, aio-shell.page-features mat-sidenav-container.sidenav-container {\n padding-top: 0;\n }\n}\n\n.cta-bar.announcement-bar {\n background: none;\n box-shadow: none;\n}\n\n.text-headline {\n font-size: 20px;\n font-weight: 500;\n margin-top: 10px;\n text-transform: uppercase;\n}\n\naio-shell:not(.view-SideNav) mat-sidenav-container.sidenav-container {\n max-width: none;\n}\n\ndiv[layout=row] {\n display: flex;\n justify-content: center;\n align-items: center;\n box-sizing: border-box;\n}\n@media (max-width: 480px) {\n div[layout=row] {\n display: block;\n }\n}\n\n.layout-row {\n flex-direction: row;\n}\n\n.home-rows {\n overflow: hidden;\n}\n@media (max-width: 600px) {\n .home-rows {\n margin: 0;\n }\n}\n\n.background-superhero-paper {\n background-size: 100%;\n background-blend-mode: multiply;\n}\n\n.home-row {\n max-width: 920px;\n margin: 32px auto;\n}\n.home-row .promo-img-container, .home-row .text-container {\n max-width: 50%;\n}\n@media (max-width: 480px) {\n .home-row .promo-img-container, .home-row .text-container {\n max-width: 100%;\n text-align: center;\n }\n .home-row .promo-img-container:nth-child(even), .home-row .text-container:nth-child(even) {\n flex-direction: column-reverse;\n }\n}\n.home-row .text-block {\n padding-right: 15%;\n}\n@media (max-width: 600px) {\n .home-row .text-block {\n padding: 0;\n }\n}\n.home-row .promo-img-container img {\n max-width: 90% !important;\n}\n.home-row .promo-img-container p {\n margin: 0 20px;\n}\n.home-row .promo-img-container img {\n max-width: 90%;\n}\n@media (max-width: 599px) {\n .home-row .promo-img-container img {\n max-width: 100%;\n float: initial !important;\n }\n}\n\n.marketing-banner {\n margin-top: 64px;\n padding: 32px;\n}\n@media (max-width: 600px) {\n .marketing-banner {\n margin-top: 56px;\n padding: 18px;\n }\n}\n.marketing-banner .banner-headline {\n text-transform: uppercase;\n font-size: 24px;\n font-weight: 300;\n margin: 0;\n -webkit-margin-before: 0;\n -webkit-margin-after: 0;\n}\n@media (max-width: 600px) {\n .marketing-banner .banner-headline {\n font-size: 18px;\n font-weight: 400;\n }\n}\n.marketing-banner .banner-headline:after {\n display: none;\n}\n\n.page-features .marketing-banner {\n margin-bottom: 20px;\n}\n\naio-shell.page-home {\n line-height: initial;\n}\naio-shell.page-home aio-doc-viewer {\n display: block;\n width: 100vw;\n min-height: 100vh;\n background-color: #412945;\n color: white;\n}\naio-shell.page-home .mat-drawer-content {\n overflow-x: hidden;\n overflow-y: auto;\n}\naio-shell.page-home header {\n background-image: url(/assets/images/header.svg);\n background-size: cover;\n background-position: center center;\n height: 80vh;\n max-height: 800px;\n color: #4b334d;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n position: relative;\n margin-bottom: 60px;\n}\naio-shell.page-home header img {\n width: auto;\n height: 240px;\n max-height: 30vh;\n}\naio-shell.page-home div.title {\n font-size: 60px;\n margin-top: 20px;\n text-transform: uppercase;\n}\n@media only screen and (max-width: 320px) {\n aio-shell.page-home div.title {\n font-size: 55px;\n }\n}\naio-shell.page-home div.subtitle {\n font-size: 30px;\n margin-top: 20px;\n}\n@media only screen and (max-width: 320px) {\n aio-shell.page-home div.subtitle {\n font-size: 25px;\n }\n}\naio-shell.page-home header h2 {\n font-size: 20px;\n}\naio-shell.page-home header .cta {\n position: absolute;\n bottom: -22px;\n}\naio-shell.page-home button.cta,\naio-shell.page-home a.cta {\n font-size: 18px;\n padding: 6px 28px;\n color: white;\n text-transform: uppercase;\n position: relative;\n height: auto;\n}\naio-shell.page-home h2,\naio-shell.page-home p {\n font-family: \"Open Sans\", sans-serif;\n max-width: 100%;\n}\naio-shell.page-home h1,\naio-shell.page-home h3 {\n font-family: \"PT Sans\", sans-serif;\n text-transform: uppercase;\n}\naio-shell.page-home .ngrx-callout {\n width: 100%;\n max-width: 960px;\n margin: 0 auto;\n padding: 60px 0;\n display: grid;\n grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));\n grid-column-gap: 0 20px;\n justify-items: center;\n border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n}\naio-shell.page-home .ngrx-callout:last-of-type {\n border-bottom: none;\n}\naio-shell.page-home .ngrx-callout h3 {\n font-weight: bold;\n}\n@media only screen and (max-width: 600px) {\n aio-shell.page-home .ngrx-callout {\n display: flex;\n flex-direction: column;\n align-items: center;\n }\n}\naio-shell.page-home .ngrx-callout-description {\n flex-basis: 400px;\n flex-grow: 0;\n flex-shrink: 0;\n}\naio-shell.page-home .ngrx-callout-description h3 {\n margin-bottom: 8px;\n font-size: 20px;\n color: rgba(255, 255, 255, 0.82);\n}\naio-shell.page-home .ngrx-callout-description p {\n color: rgba(255, 255, 255, 0.82);\n}\n@media only screen and (max-width: 600px) {\n aio-shell.page-home .ngrx-callout-description {\n flex-basis: initial;\n }\n}\n@media screen and (min-width: 820px) {\n aio-shell.page-home .ngrx-callout:nth-of-type(2) .ngrx-callout-figure {\n grid-column: 1/2;\n grid-row: 1/2;\n justify-self: start;\n }\n aio-shell.page-home .ngrx-callout:nth-of-type(2) .ngrx-callout-description {\n grid-column: 2/3;\n grid-row: 1/2;\n }\n}\n@media screen and (max-width: 820px) {\n aio-shell.page-home .ngrx-callout-description {\n padding: 0 20px 30px;\n max-width: 480px;\n text-align: center;\n }\n}\naio-shell.page-home .sponsors {\n width: 100vw;\n background-color: white;\n padding: 50px 20px;\n text-align: center;\n}\naio-shell.page-home .sponsors h3 {\n color: #412945;\n font-size: 24px;\n margin-bottom: 24px;\n}\naio-shell.page-home .final-ngrx-callout {\n background-image: url(/assets/images/header.svg);\n background-size: cover;\n background-position: bottom center;\n height: 180px;\n color: #4b334d;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n padding: 0 20px;\n}\naio-shell.page-home .final-ngrx-callout h3 {\n font-size: 20px;\n}\naio-shell.page-home .final-ngrx-callout .content {\n max-width: 960px;\n width: 100%;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n}\naio-shell.page-home .final-ngrx-callout .cta {\n flex-shrink: 0;\n}\n\n#file-not-found {\n padding: 3rem 3rem 3rem;\n}\n\n.nf-container {\n align-items: center;\n padding: 32px;\n}\n\n.nf-response {\n margin: 32px;\n height: 100%;\n flex-direction: column;\n}\n.nf-response h1 {\n font-size: 48px;\n text-transform: uppercase;\n margin: 8px 0;\n}\n\n.nf-icon.material-icons {\n font-size: 100px;\n position: static;\n}\n\n.starting.mat-drawer-transition .mat-drawer-content {\n transition: none;\n}\n\naio-nav-menu {\n display: block;\n margin: 0 auto;\n max-width: 268px;\n font-size: 14px;\n line-height: 20px;\n}\naio-nav-menu ul, aio-nav-menu a {\n padding: 0;\n margin: 0;\n}\naio-nav-menu:first-child {\n margin-top: 16px;\n}\naio-nav-menu aio-nav-item div a {\n padding-left: 6px;\n}\n\nmat-sidenav.mat-sidenav.sidenav {\n position: fixed;\n top: 64px;\n bottom: 0;\n left: 0;\n padding: 0;\n min-width: 260px;\n box-shadow: 6px 0 6px rgba(0, 0, 0, 0.1);\n}\nmat-sidenav.mat-sidenav.sidenav.collapsed {\n top: 56px;\n}\n\nmat-sidenav-container.sidenav-container {\n min-height: 100%;\n height: auto !important;\n max-width: 100%;\n margin: 0;\n transform: none;\n}\nmat-sidenav-container.sidenav-container.has-floating-toc {\n max-width: 82%;\n}\n\nmat-sidenav-container div.mat-sidenav-content {\n height: auto;\n}\n\n.heading-container {\n display: flex;\n flex-direction: column;\n}\n\n.vertical-menu-item {\n box-sizing: border-box;\n cursor: pointer;\n flex: 1;\n display: flex;\n flex-wrap: nowrap;\n align-items: center;\n max-width: 260px;\n overflow-wrap: break-word;\n padding-top: 4px;\n padding-bottom: 4px;\n text-decoration: none;\n text-align: left;\n word-wrap: break-word;\n}\n.vertical-menu-item:focus {\n outline: #1E88E5 auto 2px;\n}\n.vertical-menu-item .node-title {\n flex: 1;\n}\n.vertical-menu-item .mat-icon {\n margin: 4px;\n}\n\n.vertical-menu-item.selected {\n font-weight: 500;\n}\n\nbutton.vertical-menu-item {\n border: none;\n background-color: transparent;\n margin-right: 0;\n}\n\n.heading {\n cursor: pointer;\n position: relative;\n}\n\n.heading-children.expanded {\n visibility: visible;\n opacity: 1;\n max-height: 4000px;\n transition: visibility 500ms, opacity 500ms, max-height 500ms;\n -webkit-transition-timing-function: ease-in-out;\n transition-timing-function: ease-in-out;\n}\n\n.heading-children.collapsed {\n visibility: hidden;\n opacity: 0;\n max-height: 1px;\n transition: visibility 275ms, opacity 275ms, max-height 280ms;\n -webkit-transition-timing-function: ease-out;\n transition-timing-function: ease-out;\n}\n\n.no-animations .heading-children.expanded, .no-animations .heading-children.collapsed {\n transition: none !important;\n}\n\n.level-1 {\n font-family: \"Roboto\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n font-size: 16px;\n line-height: 24px;\n font-weight: 400;\n margin-left: 14px;\n transition: background-color 0.2s;\n}\n\n.level-2 {\n font-family: \"Roboto\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n font-size: 16px;\n line-height: 24px;\n font-weight: 400;\n margin-left: 12px;\n text-transform: none;\n}\n\n.level-3 {\n font-family: \"Roboto\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n font-size: 16px;\n line-height: 24px;\n margin-left: 10px;\n}\n\n.level-4 {\n font-family: \"Roboto\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n font-size: 16px;\n line-height: 24px;\n margin-left: 8px;\n}\n\n.level-1.expanded .mat-icon, .level-2.expanded .mat-icon {\n -moz-transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n transition: transform 150ms;\n transition-timing-function: ease-in-out;\n}\n\n.level-1:not(.expanded) .mat-icon, .level-2:not(.expanded) .mat-icon {\n -moz-transform: rotate(0deg);\n -webkit-transform: rotate(0deg);\n -o-transform: rotate(0deg);\n -ms-transform: rotate(0deg);\n transform: rotate(0deg);\n transition: transform 150ms;\n transition-timing-function: ease-in-out;\n}\n\naio-nav-menu.top-menu {\n padding: 24px 0 0;\n}\naio-nav-menu.top-menu aio-nav-item:last-child div {\n border-bottom: 1px solid rgba(110, 110, 110, 0.5);\n}\naio-nav-menu.top-menu aio-nav-item:first-child div {\n border-top: 1px solid rgba(110, 110, 110, 0.5);\n}\n\nmat-sidenav .doc-version {\n padding: 8px;\n border-top: 1px solid #DBDBDB;\n}\nmat-sidenav .doc-version select {\n outline: none;\n width: 100%;\n height: 32px;\n border: 1px solid #DBDBDB;\n}\nmat-sidenav .doc-version select option {\n font-family: \"Roboto\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n font-size: 16px;\n line-height: 24px;\n}\n\nnav#main-table-of-contents {\n width: 200px;\n height: 900px;\n position: fixed;\n right: 0;\n top: 50px;\n bottom: 100px;\n margin-left: 32px;\n background-color: #412846;\n}\n\nmat-toolbar.mat-toolbar {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 10;\n}\nmat-toolbar.mat-toolbar mat-toolbar-row {\n padding: 0 16px 0 0;\n}\n\n@media (min-width: 481px) {\n aio-shell.page-home mat-toolbar.mat-toolbar:not(.transitioning) {\n background-color: transparent;\n transition: background-color 0.2s linear;\n }\n}\n\naio-shell.page-home mat-toolbar.mat-toolbar,\naio-shell.page-features mat-toolbar.mat-toolbar,\naio-shell.page-events mat-toolbar.mat-toolbar,\naio-shell.page-resources mat-toolbar.mat-toolbar {\n box-shadow: none;\n}\n@media (min-width: 481px) {\n aio-shell.page-home mat-toolbar.mat-toolbar,\n aio-shell.page-features mat-toolbar.mat-toolbar,\n aio-shell.page-events mat-toolbar.mat-toolbar,\n aio-shell.page-resources mat-toolbar.mat-toolbar {\n position: absolute;\n }\n}\n\n@media (min-width: 1366px) {\n aio-shell.folder-api mat-toolbar.mat-toolbar .hamburger.mat-mdc-button,\n aio-shell.folder-docs mat-toolbar.mat-toolbar .hamburger.mat-mdc-button,\n aio-shell.folder-guide mat-toolbar.mat-toolbar .hamburger.mat-mdc-button,\n aio-shell.folder-tutorial mat-toolbar.mat-toolbar .hamburger.mat-mdc-button {\n margin: 0 8px 0 0;\n }\n}\n\n.hamburger.mat-mdc-button {\n height: 100%;\n margin: 0 8px 0 0;\n padding: 0;\n}\n@media (min-width: 1366px) {\n .hamburger.mat-mdc-button {\n margin: 0 16px 0 -64px;\n }\n}\n@media (max-width: 480px) {\n .hamburger.mat-mdc-button {\n min-width: 15%;\n }\n}\n.hamburger.mat-mdc-button:not(.starting) {\n transition-duration: 0.4s;\n transition-property: color, margin;\n transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);\n}\n.hamburger.mat-mdc-button > .mat-icon {\n position: inherit;\n font-size: 24px;\n width: 24px;\n height: 24px;\n}\n\n.nav-link.home {\n cursor: pointer;\n margin: 0 16px 0 0;\n padding: 21px 0;\n}\n@media screen and (max-width: 480px) {\n .nav-link.home {\n margin-right: 8px;\n }\n}\n.nav-link.home img {\n position: relative;\n margin-top: -21px;\n top: 12px;\n height: 40px;\n}\n@media (max-width: 1366px) {\n .nav-link.home img:hover {\n transform: scale(1.1);\n }\n}\n\n.nav-link[href=workshops] {\n border-radius: 10px;\n position: relative;\n padding: 16px;\n}\n.nav-link[href=workshops]:focus {\n padding: 16px;\n}\n.nav-link[href=workshops]:after {\n content: \"New\";\n position: absolute;\n font-size: 12px;\n line-height: 14px;\n top: 4px;\n right: 10px;\n}\n\naio-top-menu {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: flex-end;\n width: 100%;\n}\naio-top-menu ul {\n display: flex;\n flex-direction: row;\n align-items: center;\n list-style-position: inside;\n padding: 0px;\n margin: 0px;\n}\naio-top-menu ul li {\n padding-bottom: 2px;\n list-style-type: none;\n cursor: pointer;\n}\naio-top-menu ul li:hover {\n opacity: 0.7;\n}\naio-top-menu ul li:focus {\n outline: none;\n}\naio-top-menu a.nav-link {\n margin: 0;\n padding: 24px 16px;\n cursor: pointer;\n}\naio-top-menu a.nav-link:focus {\n border-radius: 4px;\n outline: none;\n padding: 8px 16px;\n}\n\naio-search-box.search-container {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n width: 100%;\n min-width: 150px;\n height: 100%;\n}\naio-search-box.search-container input {\n border: none;\n border-radius: 100px;\n padding: 5px 16px;\n margin-left: 8px;\n width: 180px;\n max-width: 240px;\n height: 50%;\n -webkit-appearance: none;\n}\naio-search-box.search-container input:focus {\n outline: none;\n}\n@media (min-width: 1000px) {\n aio-search-box.search-container input {\n transition: width 0.4s ease-in-out;\n }\n aio-search-box.search-container input:focus {\n width: 500px;\n }\n}\n@media (max-width: 480px) {\n aio-search-box.search-container input {\n width: 150px;\n }\n}\n\n.app-toolbar .toolbar-external-icons-container {\n display: flex;\n flex-direction: row;\n height: 100%;\n}\n.app-toolbar .toolbar-external-icons-container a {\n display: flex;\n align-items: center;\n margin-left: 16px;\n}\n@media screen and (max-width: 480px) {\n .app-toolbar .toolbar-external-icons-container a {\n margin-left: 8px;\n }\n}\n.app-toolbar .toolbar-external-icons-container a:hover {\n opacity: 0.8;\n}\n.app-toolbar .toolbar-external-icons-container a img {\n height: 24px;\n}\n\n/* ==============================\n MODULE STYLES\n ============================== */\n.alert, .callout {\n padding: 16px;\n margin: 24px 0px;\n font-size: 16px;\n line-height: 24px;\n width: 100%;\n box-sizing: border-box;\n clear: both;\n}\n.alert h1, .callout h1, .alert h2, .callout h2, .alert h3, .callout h3, .alert h4, .callout h4, .alert h5, .callout h5, .alert h6, .callout h6 {\n font-weight: 500;\n}\n.alert > *, .callout > * {\n margin: 8px 16px;\n}\n\n.github-links {\n float: right;\n}\n.github-links .material-icons {\n border-radius: 4px;\n padding: 4px;\n font-size: 20px;\n line-height: 28px;\n}\n\n.api-header {\n display: flex;\n align-items: center;\n}\n@media screen and (max-width: 600px) {\n .api-header {\n flex-direction: column;\n align-items: flex-start;\n }\n}\n\n.api-body .class-overview {\n position: relative;\n}\n.api-body .class-overview code-example {\n clear: left;\n}\n.api-body .method-table .with-github-links, .api-body .option-table .with-github-links, .api-body .list-table .with-github-links {\n align-items: center;\n display: flex;\n justify-content: space-between;\n}\n.api-body .method-table .with-github-links .github-links a .material-icons:hover, .api-body .option-table .with-github-links .github-links a .material-icons:hover, .api-body .list-table .with-github-links .github-links a .material-icons:hover {\n background: none;\n}\n.api-body .method-table h3, .api-body .option-table h3, .api-body .list-table h3 {\n margin: 6px 0;\n font-weight: bold;\n clear: left;\n}\n.api-body .method-table h4, .api-body .option-table h4, .api-body .list-table h4 {\n font-size: 14px;\n line-height: 20px;\n font-weight: bold;\n margin-top: 12px;\n}\n.api-body .api-heading {\n padding: 5px 0;\n font-size: 16px;\n line-height: 24px;\n font-weight: bold;\n}\n.api-body .short-description {\n margin: 6px 0 0 10px;\n}\n.api-body .properties-table {\n font-size: 14px;\n line-height: 20px;\n}\n.api-body .properties-table thead th:nth-child(1) {\n width: 20%;\n}\n.api-body .properties-table thead th:nth-child(2) {\n width: 20%;\n}\n.api-body .parameters-table {\n margin-top: 0;\n font-size: 14px;\n line-height: 20px;\n}\n.api-body .parameters-table td:nth-child(1) {\n width: 20%;\n}\n.api-body details.overloads {\n margin-left: -8px;\n}\n.api-body details.overloads summary {\n height: inherit;\n padding: 8px 12px;\n}\n.api-body details.overloads summary h4 {\n margin: 0;\n clear: left;\n}\n.api-body .from-constructor, .api-body .read-only-property {\n font-style: italic;\n}\n\n.deprecated-api-item {\n text-decoration: line-through;\n}\n\n/* API EDIT ICON */\n#api .api-filter .material-icons {\n right: 48px;\n}\n\n/* API LIST STYLES */\naio-api-list div.form-search i.material-icons {\n width: 20px;\n pointer-events: none;\n}\naio-api-list .form-search input {\n width: 182px;\n}\naio-api-list .api-list-container {\n display: flex;\n flex-direction: column;\n margin: 0 auto;\n}\naio-api-list .api-list-container h2 {\n margin-top: 16px;\n}\n\n.api-filter {\n display: flex;\n margin: 0 auto;\n}\n@media (max-width: 600px) {\n .api-filter {\n flex-direction: column;\n margin: 16px auto;\n }\n}\n.api-filter .form-select-menu, .api-filter .form-search {\n margin: 8px;\n}\n\n/* LAYOUT */\n.docs-content {\n position: relative;\n}\n\n.l-content-small {\n padding: 16px;\n max-width: 1100px;\n margin: 0;\n}\n@media handheld and (max-width: 480px), screen and (max-device-width: 480px), screen and (max-width: 800px) {\n .l-content-small {\n padding: 24px 0 0;\n }\n}\n\n/* SEARCH BAR */\n.form-search {\n position: relative;\n}\n.form-search input {\n font-size: 16px;\n line-height: 24px;\n height: 32px;\n line-height: 32px;\n outline: none;\n padding: 0 16px 0 32px;\n transition: all 0.2s;\n}\n.form-search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */\n font-size: 14px;\n line-height: 20px;\n}\n.form-search input::-moz-placeholder { /* Firefox 19+ */\n font-size: 14px;\n line-height: 20px;\n}\n.form-search input:-ms-input-placeholder { /* IE 10+ */\n font-size: 14px;\n line-height: 20px;\n}\n.form-search input:-moz-placeholder { /* Firefox 18- */\n font-size: 14px;\n line-height: 20px;\n}\n.form-search .material-icons {\n font-size: 20px;\n line-height: 28px;\n line-height: 32px;\n height: 100%;\n left: 8px;\n position: absolute;\n z-index: 1;\n}\n\n/* API SYMBOLS */\n/* SYMBOL CLASS */\n.symbol {\n border-radius: 2px;\n display: inline-block;\n font-size: 10px;\n font-weight: 600;\n line-height: 16px;\n text-align: center;\n width: 16px;\n}\n.symbol.all:before {\n content: \" \";\n}\n.symbol.decorator:before {\n content: \"@\";\n}\n.symbol.directive:before {\n content: \"D\";\n}\n.symbol.pipe:before {\n content: \"P\";\n}\n.symbol.class:before {\n content: \"C\";\n}\n.symbol.interface:before {\n content: \"I\";\n}\n.symbol.function:before {\n content: \"F\";\n}\n.symbol.enum:before {\n content: \"E\";\n}\n.symbol.const:before {\n content: \"K\";\n}\n.symbol.let:before {\n content: \"K\";\n}\n.symbol.var:before {\n content: \"K\";\n}\n.symbol.ngmodule:before {\n content: \"M\";\n}\n.symbol.type-alias:before {\n content: \"T\";\n}\n.symbol.package:before {\n content: \"Pk\";\n}\n\n/* API HOMEE PAGE */\n/* API FILTER MENU */\n.api-filter aio-select {\n width: 200px;\n}\n.api-filter aio-select .symbol {\n margin-right: 8px;\n}\n\n/* API CLASS LIST */\n.docs-content .api-list {\n list-style: none;\n margin: 0 0 32px -8px;\n padding: 0;\n overflow: hidden;\n}\n@media screen and (max-width: 600px) {\n .docs-content .api-list {\n margin: 0 0 0 -8px;\n }\n}\n.docs-content .api-list li {\n font-size: 14px;\n margin: 8px 0;\n line-height: 14px;\n padding: 0;\n float: left;\n width: 33%;\n overflow: hidden;\n min-width: 220px;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.docs-content .api-list li .symbol {\n margin-right: 8px;\n}\n.docs-content .api-list li a {\n display: inline-block;\n line-height: 16px;\n padding: 0 16px 0;\n text-decoration: none;\n transition: all 0.3s;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.docs-content .h2-api-docs,\n.docs-content .h2-api-docs:first-of-type {\n font-size: 18px;\n line-height: 24px;\n margin-top: 0;\n}\n\n.openParens {\n margin-top: 15px;\n}\n\n.endParens {\n margin-bottom: 20px !important;\n}\n\np.selector {\n margin: 0;\n}\np.location-badge {\n margin: 0 0 16px 16px !important;\n}\np .api-doc-code {\n border-bottom: 0;\n}\np .api-doc-code :hover {\n border-bottom: none;\n}\n\n.row-margin {\n margin-bottom: 36px;\n}\n.row-margin h2 {\n line-height: 28px;\n}\n\n.code-margin {\n margin-bottom: 8px;\n}\n\n.no-bg {\n background: none;\n padding: 0;\n}\n\n.no-bg-with-indent {\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 16px;\n margin-top: 6px;\n margin-bottom: 0;\n background: none;\n}\n\n.code-background {\n padding: 0 5px 0;\n}\n\n.code-anchor {\n cursor: pointer;\n font-size: inherit;\n}\n.code-anchor:hover {\n text-decoration: underline;\n}\n\n.api-doc-code {\n font-size: 16px;\n line-height: 24px;\n}\n.api-doc-code.no-pln .pln:last-child {\n display: none;\n}\n\n@media screen and (max-width: 600px) {\n .docs-content .layout-xs-column {\n display: block !important;\n }\n .api-doc-code {\n font-size: 12px;\n }\n p.location-badge {\n position: relative;\n font-size: 11px;\n }\n}\n/* Button Styles */\n.button,\na.button.mat-button {\n display: inline-block;\n line-height: 32px;\n padding: 0px 16px;\n font-size: 16px;\n line-height: 24px;\n font-weight: 400;\n border-radius: 3px;\n text-decoration: none;\n text-transform: uppercase;\n overflow: hidden;\n border: none;\n}\n.button.button-small,\na.button.mat-button.button-small {\n font-size: 14px;\n line-height: 20px;\n line-height: 24px;\n padding: 0px 8px;\n}\n.button.button-large,\na.button.mat-button.button-large {\n font-size: 16px;\n line-height: 24px;\n line-height: 48px;\n padding: 0px 24px;\n}\n.button.button-x-large,\na.button.mat-button.button-x-large {\n font-size: 20px;\n line-height: 28px;\n line-height: 56px;\n padding: 0px 24px;\n}\n.button.button-shield, .button.button-shield.mat-button,\na.button.mat-button.button-shield,\na.button.mat-button.button-shield.mat-button {\n color: rgba(255, 255, 255, 0.87);\n padding-left: 54px;\n background-size: 22px 22px;\n}\n\n.cta-bar {\n text-align: center;\n}\n.cta-bar .button {\n margin: 0px 8px;\n box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);\n transition: all 0.2s ease-in-out;\n}\n.cta-bar .button:hover {\n transform: scale(1.1);\n}\n\na.filter-button {\n width: 140px;\n font-size: 16px;\n line-height: 24px;\n line-height: 48px;\n padding: 0px 16px;\n margin: 8px;\n border-radius: 4px;\n}\n\n[mat-button], [mat-raised-button], [mat-button], [mat-raised-button] {\n text-transform: uppercase;\n}\n\n/* ==============================\n MODULE STYLES\n ============================== */\n.callout {\n padding: 0px;\n border-left: none !important;\n border-radius: 4px;\n}\n.callout header {\n line-height: 24px;\n font-weight: 500;\n padding: 8px 16px;\n margin: 0;\n text-transform: uppercase;\n border-radius: 4px 4px 0 0;\n}\n.callout p {\n padding: 16px;\n margin: 0px;\n font-size: 16px;\n line-height: 24px;\n}\n\n.card-container {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n margin: 24px 0;\n}\n\n.docs-card {\n height: 194px;\n width: 30%;\n border-radius: 4px;\n box-shadow: 0 2px 2px rgba(10, 16, 20, 0.24), 0 0 2px rgba(10, 16, 20, 0.12);\n box-sizing: border-box;\n transition: box-shadow 0.5s;\n max-width: 340px;\n min-width: 262px;\n margin: 24px 8px;\n padding-bottom: 48px;\n position: relative;\n}\n.docs-card:hover {\n box-shadow: 0 8px 8px rgba(10, 16, 20, 0.24), 0 0 8px rgba(10, 16, 20, 0.12);\n text-decoration: none;\n}\n.docs-card:hover {\n text-decoration: none;\n}\n.docs-card:hover p {\n padding: 0 16px;\n}\n.docs-card:hover .card-footer {\n line-height: 32px;\n padding: 8px 16px;\n}\n.docs-card section {\n font-size: 20px;\n line-height: 28px;\n margin: 0;\n padding: 32px 0 24px;\n text-transform: none;\n text-align: center;\n}\n.docs-card p {\n font-size: 14px;\n line-height: 20px;\n padding: 0 16px;\n margin: 0;\n text-align: center;\n}\n.docs-card .card-footer {\n bottom: 0;\n box-sizing: border-box;\n line-height: 48px;\n left: 0;\n position: absolute;\n right: 0;\n text-align: right;\n}\n.docs-card .card-footer a {\n font-size: 14px;\n line-height: 20px;\n}\n.docs-card .card-footer.center {\n text-align: center;\n}\n\n.card-section {\n height: auto;\n width: 90%;\n border-radius: 4px;\n box-shadow: 0 2px 2px rgba(10, 16, 20, 0.24), 0 0 2px rgba(10, 16, 20, 0.12);\n box-sizing: border-box;\n transition: box-shadow 0.5s;\n padding: 16px 32px;\n margin: 16px 0;\n display: flex;\n flex-direction: row;\n align-items: center;\n}\n.card-section:hover {\n box-shadow: 0 8px 8px rgba(10, 16, 20, 0.24), 0 0 8px rgba(10, 16, 20, 0.12);\n text-decoration: none;\n}\n.card-section h1, .card-section h2, .card-section h3, .card-section h4, .card-section h5, .card-section h6 {\n margin: 8px 0;\n}\n.card-section a, .card-section .button, .card-section button {\n text-align: center;\n}\n\ncode-example,\ncode-tabs {\n clear: both;\n display: block;\n}\n\ncode-example:not(.no-box) {\n border-radius: 5px;\n margin: 16px auto;\n}\ncode-example.no-box pre {\n margin: 0;\n}\ncode-example.no-box code {\n background-color: transparent;\n}\ncode-example code {\n overflow: auto;\n}\n\ncode-example .mat-card,\ncode-tabs .mat-card {\n padding: 0;\n border-radius: 5px;\n}\ncode-example code,\ncode-tabs code {\n overflow: auto;\n}\n\ncode-example header {\n border-radius: 5px 5px 0 0;\n font-size: 16px;\n line-height: 24px;\n padding: 8px 16px;\n}\n\ncode-tabs div .mat-tab-body-content {\n height: auto;\n}\n\ncode-tabs .mat-tab-body-wrapper mat-tab-body .mat-tab-body {\n overflow-y: hidden;\n}\n\ncode-tabs mat-tab-body-content .fadeIn {\n animation: opacity 2s ease-in;\n}\n\naio-code pre {\n display: flex;\n min-height: 32px;\n margin: 16px 24px;\n white-space: pre-wrap;\n align-items: center;\n}\naio-code pre code span {\n line-height: 24px;\n}\n\n.copy-button {\n position: absolute;\n top: -7px;\n right: -19px;\n padding: 0;\n background-color: transparent;\n border: none;\n cursor: pointer;\n}\n\n.code-tab-group .mat-tab-label {\n white-space: nowrap;\n}\n\n.code-tab-group .mat-tab-body-content {\n height: auto;\n transform: none;\n}\n\n[role=tabpanel] {\n transition: none;\n}\n\n.sidenav-content code a {\n color: inherit;\n font-size: inherit;\n}\n\n/* PRETTY PRINTING STYLES for prettify.js. */\n.prettyprint {\n position: relative;\n}\n\n/* Specify class=linenums on a pre to get line numbering */\nol.linenums {\n margin: 0;\n font-family: \"Roboto\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n}\nol.linenums li {\n margin: 0;\n font-family: \"Droid Sans Mono\", monospace;\n font-size: 90%;\n line-height: 24px;\n}\n\n.contribute-container h2 {\n margin: 0;\n}\n.contribute-container .card-section {\n justify-content: space-between;\n max-width: 880px;\n}\n.contribute-container .card-section > :first-child {\n margin-right: 2rem;\n width: 60%;\n}\n.contribute-container .card-section:last-child {\n margin-bottom: 0;\n}\n\n@media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 900px) {\n aio-contributor-list .grid-fluid {\n width: auto;\n }\n}\n@media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 900px) {\n aio-contributor-list .grid-fluid {\n margin-left: 20px;\n margin-right: 20px;\n float: none;\n display: block;\n width: auto;\n }\n}\n\n.group-buttons {\n margin: 32px auto;\n}\n\n.contributor-group {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n justify-content: center;\n}\n\naio-contributor, ngrx-contributor {\n margin: 8px;\n position: relative;\n border-radius: 4px;\n transition: all 0.3s;\n perspective: 800px;\n max-width: 270px;\n}\naio-contributor.clickable, ngrx-contributor.clickable {\n cursor: pointer;\n}\naio-contributor:hover, ngrx-contributor:hover {\n transform: translate3d(0, -3px, 0);\n}\naio-contributor:hover .contributor-image, ngrx-contributor:hover .contributor-image {\n transform: scale(1.05);\n}\naio-contributor:hover .contributor-info, ngrx-contributor:hover .contributor-info {\n opacity: 1;\n}\naio-contributor .contributor-info, ngrx-contributor .contributor-info {\n height: 168px;\n width: 168px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n text-align: center;\n opacity: 0;\n border-radius: 50%;\n}\naio-contributor .contributor-info [mat-button], ngrx-contributor .contributor-info [mat-button] {\n font-size: 14px;\n font-weight: 500;\n margin: 8px;\n padding: 0;\n}\naio-contributor .contributor-info [mat-button].icon, ngrx-contributor .contributor-info [mat-button].icon {\n min-width: 20px;\n width: 20px;\n}\naio-contributor .contributor-info [mat-button].icon .fa-2x, ngrx-contributor .contributor-info [mat-button].icon .fa-2x {\n font-size: 20px;\n}\naio-contributor div.contributor-card, ngrx-contributor div.contributor-card {\n width: 250px;\n height: 270px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: space-between;\n position: relative;\n overflow: hidden;\n border-radius: 4px;\n transform-style: preserve-3d;\n transition: transform ease 500ms;\n}\naio-contributor div.contributor-card h3, ngrx-contributor div.contributor-card h3 {\n margin: 8px 0;\n}\naio-contributor div.contributor-card .card-front, aio-contributor div.contributor-card .card-back, ngrx-contributor div.contributor-card .card-front, ngrx-contributor div.contributor-card .card-back {\n width: 100%;\n height: 100%;\n text-align: center;\n display: flex;\n flex-direction: column;\n box-sizing: border-box;\n}\naio-contributor div.contributor-card .card-front, ngrx-contributor div.contributor-card .card-front {\n justify-content: center;\n}\naio-contributor div.contributor-card .card-back, ngrx-contributor div.contributor-card .card-back {\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: center;\n padding: 16px 24px;\n transform: rotateY(180deg);\n}\naio-contributor div.contributor-card .card-back section, ngrx-contributor div.contributor-card .card-back section {\n display: none;\n}\naio-contributor div.contributor-card .card-back p, ngrx-contributor div.contributor-card .card-back p {\n margin: 8px 0;\n font-size: 12px;\n line-height: 14px;\n text-align: left;\n overflow: hidden;\n}\naio-contributor div.contributor-card.flipped, ngrx-contributor div.contributor-card.flipped {\n transform: rotateY(180deg);\n}\naio-contributor div.contributor-card.flipped .card-front, ngrx-contributor div.contributor-card.flipped .card-front {\n display: none;\n}\naio-contributor .contributor-image, ngrx-contributor .contributor-image {\n display: flex;\n justify-content: center;\n border-radius: 50%;\n align-items: center;\n height: 168px;\n width: 168px;\n background-size: cover;\n background-position: center;\n margin: 8px auto;\n transition: all 0.2s ease-in-out;\n}\naio-contributor section, ngrx-contributor section {\n font-size: 14px;\n font-weight: 500;\n padding: 8px;\n margin: 0;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n text-transform: uppercase;\n}\naio-contributor p, ngrx-contributor p {\n cursor: pointer;\n font-size: 14px;\n line-height: 18px;\n margin: 8px 16px;\n text-overflow: ellipsis;\n overflow: scroll;\n font-weight: 400;\n}\n\n/*\n * General styling to make detail/summary tags look a bit more material\n * To get the best out of it you should structure your usage like this:\n *\n * ```\n * <details>\n * <summary>Some title</summary>\n * <div class=\"details-content\">\n * Some content\n * </div>\n * </details>\n *\n */\nsummary {\n cursor: pointer;\n font-size: 16px;\n line-height: 24px;\n position: relative;\n padding: 16px 24px;\n display: block;\n}\nsummary::-webkit-details-marker {\n display: none;\n}\nsummary::before {\n content: \"\\e5ce\";\n font-family: \"Material Icons\";\n font-size: 24px;\n line-height: 30px;\n -webkit-font-smoothing: antialiased;\n -moz-transform: rotate(0deg);\n -webkit-transform: rotate(0deg);\n -o-transform: rotate(0deg);\n -ms-transform: rotate(0deg);\n transform: rotate(0deg);\n transition: transform 150ms;\n transition-timing-function: ease-in-out;\n float: right;\n}\n\ndetails .detail-contents, details p {\n padding: 0px 24px 16px 24px;\n}\ndetails code-example {\n padding: 0;\n}\ndetails[open] > summary::before {\n -moz-transform: rotate(180deg);\n -webkit-transform: rotate(180deg);\n -o-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n transition: transform 150ms;\n transition-timing-function: ease-in-out;\n}\n\n.edit-page-cta {\n font-weight: 400;\n font-size: 16px;\n line-height: 24px;\n text-align: right;\n margin-right: 32px;\n display: block;\n position: absolute;\n right: 0;\n}\n\n.feature-section {\n margin: 0 0 32px;\n}\n.feature-section .feature-header, .feature-section .text-headline {\n text-align: center;\n}\n.feature-section .feature-header img {\n margin: 16px;\n}\n.feature-section .feature-title {\n font-size: 16px;\n line-height: 24px;\n font-weight: 500;\n margin: 8px 0px;\n clear: both;\n}\n.feature-section .feature-row {\n display: flex;\n flex-wrap: wrap;\n}\n@media (max-width: 600px) {\n .feature-section .feature-row {\n flex-direction: column;\n }\n}\n.feature-section .feature-row .feature {\n max-width: 300px;\n margin: 0 16px;\n}\n@media (max-width: 768px) {\n .feature-section .feature-row .feature {\n max-width: 100%;\n }\n}\n\n.filetree {\n border-radius: 4px;\n margin: 0 0 24px 0;\n padding: 16px 32px;\n}\n.filetree .file {\n display: block;\n font-family: \"Roboto\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n letter-spacing: 0.3px;\n line-height: 32px;\n}\n.filetree .children {\n padding-left: 24px;\n position: relative;\n overflow: hidden;\n}\n.filetree .children .file {\n position: relative;\n}\n.filetree .children .file:before {\n content: \"\";\n left: -18px;\n bottom: 16px;\n width: 16px;\n height: 9999px;\n position: absolute;\n border-width: 0 0 1px 1px;\n border-style: solid;\n border-radius: 0 0 0 3px;\n}\n\n.sidenav-content h1 .header-link, .sidenav-content h2 .header-link, .sidenav-content h3 .header-link, .sidenav-content h4 .header-link, .sidenav-content h5 .header-link, .sidenav-content h6 .header-link {\n margin: 0 4px;\n text-decoration: none;\n user-select: none;\n visibility: hidden;\n display: inline-block;\n vertical-align: text-top;\n width: 1px;\n}\n.sidenav-content h1:hover .header-link, .sidenav-content h2:hover .header-link, .sidenav-content h3:hover .header-link, .sidenav-content h4:hover .header-link, .sidenav-content h5:hover .header-link, .sidenav-content h6:hover .header-link {\n visibility: visible;\n}\n\nhr {\n border: none;\n height: 1px;\n}\n\n.hr-margin {\n display: block;\n height: 1px;\n border: 0;\n margin-top: 16px;\n margin-bottom: 16px;\n padding: 0;\n}\n\n.content img.right {\n clear: both;\n float: right;\n margin-left: 20px;\n margin-bottom: 20px;\n}\n.content img.left {\n clear: both;\n float: left;\n margin-right: 20px;\n margin-bottom: 20px;\n}\n@media (max-width: 1300px) {\n .content img {\n max-width: 100%;\n height: auto;\n }\n}\n@media (max-width: 600px) {\n .content img {\n float: none !important;\n }\n .content img.right {\n margin-left: 0;\n }\n .content img.left {\n margin-right: 0;\n }\n}\n.content figure {\n border-radius: 4px;\n padding: 20px;\n display: inline-block;\n margin: 0 0 14px 0;\n}\n.content figure img {\n border-radius: 4px;\n}\n\n.progress-bar-container {\n height: 2px;\n overflow: hidden;\n position: fixed;\n top: 0;\n width: 100vw;\n z-index: 11;\n}\n\ntable {\n margin: 24px 0px;\n border-radius: 2px;\n}\ntable.is-full-width {\n width: 100%;\n}\ntable.is-fixed-layout {\n table-layout: fixed;\n}\ntable thead > tr {\n vertical-align: inherit;\n border-color: inherit;\n}\ntable thead > tr > th {\n font-size: 14px;\n line-height: 20px;\n line-height: 28px;\n font-weight: 500;\n padding: 8px 24px;\n text-align: left;\n text-transform: uppercase;\n}\ntable tbody > tr > th,\ntable tbody > tr > td {\n padding: 16px;\n text-align: left;\n line-height: 24px;\n vertical-align: top;\n}\n@media (max-width: 480px) {\n table tbody > tr > th:before,\n table tbody > tr > td:before {\n display: inline-block;\n }\n}\ntable tbody > tr > td {\n letter-spacing: 0.3px;\n}\ntable tbody > tr > th {\n font-weight: 600;\n max-width: 100px;\n}\ntable tbody > tr:last-child td {\n border: none;\n}\n\n#cheatsheet table tbody td {\n overflow: auto;\n}\n@media only screen and (max-width: 990px) {\n #cheatsheet {\n /* Force table to not be like tables anymore */\n }\n #cheatsheet table,\n #cheatsheet thead,\n #cheatsheet tbody,\n #cheatsheet tfoot,\n #cheatsheet tr,\n #cheatsheet th,\n #cheatsheet td {\n display: block;\n position: relative;\n max-width: 100%;\n }\n #cheatsheet table code,\n #cheatsheet thead code,\n #cheatsheet tbody code,\n #cheatsheet tfoot code,\n #cheatsheet tr code,\n #cheatsheet th code,\n #cheatsheet td code {\n padding: 0;\n background-color: inherit;\n }\n #cheatsheet th {\n border-right: none;\n }\n #cheatsheet th:not(:last-child),\n #cheatsheet td:not(:last-child) {\n border-bottom: none;\n padding-bottom: 0px;\n }\n}\n\n.presskit-container {\n padding: 0 32px 32px 32px;\n}\n.presskit-container .l-space-left-3 {\n margin-left: 24px;\n}\n.presskit-container .cc-by-anchor {\n text-decoration: underline;\n}\n.presskit-container .presskit-row {\n margin: 48px 0;\n width: 100%;\n}\n.presskit-container .presskit-row .presskit-inner {\n display: flex;\n align-items: center;\n}\n@media (max-width: 599px) {\n .presskit-container .presskit-row .presskit-inner {\n flex-direction: column;\n }\n}\n.presskit-container .presskit-row .presskit-inner h3 {\n font-weight: 500;\n margin-top: 0;\n margin-bottom: 0;\n}\n@media (max-width: 599px) {\n .presskit-container .presskit-row .presskit-inner h3 {\n padding-bottom: 16px;\n }\n}\n.presskit-container .presskit-row .presskit-inner .transparent-img-bg {\n margin-top: 10px;\n border-radius: 4px;\n width: 128px;\n height: 128px;\n}\n.presskit-container .presskit-row .presskit-inner ul {\n padding: 0;\n list-style-type: none;\n}\n@media (max-width: 599px) {\n .presskit-container .presskit-row .presskit-inner ul {\n padding: 0 !important;\n margin: 0 !important;\n }\n}\n.presskit-container .presskit-row .presskit-inner ul li {\n margin: 0 0 8px 0;\n}\n@media (max-width: 599px) {\n .presskit-container .presskit-row .presskit-image-container {\n text-align: center;\n }\n}\n.presskit-container .presskit-row .presskit-image-container img {\n height: 128px;\n width: auto;\n margin-bottom: 16px;\n}\n.presskit-container .presskit-row:first-child {\n margin-top: 0;\n}\n@media (max-width: 599px) {\n .presskit-container .presskit-row:first-child {\n margin-top: 48px;\n }\n}\n\n.showcase {\n width: 80%;\n}\n\n.c-resource-nav {\n width: 20%;\n}\n\n.resources-container {\n position: relative;\n}\n\n.grid-fixed:after, .grid-fixed:before {\n content: \".\";\n clear: both;\n display: block;\n overflow: hidden;\n visibility: hidden;\n font-size: 0;\n line-height: 0;\n width: 0;\n height: 0;\n}\n\n@media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 900px) {\n .grid-fixed {\n width: auto;\n }\n}\n@media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 900px) {\n .grid-fixed .c3, .grid-fixed .c8 {\n margin-left: 20px;\n margin-right: 20px;\n float: none;\n display: block;\n width: auto;\n }\n}\n@media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 480px) {\n .grid-fixed .c3, .grid-fixed .c8 {\n margin-left: 0px;\n margin-right: 0px;\n float: none;\n display: block;\n width: auto;\n }\n}\n@media handheld and (max-width: 900px), screen and (max-width: 900px) {\n /* line 6, ../scss/_responsive.scss */\n .grid-fixed {\n margin: 0 auto;\n *zoom: 1;\n }\n .grid-fixed:after, .grid-fixed:before {\n content: \".\";\n clear: both;\n display: block;\n overflow: hidden;\n visibility: hidden;\n font-size: 0;\n line-height: 0;\n width: 0;\n height: 0;\n }\n}\n@media handheld and (max-width: 480px), screen and (max-width: 480px) {\n /* line 6, ../scss/_responsive.scss */\n .grid-fixed {\n margin: 0 auto;\n *zoom: 1;\n }\n .grid-fixed:after, .grid-fixed:before {\n content: \".\";\n clear: both;\n display: block;\n overflow: hidden;\n visibility: hidden;\n font-size: 0;\n line-height: 0;\n width: 0;\n height: 0;\n }\n}\naio-resource-list .shadow-1 {\n transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);\n}\naio-resource-list .showcase {\n margin-bottom: 48px;\n border-radius: 4px;\n}\naio-resource-list .c-resource h4 {\n margin: 0;\n line-height: 24px;\n}\naio-resource-list .c-resource p {\n margin: 0;\n}\naio-resource-list .c-resource-nav {\n position: fixed;\n top: 142px;\n right: 32px;\n width: 160px;\n z-index: 1;\n border-radius: 2px;\n}\naio-resource-list .c-resource-nav a {\n text-decoration: none;\n}\naio-resource-list .c-resource-nav .category {\n padding: 10px 0;\n}\naio-resource-list .c-resource-nav .category .category-link {\n display: block;\n margin: 2px 0;\n padding: 3px 14px;\n font-size: 18px !important;\n}\naio-resource-list .c-resource-nav .subcategory .subcategory-link {\n display: block;\n margin: 2px 0;\n padding: 4px 14px;\n}\naio-resource-list .h-anchor-offset {\n display: block;\n position: relative;\n top: -20px;\n visibility: hidden;\n}\naio-resource-list .l-flex--column {\n display: flex;\n flex-direction: column;\n}\naio-resource-list .c-resource-header {\n margin-bottom: 16px;\n}\naio-resource-list .c-contribute {\n margin-bottom: 24px;\n}\naio-resource-list .c-resource-header h2 {\n margin: 0;\n}\naio-resource-list .subcategory-title {\n padding: 16px 23px;\n margin: 0;\n}\naio-resource-list .h-capitalize {\n text-transform: capitalize;\n}\naio-resource-list .h-hide {\n display: none;\n}\naio-resource-list .resource-row-link {\n border: transparent solid 1px;\n margin: 0;\n padding: 16px 23px 16px 23px;\n position: relative;\n text-decoration: none;\n transition: all 0.3s;\n}\naio-resource-list .resource-row-link:hover {\n text-decoration: none;\n border-radius: 4px;\n transform: translateY(-2px);\n}\n@media (max-width: 900px) {\n aio-resource-list .c-resource-nav {\n display: none;\n }\n}\n\naio-search-results {\n z-index: 10;\n}\n\n.search-results {\n display: flex;\n flex-direction: row;\n justify-content: space-around;\n overflow: auto;\n padding: 68px 32px 0;\n width: auto;\n max-height: 95vh;\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n z-index: 5;\n box-sizing: border-box;\n}\n@media (max-width: 480px) {\n .search-results {\n display: block;\n }\n .search-results .search-area {\n display: block;\n margin: 16px 16px;\n }\n}\n\naio-search-results.embedded .search-results {\n padding: 0;\n color: inherit;\n width: auto;\n max-height: 100%;\n position: relative;\n background-color: inherit;\n box-shadow: none;\n box-sizing: border-box;\n}\n\n.search-area {\n display: flex;\n flex-direction: column;\n margin: 16px 16px;\n height: 100%;\n}\n.search-area h3 {\n font-size: 20px;\n line-height: 28px;\n font-weight: 400;\n margin: 10px 0px 5px;\n text-transform: uppercase;\n}\n.search-area ul {\n margin: 0;\n padding: 0;\n}\n.search-area ul li {\n list-style: none;\n}\n.search-area a {\n font-size: 16px;\n line-height: 24px;\n text-decoration: none;\n font-weight: normal;\n}\n.search-area a:visited {\n text-decoration: none;\n}\n.search-area a span.symbol {\n margin-right: 8px;\n}\n.search-area .priority-pages {\n padding: 0.5rem 0;\n}\n.search-area .priority-pages a {\n font-weight: bold;\n}\n@media (min-width: 600px) {\n .search-area {\n display: block;\n }\n}\n\n.toc-container {\n width: 18%;\n position: fixed;\n top: 76px;\n right: 0;\n bottom: 12px;\n overflow-y: auto;\n overflow-x: hidden;\n}\n\n@media (min-width: 801px) {\n aio-toc.embedded {\n display: none;\n }\n}\naio-toc.embedded .toc-inner {\n padding: 12px 0 0 0;\n}\naio-toc.embedded .toc-inner .toc-heading {\n margin: 0 0 8px;\n}\n\n.toc-inner {\n font-size: 13px;\n overflow-y: visible;\n padding: 4px 0 0 10px;\n}\n.toc-inner .toc-heading,\n.toc-inner .toc-list .h1 {\n font-size: 115%;\n}\n.toc-inner .toc-heading {\n font-weight: 500;\n margin: 0 0 16px 8px;\n padding: 0;\n}\n.toc-inner .toc-heading.secondary {\n position: relative;\n top: -8px;\n}\n.toc-inner button.toc-heading,\n.toc-inner button.toc-more-items {\n cursor: pointer;\n display: inline-block;\n background: 0;\n background-color: transparent;\n border: none;\n box-shadow: none;\n padding: 0;\n text-align: start;\n}\n.toc-inner button.toc-heading.embedded:focus,\n.toc-inner button.toc-more-items.embedded:focus {\n outline: none;\n}\n.toc-inner button.toc-heading mat-icon.rotating-icon {\n height: 18px;\n width: 18px;\n position: relative;\n left: -4px;\n top: 5px;\n}\n.toc-inner button.toc-more-items {\n top: 10px;\n position: relative;\n}\n.toc-inner button.toc-more-items::after {\n content: \"expand_less\";\n}\n.toc-inner button.toc-more-items.collapsed::after {\n content: \"more_horiz\";\n}\n.toc-inner .mat-icon.collapsed {\n -moz-transform: rotate(0deg);\n -webkit-transform: rotate(0deg);\n -o-transform: rotate(0deg);\n -ms-transform: rotate(0deg);\n transform: rotate(0deg);\n transition: transform 150ms;\n transition-timing-function: ease-in-out;\n}\n.toc-inner .mat-icon:not(.collapsed) {\n -moz-transform: rotate(90deg);\n -webkit-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n transition: transform 150ms;\n transition-timing-function: ease-in-out;\n}\n.toc-inner ul.toc-list {\n list-style-type: none;\n margin: 0;\n padding: 0 8px 0 0;\n}\n@media (max-width: 800px) {\n .toc-inner ul.toc-list {\n width: auto;\n }\n}\n.toc-inner ul.toc-list li {\n box-sizing: border-box;\n font-size: 12px;\n line-height: 16px;\n padding: 3px 0 3px 12px;\n position: relative;\n transition: all 0.3s ease-in-out;\n}\n.toc-inner ul.toc-list li.h1:after {\n content: \"\";\n display: block;\n height: 1px;\n width: 40%;\n margin: 7px 0 4px 0;\n clear: both;\n}\n.toc-inner ul.toc-list li.h3 {\n padding-left: 24px;\n}\n.toc-inner ul.toc-list li a {\n font-size: inherit;\n display: table-cell;\n overflow: visible;\n font-size: 12px;\n display: table-cell;\n}\n.toc-inner ul.toc-list li.active a {\n font-weight: 500;\n}\n.toc-inner ul.toc-list li.active a:before {\n content: \"\";\n border-radius: 50%;\n left: -3px;\n top: 12px;\n position: absolute;\n width: 6px;\n height: 6px;\n}\n.toc-inner ul.toc-list:not(.embedded) li:before {\n bottom: 0;\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n}\n.toc-inner ul.toc-list:not(.embedded) li:first-child:before {\n top: 13px;\n}\n.toc-inner ul.toc-list:not(.embedded) li:last-child:before {\n bottom: calc(100% - 14px);\n}\n.toc-inner ul.toc-list:not(.embedded) li:not(.active):hover a:before {\n content: \"\";\n border-radius: 50%;\n left: -3px;\n top: 12px;\n position: absolute;\n width: 6px;\n height: 6px;\n}\n\naio-toc.embedded > div.collapsed li.secondary {\n display: none;\n}\n\n/* SELECT MENU */\n.form-select-menu {\n position: relative;\n}\n\n.form-select-button {\n box-sizing: border-box;\n font-size: 14px;\n line-height: 20px;\n line-height: 32px;\n font-weight: 400;\n height: 32px;\n outline: none;\n padding: 0 16px;\n text-align: left;\n width: 100%;\n cursor: pointer;\n}\n.form-select-button strong {\n font-weight: 600;\n margin-right: 8px;\n text-transform: uppercase;\n}\n\n.form-select-dropdown {\n border-radius: 4px;\n list-style-type: none;\n margin: 0;\n padding: 0;\n position: absolute;\n top: 0;\n width: 100%;\n z-index: 2;\n}\n.form-select-dropdown li {\n cursor: pointer;\n font-size: 16px;\n line-height: 24px;\n line-height: 32px;\n margin: 0;\n padding: 0 16px 0 40px;\n position: relative;\n transition: all 0.2s;\n}\n.form-select-dropdown li .symbol {\n left: 16px;\n position: absolute;\n top: 8px;\n z-index: 5;\n}\n\naio-shell.mode-archive .mat-toolbar.mat-primary, aio-shell.mode-archive footer {\n background: linear-gradient(145deg, #263238, #78909C);\n}\naio-shell.mode-archive .vertical-menu-item.selected, aio-shell.mode-archive .vertical-menu-item:hover {\n color: #263238;\n}\naio-shell.mode-archive .toc-inner ul.toc-list li.active a {\n color: #263238;\n}\naio-shell.mode-archive .toc-inner ul.toc-list li.active a:before {\n background-color: #263238;\n}\naio-shell.mode-archive .toc-inner ul.toc-list li:hover a {\n color: #263238;\n}\n\naio-shell.mode-next footer {\n background: linear-gradient(145deg, #84438a, #84438a);\n}\naio-shell.mode-next .vertical-menu-item.selected, aio-shell.mode-next .vertical-menu-item:hover {\n color: #84438a;\n}\naio-shell.mode-next .toc-inner ul.toc-list li.active a {\n color: #84438a;\n}\naio-shell.mode-next .toc-inner ul.toc-list li.active a:before {\n background-color: #84438a;\n}\naio-shell.mode-next .toc-inner ul.toc-list li:hover a {\n color: #84438a;\n}\n\n.mat-toolbar mat-toolbar-row.notification-container {\n padding: 0;\n height: auto;\n overflow: hidden;\n}\n\naio-notification {\n display: flex;\n position: relative;\n align-items: center;\n width: 100%;\n height: 56px;\n justify-content: center;\n}\n@media (max-width: 430px) {\n aio-notification {\n justify-content: flex-start;\n padding-left: 10px;\n }\n}\naio-notification .close-button {\n position: absolute;\n top: 0;\n right: 0;\n width: 56px;\n height: 56px;\n}\naio-notification .content {\n max-width: calc(100% - 56px);\n text-transform: none;\n padding: 0;\n}\naio-notification .content > * {\n display: flex;\n}\naio-notification .content .icon {\n margin-right: 10px;\n}\n@media (max-width: 464px) {\n aio-notification .content .icon {\n display: none;\n }\n}\naio-notification .content .message {\n overflow: hidden;\n text-overflow: ellipsis;\n margin-right: 10px;\n}\naio-notification .content .action-button {\n border-radius: 15px;\n text-transform: uppercase;\n padding: 0 10px;\n font-size: 14px;\n line-height: 20px;\n}\n@media (max-width: 780px) {\n aio-notification .content .action-button {\n display: none;\n }\n}\n\n.aio-notification-show .sidenav-content {\n padding-top: 136px;\n}\n.aio-notification-show mat-sidenav.mat-sidenav.sidenav {\n top: 112px;\n}\n@media (max-width: 600px) {\n .aio-notification-show mat-sidenav.mat-sidenav.sidenav {\n top: 112px;\n }\n}\n.aio-notification-show .toc-container {\n top: 132px;\n}\n.aio-notification-show .search-results {\n padding-top: 124px;\n}\n.aio-notification-show.page-home section, .aio-notification-show.page-resources section, .aio-notification-show.page-events section, .aio-notification-show.page-features section, .aio-notification-show.page-presskit section, .aio-notification-show.page-contribute section {\n padding-top: 56px;\n}\n\n.aio-notification-animating .sidenav-content {\n transition: padding-top 250ms ease;\n}\n.aio-notification-animating mat-sidenav.mat-sidenav.sidenav, .aio-notification-animating .toc-container {\n transition: top 250ms ease;\n}\n\nlabel.raised, .api-header label {\n border-radius: 4px;\n padding: 4px 16px;\n display: inline;\n font-size: 16px;\n line-height: 24px;\n margin-right: 8px;\n font-weight: 500;\n text-transform: uppercase;\n}\n@media screen and (max-width: 600px) {\n label.raised, .api-header label {\n display: block;\n margin: 8px 0;\n }\n}\nlabel.raised.page-label, .api-header label.page-label {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n margin-bottom: 8px;\n width: 140px;\n}\nlabel.raised.page-label .material-icons, .api-header label.page-label .material-icons {\n margin-right: 8px;\n}\nlabel.raised.property-type-label, .api-header label.property-type-label {\n font-size: 14px;\n line-height: 20px;\n text-transform: none;\n}\n\n.api-header label {\n padding: 2px 10px;\n font-size: 14px;\n line-height: 20px;\n}\n@media screen and (max-width: 600px) {\n .api-header label {\n margin: 4px 0;\n }\n}\n\n.team-grid {\n display: grid;\n grid-template-columns: 1fr 3fr;\n column-gap: 10px;\n row-gap: 20px;\n}\n.team-grid ngrx-contributor {\n justify-self: center;\n align-self: start;\n}\n@media only screen and (max-width: 600px) {\n .team-grid {\n grid-template-columns: 1fr;\n }\n}\n\n@media print {\n * {\n box-shadow: none !important;\n }\n body, mat-sidenav-container {\n background: none !important;\n }\n h1 {\n height: 40px !important;\n color: #444444 !important;\n }\n h1, h2, h3, h4, h5, h6 {\n page-break-after: avoid;\n }\n ul, ol, img, code-example, table, tr, .alert, .feature {\n page-break-inside: avoid;\n }\n table tbody tr:last-child td {\n border-bottom: 1px solid #DBDBDB !important;\n }\n img {\n max-width: 100% !important;\n }\n p {\n widows: 4;\n }\n p > code, li > code, table code {\n color: #412846 !important;\n }\n .no-print {\n display: none !important;\n }\n mat-sidenav.sidenav.mat-sidenav {\n display: none !important;\n }\n .mat-sidenav-content {\n margin: 0 !important;\n }\n mat-sidenav-container.sidenav-container {\n min-width: 100vw;\n }\n .sidenav-content {\n overflow: visible;\n }\n .filetree {\n max-width: 100%;\n }\n aio-code code {\n border: none !important;\n }\n code-example.code-shell, code-example[language=sh], code-example[language=bash] {\n background: none;\n }\n code-example.code-shell .pnk, code-example.code-shell .blk, code-example.code-shell .pln, code-example.code-shell .otl, code-example.code-shell .kwd, code-example.code-shell .typ, code-example.code-shell .tag, code-example.code-shell .str, code-example.code-shell .atv, code-example.code-shell .atn, code-example.code-shell .com, code-example.code-shell .lit, code-example.code-shell .pun, code-example.code-shell .dec, code-example[language=sh] .pnk, code-example[language=sh] .blk, code-example[language=sh] .pln, code-example[language=sh] .otl, code-example[language=sh] .kwd, code-example[language=sh] .typ, code-example[language=sh] .tag, code-example[language=sh] .str, code-example[language=sh] .atv, code-example[language=sh] .atn, code-example[language=sh] .com, code-example[language=sh] .lit, code-example[language=sh] .pun, code-example[language=sh] .dec, code-example[language=bash] .pnk, code-example[language=bash] .blk, code-example[language=bash] .pln, code-example[language=bash] .otl, code-example[language=bash] .kwd, code-example[language=bash] .typ, code-example[language=bash] .tag, code-example[language=bash] .str, code-example[language=bash] .atv, code-example[language=bash] .atn, code-example[language=bash] .com, code-example[language=bash] .lit, code-example[language=bash] .pun, code-example[language=bash] .dec {\n color: #444444;\n }\n code-example header {\n background: none;\n border: 0.5px solid #DBDBDB;\n color: #444444;\n }\n .content code {\n border: 0.5px solid #DBDBDB;\n }\n .mat-tab-labels div.mat-tab-label:not(.mat-tab-label-active) span {\n font-style: italic;\n }\n .mat-tab-labels div.mat-tab-label.mat-tab-label-active span {\n font-weight: bold;\n }\n .api-header label {\n color: #444444 !important;\n font-weight: bold !important;\n margin: 2px !important;\n padding: 0 !important;\n display: block !important;\n }\n .feature-section img {\n max-width: 70px !important;\n }\n}\nhtml {\n --mat-badge-text-font: Roboto, sans-serif;\n --mat-badge-text-size: 12px;\n --mat-badge-text-weight: 600;\n --mat-badge-small-size-text-size: 9px;\n --mat-badge-large-size-text-size: 24px;\n}\n\n.mat-h1,\n.mat-headline-5,\n.mat-typography .mat-h1,\n.mat-typography .mat-headline-5,\n.mat-typography h1 {\n font: 400 24px / 32px Roboto, sans-serif;\n letter-spacing: normal;\n margin: 0 0 16px;\n}\n\n.mat-h2,\n.mat-headline-6,\n.mat-typography .mat-h2,\n.mat-typography .mat-headline-6,\n.mat-typography h2 {\n font: 500 20px / 32px Roboto, sans-serif;\n letter-spacing: 0.0125em;\n margin: 0 0 16px;\n}\n\n.mat-h3,\n.mat-subtitle-1,\n.mat-typography .mat-h3,\n.mat-typography .mat-subtitle-1,\n.mat-typography h3 {\n font: 400 16px / 28px Roboto, sans-serif;\n letter-spacing: 0.009375em;\n margin: 0 0 16px;\n}\n\n.mat-h4,\n.mat-body-1,\n.mat-typography .mat-h4,\n.mat-typography .mat-body-1,\n.mat-typography h4 {\n font: 400 16px / 24px Roboto, sans-serif;\n letter-spacing: 0.03125em;\n margin: 0 0 16px;\n}\n\n.mat-h5,\n.mat-typography .mat-h5,\n.mat-typography h5 {\n font: 400 calc(14px * 0.83) / 20px Roboto, sans-serif;\n margin: 0 0 12px;\n}\n\n.mat-h6,\n.mat-typography .mat-h6,\n.mat-typography h6 {\n font: 400 calc(14px * 0.67) / 20px Roboto, sans-serif;\n margin: 0 0 12px;\n}\n\n.mat-body-strong,\n.mat-subtitle-2,\n.mat-typography .mat-body-strong,\n.mat-typography .mat-subtitle-2 {\n font: 500 14px / 22px Roboto, sans-serif;\n letter-spacing: 0.0071428571em;\n}\n\n.mat-body,\n.mat-body-2,\n.mat-typography .mat-body,\n.mat-typography .mat-body-2,\n.mat-typography {\n font: 400 14px / 20px Roboto, sans-serif;\n letter-spacing: 0.0178571429em;\n}\n.mat-body p,\n.mat-body-2 p,\n.mat-typography .mat-body p,\n.mat-typography .mat-body-2 p,\n.mat-typography p {\n margin: 0 0 12px;\n}\n\n.mat-small,\n.mat-caption,\n.mat-typography .mat-small,\n.mat-typography .mat-caption {\n font: 400 12px / 20px Roboto, sans-serif;\n letter-spacing: 0.0333333333em;\n}\n\n.mat-headline-1,\n.mat-typography .mat-headline-1 {\n font: 300 96px / 96px Roboto, sans-serif;\n letter-spacing: -0.015625em;\n margin: 0 0 56px;\n}\n\n.mat-headline-2,\n.mat-typography .mat-headline-2 {\n font: 300 60px / 60px Roboto, sans-serif;\n letter-spacing: -0.0083333333em;\n margin: 0 0 64px;\n}\n\n.mat-headline-3,\n.mat-typography .mat-headline-3 {\n font: 400 48px / 50px Roboto, sans-serif;\n letter-spacing: normal;\n margin: 0 0 64px;\n}\n\n.mat-headline-4,\n.mat-typography .mat-headline-4 {\n font: 400 34px / 40px Roboto, sans-serif;\n letter-spacing: 0.0073529412em;\n margin: 0 0 64px;\n}\n\nhtml {\n --mat-bottom-sheet-container-text-font: Roboto, sans-serif;\n --mat-bottom-sheet-container-text-line-height: 20px;\n --mat-bottom-sheet-container-text-size: 14px;\n --mat-bottom-sheet-container-text-tracking: 0.0178571429em;\n --mat-bottom-sheet-container-text-weight: 400;\n}\n\nhtml {\n --mat-legacy-button-toggle-label-text-font: Roboto, sans-serif;\n --mat-legacy-button-toggle-label-text-line-height: 24px;\n --mat-legacy-button-toggle-label-text-size: 16px;\n --mat-legacy-button-toggle-label-text-tracking: 0.03125em;\n --mat-legacy-button-toggle-label-text-weight: 400;\n --mat-standard-button-toggle-label-text-font: Roboto, sans-serif;\n --mat-standard-button-toggle-label-text-line-height: 24px;\n --mat-standard-button-toggle-label-text-size: 16px;\n --mat-standard-button-toggle-label-text-tracking: 0.03125em;\n --mat-standard-button-toggle-label-text-weight: 400;\n}\n\nhtml {\n --mat-datepicker-calendar-text-font: Roboto, sans-serif;\n --mat-datepicker-calendar-text-size: 13px;\n --mat-datepicker-calendar-body-label-text-size: 14px;\n --mat-datepicker-calendar-body-label-text-weight: 500;\n --mat-datepicker-calendar-period-button-text-size: 14px;\n --mat-datepicker-calendar-period-button-text-weight: 500;\n --mat-datepicker-calendar-header-text-size: 11px;\n --mat-datepicker-calendar-header-text-weight: 400;\n}\n\nhtml {\n --mat-expansion-header-text-font: Roboto, sans-serif;\n --mat-expansion-header-text-size: 14px;\n --mat-expansion-header-text-weight: 500;\n --mat-expansion-header-text-line-height: inherit;\n --mat-expansion-header-text-tracking: inherit;\n --mat-expansion-container-text-font: Roboto, sans-serif;\n --mat-expansion-container-text-line-height: 20px;\n --mat-expansion-container-text-size: 14px;\n --mat-expansion-container-text-tracking: 0.0178571429em;\n --mat-expansion-container-text-weight: 400;\n}\n\nhtml {\n --mat-grid-list-tile-header-primary-text-size: 14px;\n --mat-grid-list-tile-header-secondary-text-size: 12px;\n --mat-grid-list-tile-footer-primary-text-size: 14px;\n --mat-grid-list-tile-footer-secondary-text-size: 12px;\n}\n\nhtml {\n --mat-stepper-container-text-font: Roboto, sans-serif;\n --mat-stepper-header-label-text-font: Roboto, sans-serif;\n --mat-stepper-header-label-text-size: 14px;\n --mat-stepper-header-label-text-weight: 400;\n --mat-stepper-header-error-state-label-text-size: 16px;\n --mat-stepper-header-selected-state-label-text-size: 16px;\n --mat-stepper-header-selected-state-label-text-weight: 400;\n}\n\nhtml {\n --mat-toolbar-title-text-font: Roboto, sans-serif;\n --mat-toolbar-title-text-line-height: 32px;\n --mat-toolbar-title-text-size: 20px;\n --mat-toolbar-title-text-tracking: 0.0125em;\n --mat-toolbar-title-text-weight: 500;\n}\n\nhtml {\n --mat-tree-node-text-font: Roboto, sans-serif;\n --mat-tree-node-text-size: 14px;\n --mat-tree-node-text-weight: 400;\n}\n\nhtml {\n --mat-option-label-text-font: Roboto, sans-serif;\n --mat-option-label-text-line-height: 24px;\n --mat-option-label-text-size: 16px;\n --mat-option-label-text-tracking: 0.03125em;\n --mat-option-label-text-weight: 400;\n}\n\nhtml {\n --mat-optgroup-label-text-font: Roboto, sans-serif;\n --mat-optgroup-label-text-line-height: 24px;\n --mat-optgroup-label-text-size: 16px;\n --mat-optgroup-label-text-tracking: 0.03125em;\n --mat-optgroup-label-text-weight: 400;\n}\n\nhtml {\n --mat-card-title-text-font: Roboto, sans-serif;\n --mat-card-title-text-line-height: 32px;\n --mat-card-title-text-size: 20px;\n --mat-card-title-text-tracking: 0.0125em;\n --mat-card-title-text-weight: 500;\n --mat-card-subtitle-text-font: Roboto, sans-serif;\n --mat-card-subtitle-text-line-height: 22px;\n --mat-card-subtitle-text-size: 14px;\n --mat-card-subtitle-text-tracking: 0.0071428571em;\n --mat-card-subtitle-text-weight: 500;\n}\n\nhtml {\n --mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;\n --mdc-plain-tooltip-supporting-text-size: 12px;\n --mdc-plain-tooltip-supporting-text-weight: 400;\n --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;\n}\n\nhtml {\n --mdc-filled-text-field-label-text-font: Roboto, sans-serif;\n --mdc-filled-text-field-label-text-size: 16px;\n --mdc-filled-text-field-label-text-tracking: 0.03125em;\n --mdc-filled-text-field-label-text-weight: 400;\n --mdc-outlined-text-field-label-text-font: Roboto, sans-serif;\n --mdc-outlined-text-field-label-text-size: 16px;\n --mdc-outlined-text-field-label-text-tracking: 0.03125em;\n --mdc-outlined-text-field-label-text-weight: 400;\n --mat-form-field-container-text-font: Roboto, sans-serif;\n --mat-form-field-container-text-line-height: 24px;\n --mat-form-field-container-text-size: 16px;\n --mat-form-field-container-text-tracking: 0.03125em;\n --mat-form-field-container-text-weight: 400;\n --mat-form-field-outlined-label-text-populated-size: 16px;\n --mat-form-field-subscript-text-font: Roboto, sans-serif;\n --mat-form-field-subscript-text-line-height: 20px;\n --mat-form-field-subscript-text-size: 12px;\n --mat-form-field-subscript-text-tracking: 0.0333333333em;\n --mat-form-field-subscript-text-weight: 400;\n}\n\nhtml {\n --mat-select-trigger-text-font: Roboto, sans-serif;\n --mat-select-trigger-text-line-height: 24px;\n --mat-select-trigger-text-size: 16px;\n --mat-select-trigger-text-tracking: 0.03125em;\n --mat-select-trigger-text-weight: 400;\n}\n\nhtml {\n --mdc-dialog-subhead-font: Roboto, sans-serif;\n --mdc-dialog-subhead-line-height: 32px;\n --mdc-dialog-subhead-size: 20px;\n --mdc-dialog-subhead-weight: 500;\n --mdc-dialog-subhead-tracking: 0.0125em;\n --mdc-dialog-supporting-text-font: Roboto, sans-serif;\n --mdc-dialog-supporting-text-line-height: 24px;\n --mdc-dialog-supporting-text-size: 16px;\n --mdc-dialog-supporting-text-weight: 400;\n --mdc-dialog-supporting-text-tracking: 0.03125em;\n}\n\n.mat-mdc-standard-chip {\n --mdc-chip-label-text-font: Roboto, sans-serif;\n --mdc-chip-label-text-line-height: 20px;\n --mdc-chip-label-text-size: 14px;\n --mdc-chip-label-text-tracking: 0.0178571429em;\n --mdc-chip-label-text-weight: 400;\n}\n\nhtml .mat-mdc-slide-toggle {\n --mdc-form-field-label-text-font: Roboto, sans-serif;\n --mdc-form-field-label-text-line-height: 20px;\n --mdc-form-field-label-text-size: 14px;\n --mdc-form-field-label-text-tracking: 0.0178571429em;\n --mdc-form-field-label-text-weight: 400;\n}\n\n.mat-mdc-radio-button {\n --mdc-form-field-label-text-font: Roboto, sans-serif;\n --mdc-form-field-label-text-line-height: 20px;\n --mdc-form-field-label-text-size: 14px;\n --mdc-form-field-label-text-tracking: 0.0178571429em;\n --mdc-form-field-label-text-weight: 400;\n}\n\nhtml {\n --mdc-slider-label-label-text-font: Roboto, sans-serif;\n --mdc-slider-label-label-text-size: 14px;\n --mdc-slider-label-label-text-line-height: 22px;\n --mdc-slider-label-label-text-tracking: 0.0071428571em;\n --mdc-slider-label-label-text-weight: 500;\n}\n\nhtml {\n --mat-menu-item-label-text-font: Roboto, sans-serif;\n --mat-menu-item-label-text-size: 16px;\n --mat-menu-item-label-text-tracking: 0.03125em;\n --mat-menu-item-label-text-line-height: 24px;\n --mat-menu-item-label-text-weight: 400;\n}\n\nhtml {\n --mdc-list-list-item-label-text-font: Roboto, sans-serif;\n --mdc-list-list-item-label-text-line-height: 24px;\n --mdc-list-list-item-label-text-size: 16px;\n --mdc-list-list-item-label-text-tracking: 0.03125em;\n --mdc-list-list-item-label-text-weight: 400;\n --mdc-list-list-item-supporting-text-font: Roboto, sans-serif;\n --mdc-list-list-item-supporting-text-line-height: 20px;\n --mdc-list-list-item-supporting-text-size: 14px;\n --mdc-list-list-item-supporting-text-tracking: 0.0178571429em;\n --mdc-list-list-item-supporting-text-weight: 400;\n --mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;\n --mdc-list-list-item-trailing-supporting-text-line-height: 20px;\n --mdc-list-list-item-trailing-supporting-text-size: 12px;\n --mdc-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;\n --mdc-list-list-item-trailing-supporting-text-weight: 400;\n}\n\n.mdc-list-group__subheader {\n font: 400 16px / 28px Roboto, sans-serif;\n letter-spacing: 0.009375em;\n}\n\nhtml {\n --mat-paginator-container-text-font: Roboto, sans-serif;\n --mat-paginator-container-text-line-height: 20px;\n --mat-paginator-container-text-size: 12px;\n --mat-paginator-container-text-tracking: 0.0333333333em;\n --mat-paginator-container-text-weight: 400;\n --mat-paginator-select-trigger-text-size: 12px;\n}\n\n.mat-mdc-tab-header {\n --mat-tab-header-label-text-font: Roboto, sans-serif;\n --mat-tab-header-label-text-size: 14px;\n --mat-tab-header-label-text-tracking: 0.0892857143em;\n --mat-tab-header-label-text-line-height: 36px;\n --mat-tab-header-label-text-weight: 500;\n}\n\n.mat-mdc-checkbox {\n --mdc-form-field-label-text-font: Roboto, sans-serif;\n --mdc-form-field-label-text-line-height: 20px;\n --mdc-form-field-label-text-size: 14px;\n --mdc-form-field-label-text-tracking: 0.0178571429em;\n --mdc-form-field-label-text-weight: 400;\n}\n\nhtml {\n --mdc-text-button-label-text-font: Roboto, sans-serif;\n --mdc-text-button-label-text-size: 14px;\n --mdc-text-button-label-text-tracking: 0.0892857143em;\n --mdc-text-button-label-text-weight: 500;\n --mdc-text-button-label-text-transform: none;\n --mdc-filled-button-label-text-font: Roboto, sans-serif;\n --mdc-filled-button-label-text-size: 14px;\n --mdc-filled-button-label-text-tracking: 0.0892857143em;\n --mdc-filled-button-label-text-weight: 500;\n --mdc-filled-button-label-text-transform: none;\n --mdc-outlined-button-label-text-font: Roboto, sans-serif;\n --mdc-outlined-button-label-text-size: 14px;\n --mdc-outlined-button-label-text-tracking: 0.0892857143em;\n --mdc-outlined-button-label-text-weight: 500;\n --mdc-outlined-button-label-text-transform: none;\n --mdc-protected-button-label-text-font: Roboto, sans-serif;\n --mdc-protected-button-label-text-size: 14px;\n --mdc-protected-button-label-text-tracking: 0.0892857143em;\n --mdc-protected-button-label-text-weight: 500;\n --mdc-protected-button-label-text-transform: none;\n}\n\nhtml {\n --mdc-extended-fab-label-text-font: Roboto, sans-serif;\n --mdc-extended-fab-label-text-size: 14px;\n --mdc-extended-fab-label-text-tracking: 0.0892857143em;\n --mdc-extended-fab-label-text-weight: 500;\n}\n\nhtml {\n --mdc-snackbar-supporting-text-font: Roboto, sans-serif;\n --mdc-snackbar-supporting-text-line-height: 20px;\n --mdc-snackbar-supporting-text-size: 14px;\n --mdc-snackbar-supporting-text-weight: 400;\n}\n\nhtml {\n --mat-table-header-headline-font: Roboto, sans-serif;\n --mat-table-header-headline-line-height: 22px;\n --mat-table-header-headline-size: 14px;\n --mat-table-header-headline-weight: 500;\n --mat-table-header-headline-tracking: 0.0071428571em;\n --mat-table-row-item-label-text-font: Roboto, sans-serif;\n --mat-table-row-item-label-text-line-height: 20px;\n --mat-table-row-item-label-text-size: 14px;\n --mat-table-row-item-label-text-weight: 400;\n --mat-table-row-item-label-text-tracking: 0.0178571429em;\n --mat-table-footer-supporting-text-font: Roboto, sans-serif;\n --mat-table-footer-supporting-text-line-height: 20px;\n --mat-table-footer-supporting-text-size: 14px;\n --mat-table-footer-supporting-text-weight: 400;\n --mat-table-footer-supporting-text-tracking: 0.0178571429em;\n}\n\n.mat-ripple {\n overflow: hidden;\n position: relative;\n}\n.mat-ripple:not(:empty) {\n transform: translateZ(0);\n}\n\n.mat-ripple.mat-ripple-unbounded {\n overflow: visible;\n}\n\n.mat-ripple-element {\n position: absolute;\n border-radius: 50%;\n pointer-events: none;\n transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);\n transform: scale3d(0, 0, 0);\n background-color: var(--mat-ripple-color, rgba(0, 0, 0, 0.1));\n}\n.cdk-high-contrast-active .mat-ripple-element {\n display: none;\n}\n\n.cdk-visually-hidden {\n border: 0;\n clip: rect(0 0 0 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n white-space: nowrap;\n outline: 0;\n -webkit-appearance: none;\n -moz-appearance: none;\n left: 0;\n}\n[dir=rtl] .cdk-visually-hidden {\n left: auto;\n right: 0;\n}\n\n.cdk-overlay-container, .cdk-global-overlay-wrapper {\n pointer-events: none;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n}\n\n.cdk-overlay-container {\n position: fixed;\n z-index: 1000;\n}\n.cdk-overlay-container:empty {\n display: none;\n}\n\n.cdk-global-overlay-wrapper {\n display: flex;\n position: absolute;\n z-index: 1000;\n}\n\n.cdk-overlay-pane {\n position: absolute;\n pointer-events: auto;\n box-sizing: border-box;\n z-index: 1000;\n display: flex;\n max-width: 100%;\n max-height: 100%;\n}\n\n.cdk-overlay-backdrop {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 1000;\n pointer-events: auto;\n -webkit-tap-highlight-color: transparent;\n transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);\n opacity: 0;\n}\n.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {\n opacity: 1;\n}\n.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {\n opacity: 0.6;\n}\n\n.cdk-overlay-dark-backdrop {\n background: rgba(0, 0, 0, 0.32);\n}\n\n.cdk-overlay-transparent-backdrop {\n transition: visibility 1ms linear, opacity 1ms linear;\n visibility: hidden;\n opacity: 1;\n}\n.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {\n opacity: 0;\n visibility: visible;\n}\n\n.cdk-overlay-backdrop-noop-animation {\n transition: none;\n}\n\n.cdk-overlay-connected-position-bounding-box {\n position: absolute;\n z-index: 1000;\n display: flex;\n flex-direction: column;\n min-width: 1px;\n min-height: 1px;\n}\n\n.cdk-global-scrollblock {\n position: fixed;\n width: 100%;\n overflow-y: scroll;\n}\n\ntextarea.cdk-textarea-autosize {\n resize: none;\n}\n\ntextarea.cdk-textarea-autosize-measuring {\n padding: 2px 0 !important;\n box-sizing: content-box !important;\n height: auto !important;\n overflow: hidden !important;\n}\n\ntextarea.cdk-textarea-autosize-measuring-firefox {\n padding: 2px 0 !important;\n box-sizing: content-box !important;\n height: 0 !important;\n}\n\n@keyframes cdk-text-field-autofill-start { /*!*/ }\n@keyframes cdk-text-field-autofill-end { /*!*/ }\n.cdk-text-field-autofill-monitored:-webkit-autofill {\n animation: cdk-text-field-autofill-start 0s 1ms;\n}\n\n.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {\n animation: cdk-text-field-autofill-end 0s 1ms;\n}\n\n.mat-focus-indicator {\n position: relative;\n}\n.mat-focus-indicator::before {\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n position: absolute;\n box-sizing: border-box;\n pointer-events: none;\n display: var(--mat-focus-indicator-display, none);\n border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);\n border-radius: var(--mat-focus-indicator-border-radius, 4px);\n}\n.mat-focus-indicator:focus::before {\n content: \"\";\n}\n\n.cdk-high-contrast-active {\n --mat-focus-indicator-display: block;\n}\n\n.mat-mdc-focus-indicator {\n position: relative;\n}\n.mat-mdc-focus-indicator::before {\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n position: absolute;\n box-sizing: border-box;\n pointer-events: none;\n display: var(--mat-mdc-focus-indicator-display, none);\n border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);\n border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);\n}\n.mat-mdc-focus-indicator:focus::before {\n content: \"\";\n}\n\n.cdk-high-contrast-active {\n --mat-mdc-focus-indicator-display: block;\n}\n\n.mat-app-background {\n background-color: var(--mat-app-background-color, transparent);\n color: var(--mat-app-text-color, inherit);\n}","/* ==============================\n LAYOUT STYLES\n ============================== */\n\n@forward 'app-pages/api-pages';\n@forward 'content-layout/content-layout';\n@forward 'doc_viewer/doc-viewer';\n@forward 'footer/footer';\n@forward 'layout-global/layout-global';\n@forward 'marketing-layout/marketing-layout';\n@forward 'homepage/homepage';\n@forward 'not-found/not-found';\n@forward 'sidenav/sidenav';\n@forward 'table-of-contents/table-of-contents';\n@forward 'top-menu/top-menu';\n","@use '../../mixins';\n@use '../../constants';\n\n.api-body {\n max-width: 1200px;\n\n table {\n margin: 12px 0 24px;\n\n th {\n text-transform: none;\n @include mixins.typescale-default;\n font-weight: bold;\n }\n\n tr {\n border-bottom: 1px solid constants.$lightgray;\n }\n\n td {\n vertical-align: middle;\n }\n\n hr {\n margin: 16px 0;\n }\n\n tr:last-child {\n border-bottom: none;\n }\n\n &.item-table {\n td {\n padding: 32px;\n }\n }\n\n &.list-table {\n td {\n padding: 16px 24px;\n }\n }\n\n .short-description {\n margin-left: 0;\n }\n }\n}\n","@use '../../constants';\n\naio-shell.page-docs {\n .sidenav-content {\n // padding: 6rem 3rem 3rem 3rem; // THIS CAUSES THE TOP NAV TOOLBAR TO JUMP BETWEEN DOCS AND OTHER PAGES\n margin: auto;\n }\n}\n\n.sidenav-content {\n min-height: 100vh;\n padding: 80px 3rem 1rem;\n}\n\n@media (max-width: 600px) {\n aio-menu {\n display: none;\n }\n\n .sidenav-content {\n min-height: 450px;\n padding: 80px 1rem 1rem;\n }\n}\n\n.sidenav-container {\n width: 100%;\n height: 100vh;\n}\n\n.sidenav-content button {\n min-width: 24px;\n}\n\n#guide-change-log h2::before {\n content: \"\";\n display: block;\n height: 1px;\n margin: 24px 0px;\n background: constants.$lightgray;\n}\n",".no-animations aio-doc-viewer > * {\n // Disable view transition animations.\n transition: none !important;\n}\n\n.video-container {\n width: 100%;\n max-width: 750px;\n margin: auto;\n}\n\n.video-responsive-wrapper {\n position: relative;\n padding-bottom: 56.25%; /* 16:9 */\n height: 0;\n\n > iframe {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n }\n}\n","@use '../../constants';\n@use '../../mixins';\n\nfooter {\n position: relative;\n line-height: 24px;\n flex: 1;\n padding: 48px;\n z-index: 0;\n font-weight: 300;\n\n aio-footer {\n position: relative;\n z-index: 0;\n }\n\n .footer-block {\n margin: 0 24px;\n vertical-align: top;\n }\n\n a {\n font-weight: 300;\n text-decoration: none;\n z-index: 20;\n position: relative;\n &:hover {\n text-decoration: underline;\n }\n &:visited {\n text-decoration: none;\n }\n }\n a.action {\n cursor: pointer;\n }\n h3 {\n @include mixins.typescale-default;\n text-transform: uppercase;\n font-weight: 400;\n margin: 0 0 16px;\n }\n p {\n text-align: center;\n margin: 10px 0px 5px;\n\n @media (max-width: 480px) {\n text-align: left;\n }\n }\n\n div.grid-fluid {\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n\n justify-content: center;\n\n text-align: left;\n margin: 0 0 40px;\n\n ul {\n list-style-position: inside;\n padding: 0px;\n margin: 0px;\n\n li {\n list-style-type: none;\n padding: 0px;\n text-align: left;\n }\n }\n\n @media (max-width: 480px) {\n flex-direction: column;\n .footer-block {\n margin: 8px 24px;\n }\n }\n }\n\n @media (max-width: 700px) {\n h3 {\n @include mixins.typescale-large;\n }\n }\n @media (max-width: 600px) {\n h3 {\n @include mixins.typescale-default;\n }\n }\n}\n\nfooter::after {\n content: \"\";\n position: absolute;\n z-index: -1;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n","html, body {\n height: 100%;\n}\n\n.clearfix {\n content: \"\";\n display: table;\n clear: both;\n}\n\n.clear {\n clear: both;\n}\n\n.l-clearfix:after, .clearfix:after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n.is-visible {\n display: block!important;\n}\n\n.l-flex-wrap {\n display: flex;\n flex-wrap: wrap;\n}\n\n.flex-center {\n display: flex;\n justify-content: center;\n}\n\n.center {\n text-align: center;\n}\n\n.visually-hidden {\n position: absolute !important;\n top: -9999px !important;\n left: -9999px !important;\n}\n\n.text-uppercase {\n text-transform: uppercase;\n}\n","@use \"../../constants\";\n@use \"../../mixins\";\n\n.hero {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n position: absolute;\n width: 100%;\n min-height: 480px;\n height: 80vh;\n max-height: 480px;\n box-sizing: border-box;\n padding: 48px 48px 32px 48px;\n overflow: hidden;\n transform-origin: 100%;\n\n @media (max-width: 480px) {\n max-height: 486px;\n padding-top: 40px;\n transform: none;\n }\n\n .hero-title {\n display: inline-block;\n font-size: 28px;\n font-weight: 400;\n line-height: 48px;\n margin: 0 8px 0 0;\n text-transform: uppercase;\n\n &.is-standard-case {\n text-transform: none;\n }\n }\n}\n\n.homepage-header {\n background: url('/assets/images/banner.svg');\n background-size: 100%;\n}\n\nsection#intro {\n display: flex;\n flex-direction: column;\n align-items: center;\n position: relative;\n width: 900px;\n height: 480px;\n margin: 0 auto -32px;\n padding: 48px 0 0;\n\n @media (max-width: 780px) {\n justify-content: center;\n width: 100%;\n max-width: 100vw;\n padding: 40px 0 32px;\n\n button {\n margin: 0;\n height: 60px;\n }\n }\n\n .homepage-container {\n display: flex;\n flex-direction: column;\n align-items: center;\n width: 100%;\n max-width: 1040px;\n margin: 0 auto;\n margin-top: -7%;\n padding-top: 0;\n padding-bottom: 0;\n\n @media (max-width: 780px) {\n width: 100%;\n max-width: 100%;\n padding: 0;\n }\n }\n\n .hero-headline {\n font-size: 40px;\n line-height: 64px;\n font-weight: 500;\n margin: 32px 0 8px 0;\n\n &:after {\n display: none;\n }\n\n @media (max-width: 780px) {\n text-align: center;\n }\n\n @media (max-width: 575px) {\n font-size: 32px;\n line-height: 50px;\n }\n }\n\n .hero-sub-headline {\n font-size: 18px;\n line-height: 32px;\n }\n\n .hero-logo {\n display: flex;\n padding-top: 48px;\n padding-bottom: 24px;\n\n @media (max-width: 780px) {\n justify-content: center;\n }\n\n img {\n width: 260px;\n height: 260px;\n margin-bottom: 8px;\n padding: 0;\n filter: drop-shadow(0 2px 2px rgba(constants.$black, 0.24));\n\n @media (max-width: 780px) {\n width: 250px;\n height: 250px;\n }\n }\n }\n}\n\n.announcement-bar {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n justify-content: space-around;\n align-items: center;\n max-width: 50vw;\n margin: 0 auto;\n padding: 16px;\n border-radius: 4px;\n box-shadow: 0 2px 2px rgba(constants.$black, 0.24), 0 0 2px rgba(constants.$black, 0.12);\n box-sizing: border-box;\n transition: all 0.3s ease-in;\n\n @media (max-width: 992px) {\n flex-direction: column;\n text-align: center;\n padding: 32px 16px;\n }\n\n @media (max-width: 768px) {\n width: 100%;\n max-width: none;\n }\n\n & > * {\n margin: 8px;\n }\n\n .button {\n display: flex;\n justify-content: center;\n align-items: center;\n height: 40px;\n min-width: 160px;\n font-size: 16px;\n border-radius: 48px;\n box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);\n box-sizing: border-box;\n cursor: pointer;\n }\n\n .material-icons {\n display: none;\n right: 0;\n position: static;\n transition: all 0.3s ease-in;\n font-size: 16px;\n }\n\n p {\n font-size: 16px;\n margin: 8px;\n text-align: center;\n }\n}\n\n.home-row .card {\n @include mixins.card(70%, auto);\n display: flex;\n flex-direction: row;\n align-items: center;\n position: relative;\n width: 70%;\n min-width: 350px;\n height: auto;\n margin: auto;\n padding: 24px;\n box-shadow: 0 6px 6px rgba(10, 16, 20, 0.15), 0 0 52px rgba(10, 16, 20, 0.12);\n\n @media (max-width: 600px) {\n margin: 16px auto 0;\n\n h2 {\n margin: 0;\n }\n\n img {\n max-width: none;\n height: 70px;\n }\n }\n\n @media (max-width: 1300px) {\n img {\n height: 70px;\n max-width: none;\n }\n }\n\n img {\n margin: 16px ;\n }\n\n .card-text-container {\n margin: 0 16px;\n\n p {\n text-align: left;\n margin: 0;\n padding: 8px 0;\n }\n }\n}\n\n.button.hero-cta {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 184px;\n height: 40px;\n padding: 0 24px;\n font-size: 18px;\n font-weight: 600;\n line-height: 40px;\n border-radius: 48px;\n box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);\n box-sizing: border-box;\n cursor: pointer;\n\n &:hover {\n opacity: 0.9;\n }\n}\n\naio-shell {\n &.page-resources, &.page-events, &.page-features, &.page-contribute {\n section {\n padding: 0rem 0rem 3rem;\n }\n }\n\n &.page-home {\n section {\n padding: 0;\n }\n }\n\n &.page-home, &.page-resources, &.page-events, &.page-contribute {\n article {\n padding: 32px;\n\n @media (max-width: 800px) {\n padding: 24px;\n }\n }\n }\n\n &.page-features {\n article {\n padding: 0 3rem;\n }\n }\n\n &.page-home, &.page-resources, &.page-events, &.page-features {\n\n .content img {\n @media (max-width: 1300px) {\n max-width: none;\n }\n }\n\n .feature-section img {\n max-width: 70px;\n }\n\n @media (max-width: 600px) {\n mat-sidenav-container.sidenav-container {\n padding-top: 0;\n }\n }\n }\n}\n\n.cta-bar.announcement-bar {\n background: none;\n box-shadow: none;\n}\n\n.text-headline {\n font-size: 20px;\n font-weight: 500;\n margin-top: 10px;\n text-transform: uppercase;\n}\n\naio-shell:not(.view-SideNav) {\n mat-sidenav-container.sidenav-container {\n max-width: none;\n }\n}\n\ndiv[layout=row]{\n display: flex;\n justify-content: center;\n align-items: center;\n box-sizing: border-box;\n\n @media (max-width: 480px) {\n display: block;\n }\n}\n\n.layout-row {\n flex-direction: row;\n}\n\n.home-rows {\n overflow: hidden;\n @media (max-width: 600px) {\n margin: 0;\n }\n}\n\n.background-superhero-paper {\n background-size: 100%;\n background-blend-mode: multiply;\n}\n\n.home-row {\n max-width: 920px;\n margin: 32px auto;\n\n .promo-img-container, .text-container {\n max-width: 50%;\n\n @media(max-width: 480px) {\n max-width: 100%;\n text-align: center;\n\n &:nth-child(even) {\n flex-direction: column-reverse;\n }\n }\n }\n\n .text-block {\n padding-right: 15%;\n\n @media(max-width: 600px) {\n padding: 0;\n }\n }\n\n .promo-img-container {\n\n img {\n max-width: 90% !important;\n }\n\n p {\n margin: 0 20px;\n }\n\n img {\n max-width: 90%;\n\n\n @media (max-width: 599px) {\n max-width: 100%;\n float: initial !important;\n }\n }\n }\n}\n\n.marketing-banner {\n margin-top: 64px;\n padding: 32px;\n\n @media (max-width: 600px) {\n margin-top: 56px;\n padding: 18px;\n }\n\n .banner-headline {\n text-transform: uppercase;\n font-size: 24px;\n font-weight: 300;\n margin: 0;\n -webkit-margin-before: 0;\n -webkit-margin-after: 0;\n\n @media (max-width: 600px) {\n font-size: 18px;\n font-weight: 400;\n }\n\n &:after {\n display: none;\n }\n }\n}\n.page-features .marketing-banner {\n margin-bottom: 20px;\n}\n","aio-shell.page-home {\n line-height: initial;\n\n aio-doc-viewer {\n display: block;\n width: 100vw;\n min-height: 100vh;\n background-color: #412945;\n color: white;\n }\n\n .mat-drawer-content {\n overflow-x: hidden;\n overflow-y: auto;\n }\n\n header {\n background-image: url(/assets/images/header.svg);\n background-size: cover;\n background-position: center center;\n height: 80vh;\n max-height: 800px;\n color: #4b334d;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n position: relative;\n margin-bottom: 60px;\n }\n\n header img {\n width: auto;\n height: 240px;\n max-height: 30vh;\n }\n\n div.title {\n font-size: 60px;\n margin-top: 20px;\n text-transform: uppercase;\n\n @media only screen and (max-width: 320px) {\n font-size: 55px;\n }\n }\n\n div.subtitle {\n font-size: 30px;\n margin-top: 20px;\n\n @media only screen and (max-width: 320px) {\n font-size: 25px;\n }\n }\n\n header h2 {\n font-size: 20px;\n }\n\n header .cta {\n position: absolute;\n bottom: -22px;\n }\n\n button.cta,\n a.cta {\n font-size: 18px;\n padding: 6px 28px;\n color: white;\n text-transform: uppercase;\n position: relative;\n height: auto;\n }\n\n h2,\n p {\n font-family: 'Open Sans', sans-serif;\n max-width: 100%;\n }\n\n h1,\n h3 {\n font-family: 'PT Sans', sans-serif;\n text-transform: uppercase;\n }\n\n .ngrx-callout {\n width: 100%;\n max-width: 960px;\n margin: 0 auto;\n padding: 60px 0;\n display: grid;\n grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));\n grid-column-gap: 0 20px;\n justify-items: center;\n border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n\n &:last-of-type {\n border-bottom: none;\n }\n\n h3 {\n font-weight: bold;\n }\n\n @media only screen and (max-width: 600px) {\n display: flex;\n flex-direction: column;\n align-items: center;\n }\n }\n\n .ngrx-callout-description {\n flex-basis: 400px;\n flex-grow: 0;\n flex-shrink: 0;\n\n h3 {\n margin-bottom: 8px;\n font-size: 20px;\n color: rgba(255, 255, 255, 0.82);\n }\n\n p {\n color: rgba(255, 255, 255, 0.82);\n }\n\n @media only screen and (max-width: 600px) {\n flex-basis: initial;\n }\n }\n\n @media screen and (min-width: 820px) {\n .ngrx-callout:nth-of-type(2) {\n .ngrx-callout-figure {\n grid-column: 1 / 2;\n grid-row: 1 / 2;\n justify-self: start;\n }\n .ngrx-callout-description {\n grid-column: 2 / 3;\n grid-row: 1 / 2;\n }\n }\n }\n\n @media screen and (max-width: 820px) {\n .ngrx-callout-description {\n padding: 0 20px 30px;\n max-width: 480px;\n text-align: center;\n }\n }\n\n .sponsors {\n width: 100vw;\n background-color: white;\n padding: 50px 20px;\n text-align: center;\n\n h3 {\n color: #412945;\n font-size: 24px;\n margin-bottom: 24px;\n }\n }\n\n .final-ngrx-callout {\n background-image: url(/assets/images/header.svg);\n background-size: cover;\n background-position: bottom center;\n height: 180px;\n color: #4b334d;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n padding: 0 20px;\n\n h3 {\n font-size: 20px;\n }\n\n .content {\n max-width: 960px;\n width: 100%;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n }\n\n .cta {\n flex-shrink: 0;\n }\n }\n}\n","#file-not-found {\n padding: 3rem 3rem 3rem;\n}\n\n.nf-container {\n align-items: center;\n padding: 32px;\n}\n\n.nf-response {\n margin: 32px;\n height: 100%;\n flex-direction: column;\n\n h1 {\n font-size: 48px;\n text-transform: uppercase;\n margin: 8px 0;\n }\n}\n\n.nf-icon.material-icons {\n font-size: 100px;\n position: static;\n}\n","@use '../../mixins';\n@use '../../constants';\n\n// Disable sidenav animations for the initial render.\n.starting.mat-drawer-transition .mat-drawer-content {\n transition: none;\n}\n\naio-nav-menu {\n display: block;\n margin: 0 auto;\n max-width: 268px;\n @include mixins.typescale-small;\n ul, a {\n padding: 0;\n margin: 0;\n }\n\n &:first-child {\n margin-top: 16px;\n }\n\n aio-nav-item div a {\n padding-left: 6px;\n }\n}\n\nmat-sidenav.mat-sidenav.sidenav {\n position: fixed;\n top: 64px;\n bottom: 0;\n left: 0;\n padding: 0;\n min-width: 260px;\n box-shadow: 6px 0 6px rgba(0,0,0,0.10);\n\n &.collapsed {\n top: 56px;\n }\n}\n\nmat-sidenav-container.sidenav-container {\n min-height: 100%;\n height: auto !important;\n max-width: 100%;\n margin: 0;\n transform: none;\n\n &.has-floating-toc {\n max-width: 82%;\n }\n}\n\nmat-sidenav-container div.mat-sidenav-content {\n height: auto;\n}\n\n.heading-container {\n display: flex;\n flex-direction: column;\n}\n\n.vertical-menu-item {\n box-sizing: border-box;\n cursor: pointer;\n flex: 1;\n display: flex;\n flex-wrap: nowrap;\n align-items: center;\n max-width: 260px;\n overflow-wrap: break-word;\n padding-top: 4px;\n padding-bottom: 4px;\n text-decoration: none;\n text-align: left;\n word-wrap: break-word;\n\n &:focus {\n outline: constants.$accentblue auto 2px;\n }\n\n .node-title {\n flex: 1;\n }\n\n //icons _within_ nav\n .mat-icon {\n margin: 4px;\n }\n}\n\n.vertical-menu-item.selected {\n font-weight: 500;\n}\n\nbutton.vertical-menu-item {\n border: none;\n background-color: transparent;\n margin-right: 0;\n}\n\n.heading {\n cursor: pointer;\n position: relative;\n}\n\n.heading-children.expanded {\n visibility: visible;\n opacity: 1;\n max-height: 4000px; // Arbitrary max-height. Can increase if needed. Must have measurement to transition height.\n transition: visibility 500ms, opacity 500ms, max-height 500ms;\n -webkit-transition-timing-function: ease-in-out;\n transition-timing-function: ease-in-out;\n}\n\n.heading-children.collapsed {\n visibility: hidden;\n opacity: 0;\n max-height: 1px; // Must have measurement to transition height.\n transition: visibility 275ms, opacity 275ms, max-height 280ms;\n -webkit-transition-timing-function: ease-out;\n transition-timing-function: ease-out;\n}\n\n.no-animations {\n .heading-children.expanded, .heading-children.collapsed {\n transition: none! important;\n }\n}\n\n.level-1 {\n font-family: constants.$main-font;\n @include mixins.typescale-default;\n font-weight: 400;\n margin-left: 14px;\n transition: background-color 0.2s;\n}\n\n.level-2 {\n font-family: constants.$main-font;\n @include mixins.typescale-default;\n font-weight: 400;\n margin-left: 12px;\n text-transform: none;\n}\n\n.level-3 {\n font-family: constants.$main-font;\n @include mixins.typescale-default;\n margin-left: 10px;\n}\n\n.level-4 {\n font-family: constants.$main-font;\n @include mixins.typescale-default;\n margin-left: 8px;\n}\n\n.level-1.expanded .mat-icon, .level-2.expanded .mat-icon {\n @include mixins.rotate(90deg);\n}\n\n.level-1:not(.expanded) .mat-icon, .level-2:not(.expanded) .mat-icon {\n @include mixins.rotate(0deg);\n}\n\naio-nav-menu.top-menu {\n padding: 24px 0 0;\n\n aio-nav-item:last-child div {\n border-bottom: 1px solid rgba(constants.$mediumgray, 0.5);\n }\n\n aio-nav-item:first-child div {\n border-top: 1px solid rgba(constants.$mediumgray, 0.5);\n }\n}\n\n// Angular Version Selector\nmat-sidenav .doc-version {\n padding: 8px;\n border-top: 1px solid constants.$lightgray;\n\n select {\n outline: none;\n width: 100%;\n height: 32px;\n border: 1px solid constants.$lightgray;\n\n option {\n font-family: constants.$main-font;\n @include mixins.typescale-default;\n }\n }\n}\n","@use \"../../constants\";\n\nnav#main-table-of-contents {\n width: 200px;\n height: 900px;\n position: fixed;\n right: 0;\n top: 50px;\n bottom: 100px;\n margin-left: 32px;\n background-color: constants.$purple;\n}\n","@use \"../../mixins\";\n\n// VARIABLES\n$hamburgerShownMargin: 0 8px 0 0;\n$hamburgerHiddenMargin: 0 16px 0 -64px;\n\n// DOCS PAGE / STANDARD: TOPNAV TOOLBAR FIXED\nmat-toolbar.mat-toolbar {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 10;\n mat-toolbar-row {\n padding: 0 16px 0 0;\n }\n}\n\n// HOME PAGE OVERRIDE: TOPNAV TOOLBAR\naio-shell.page-home mat-toolbar.mat-toolbar {\n @media (min-width: 481px) {\n &:not(.transitioning) {\n background-color: transparent;\n transition: background-color 0.2s linear;\n }\n }\n}\n\n// MARKETING PAGES OVERRIDE: TOPNAV TOOLBAR AND HAMBURGER\naio-shell.page-home mat-toolbar.mat-toolbar,\naio-shell.page-features mat-toolbar.mat-toolbar,\naio-shell.page-events mat-toolbar.mat-toolbar,\naio-shell.page-resources mat-toolbar.mat-toolbar {\n box-shadow: none;\n\n // FIXED TOPNAV TOOLBAR FOR SMALL MOBILE\n @media (min-width: 481px) {\n position: absolute;\n }\n}\n\n// DOCS PAGES OVERRIDE: HAMBURGER\naio-shell.folder-api mat-toolbar.mat-toolbar,\naio-shell.folder-docs mat-toolbar.mat-toolbar,\naio-shell.folder-guide mat-toolbar.mat-toolbar,\naio-shell.folder-tutorial mat-toolbar.mat-toolbar {\n @media (min-width: 1366px) {\n .hamburger.mat-mdc-button {\n // Hamburger shown on non-marketing pages on large screens.\n margin: $hamburgerShownMargin;\n }\n }\n}\n\n// HAMBURGER BUTTON\n.hamburger.mat-mdc-button {\n height: 100%;\n margin: $hamburgerShownMargin;\n padding: 0;\n\n @media (min-width: 1366px) {\n // Hamburger hidden by default on large screens.\n // (Will be shown per doc.)\n margin: $hamburgerHiddenMargin;\n }\n\n @media (max-width: 480px) {\n min-width: 15%;\n }\n\n &:not(.starting) {\n transition-duration: 0.4s;\n transition-property: color, margin;\n transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);\n }\n\n > .mat-icon {\n position: inherit;\n font-size: 24px;\n width: 24px;\n height: 24px;\n }\n}\n\n// HOME NAV-LINK\n.nav-link.home {\n cursor: pointer;\n margin: 0 16px 0 0;\n padding: 21px 0;\n\n @media screen and (max-width: 480px) {\n margin-right: 8px;\n }\n\n img {\n position: relative;\n margin-top: -21px;\n top: 12px;\n height: 40px;\n\n @media (max-width: 1366px) {\n &:hover {\n transform: scale(1.1);\n }\n }\n }\n}\n\n.nav-link[href='workshops'] {\n border-radius: 10px;\n position: relative;\n padding: 16px;\n &:focus {\n padding: 16px;\n }\n &:after {\n content: 'New';\n position: absolute;\n font-size: 12px;\n line-height: 14px;\n top: 4px;\n right: 10px;\n }\n}\n\n// TOP MENU\naio-top-menu {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: flex-end;\n width: 100%;\n\n ul {\n display: flex;\n flex-direction: row;\n align-items: center;\n list-style-position: inside;\n padding: 0px;\n margin: 0px;\n\n li {\n padding-bottom: 2px;\n list-style-type: none;\n cursor: pointer;\n\n &:hover {\n opacity: 0.7;\n }\n\n &:focus {\n outline: none;\n }\n }\n }\n\n a.nav-link {\n margin: 0;\n padding: 24px 16px;\n cursor: pointer;\n\n &:focus {\n border-radius: 4px;\n outline: none;\n padding: 8px 16px;\n }\n }\n}\n\n// SEARCH BOX\naio-search-box.search-container {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n width: 100%;\n min-width: 150px;\n height: 100%;\n\n input {\n border: none;\n border-radius: 100px;\n padding: 5px 16px;\n margin-left: 8px;\n width: 180px;\n max-width: 240px;\n height: 50%;\n -webkit-appearance: none;\n\n &:focus {\n outline: none;\n }\n\n @include mixins.bp(big) {\n transition: width 0.4s ease-in-out;\n\n &:focus {\n width: 500px;\n }\n }\n @media (max-width: 480px) {\n width: 150px;\n }\n }\n}\n\n// EXTERNAL LINK ICONS\n.app-toolbar {\n .toolbar-external-icons-container {\n display: flex;\n flex-direction: row;\n height: 100%;\n\n a {\n display: flex;\n align-items: center;\n margin-left: 16px;\n\n @media screen and (max-width: 480px) {\n margin-left: 8px;\n }\n\n &:hover {\n opacity: 0.8;\n }\n\n img {\n height: 24px;\n }\n }\n }\n}\n","/* ==============================\n MODULE STYLES\n ============================== */\n\n@forward 'alert/alert';\n@forward 'api-pages/api-pages';\n@forward 'api-list/api-list';\n@forward 'buttons/buttons';\n@forward 'callout/callout';\n@forward 'card/card';\n@forward 'code/code';\n@forward 'contribute/contribute';\n@forward 'contributor/contributor';\n@forward 'details/details';\n@forward 'edit-page-cta/edit-page-cta';\n@forward 'features/features';\n@forward 'filetree/filetree';\n@forward 'heading-anchors/heading-anchors';\n@forward 'hr/hr';\n@forward 'images/images';\n@forward 'progress-bar/progress-bar';\n@forward 'table/table';\n@forward 'presskit/presskit';\n@forward 'resources/resources';\n@forward 'search-results/search-results';\n@forward 'toc/toc';\n@forward 'select-menu/select-menu';\n@forward 'deploy-theme/deploy-theme';\n@forward 'notification/notification';\n@forward 'label/label';\n@forward 'enterprise-support/enterprise-support';\n","@use \"../../mixins\";\n\n.alert {\n padding: 16px;\n margin: 24px 0px;\n @include mixins.typescale-default;\n width: 100%;\n box-sizing: border-box;\n clear: both;\n\n h1, h2, h3, h4, h5, h6 {\n font-weight: 500;\n }\n\n > * {\n margin: 8px 16px;\n }\n}\n","@use '../../mixins';\n\n.github-links {\n float: right;\n .material-icons {\n border-radius: 4px;\n padding: 4px;\n @include mixins.typescale-large;\n }\n}\n\n.api-header {\n display: flex;\n align-items: center;\n\n @media screen and (max-width: 600px) {\n flex-direction: column;\n align-items: flex-start;\n }\n}\n\n.api-body {\n\n .class-overview {\n position: relative;\n\n code-example {\n clear: left;\n }\n }\n\n .method-table, .option-table, .list-table {\n .with-github-links {\n align-items: center;\n display: flex;\n justify-content: space-between;\n\n .github-links {\n a {\n .material-icons:hover {\n background: none;\n }\n }\n }\n }\n\n h3 {\n margin: 6px 0;\n font-weight: bold;\n clear: left;\n }\n\n h4 {\n @include mixins.typescale-small;\n font-weight: bold;\n margin-top: 12px;\n }\n }\n\n .api-heading {\n padding: 5px 0;\n @include mixins.typescale-default;\n font-weight: bold;\n }\n\n .short-description {\n margin: 6px 0 0 10px;\n }\n\n .properties-table {\n @include mixins.typescale-small;\n\n thead th {\n &:nth-child(1) {\n width: 20%;\n }\n &:nth-child(2) {\n width: 20%;\n }\n }\n }\n\n .parameters-table {\n margin-top: 0;\n @include mixins.typescale-small;\n td:nth-child(1) {\n width: 20%;\n }\n }\n\n details.overloads {\n margin-left: -8px;\n\n summary {\n height: inherit;\n padding: 8px 12px;\n h4 {\n margin: 0;\n clear: left;\n }\n }\n}\n\n .from-constructor, .read-only-property {\n font-style: italic;\n }\n}\n\n.deprecated-api-item {\n text-decoration: line-through;\n}\n","@use '../../constants';\n@use '../../mixins';\n\n/* API EDIT ICON */\n#api {\n .api-filter .material-icons {\n right: 48px;\n }\n}\n\n/* API LIST STYLES */\n\naio-api-list {\n div.form-search i.material-icons {\n width: 20px;\n pointer-events: none;\n }\n\n .form-search input {\n width: 182px;\n }\n\n .api-list-container {\n display: flex;\n flex-direction: column;\n margin: 0 auto;\n\n h2 {\n margin-top: 16px;\n }\n }\n}\n\n.api-filter {\n display: flex;\n margin: 0 auto;\n\n @media (max-width: 600px) {\n flex-direction: column;\n margin: 16px auto;\n }\n\n .form-select-menu, .form-search {\n margin: 8px;\n }\n}\n\n/* LAYOUT */\n\n.docs-content {\n position: relative;\n}\n\n.l-content-small {\n padding: 16px;\n max-width: 1100px;\n margin: 0;\n\n @media handheld and (max-width: constants.$phone-breakpoint),\n screen and (max-device-width: constants.$phone-breakpoint),\n screen and (max-width: constants.$tablet-breakpoint) {\n padding: 24px 0 0;\n }\n}\n\n/* SEARCH BAR */\n\n.form-search {\n position: relative;\n\n input {\n @include mixins.typescale-default;\n height: 32px;\n line-height: 32px;\n outline: none;\n padding: 0 16px 0 32px;\n transition: all .2s;\n\n // PLACEHOLDER TEXT\n &::-webkit-input-placeholder { /* Chrome/Opera/Safari */\n @include mixins.typescale-small;\n }\n &::-moz-placeholder { /* Firefox 19+ */\n @include mixins.typescale-small;\n }\n &:-ms-input-placeholder { /* IE 10+ */\n @include mixins.typescale-small;\n }\n &:-moz-placeholder { /* Firefox 18- */\n @include mixins.typescale-small;\n }\n }\n\n .material-icons {\n @include mixins.typescale-large;\n // must match input line-height;\n line-height: 32px;\n height: 100%;\n left: 8px;\n position: absolute;\n z-index: constants.$layer-1;\n }\n}\n\n/* API SYMBOLS */\n\n/* SYMBOL CLASS */\n\n.symbol {\n border-radius: 2px;\n display: inline-block;\n font-size: 10px;\n font-weight: 600;\n line-height: 16px;\n text-align: center;\n width: 16px;\n\n @each $name, $symbol in constants.$api-symbols {\n &.#{$name} {\n &:before {\n content: map-get($symbol, content);\n }\n }\n }\n}\n\n/* API HOMEE PAGE */\n\n/* API FILTER MENU */\n\n.api-filter {\n aio-select {\n width: 200px;\n\n .symbol {\n margin-right: 8px;\n }\n }\n}\n\n/* API CLASS LIST */\n\n.docs-content .api-list {\n list-style: none;\n margin: 0 0 32px -8px;\n padding: 0;\n overflow: hidden;\n\n @media screen and (max-width: 600px) {\n margin: 0 0 0 -8px;\n }\n\n li {\n font-size: 14px;\n margin: 8px 0;\n line-height: 14px;\n padding: 0;\n float: left;\n width: 33%;\n overflow: hidden;\n min-width: 220px;\n text-overflow: ellipsis;\n white-space: nowrap;\n\n .symbol {\n margin-right: 8px;\n }\n a {\n display: inline-block;\n line-height: 16px;\n padding: 0 16px 0;\n text-decoration: none;\n transition: all .3s;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n }\n}\n\n.docs-content .h2-api-docs,\n.docs-content .h2-api-docs:first-of-type {\n font-size: 18px;\n line-height: 24px;\n margin-top: 0;\n}\n\n.openParens {\n margin-top: 15px;\n}\n\n.endParens {\n margin-bottom: 20px !important;\n}\n\np {\n &.selector {\n margin: 0;\n }\n\n &.location-badge {\n margin: 0 0 16px 16px !important;\n }\n\n .api-doc-code {\n border-bottom: 0;\n\n :hover {\n border-bottom: none;\n }\n }\n}\n\n.row-margin {\n margin-bottom: 36px;\n h2 {\n line-height: 28px;\n }\n}\n\n.code-margin {\n margin-bottom: 8px;\n}\n\n.no-bg {\n background: none;\n padding: 0;\n}\n\n.no-bg-with-indent {\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 16px;\n margin-top: 6px;\n margin-bottom: 0;\n background: none;\n}\n\n.code-background {\n padding: 0 5px 0;\n}\n\n.code-anchor {\n cursor: pointer;\n font-size: inherit;\n\n &:hover {\n text-decoration: underline;\n }\n}\n\n.api-doc-code {\n @include mixins.typescale-default;\n\n // the last .pln (white space) creates additional spacing between sections of the api doc. Remove it.\n &.no-pln {\n .pln:last-child {\n display: none;\n }\n }\n}\n\n@media screen and (max-width: 600px) {\n .docs-content {\n // Overrides display flex from angular material.\n // This was added because Safari doesn't play nice with layout=\"column\".\n // Look of API doc in Chrome and Firefox remains the same, and is fixed for Safari.\n .layout-xs-column {\n display: block !important;\n }\n }\n\n .api-doc-code {\n font-size: 12px;\n }\n\n p.location-badge {\n position: relative;\n font-size: 11px;\n }\n}\n","@use '../../mixins';\n@use '../../constants';\n\n/* Button Styles */\n\n.button,\na.button.mat-button {\n display: inline-block;\n line-height: 32px;\n padding: 0px 16px;\n @include mixins.typescale-default;\n font-weight: 400;\n border-radius: 3px;\n text-decoration: none;\n text-transform: uppercase;\n overflow: hidden;\n border: none;\n\n // SIZES\n &.button-small {\n @include mixins.typescale-small;\n line-height: 24px;\n padding: 0px 8px;\n }\n\n &.button-large {\n @include mixins.typescale-default;\n line-height: 48px;\n padding: 0px 24px;\n }\n\n &.button-x-large {\n @include mixins.typescale-large;\n line-height: 56px;\n padding: 0px 24px;\n }\n\n\n // COLORS\n &.button-shield,\n &.button-shield.mat-button {\n color: rgba(constants.$white, .87);\n padding-left: 54px;\n background-size: 22px 22px;\n }\n}\n\n.cta-bar {\n text-align: center;\n\n .button {\n margin: 0px 8px;\n box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);\n transition: all .2s ease-in-out;\n &:hover {\n transform: scale(1.1);\n }\n }\n}\n\na.filter-button {\n width: 140px;\n @include mixins.typescale-default;\n line-height: 48px;\n padding: 0px 16px;\n margin: 8px;\n border-radius: 4px;\n}\n\n[mat-button], [mat-raised-button], [mat-button], [mat-raised-button] {\n text-transform: uppercase;\n}\n","@use '../../mixins';\n@use '../alert/alert';\n\n.callout {\n @extend .alert;\n padding: 0px;\n border-left: none !important;\n border-radius: 4px;\n\n header {\n line-height: 24px;\n font-weight: 500;\n padding: 8px 16px;\n margin: 0;\n text-transform: uppercase;\n border-radius: 4px 4px 0 0;\n }\n\n p {\n padding: 16px;\n margin: 0px;\n @include mixins.typescale-default;\n }\n}\n","@use '../../mixins';\n\n.card-container {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n margin: 24px 0;\n}\n\n.docs-card {\n @include mixins.card(194px, 30%);\n max-width: 340px;\n min-width: 262px;\n margin: 24px 8px;\n padding-bottom: 48px;\n position: relative;\n\n &:hover {\n text-decoration: none;\n\n p {\n padding: 0 16px;\n }\n\n .card-footer {\n line-height: 32px;\n padding: 8px 16px;\n }\n }\n\n\n section {\n @include mixins.typescale-large;\n margin: 0;\n padding: 32px 0 24px;\n text-transform: none;\n text-align: center;\n }\n\n p {\n @include mixins.typescale-small;\n padding: 0 16px;\n margin: 0;\n text-align: center;\n }\n\n .card-footer {\n bottom: 0;\n box-sizing: border-box;\n line-height: 48px;\n left: 0;\n position: absolute;\n right: 0;\n text-align: right;\n a {\n @include mixins.typescale-small;\n }\n }\n .card-footer.center {\n text-align: center;\n }\n}\n\n.card-section {\n @include mixins.card(auto, 90%);\n padding: 16px 32px;\n margin: 16px 0;\n display: flex;\n flex-direction: row;\n align-items: center;\n\n h1, h2, h3, h4, h5, h6 {\n margin: 8px 0;\n }\n\n a, .button, button {\n text-align: center;\n }\n\n}\n","@use '../../constants';\n@use '../../mixins';\n\ncode-example,\ncode-tabs {\n clear: both;\n display: block;\n}\n\ncode-example {\n &:not(.no-box) {\n border-radius: 5px;\n margin: 16px auto;\n }\n\n &.no-box {\n pre {\n margin: 0;\n }\n code {\n background-color: transparent;\n }\n }\n\n code {\n overflow: auto;\n }\n}\n\ncode-example,\ncode-tabs {\n .mat-card {\n padding: 0;\n border-radius: 5px;\n }\n code {\n overflow: auto;\n }\n}\n\n// TERMINAL / SHELL TEXT STYLES\ncode-example header {\n border-radius: 5px 5px 0 0;\n @include mixins.typescale-default;\n padding: 8px 16px;\n}\n\ncode-tabs div .mat-tab-body-content {\n height: auto;\n}\n\ncode-tabs .mat-tab-body-wrapper mat-tab-body .mat-tab-body {\n overflow-y: hidden;\n}\n\ncode-tabs mat-tab-body-content .fadeIn {\n animation: opacity 2s ease-in;\n}\n\naio-code pre {\n display: flex;\n min-height: 32px;\n margin: 16px 24px;\n white-space: pre-wrap;\n align-items: center;\n\n code span {\n line-height: 24px;\n }\n}\n\n.copy-button {\n position: absolute;\n top: -7px;\n right: -19px;\n padding: 0;\n\n background-color: transparent;\n border: none;\n cursor: pointer;\n}\n\n.code-tab-group .mat-tab-label {\n white-space: nowrap;\n}\n\n.code-tab-group .mat-tab-body-content {\n height: auto;\n transform: none;\n}\n\n[role='tabpanel'] {\n transition: none;\n}\n\n.sidenav-content code a {\n color: inherit;\n font-size: inherit;\n}\n\n/* PRETTY PRINTING STYLES for prettify.js. */\n\n.prettyprint {\n position: relative;\n}\n\n/* Specify class=linenums on a pre to get line numbering */\nol.linenums {\n margin: 0;\n font-family: constants.$main-font;\n li {\n margin: 0;\n font-family: constants.$code-font;\n font-size: 90%;\n line-height: 24px;\n }\n}\n",".contribute-container {\n h2 {\n margin: 0;\n }\n\n .card-section {\n justify-content: space-between;\n max-width: 880px;\n\n > :first-child {\n margin-right: 2rem;\n width: 60%;\n }\n\n &:last-child {\n margin-bottom: 0;\n }\n }\n}\n","aio-contributor-list {\n @media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 900px) {\n .grid-fluid{\n width: auto;\n }\n }\n\n @media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 900px) {\n .grid-fluid{\n margin-left: 20px;\n margin-right: 20px;\n float: none;\n display: block;\n width: auto;\n }\n }\n}\n\n.group-buttons {\n margin: 32px auto;\n}\n\n.contributor-group {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n justify-content: center;\n}\n\naio-contributor, ngrx-contributor {\n margin: 8px;\n position: relative;\n border-radius: 4px;\n transition: all .3s;\n perspective: 800px;\n max-width: 270px;\n\n &.clickable {\n cursor: pointer;\n }\n\n &:hover {\n transform: translate3d(0,-3px,0);\n\n .contributor-image {\n transform: scale(1.05);\n }\n\n .contributor-info {\n opacity: 1;\n }\n }\n\n .contributor-info {\n height: 168px;\n width: 168px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n text-align: center;\n opacity: 0;\n border-radius: 50%;\n\n [mat-button] {\n font-size: 14px;\n font-weight: 500;\n margin: 8px;\n padding: 0;\n\n &.icon {\n min-width: 20px;\n width: 20px;\n\n .fa-2x {\n font-size: 20px;\n }\n }\n }\n }\n\n div.contributor-card {\n width: 250px;\n height: 270px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: space-between;\n position: relative;\n overflow: hidden;\n border-radius: 4px;\n transform-style:preserve-3d;\n transition:transform ease 500ms;\n\n h3 {\n margin: 8px 0;\n }\n\n .card-front, .card-back {\n width: 100%;\n height: 100%;\n text-align: center;\n display: flex;\n flex-direction: column;\n box-sizing: border-box;\n }\n\n .card-front {\n justify-content: center;\n }\n\n .card-back {\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: center;\n padding: 16px 24px;\n transform:rotateY(180deg);\n\n section {\n display: none;\n }\n\n p {\n margin: 8px 0;\n font-size: 12px;\n line-height: 14px;\n text-align: left;\n overflow: hidden;\n }\n\n }\n\n &.flipped {\n transform:rotateY(180deg);\n .card-front {\n display: none;\n }\n }\n }\n\n .contributor-image {\n display: flex;\n justify-content: center;\n border-radius: 50%;\n align-items: center;\n height: 168px;\n width: 168px;\n background-size: cover;\n background-position: center;\n margin: 8px auto;\n transition: all .2s ease-in-out;\n }\n\n section {\n font-size: 14px;\n font-weight: 500;\n padding: 8px;\n margin: 0;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n text-transform: uppercase;\n }\n\n p {\n cursor: pointer;\n font-size: 14px;\n line-height: 18px;\n margin: 8px 16px;\n text-overflow: ellipsis;\n overflow: scroll;\n font-weight: 400;\n }\n}\n","@use '../../mixins';\n\n/*\n * General styling to make detail/summary tags look a bit more material\n * To get the best out of it you should structure your usage like this:\n *\n * ```\n * <details>\n * <summary>Some title</summary>\n * <div class=\"details-content\">\n * Some content\n * </div>\n * </details>\n *\n */\n\nsummary {\n cursor: pointer;\n @include mixins.typescale-default;\n position: relative;\n padding: 16px 24px;\n display: block; // Remove the built in details marker in FF\n\n &::-webkit-details-marker {\n display: none; // Remove the built in details marker in webkit\n }\n\n &::before {\n content: '\\E5CE'; // See https://material.io/icons/#ic_expand_less\n font-family: 'Material Icons';\n @include mixins.typescale-xlarge;\n -webkit-font-smoothing: antialiased;\n @include mixins.rotate(0deg); // We will rotate 180 degrees when details is open\n float: right;\n }\n}\n\ndetails {\n .detail-contents, p {\n padding: 0px 24px 16px 24px;\n }\n\n code-example {\n padding: 0;\n }\n\n &[open] > summary::before {\n @include mixins.rotate(180deg); // Rotate the icon\n }\n}\n","@use '../../mixins';\n\n.edit-page-cta {\n font-weight: 400;\n @include mixins.typescale-default;\n\n text-align: right;\n margin-right: 32px;\n display: block;\n position: absolute;\n right: 0;\n}\n","@use '../../mixins';\n\n// FEATURES MARKETING PAGE SPECIFIC STYLES\n\n.feature-section {\n margin: 0 0 32px;\n\n .feature-header, .text-headline {\n text-align: center;\n }\n\n .feature-header img {\n margin: 16px;\n }\n\n .feature-title {\n @include mixins.typescale-default;\n font-weight: 500;\n margin: 8px 0px;\n clear: both;\n }\n\n .feature-row {\n display: flex;\n flex-wrap: wrap;\n\n @media (max-width: 600px) {\n flex-direction: column;\n }\n\n .feature {\n max-width: 300px;\n margin: 0 16px;\n\n @media (max-width: 768px) {\n max-width: 100%;\n }\n }\n }\n}\n","@use '../../constants';\n\n.filetree {\n border-radius: 4px;\n margin: 0 0 24px 0;\n padding: 16px 32px;\n\n .file {\n display: block;\n font-family: constants.$main-font;\n letter-spacing: 0.3px;\n line-height: 32px;\n }\n\n .children {\n padding-left: 24px;\n position: relative;\n overflow: hidden;\n\n .file {\n position: relative;\n\n &:before {\n content: '';\n left: -18px;\n bottom: 16px;\n width: 16px;\n height: 9999px;\n position: absolute;\n border-width: 0 0 1px 1px;\n border-style: solid;\n border-radius: 0 0 0 3px;\n }\n }\n }\n}\n",".sidenav-content {\n h1, h2, h3, h4, h5, h6 {\n\n .header-link {\n margin: 0 4px;\n text-decoration: none;\n user-select: none;\n visibility: hidden;\n display: inline-block;\n vertical-align: text-top;\n width: 1px;\n }\n\n &:hover .header-link {\n visibility: visible;\n }\n }\n}\n","hr {\n border: none;\n height: 1px;\n}\n\n.hr-margin {\n display: block;\n height: 1px;\n border: 0;\n margin-top: 16px;\n margin-bottom: 16px;\n padding: 0;\n}\n",".content {\n img {\n &.right {\n clear: both;\n float: right;\n margin-left: 20px;\n margin-bottom: 20px;\n }\n\n &.left {\n clear: both;\n float: left;\n margin-right: 20px;\n margin-bottom: 20px;\n }\n\n @media (max-width: 1300px) {\n max-width: 100%;\n height: auto;\n }\n\n @media (max-width: 600px) {\n float: none !important;\n &.right {\n margin-left: 0;\n }\n &.left {\n margin-right: 0;\n }\n }\n }\n\n figure {\n border-radius: 4px;\n padding: 20px;\n display: inline-block;\n margin: 0 0 14px 0;\n\n img {\n border-radius: 4px;\n }\n }\n}\n",".progress-bar-container {\n height: 2px;\n overflow: hidden;\n position: fixed;\n top: 0;\n width: 100vw;\n z-index: 11;\n}\n","@use '../../mixins';\n\ntable {\n margin: 24px 0px;\n border-radius: 2px;\n\n &.is-full-width {\n width: 100%;\n }\n\n &.is-fixed-layout {\n table-layout: fixed;\n }\n\n thead > {\n tr {\n vertical-align: inherit;\n border-color: inherit;\n }\n\n tr > th {\n @include mixins.typescale-small;\n line-height: 28px;\n font-weight: 500;\n padding: 8px 24px;\n text-align: left;\n text-transform: uppercase;\n }\n }\n\n tbody > tr > {\n th,\n td {\n padding: 16px;\n text-align: left;\n line-height: 24px;\n vertical-align: top;\n\n @media (max-width: 480px) {\n &:before {\n // content: **ADD TABLE HEADER**;\n display: inline-block;\n }\n }\n }\n\n td {\n letter-spacing: 0.3px;\n }\n\n th {\n font-weight: 600;\n max-width: 100px;\n }\n }\n\n tbody > tr {\n &:last-child td {\n border: none;\n }\n }\n}\n\n#cheatsheet {\n table tbody td {\n overflow: auto;\n }\n\n @media only screen and (max-width: 990px) {\n /* Force table to not be like tables anymore */\n table,\n thead,\n tbody,\n tfoot,\n tr,\n th,\n td {\n display: block;\n position: relative;\n max-width: 100%;\n\n code {\n padding: 0;\n background-color: inherit;\n }\n }\n\n th {\n border-right: none;\n }\n\n th,\n td {\n &:not(:last-child) {\n border-bottom: none;\n padding-bottom: 0px;\n }\n }\n }\n}\n",".presskit-container {\n padding: 0 32px 32px 32px;\n\n .l-space-left-3 {\n margin-left: 3 * 8px;\n }\n\n .cc-by-anchor {\n text-decoration: underline;\n }\n\n .presskit-row {\n margin: 48px 0;\n width: 100%;\n\n .presskit-inner {\n display: flex;\n align-items: center;\n\n @media(max-width: 599px) {\n flex-direction: column;\n }\n\n h3 {\n font-weight: 500;\n margin-top: 0;\n margin-bottom: 0;\n\n @media(max-width: 599px) {\n padding-bottom: 16px;\n }\n }\n\n .transparent-img-bg {\n margin-top: 10px;\n border-radius: 4px;\n width: 128px;\n height: 128px;\n }\n\n ul {\n padding: 0;\n list-style-type: none;\n\n @media(max-width: 599px) {\n padding: 0 !important;\n margin: 0 !important;\n }\n\n li {\n margin: 0 0 8px 0;\n }\n }\n }\n\n .presskit-image-container {\n\n @media(max-width: 599px) {\n text-align: center;\n }\n\n img {\n height: 128px;\n width: auto;\n margin-bottom: 8px * 2;\n }\n }\n }\n\n .presskit-row:first-child {\n margin-top: 0;\n\n @media(max-width: 599px) {\n margin-top: 48px;\n }\n }\n}\n",".showcase {\n width: 80%;\n}\n\n.c-resource-nav {\n width: 20%;\n}\n\n.resources-container {\n position: relative;\n}\n\n.grid-fixed:after, .grid-fixed:before {\n content: '.';\n clear: both;\n display: block;\n overflow: hidden;\n visibility: hidden;\n font-size: 0;\n line-height: 0;\n width: 0;\n height: 0;\n}\n\n@media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 900px) {\n .grid-fixed {\n width: auto;\n }\n}\n\n@media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 900px) {\n .grid-fixed .c3, .grid-fixed .c8 {\n margin-left: 20px;\n margin-right: 20px;\n float: none;\n display: block;\n width: auto;\n }\n}\n\n@media handheld and (max-width: 480px), screen and (max-width: 480px), screen and (max-width: 480px) {\n .grid-fixed .c3, .grid-fixed .c8 {\n margin-left: 0px;\n margin-right: 0px;\n float: none;\n display: block;\n width: auto;\n }\n}\n\n@media handheld and (max-width: 900px), screen and (max-width: 900px) {\n /* line 6, ../scss/_responsive.scss */\n .grid-fixed{\n margin: 0 auto;\n *zoom: 1;\n }\n .grid-fixed:after, .grid-fixed:before, {\n content: '.';\n clear: both;\n display: block;\n overflow: hidden;\n visibility: hidden;\n font-size: 0;\n line-height: 0;\n width: 0;\n height: 0;\n }\n}\n\n@media handheld and (max-width: 480px), screen and (max-width: 480px) {\n /* line 6, ../scss/_responsive.scss */\n .grid-fixed {\n margin: 0 auto;\n *zoom: 1;\n }\n .grid-fixed:after, .grid-fixed:before {\n content: '.';\n clear: both;\n display: block;\n overflow: hidden;\n visibility: hidden;\n font-size: 0;\n line-height: 0;\n width: 0;\n height: 0;\n }\n}\n\naio-resource-list {\n\n .shadow-1 {\n transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);\n }\n\n .showcase {\n margin-bottom: 8px * 6;\n border-radius: 4px;\n }\n\n .c-resource {\n h4 {\n margin: 0;\n line-height: 24px;\n }\n\n p {\n margin: 0;\n }\n }\n\n .c-resource-nav {\n position: fixed;\n top: 142px;\n right: 32px;\n width: 8px * 20;\n z-index: 1;\n border-radius: 2px;\n\n a {\n text-decoration: none;\n }\n\n .category {\n padding: 10px 0;\n\n .category-link {\n display: block;\n margin: 2px 0;\n padding: 3px 14px;\n font-size: 18px !important;\n }\n }\n\n .subcategory {\n .subcategory-link {\n display: block;\n margin: 2px 0;\n padding: 4px 14px;\n }\n }\n }\n\n .h-anchor-offset {\n display: block;\n position: relative;\n top: -20px;\n visibility: hidden;\n }\n\n .l-flex--column {\n display: flex;\n flex-direction: column;\n }\n\n .c-resource-header {\n margin-bottom: 16px;\n }\n\n .c-contribute {\n margin-bottom: 24px;\n }\n\n .c-resource-header h2 {\n margin: 0;\n }\n\n .subcategory-title {\n padding: 16px 23px;\n margin: 0;\n }\n\n .h-capitalize {\n text-transform: capitalize;\n }\n\n .h-hide {\n display: none;\n }\n\n .resource-row-link {\n border: transparent solid 1px;\n margin: 0;\n padding: 16px 23px 16px 23px;\n position: relative;\n text-decoration: none;\n transition: all .3s;\n }\n\n .resource-row-link:hover {\n text-decoration: none;\n border-radius: 4px;\n transform: translateY(-2px);\n }\n\n @media(max-width: 900px) {\n .c-resource-nav {\n display: none;\n }\n }\n}\n","@use '../../mixins';\n\naio-search-results {\n z-index: 10;\n}\n\n.search-results {\n display: flex;\n flex-direction: row;\n justify-content: space-around;\n overflow: auto;\n padding: 68px 32px 0;\n\n width: auto;\n max-height: 95vh;\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n z-index: 5;\n box-sizing: border-box;\n\n @media (max-width: 480px) {\n display: block;\n .search-area {\n display: block;\n margin: 16px 16px;\n }\n }\n}\n\naio-search-results.embedded .search-results {\n padding: 0;\n color: inherit;\n width: auto;\n max-height: 100%;\n position: relative;\n background-color: inherit;\n box-shadow: none;\n box-sizing: border-box;\n}\n\n.search-area {\n display: flex;\n flex-direction: column;\n margin: 16px 16px;\n height: 100%;\n\n h3 {\n @include mixins.typescale-large;\n font-weight: 400;\n margin: 10px 0px 5px;\n text-transform: uppercase;\n }\n\n ul {\n margin: 0;\n padding: 0;\n\n li {\n list-style: none;\n }\n }\n\n a {\n @include mixins.typescale-default;\n text-decoration: none;\n font-weight: normal;\n &:visited {\n text-decoration: none;\n }\n\n span.symbol {\n margin-right: 8px;\n }\n }\n\n .priority-pages {\n padding: 0.5rem 0;\n a {\n font-weight: bold;\n }\n }\n\n @include mixins.bp(tiny) {\n display: block;\n }\n}\n","@use \"../../mixins\";\n\n.toc-container {\n width: 18%;\n position: fixed;\n top: 76px;\n right: 0;\n bottom: 12px;\n overflow-y: auto;\n overflow-x: hidden;\n}\n\naio-toc.embedded {\n @media (min-width: 801px) {\n display: none;\n }\n\n .toc-inner {\n padding: 12px 0 0 0;\n\n .toc-heading {\n margin: 0 0 8px;\n }\n }\n}\n\n.toc-inner {\n font-size: 13px;\n overflow-y: visible;\n padding: 4px 0 0 10px;\n\n .toc-heading,\n .toc-list .h1 {\n font-size: 115%;\n }\n\n .toc-heading {\n font-weight: 500;\n margin: 0 0 16px 8px;\n padding: 0;\n }\n\n .toc-heading.secondary {\n position: relative;\n top: -8px;\n }\n\n button.toc-heading,\n button.toc-more-items {\n cursor: pointer;\n display: inline-block;\n background: 0;\n background-color: transparent;\n border: none;\n box-shadow: none;\n padding: 0;\n text-align: start;\n\n &.embedded:focus {\n outline: none;\n }\n }\n\n button.toc-heading {\n mat-icon.rotating-icon {\n height: 18px;\n width: 18px;\n position: relative;\n left: -4px;\n top: 5px;\n }\n }\n\n button.toc-more-items {\n top: 10px;\n position: relative;\n }\n\n button.toc-more-items::after {\n content: 'expand_less';\n }\n\n button.toc-more-items.collapsed::after {\n content: 'more_horiz';\n }\n\n\n .mat-icon.collapsed {\n @include mixins.rotate(0deg);\n }\n\n .mat-icon:not(.collapsed) {\n @include mixins.rotate(90deg);\n // margin: 4px;\n }\n\n ul.toc-list {\n list-style-type: none;\n margin: 0;\n padding: 0 8px 0 0;\n\n @media (max-width: 800px) {\n width: auto;\n }\n\n li {\n box-sizing: border-box;\n font-size: 12px;\n line-height: 16px;\n padding: 3px 0 3px 12px;\n position: relative;\n transition: all 0.3s ease-in-out;\n\n &.h1:after {\n content: '';\n display: block;\n height: 1px;\n width: 40%;\n margin: 7px 0 4px 0;\n clear: both;\n }\n\n &.h3 {\n padding-left: 24px;\n }\n\n a {\n font-size: inherit;\n display:table-cell;\n overflow: visible;\n font-size: 12px;\n display: table-cell;\n }\n\n &.active {\n a {\n font-weight: 500;\n\n &:before {\n content: '';\n border-radius: 50%;\n left: -3px;\n top: 12px;\n position: absolute;\n width: 6px;\n height: 6px;\n }\n }\n }\n }\n\n &:not(.embedded) li {\n &:before {\n bottom: 0;\n content: '';\n left: 0;\n position: absolute;\n top: 0;\n }\n\n &:first-child:before {\n top: 13px;\n }\n\n &:last-child:before {\n bottom: calc(100% - 14px);\n }\n\n &:not(.active):hover a:before {\n content: '';\n border-radius: 50%;\n left: -3px;\n top: 12px;\n position: absolute;\n width: 6px;\n height: 6px;\n }\n }\n }\n\n}\n\naio-toc.embedded > div.collapsed li.secondary {\n display: none;\n}\n","@use '../../mixins';\n@use '../../constants';\n\n/* SELECT MENU */\n\n.form-select-menu {\n position: relative;\n}\n\n.form-select-button {\n box-sizing: border-box;\n @include mixins.typescale-small;\n line-height: 32px;\n font-weight: 400;\n height: 32px;\n outline: none;\n padding: 0 16px;\n text-align: left;\n width: 100%;\n cursor: pointer;\n\n strong {\n font-weight: 600;\n margin-right: 8px;\n text-transform: uppercase;\n }\n}\n\n.form-select-dropdown {\n border-radius: 4px;\n list-style-type: none;\n margin: 0;\n padding: 0;\n position: absolute;\n top: 0;\n width: 100%;\n z-index: constants.$layer-2;\n\n li {\n cursor: pointer;\n @include mixins.typescale-default;\n line-height: 32px;\n margin: 0;\n padding: 0 16px 0 40px;\n position: relative;\n transition: all .2s;\n\n .symbol {\n left: 16px;\n position: absolute;\n top: 8px;\n z-index: constants.$layer-5;\n }\n }\n}\n","@use \"../../constants\";\naio-shell.mode-archive {\n .mat-toolbar.mat-primary, footer {\n background: linear-gradient(145deg,#263238,#78909C);\n }\n\n .vertical-menu-item {\n &.selected, &:hover {\n color: #263238;\n }\n }\n\n .toc-inner ul.toc-list li.active a {\n color: #263238;\n\n &:before {\n background-color: #263238;\n }\n }\n\n .toc-inner ul.toc-list li:hover a {\n color: #263238;\n }\n}\n\naio-shell.mode-next {\n\n footer {\n background: linear-gradient(145deg,#84438a,#84438a);\n }\n\n .vertical-menu-item {\n &.selected, &:hover {\n color: constants.$lightpurple;\n }\n }\n\n .toc-inner ul.toc-list li.active a {\n color: constants.$lightpurple;\n\n &:before {\n background-color: constants.$lightpurple;\n }\n }\n\n .toc-inner ul.toc-list li:hover a {\n color: constants.$lightpurple;\n }\n}\n","@use '../../mixins';\n\n$notificationHeight: 56px;\n\n// we need to override some of the toolbar styling\n.mat-toolbar mat-toolbar-row.notification-container {\n padding: 0;\n height: auto;\n overflow: hidden;\n}\n\naio-notification {\n display: flex;\n position: relative;\n align-items: center;\n width: 100%;\n height: $notificationHeight;\n justify-content: center;\n\n @media (max-width: 430px) {\n justify-content: flex-start;\n padding-left: 10px;\n }\n\n .close-button {\n position: absolute;\n top: 0;\n right: 0;\n width: $notificationHeight;\n height: $notificationHeight;\n }\n\n .content {\n max-width: calc(100% - #{$notificationHeight});\n text-transform: none;\n padding: 0;\n\n > * {\n display: flex;\n }\n\n .icon {\n margin-right: 10px;\n @media (max-width: 464px) {\n display: none;\n }\n }\n\n .message {\n overflow: hidden;\n text-overflow: ellipsis;\n margin-right: 10px;\n }\n\n .action-button {\n border-radius: 15px;\n text-transform: uppercase;\n padding: 0 10px;\n @include mixins.typescale-small;\n @media (max-width: 780px) {\n display: none;\n }\n }\n }\n}\n\n// Here are all the hacks to make the content and sidebars the right height\n// when the notification is visible\n.aio-notification-show {\n .sidenav-content {\n padding-top: 80px + $notificationHeight;\n }\n\n mat-sidenav.mat-sidenav.sidenav {\n top: 56px + $notificationHeight;\n\n @media (max-width: 600px) {\n top: 56px + $notificationHeight;\n }\n }\n\n .toc-container {\n top: 76px + $notificationHeight;\n }\n\n .search-results {\n padding-top: 68px + $notificationHeight;\n }\n\n &.page-home, &.page-resources, &.page-events, &.page-features, &.page-presskit, &.page-contribute {\n section {\n padding-top: $notificationHeight;\n }\n }\n}\n\n// Animate the content when the notification bar is dismissed\n// this should be kept in sync with the animation durations in\n// - aio/src/app/layout/notification/notification.component.ts\n// - aio/src/app/app.component.ts : notificationDismissed()\n.aio-notification-animating {\n .sidenav-content {\n transition: padding-top 250ms ease;\n }\n mat-sidenav.mat-sidenav.sidenav, .toc-container {\n transition: top 250ms ease;\n }\n}\n","@use '../../mixins';\n\nlabel.raised, .api-header label {\n border-radius: 4px;\n padding: 4px 16px;\n display: inline;\n @include mixins.typescale-default;\n margin-right: 8px;\n font-weight: 500;\n text-transform: uppercase;\n\n @media screen and (max-width: 600px) {\n display: block;\n margin: 8px 0;\n }\n\n &.page-label {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n margin-bottom: 8px;\n width: 140px;\n\n .material-icons {\n margin-right: 8px;\n }\n }\n\n &.property-type-label {\n @include mixins.typescale-small;\n text-transform: none;\n }\n}\n\n.api-header label {\n\n // The API badges should be a little smaller\n padding: 2px 10px;\n @include mixins.typescale-small;\n\n @media screen and (max-width: 600px) {\n margin: 4px 0;\n }\n}\n",".team-grid {\n display: grid;\n grid-template-columns: 1fr 3fr;\n column-gap: 10px;\n row-gap: 20px;\n\n ngrx-contributor {\n justify-self: center;\n align-self: start;\n }\n\n @media only screen and (max-width: 600px) {\n grid-template-columns: 1fr;\n }\n}\n","@use './constants';\n@media print {\n // General Adjustments\n * {\n box-shadow: none !important;\n }\n\n body, mat-sidenav-container {\n background: none !important;\n }\n\n h1 {\n height: 40px !important;\n color: constants.$darkgray !important;\n }\n\n h1, h2, h3, h4, h5, h6 {\n page-break-after: avoid;\n }\n\n ul, ol, img, code-example, table, tr, .alert, .feature {\n page-break-inside: avoid;\n }\n\n table tbody tr:last-child td {\n border-bottom: 1px solid constants.$lightgray !important;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p {\n widows: 4;\n }\n\n p > code, li > code, table code {\n color: constants.$purple !important;\n }\n\n // No Print Class\n .no-print {\n display: none !important;\n }\n\n // Custom No Print for Sidenav Menu\n mat-sidenav.sidenav.mat-sidenav {\n display: none !important;\n }\n\n // Custom No Print Element Adjustments\n .mat-sidenav-content {\n margin: 0 !important;\n }\n\n mat-sidenav-container.sidenav-container {\n min-width: 100vw;\n }\n\n .sidenav-content {\n overflow: visible;\n }\n\n .filetree {\n max-width: 100%;\n }\n\n aio-code code {\n border: none !important;\n }\n\n code-example {\n &.code-shell, &[language=sh], &[language=bash] {\n background: none;\n\n .pnk, .blk, .pln, .otl, .kwd, .typ, .tag, .str, .atv, .atn, .com, .lit, .pun, .dec {\n color: constants.$darkgray;\n }\n }\n\n header {\n background: none;\n border: 0.5px solid constants.$lightgray;\n color: constants.$darkgray;\n }\n }\n\n .content code {\n border: 0.5px solid constants.$lightgray;\n }\n\n .mat-tab-labels {\n div.mat-tab-label {\n &:not(.mat-tab-label-active) span {\n font-style: italic;\n }\n\n &.mat-tab-label-active span {\n font-weight: bold;\n }\n }\n }\n\n .api-header label {\n color: constants.$darkgray !important;\n font-weight: bold !important;\n margin: 2px !important;\n padding: 0 !important;\n display: block !important;\n }\n\n .feature-section img {\n max-width: 70px !important;\n }\n}\n","@use 'sass:color';\n@use 'sass:list';\n@use 'sass:map';\n@use 'sass:meta';\n\n/// Include content under the current selector (&) or the document root if there is no current\n/// selector.\n/// @param {String} $root [html] The default root selector to use when there is no current selector.\n/// @output The given content under the current selector, or root selector if there is no current\n/// selector.\n/// @content Content to output under the current selector, or root selector if there is no current\n/// selector.\n@mixin current-selector-or-root($root: html) {\n @if & {\n @content;\n }\n @else {\n #{$root} {\n @content;\n }\n }\n}\n\n/// A version of the standard `map.merge` function that takes a variable number of arguments.\n/// Each argument is merged into the final result from left to right.\n/// @param {List} $maps The maps to combine with map.merge\n/// @return {Map} The combined result of successively calling map.merge with each parameter.\n@function merge-all($maps...) {\n $result: ();\n @each $map in $maps {\n $result: map.merge($result, $map);\n }\n @return $result;\n}\n\n/// A version of the standard `map.deep-merge` function that takes a variable number of arguments.\n/// Each argument is deep-merged into the final result from left to right.\n/// @param {List} $maps The maps to combine with map.deep-merge\n/// @return {Map} The combined result of successively calling map.deep-merge with each parameter.\n@function deep-merge-all($maps...) {\n $result: ();\n @each $map in $maps {\n $result: map.deep-merge($result, $map);\n }\n @return $result;\n}\n\n/// Coerces the given value to a list, by converting any non-list value into a single-item list.\n/// This should be used when dealing with user-passed lists of args to avoid confusing errors,\n/// since Sass treats `($x)` as equivalent to `$x`.\n/// @param {Any} $value The value to coerce to a list.\n/// @return {List} The original $value if it was a list, otherwise a single-item list containing\n/// $value.\n@function coerce-to-list($value) {\n @return if(meta.type-of($value) != 'list', ($value,), $value);\n}\n\n/// A version of the Sass `color.change` function that is safe ot use with CSS variables.\n@function safe-color-change($color, $args...) {\n $args: meta.keywords($args);\n @return if(meta.type-of($color) == 'color', color.change($color, $args...), $color);\n}\n\n/// Gets the given arguments as a map of keywords and validates that only supported arguments were\n/// passed.\n/// @param {ArgList} $args The arguments to convert to a keywords map.\n/// @param {List} $supported-args The supported argument names.\n/// @return {Map} The $args as a map of argument name to argument value.\n@function validate-keyword-args($args, $supported-args) {\n @if list.length($args) > 0 {\n @error #{'Expected keyword args, but got positional args: '}#{$args};\n }\n $kwargs: meta.keywords($args);\n @each $arg, $v in $kwargs {\n @if list.index($supported-args, $arg) == null {\n @error #{'Unsupported argument '}#{$arg}#{'. Valid arguments are: '}#{$supported-args};\n }\n }\n @return $kwargs;\n}\n","//\n// Copyright 2020 Google Inc.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n//\n\n@use 'sass:list';\n@use 'sass:map';\n@use 'sass:meta';\n@use './gss';\n\n/// When true, add an additional property/value declaration before declarations\n/// that use advanced features such as custom properties or CSS functions. This\n/// adds fallback support for older browsers such as IE11 that do not support\n/// these features at the cost of additional CSS. Set this variable to false to\n/// disable generating fallback declarations.\n$enable-fallback-declarations: true !default;\n\n/// Writes a CSS property/value declaration. This mixin is used throughout the\n/// theme package for consistency for dynamically setting CSS property values.\n///\n/// This mixin may optionally take a fallback value. For advanced features such\n/// as custom properties or CSS functions like min and max, a fallback value is\n/// recommended to support older browsers.\n///\n/// @param {String} $property - The CSS property of the declaration.\n/// @param {*} $value - The value of the CSS declaration. The value should be\n/// resolved by other theme functions first (i.e. custom property Maps and\n/// Material theme keys are not supported in this mixin). If the value is\n/// null, no declarations will be emitted.\n/// @param {*} $fallback - An optional fallback value for older browsers. If\n/// provided, a second property/value declaration will be added before the\n/// main property/value declaration.\n/// @param {Map} $gss - An optional Map of GSS annotations to add.\n/// @param {Bool} $important - If true, add `!important` to the declaration.\n@mixin declaration(\n $property,\n $value,\n $fallback-value: null,\n $gss: (),\n $important: false\n) {\n // Normally setting a null value to a property will not emit CSS, so mixins\n // wouldn't need to check this. However, Sass will throw an error if the\n // interpolated property is a custom property.\n @if $value != null {\n $important-rule: if($important, ' !important', '');\n\n @if $fallback-value and $enable-fallback-declarations {\n @include gss.annotate($gss);\n #{$property}: #{$fallback-value} #{$important-rule};\n\n // Add @alternate to annotations.\n $gss: map.merge(\n $gss,\n (\n alternate: true,\n )\n );\n }\n\n @include gss.annotate($gss);\n #{$property}: #{$value}#{$important-rule};\n }\n}\n\n/// Unpacks shorthand values for CSS properties (i.e. lists of 1-3 values).\n/// If a list of 4 values is given, it is returned as-is.\n///\n/// Examples:\n///\n/// unpack-value(4px) => 4px 4px 4px 4px\n/// unpack-value(4px 2px) => 4px 2px 4px 2px\n/// unpack-value(4px 2px 2px) => 4px 2px 2px 2px\n/// unpack-value(4px 2px 0 2px) => 4px 2px 0 2px\n///\n/// @param {Number | Map | List} $value - List of 1 to 4 value numbers.\n/// @return {List} a List of 4 value numbers.\n@function unpack-value($value) {\n @if meta.type-of($value) == 'map' or list.length($value) == 1 {\n @return $value $value $value $value;\n } @else if list.length($value) == 4 {\n @return $value;\n } @else if list.length($value) == 3 {\n @return list.nth($value, 1) list.nth($value, 2) list.nth($value, 3)\n list.nth($value, 2);\n } @else if list.length($value) == 2 {\n @return list.nth($value, 1) list.nth($value, 2) list.nth($value, 1)\n list.nth($value, 2);\n }\n\n @error \"Invalid CSS property value: '#{$value}' is more than 4 values\";\n}\n","@use 'sass:list';\n@use 'sass:map';\n@use 'sass:string';\n@use 'typography-utils';\n@use '../theming/inspection';\n@use './versioning';\n\n// Definition and versioning functions live in their own files to avoid circular dependencies, but\n// we re-export them here so that historical imports from this file continue to work without needing\n// to be updated.\n@forward './definition';\n@forward './versioning';\n\n@mixin typography-hierarchy($theme, $selector: '.mat-typography', $back-compat: false) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _m3-typography-hierarchy($theme, $selector, $back-compat);\n }\n @else {\n @include _m2-typography-hierarchy($theme, $selector);\n }\n}\n\n@function _get-selector($selectors, $prefix) {\n $result: ();\n @each $selector in $selectors {\n // Don't add \"naked\" tag selectors, and don't nest prefix selector.\n @if string.index($selector, '.') == 1 {\n $result: list.append($result, $selector, $separator: comma);\n }\n // Don't nest the prefix selector in itself.\n @if $selector != $prefix {\n $result: list.append($result, '#{$prefix} #{$selector}', $separator: comma);\n }\n }\n @return $result;\n}\n\n@mixin _m3-typography-level($theme, $selector-prefix, $level, $selectors, $margin: null) {\n #{_get-selector($selectors, $selector-prefix)} {\n // TODO(mmalerba): When we expose system tokens as CSS vars, we should change this to emit token\n // slots.\n font: inspection.get-theme-typography($theme, $level, font);\n letter-spacing: inspection.get-theme-typography($theme, $level, letter-spacing);\n @if $margin != null {\n margin: 0 0 $margin;\n }\n }\n}\n\n@mixin _m3-typography-hierarchy($theme, $selector-prefix, $add-m2-selectors) {\n $levels: (\n display-large: (\n selectors: ('.mat-display-large', 'h1'),\n m2-selectors: ('.mat-h1', '.mat-headline-1'),\n margin: 0.5em\n ),\n display-medium: (\n selectors: ('.mat-display-medium', 'h2'),\n m2-selectors: ('.mat-h2', '.mat-headline-2'),\n margin: 0.5em\n ),\n display-small: (\n selectors: ('.mat-display-small', 'h3'),\n m2-selectors: ('.mat-h3', '.mat-headline-3'),\n margin: 0.5em\n ),\n headline-large: (\n selectors: ('.mat-headline-large', 'h4'),\n m2-selectors: ('.mat-h4', '.mat-headline-4'),\n margin: 0.5em\n ),\n headline-medium: (\n selectors: ('.mat-headline-medium', 'h5'),\n m2-selectors: ('.mat-h5', '.mat-headline-5'),\n margin: 0.5em\n ),\n headline-small: (\n selectors: ('.mat-headline-small', 'h6'),\n m2-selectors: ('.mat-h6', '.mat-headline-6'),\n margin: 0.5em\n ),\n title-large: (\n selectors: ('.mat-title-large'),\n m2-selectors: ('.mat-subtitle-1'),\n ),\n title-medium: (\n selectors: ('.mat-title-medium'),\n m2-selectors: ('.mat-subtitle-2'),\n ),\n title-small: (\n selectors: ('.mat-title-small')\n ),\n body-large: (\n selectors: ('.mat-body-large', $selector-prefix),\n m2-selectors: ('.mat-body', '.mat-body-strong', '.mat-body-2'),\n ),\n body-medium: (\n selectors: ('.mat-body-medium')\n ),\n body-small: (\n selectors: ('.mat-body-small')\n ),\n label-large: (\n selectors: ('.mat-label-large')\n ),\n label-medium: (\n selectors: ('.mat-label-medium')\n ),\n label-small: (\n selectors: ('.mat-label-small'),\n m2-selectors: ('.mat-small', '.mat-caption')\n ),\n );\n\n @each $level, $options in $levels {\n @if $add-m2-selectors {\n $options: map.set($options, selectors,\n list.join(map.get($options, selectors), map.get($options, m2-selectors) or ()));\n }\n $options: map.remove($options, m2-selectors);\n\n // Apply styles for the level.\n @include _m3-typography-level($theme, $selector-prefix, $level, $options...);\n\n // Also style <p> inside body-large.\n @if $level == body-large {\n #{_get-selector(map.get($options, selectors), $selector-prefix)} {\n p {\n margin: 0 0 0.75em;\n }\n }\n }\n }\n}\n\n/// Emits baseline typographic styles based on a given config.\n/// @param {Map} $config-or-theme A typography config for an entire theme.\n/// @param {String} $selector Ancestor selector under which native elements, such as h1, will\n/// be styled.\n@mixin _m2-typography-hierarchy($theme, $selector) {\n // Note that it seems redundant to prefix the class rules with the `$selector`, however it's\n // necessary if we want to allow people to overwrite the tag selectors. This is due to\n // selectors like `#{$selector} h1` being more specific than ones like `.mat-title`.\n .mat-h1,\n .mat-headline-5,\n #{$selector} .mat-h1,\n #{$selector} .mat-headline-5,\n #{$selector} h1 {\n font: inspection.get-theme-typography($theme, headline-5, font);\n letter-spacing: inspection.get-theme-typography($theme, headline-5, letter-spacing);\n margin: 0 0 16px;\n }\n\n .mat-h2,\n .mat-headline-6,\n #{$selector} .mat-h2,\n #{$selector} .mat-headline-6,\n #{$selector} h2 {\n font: inspection.get-theme-typography($theme, headline-6, font);\n letter-spacing: inspection.get-theme-typography($theme, headline-6, letter-spacing);\n margin: 0 0 16px;\n }\n\n .mat-h3,\n .mat-subtitle-1,\n #{$selector} .mat-h3,\n #{$selector} .mat-subtitle-1,\n #{$selector} h3 {\n font: inspection.get-theme-typography($theme, subtitle-1, font);\n letter-spacing: inspection.get-theme-typography($theme, subtitle-1, letter-spacing);\n margin: 0 0 16px;\n }\n\n .mat-h4,\n .mat-body-1,\n #{$selector} .mat-h4,\n #{$selector} .mat-body-1,\n #{$selector} h4 {\n font: inspection.get-theme-typography($theme, body-1, font);\n letter-spacing: inspection.get-theme-typography($theme, body-1, letter-spacing);\n margin: 0 0 16px;\n }\n\n // Note: the spec doesn't have anything that would correspond to h5 and h6, but we add these for\n // consistency. The font sizes come from the Chrome user agent styles which have h5 at 0.83em\n // and h6 at 0.67em.\n .mat-h5,\n #{$selector} .mat-h5,\n #{$selector} h5 {\n @include typography-utils.font-shorthand(\n // calc is used here to support css variables\n calc(#{inspection.get-theme-typography($theme, body-2, font-size)} * 0.83),\n inspection.get-theme-typography($theme, body-2, font-weight),\n inspection.get-theme-typography($theme, body-2, line-height),\n inspection.get-theme-typography($theme, body-2, font-family)\n );\n\n margin: 0 0 12px;\n }\n\n .mat-h6,\n #{$selector} .mat-h6,\n #{$selector} h6 {\n @include typography-utils.font-shorthand(\n // calc is used here to support css variables\n calc(#{inspection.get-theme-typography($theme, body-2, font-size)} * 0.67),\n inspection.get-theme-typography($theme, body-2, font-weight),\n inspection.get-theme-typography($theme, body-2, line-height),\n inspection.get-theme-typography($theme, body-2, font-family)\n );\n\n margin: 0 0 12px;\n }\n\n .mat-body-strong,\n .mat-subtitle-2,\n #{$selector} .mat-body-strong,\n #{$selector} .mat-subtitle-2 {\n font: inspection.get-theme-typography($theme, subtitle-2, font);\n letter-spacing: inspection.get-theme-typography($theme, subtitle-2, letter-spacing);\n }\n\n .mat-body,\n .mat-body-2,\n #{$selector} .mat-body,\n #{$selector} .mat-body-2,\n #{$selector} {\n font: inspection.get-theme-typography($theme, body-2, font);\n letter-spacing: inspection.get-theme-typography($theme, body-2, letter-spacing);\n\n p {\n margin: 0 0 12px;\n }\n }\n\n .mat-small,\n .mat-caption,\n #{$selector} .mat-small,\n #{$selector} .mat-caption {\n font: inspection.get-theme-typography($theme, caption, font);\n letter-spacing: inspection.get-theme-typography($theme, caption, letter-spacing);\n }\n\n .mat-headline-1,\n #{$selector} .mat-headline-1 {\n font: inspection.get-theme-typography($theme, headline-1, font);\n letter-spacing: inspection.get-theme-typography($theme, headline-1, letter-spacing);\n margin: 0 0 56px;\n }\n\n .mat-headline-2,\n #{$selector} .mat-headline-2 {\n font: inspection.get-theme-typography($theme, headline-2, font);\n letter-spacing: inspection.get-theme-typography($theme, headline-2, letter-spacing);\n margin: 0 0 64px;\n }\n\n .mat-headline-3,\n #{$selector} .mat-headline-3 {\n font: inspection.get-theme-typography($theme, headline-3, font);\n letter-spacing: inspection.get-theme-typography($theme, headline-3, letter-spacing);\n margin: 0 0 64px;\n }\n\n .mat-headline-4,\n #{$selector} .mat-headline-4 {\n font: inspection.get-theme-typography($theme, headline-4, font);\n letter-spacing: inspection.get-theme-typography($theme, headline-4, letter-spacing);\n margin: 0 0 64px;\n }\n}\n","@use 'sass:list';\n@use 'sass:math';\n@use './property-getters';\n\n// Property getters live in their own file to avoid circular dependencies, but we re-export them\n// here so that historical imports from this file continue to work without needing to be updated.\n@forward './property-getters';\n\n/// Outputs the shorthand `font` CSS property, based on a set of typography values. Falls back to\n/// the individual properties if a value that isn't allowed in the shorthand is passed in.\n/// @param {String} $font-size The font-size value.\n/// @param {String | Number} $font-weight The font-weight value.\n/// @param {String | Number} $line-height The line-height value.\n/// @param {String} $font-family The font-family value.\n/// @returns {String} The `font` shorthand value combining the given parts.\n@mixin font-shorthand($font-size, $font-weight, $line-height, $font-family) {\n // If any of the values are set to `inherit`, we can't use the shorthand\n // so we fall back to passing in the individual properties.\n @if ($font-size == inherit or\n $font-weight == inherit or\n $line-height == inherit or\n $font-family == inherit or\n $font-size == null or\n $font-weight == null or\n $line-height == null or\n $font-family == null) {\n\n font-size: $font-size;\n font-weight: $font-weight;\n line-height: $line-height;\n font-family: $font-family;\n }\n @else {\n // Otherwise use the shorthand `font`, because it's the least amount of bytes.\n font: $font-weight list.slash($font-size, $line-height) $font-family;\n }\n}\n\n/// Emits CSS styles for the given typography level.\n/// @param {Map} $config A typography config.\n/// @param {Map} $level A typography level.\n@mixin typography-level($config, $level) {\n // we deliberately do not use the font shorthand here because it overrides\n // certain font properties that can't be configured in the current typography\n // config, e.g. the font-variant-caps or font-feature-settings property\n font-size: property-getters.font-size($config, $level);\n font-weight: property-getters.font-weight($config, $level);\n line-height: property-getters.line-height($config, $level);\n font-family: property-getters.font-family($config, $level);\n letter-spacing: property-getters.letter-spacing($config, $level);\n}\n\n/// Coerce a value to `em` if it is a unitless number, otherwise returns\n/// the value provided.\n@function private-coerce-unitless-to-em($value) {\n @return if(math.is-unitless($value), 1em * $value, $value);\n}\n","@use 'sass:color';\n@use '@material/chips/chip-theme' as mdc-chip-theme;\n@use '../core/tokens/m2/mdc/chip' as tokens-mdc-chip;\n@use '../core/tokens/m2/mat/chip' as tokens-mat-chip;\n@use '../core/tokens/token-utils';\n@use '../core/theming/theming';\n@use '../core/theming/inspection';\n@use '../core/theming/validation';\n@use '../core/typography/typography';\n\n/// Outputs base theme styles (styles not dependent on the color, typography, or density settings)\n/// for the mat-chips.\n/// @param {Map} $theme The theme to generate base styles for.\n@mixin base($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, base));\n }\n @else {\n .mat-mdc-standard-chip {\n @include mdc-chip-theme.theme(tokens-mdc-chip.get-unthemable-tokens());\n @include token-utils.create-token-values(\n tokens-mat-chip.$prefix, tokens-mat-chip.get-unthemable-tokens());\n }\n }\n}\n\n/// Outputs color theme styles for the mat-chips.\n/// @param {Map} $theme The theme to generate color styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the selected chip: primary, secondary, tertiary,\n/// or error (If not specified, default secondary color will be used).\n@mixin color($theme, $options...) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, color), $options...);\n }\n @else {\n .mat-mdc-standard-chip {\n $default-color-tokens: tokens-mdc-chip.get-color-tokens($theme);\n @include mdc-chip-theme.theme($default-color-tokens);\n @include token-utils.create-token-values(\n tokens-mat-chip.$prefix, tokens-mat-chip.get-color-tokens($theme));\n\n &.mat-mdc-chip-selected,\n &.mat-mdc-chip-highlighted {\n &.mat-primary {\n $primary-color-tokens: tokens-mdc-chip.get-color-tokens($theme, primary);\n @include mdc-chip-theme.theme($primary-color-tokens);\n @include token-utils.create-token-values(\n tokens-mat-chip.$prefix, tokens-mat-chip.get-color-tokens($theme, primary));\n }\n\n &.mat-accent {\n $accent-color-tokens: tokens-mdc-chip.get-color-tokens($theme, accent);\n @include mdc-chip-theme.theme($accent-color-tokens);\n @include token-utils.create-token-values(\n tokens-mat-chip.$prefix, tokens-mat-chip.get-color-tokens($theme, accent));\n }\n\n &.mat-warn {\n $warn-color-tokens: tokens-mdc-chip.get-color-tokens($theme, warn);\n @include mdc-chip-theme.theme($warn-color-tokens);\n @include token-utils.create-token-values(\n tokens-mat-chip.$prefix, tokens-mat-chip.get-color-tokens($theme, warn));\n }\n }\n }\n }\n}\n\n/// Outputs typography theme styles for the mat-chips.\n/// @param {Map} $theme The theme to generate typography styles for.\n@mixin typography($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, typography));\n }\n @else {\n $typography-tokens: tokens-mdc-chip.get-typography-tokens($theme);\n\n .mat-mdc-standard-chip {\n @include mdc-chip-theme.theme($typography-tokens);\n @include token-utils.create-token-values(\n tokens-mat-chip.$prefix, tokens-mat-chip.get-typography-tokens($theme));\n }\n }\n}\n\n/// Outputs density theme styles for the mat-chips.\n/// @param {Map} $theme The theme to generate density styles for.\n@mixin density($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, density));\n }\n @else {\n $density-tokens: tokens-mdc-chip.get-density-tokens($theme);\n\n .mat-mdc-chip.mat-mdc-standard-chip {\n @include mdc-chip-theme.theme($density-tokens);\n @include token-utils.create-token-values(\n tokens-mat-chip.$prefix, tokens-mat-chip.get-density-tokens($theme));\n }\n }\n}\n\n/// Outputs all (base, color, typography, and density) theme styles for the mat-chips.\n/// @param {Map} $theme The theme to generate styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the selected chip: primary, secondary, tertiary,\n/// or error (If not specified, default secondary color will be used).\n@mixin theme($theme, $options...) {\n @include theming.private-check-duplicate-theme-styles($theme, 'mat-chips') {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme), $options...);\n }\n @else {\n @include base($theme);\n @if inspection.theme-has($theme, color) {\n @include color($theme);\n }\n @if inspection.theme-has($theme, density) {\n @include density($theme);\n }\n @if inspection.theme-has($theme, typography) {\n @include typography($theme);\n }\n }\n }\n}\n\n@mixin _theme-from-tokens($tokens, $options...) {\n @include validation.selector-defined(\n 'Calls to Angular Material theme mixins with an M3 theme must be wrapped in a selector');\n $mdc-chip-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-chip.$prefix, $options...);\n $mat-chip-tokens: token-utils.get-tokens-for($tokens, tokens-mat-chip.$prefix, $options...);\n @include mdc-chip-theme.theme($mdc-chip-tokens);\n @include token-utils.create-token-values(tokens-mat-chip.$prefix, $mat-chip-tokens);\n}\n","@use '@material/switch/switch-theme' as mdc-switch-theme;\n@use '@material/form-field/form-field-theme' as mdc-form-field-theme;\n@use '../core/style/sass-utils';\n@use '../core/theming/theming';\n@use '../core/theming/inspection';\n@use '../core/theming/validation';\n@use '../core/tokens/token-utils';\n@use '../core/typography/typography';\n@use '../core/tokens/m2/mdc/form-field' as tokens-mdc-form-field;\n@use '../core/tokens/m2/mat/switch' as tokens-mat-switch;\n@use '../core/tokens/m2/mdc/switch' as tokens-mdc-switch;\n\n/// Outputs base theme styles (styles not dependent on the color, typography, or density settings)\n/// for the mat-slide-toggle.\n/// @param {Map} $theme The theme to generate base styles for.\n@mixin base($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, base));\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n $mat-tokens: tokens-mat-switch.get-unthemable-tokens();\n $mdc-tokens: tokens-mdc-switch.get-unthemable-tokens();\n @include mdc-switch-theme.theme($mdc-tokens);\n @include token-utils.create-token-values(tokens-mat-switch.$prefix, $mat-tokens);\n }\n }\n}\n\n/// Outputs color theme styles for the mat-slide-toggle.\n/// @param {Map} $theme The theme to generate color styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the slide-toggle: primary, secondary, tertiary,\n/// or error (If not specified, default primary color will be used).\n@mixin color($theme, $options...) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, color), $options...);\n }\n @else {\n $is-dark: inspection.get-theme-type($theme) == dark;\n $mat-tokens: tokens-mat-switch.get-color-tokens($theme);\n $mdc-tokens: tokens-mdc-switch.get-color-tokens($theme);\n\n // Add values for MDC slide toggles tokens\n @include sass-utils.current-selector-or-root() {\n @include mdc-switch-theme.theme($mdc-tokens);\n @include token-utils.create-token-values(tokens-mat-switch.$prefix, $mat-tokens);\n\n // TODO(wagnermaciel): Use our token system to define this css variable.\n --mdc-switch-disabled-label-text-color: #{inspection.get-theme-color(\n $theme,\n foreground,\n disabled-text\n )};\n\n .mat-mdc-slide-toggle {\n @include mdc-form-field-theme.theme(tokens-mdc-form-field.get-color-tokens($theme));\n\n // Change the color palette related tokens to accent or warn if applicable\n &.mat-accent {\n @include mdc-switch-theme.theme(\n tokens-mdc-switch.private-get-color-palette-color-tokens($theme, accent));\n }\n\n &.mat-warn {\n @include mdc-switch-theme.theme(\n tokens-mdc-switch.private-get-color-palette-color-tokens($theme, warn));\n }\n }\n }\n }\n}\n\n/// Outputs typography theme styles for the mat-slide-toggle.\n/// @param {Map} $theme The theme to generate typography styles for.\n@mixin typography($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, typography));\n }\n @else {\n $mat-tokens: tokens-mat-switch.get-typography-tokens($theme);\n $mdc-tokens: tokens-mdc-switch.get-typography-tokens($theme);\n\n // Add values for MDC slide toggle tokens\n @include sass-utils.current-selector-or-root() {\n @include mdc-switch-theme.theme($mdc-tokens);\n @include token-utils.create-token-values(tokens-mat-switch.$prefix, $mat-tokens);\n\n .mat-mdc-slide-toggle {\n @include mdc-form-field-theme.theme(tokens-mdc-form-field.get-typography-tokens($theme));\n }\n }\n }\n}\n\n/// Outputs density theme styles for the mat-slide-toggle.\n/// @param {Map} $theme The theme to generate density styles for.\n@mixin density($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, density));\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n $mat-tokens: tokens-mat-switch.get-density-tokens($theme);\n $mdc-tokens: tokens-mdc-switch.get-density-tokens($theme);\n @include mdc-switch-theme.theme(tokens-mdc-switch.get-density-tokens($theme));\n }\n }\n}\n\n/// Outputs all (base, color, typography, and density) theme styles for the mat-icon.\n/// @param {Map} $theme The theme to generate styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the slide-toggle: primary, secondary, tertiary,\n/// or error (If not specified, default primary color will be used).\n@mixin theme($theme, $options...) {\n @include theming.private-check-duplicate-theme-styles($theme, 'mat-slide-toggle') {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme), $options...);\n }\n @else {\n @include base($theme);\n @if inspection.theme-has($theme, color) {\n @include color($theme);\n }\n @if inspection.theme-has($theme, density) {\n @include density($theme);\n }\n @if inspection.theme-has($theme, typography) {\n @include typography($theme);\n }\n }\n }\n}\n\n@mixin _theme-from-tokens($tokens, $options...) {\n @include validation.selector-defined(\n 'Calls to Angular Material theme mixins with an M3 theme must be wrapped in a selector');\n // Don't pass $options here, since the mdc-form-field doesn't support color options,\n // only the mdc-switch does.\n $mdc-form-field-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-form-field.$prefix);\n $mat-switch-tokens: token-utils.get-tokens-for($tokens, tokens-mat-switch.$prefix);\n $mdc-switch-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-switch.$prefix, $options...);\n\n @include mdc-form-field-theme.theme($mdc-form-field-tokens);\n @include mdc-switch-theme.theme($mdc-switch-tokens);\n @include token-utils.create-token-values(tokens-mat-switch.$prefix, $mat-switch-tokens);\n}\n","@use '@material/radio/radio-theme' as mdc-radio-theme;\n@use '@material/form-field/form-field-theme' as mdc-form-field-theme;\n@use '../core/style/sass-utils';\n@use '../core/theming/theming';\n@use '../core/theming/inspection';\n@use '../core/theming/validation';\n@use '../core/tokens/token-utils';\n@use '../core/typography/typography';\n@use '../core/tokens/m2/mdc/form-field' as tokens-mdc-form-field;\n@use '../core/tokens/m2/mdc/radio' as tokens-mdc-radio;\n@use '../core/tokens/m2/mat/radio' as tokens-mat-radio;\n\n/// Outputs base theme styles (styles not dependent on the color, typography, or density settings)\n/// for the mat-radio.\n/// @param {Map} $theme The theme to generate base styles for.\n@mixin base($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, base));\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-unthemable-tokens());\n @include token-utils.create-token-values(\n tokens-mat-radio.$prefix, tokens-mat-radio.get-unthemable-tokens());\n }\n }\n}\n\n/// Outputs color theme styles for the mat-radio.\n/// @param {Map} $theme The theme to generate color styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the radio button: primary, secondary, tertiary,\n/// or error (If not specified, default primary color will be used).\n@mixin color($theme, $options...) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, color), $options...);\n }\n @else {\n .mat-mdc-radio-button {\n @include mdc-form-field-theme.theme(tokens-mdc-form-field.get-color-tokens($theme));\n\n &.mat-primary {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-color-tokens($theme, primary));\n @include token-utils.create-token-values(tokens-mat-radio.$prefix,\n tokens-mat-radio.get-color-tokens($theme, primary));\n }\n\n &.mat-accent {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-color-tokens($theme));\n @include token-utils.create-token-values(tokens-mat-radio.$prefix,\n tokens-mat-radio.get-color-tokens($theme));\n }\n\n &.mat-warn {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-color-tokens($theme, warn));\n @include token-utils.create-token-values(tokens-mat-radio.$prefix,\n tokens-mat-radio.get-color-tokens($theme, warn));\n }\n }\n }\n}\n\n/// Outputs typography theme styles for the mat-radio.\n/// @param {Map} $theme The theme to generate typography styles for.\n@mixin typography($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, typography));\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-typography-tokens($theme));\n @include token-utils.create-token-values(\n tokens-mat-radio.$prefix, tokens-mat-radio.get-typography-tokens($theme));\n }\n\n .mat-mdc-radio-button {\n @include mdc-form-field-theme.theme(tokens-mdc-form-field.get-typography-tokens($theme));\n }\n }\n}\n\n/// Outputs typography theme styles for the mat-radio.\n/// @param {Map} $theme The theme to generate density styles for.\n@mixin density($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, density));\n }\n @else {\n $density-scale: inspection.get-theme-density($theme);\n\n @include sass-utils.current-selector-or-root() {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-density-tokens($theme));\n @include token-utils.create-token-values(\n tokens-mat-radio.$prefix, tokens-mat-radio.get-density-tokens($theme));\n }\n }\n}\n\n/// Outputs all (base, color, typography, and density) theme styles for the mat-radio.\n/// @param {Map} $theme The theme to generate styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the radio button: primary, secondary, tertiary,\n/// or error (If not specified, default primary color will be used).\n@mixin theme($theme, $options...) {\n @include theming.private-check-duplicate-theme-styles($theme, 'mat-radio') {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme), $options...);\n }\n @else {\n @include base($theme);\n @if inspection.theme-has($theme, color) {\n @include color($theme);\n }\n @if inspection.theme-has($theme, density) {\n @include density($theme);\n }\n @if inspection.theme-has($theme, typography) {\n @include typography($theme);\n }\n }\n }\n}\n\n@mixin _theme-from-tokens($tokens, $options...) {\n @include validation.selector-defined(\n 'Calls to Angular Material theme mixins with an M3 theme must be wrapped in a selector');\n $mdc-radio-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-radio.$prefix, $options...);\n $mat-radio-tokens: token-utils.get-tokens-for($tokens, tokens-mat-radio.$prefix, $options...);\n // Don't pass $options here, since the mdc-form-field doesn't support color options,\n // only the mdc-radio and mat-radio do.\n $mdc-form-field-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-form-field.$prefix);\n @include mdc-radio-theme.theme($mdc-radio-tokens);\n @include mdc-form-field-theme.theme($mdc-form-field-tokens);\n @include token-utils.create-token-values(tokens-mat-radio.$prefix, $mat-radio-tokens);\n}\n","@use 'sass:map';\n@use '@material/list/evolution-mixins';\n@use '@material/checkbox/checkbox-theme' as mdc-checkbox-theme;\n@use '@material/radio/radio-theme' as mdc-radio-theme;\n@use '@material/list/list-theme' as mdc-list-theme;\n\n@use '../core/style/sass-utils';\n@use '../core/theming/theming';\n@use '../core/theming/inspection';\n@use '../core/theming/validation';\n@use '../core/tokens/m2/mat/list' as tokens-mat-list;\n@use '../core/tokens/m2/mdc/checkbox' as tokens-mdc-checkbox;\n@use '../core/tokens/m2/mdc/radio' as tokens-mdc-radio;\n@use '../core/tokens/m2/mdc/list' as tokens-mdc-list;\n@use '../core/tokens/token-utils';\n@use '../core/typography/typography';\n\n@mixin base($theme) {\n // Add default values for tokens not related to color, typography, or density.\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, base));\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n @include mdc-list-theme.theme(tokens-mdc-list.get-unthemable-tokens());\n @include token-utils.create-token-values(\n tokens-mat-list.$prefix, tokens-mat-list.get-unthemable-tokens());\n }\n }\n}\n\n@mixin color($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, color));\n }\n @else {\n $mdc-list-color-tokens: tokens-mdc-list.get-color-tokens($theme);\n\n // Add values for MDC list tokens.\n @include sass-utils.current-selector-or-root() {\n @include mdc-list-theme.theme($mdc-list-color-tokens);\n @include token-utils.create-token-values(\n tokens-mat-list.$prefix, tokens-mat-list.get-color-tokens($theme));\n }\n\n .mdc-list-item__start,\n .mdc-list-item__end {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-color-tokens($theme, primary));\n }\n\n .mat-accent {\n .mdc-list-item__start,\n .mdc-list-item__end {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-color-tokens($theme, accent));\n }\n }\n\n .mat-warn {\n .mdc-list-item__start,\n .mdc-list-item__end {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-color-tokens($theme, warn));\n }\n }\n\n .mat-mdc-list-option {\n @include mdc-checkbox-theme.theme(tokens-mdc-checkbox.get-color-tokens($theme, primary));\n }\n .mat-mdc-list-option.mat-accent {\n @include mdc-checkbox-theme.theme(tokens-mdc-checkbox.get-color-tokens($theme, accent));\n }\n .mat-mdc-list-option.mat-warn {\n @include mdc-checkbox-theme.theme(tokens-mdc-checkbox.get-color-tokens($theme, warn));\n }\n\n // There is no token for activated color on nav list.\n // TODO(mmalerba): Add a token to MDC or make a custom one.\n .mat-mdc-list-base.mat-mdc-list-base {\n @include evolution-mixins.list-selected-ink-color(\n inspection.get-theme-color($theme, primary));\n }\n\n // TODO(mmalerba): Leaking styles from the old MDC list mixins used in other components can\n // cause opacity issues, so we need this override for now. We can remove it when all\n // Angular Material components stop using the old MDC mixins.\n .mat-mdc-list-base .mdc-list-item--disabled {\n .mdc-list-item__start,\n .mdc-list-item__content,\n .mdc-list-item__end {\n opacity: 1;\n }\n }\n }\n}\n\n@mixin density($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, density));\n }\n @else {\n $density-scale: inspection.get-theme-density($theme);\n $mdc-list-density-tokens: tokens-mdc-list.get-density-tokens($theme);\n\n // Add values for MDC list tokens.\n @include sass-utils.current-selector-or-root() {\n @include mdc-list-theme.theme($mdc-list-density-tokens);\n @include token-utils.create-token-values(\n tokens-mat-list.$prefix, tokens-mat-list.get-density-tokens($theme));\n }\n\n .mdc-list-item__start,\n .mdc-list-item__end {\n @include mdc-radio-theme.theme(tokens-mdc-radio.get-density-tokens($theme));\n }\n\n // TODO(mmalerba): This is added to maintain the same style MDC used prior to the token-based\n // API, to avoid screenshot diffs. We should remove it in favor of following MDC's current\n // style, or add custom tokens for it.\n .mat-mdc-list-item {\n &.mdc-list-item--with-leading-avatar,\n &.mdc-list-item--with-leading-checkbox,\n &.mdc-list-item--with-leading-icon {\n &.mdc-list-item--with-one-line {\n height: map.get((\n 0: 56px,\n -1: 52px,\n -2: 48px,\n -3: 44px,\n -4: 40px,\n -5: 40px,\n ), $density-scale);\n }\n\n &.mdc-list-item--with-two-lines {\n height: map.get((\n 0: 72px,\n -1: 68px,\n -2: 64px,\n -3: 60px,\n -4: 56px,\n -5: 56px,\n ), $density-scale);\n }\n }\n }\n }\n}\n\n@mixin typography($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, typography));\n }\n @else {\n $mdc-list-typography-tokens: tokens-mdc-list.get-typography-tokens($theme);\n\n // Add values for MDC list tokens.\n @include sass-utils.current-selector-or-root() {\n @include mdc-list-theme.theme($mdc-list-typography-tokens);\n @include token-utils.create-token-values(\n tokens-mat-list.$prefix, tokens-mat-list.get-typography-tokens($theme));\n }\n\n // MDC does not have tokens for the subheader.\n // TODO(mmalerba): Discuss with MDC about adding them, or create custom tokens.\n .mdc-list-group__subheader {\n font: inspection.get-theme-typography($theme, subtitle-1, font);\n letter-spacing: inspection.get-theme-typography($theme, subtitle-1, letter-spacing);\n }\n }\n}\n\n@mixin theme($theme) {\n @include theming.private-check-duplicate-theme-styles($theme, 'mat-list') {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme));\n }\n @else {\n @include base($theme);\n @if inspection.theme-has($theme, color) {\n @include color($theme);\n }\n @if inspection.theme-has($theme, density) {\n @include density($theme);\n }\n @if inspection.theme-has($theme, typography) {\n @include typography($theme);\n }\n }\n }\n}\n\n@mixin _theme-from-tokens($tokens) {\n @include validation.selector-defined(\n 'Calls to Angular Material theme mixins with an M3 theme must be wrapped in a selector');\n @include mdc-list-theme.theme(token-utils.get-tokens-for($tokens, tokens-mdc-list.$prefix));\n\n $mat-list-tokens: token-utils.get-tokens-for($tokens, tokens-mat-list.$prefix);\n @include token-utils.create-token-values(tokens-mat-list.$prefix, $mat-list-tokens);\n}\n","@use '@material/tab-indicator/tab-indicator-theme' as mdc-tab-indicator-theme;\n@use '@material/tab/tab-theme' as mdc-tab-theme;\n@use '../core/style/sass-utils';\n@use '../core/tokens/m2/mdc/tab' as tokens-mdc-tab;\n@use '../core/tokens/m2/mdc/tab-indicator' as tokens-mdc-tab-indicator;\n@use '../core/tokens/m2/mat/tab-header' as tokens-mat-tab-header;\n@use '../core/tokens/m2/mat/tab-header-with-background' as tokens-mat-tab-header-with-background;\n@use '../core/theming/theming';\n@use '../core/theming/inspection';\n@use '../core/theming/validation';\n@use '../core/typography/typography';\n@use '../core/tokens/token-utils';\n\n/// Outputs base theme styles (styles not dependent on the color, typography, or density settings)\n/// for the mat-tab.\n/// @param {Map} $theme The theme to generate base styles for.\n@mixin base($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, base));\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n @include mdc-tab-indicator-theme.theme(tokens-mdc-tab-indicator.get-unthemable-tokens());\n @include mdc-tab-theme.secondary-navigation-tab-theme(tokens-mdc-tab.get-unthemable-tokens());\n @include token-utils.create-token-values(\n tokens-mat-tab-header.$prefix, tokens-mat-tab-header.get-unthemable-tokens());\n @include token-utils.create-token-values(\n tokens-mat-tab-header-with-background.$prefix,\n tokens-mat-tab-header-with-background.get-unthemable-tokens()\n );\n }\n }\n}\n\n/// Outputs color theme styles for the mat-tab.\n/// @param {Map} $theme The theme to generate color styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the tab indicator: primary, secondary,\n/// tertiary, or error (If not specified, default primary color will be used).\n@mixin color($theme, $options...) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, color), $options...);\n }\n @else {\n .mat-mdc-tab-group, .mat-mdc-tab-nav-bar {\n @include _palette-styles($theme, primary);\n\n &.mat-accent {\n @include _palette-styles($theme, accent);\n }\n\n &.mat-warn {\n @include _palette-styles($theme, warn);\n }\n\n &.mat-background-primary {\n @include _background-styles($theme, primary);\n }\n\n &.mat-background-accent {\n @include _background-styles($theme, accent);\n }\n\n &.mat-background-warn {\n @include _background-styles($theme, warn);\n }\n }\n }\n}\n\n@mixin _background-styles($theme, $palette-name) {\n @include token-utils.create-token-values(tokens-mat-tab-header-with-background.$prefix,\n tokens-mat-tab-header-with-background.get-color-tokens($theme, $palette-name));\n}\n\n@mixin _palette-styles($theme, $palette-name) {\n @include mdc-tab-theme.secondary-navigation-tab-theme(\n tokens-mdc-tab.get-color-tokens($theme, $palette-name));\n @include mdc-tab-indicator-theme.theme(\n tokens-mdc-tab-indicator.get-color-tokens($theme, $palette-name));\n @include token-utils.create-token-values(tokens-mat-tab-header.$prefix,\n tokens-mat-tab-header.get-color-tokens($theme, $palette-name));\n}\n\n/// Outputs typography theme styles for the mat-tab.\n/// @param {Map} $theme The theme to generate typography styles for.\n@mixin typography($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, typography));\n }\n @else {\n .mat-mdc-tab-header {\n @include mdc-tab-theme.secondary-navigation-tab-theme(\n tokens-mdc-tab.get-typography-tokens($theme));\n @include mdc-tab-indicator-theme.theme(\n tokens-mdc-tab-indicator.get-typography-tokens($theme));\n @include token-utils.create-token-values(tokens-mat-tab-header.$prefix,\n tokens-mat-tab-header.get-typography-tokens($theme));\n @include token-utils.create-token-values(tokens-mat-tab-header-with-background.$prefix,\n tokens-mat-tab-header-with-background.get-typography-tokens($theme));\n }\n }\n}\n\n/// Outputs density theme styles for the mat-tab.\n/// @param {Map} $theme The theme to generate density styles for.\n@mixin density($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, density));\n }\n @else {\n .mat-mdc-tab-header {\n @include mdc-tab-theme.secondary-navigation-tab-theme(\n tokens-mdc-tab.get-density-tokens($theme));\n @include mdc-tab-indicator-theme.theme(\n tokens-mdc-tab-indicator.get-density-tokens($theme));\n @include token-utils.create-token-values(tokens-mat-tab-header.$prefix,\n tokens-mat-tab-header.get-density-tokens($theme));\n @include token-utils.create-token-values(tokens-mat-tab-header-with-background.$prefix,\n tokens-mat-tab-header-with-background.get-density-tokens($theme));\n }\n }\n}\n\n/// Outputs all (base, color, typography, and density) theme styles for the mat-tab.\n/// @param {Map} $theme The theme to generate styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the tab indicator: primary, secondary,\n/// tertiary, or error (If not specified, default primary color will be used).\n@mixin theme($theme, $options...) {\n @include theming.private-check-duplicate-theme-styles($theme, 'mat-tabs') {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme), $options...);\n }\n @else {\n @include base($theme);\n @if inspection.theme-has($theme, color) {\n @include color($theme);\n }\n @if inspection.theme-has($theme, density) {\n @include density($theme);\n }\n @if inspection.theme-has($theme, typography) {\n @include typography($theme);\n }\n }\n }\n}\n\n@mixin _theme-from-tokens($tokens, $options...) {\n @include validation.selector-defined(\n 'Calls to Angular Material theme mixins with an M3 theme must be wrapped in a selector');\n $mdc-tab-indicator-tokens: token-utils.get-tokens-for(\n $tokens, tokens-mdc-tab-indicator.$prefix, $options...);\n $mat-tab-header-tokens: token-utils.get-tokens-for(\n $tokens, tokens-mat-tab-header.$prefix, $options...);\n // Don't pass $options here, because the mdc-tab doesn't have color variants,\n // only the mdc-tab-indicator and mat-tab-header do.\n $mdc-tab-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-tab.$prefix);\n @include mdc-tab-theme.secondary-navigation-tab-theme($mdc-tab-tokens);\n @include mdc-tab-indicator-theme.theme($mdc-tab-indicator-tokens);\n @include token-utils.create-token-values(tokens-mat-tab-header.$prefix, $mat-tab-header-tokens);\n}\n","@use '@material/checkbox/checkbox-theme' as mdc-checkbox-theme;\n@use '@material/form-field/form-field-theme' as mdc-form-field-theme;\n@use '../core/style/sass-utils';\n@use '../core/theming/theming';\n@use '../core/theming/inspection';\n@use '../core/theming/validation';\n@use '../core/tokens/token-utils';\n@use '../core/typography/typography';\n@use '../core/tokens/m2/mdc/checkbox' as tokens-mdc-checkbox;\n@use '../core/tokens/m2/mdc/form-field' as tokens-mdc-form-field;\n@use '../core/tokens/m2/mat/checkbox' as tokens-mat-checkbox;\n\n/// Outputs base theme styles (styles not dependent on the color, typography, or density settings)\n/// for the mat-checkbox.\n/// @param {Map} $theme The theme to generate base styles for.\n@mixin base($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, base));\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n @include mdc-checkbox-theme.theme(tokens-mdc-checkbox.get-unthemable-tokens());\n @include token-utils.create-token-values(\n tokens-mat-checkbox.$prefix, tokens-mat-checkbox.get-unthemable-tokens());\n }\n }\n}\n\n/// Outputs color theme styles for the mat-checkbox.\n/// @param {Map} $theme The theme to generate color styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the checkbox: primary, secondary, tertiary, or\n/// error (If not specified, default primary color will be used).\n@mixin color($theme, $options...) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, color), $options...);\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n @include mdc-checkbox-theme.theme(tokens-mdc-checkbox.get-color-tokens($theme));\n @include token-utils.create-token-values(\n tokens-mat-checkbox.$prefix, tokens-mat-checkbox.get-color-tokens($theme));\n }\n\n .mat-mdc-checkbox {\n @include mdc-form-field-theme.theme(tokens-mdc-form-field.get-color-tokens($theme));\n\n &.mat-primary {\n @include mdc-checkbox-theme.theme(tokens-mdc-checkbox.get-color-tokens($theme, primary));\n }\n\n &.mat-warn {\n @include mdc-checkbox-theme.theme(tokens-mdc-checkbox.get-color-tokens($theme, warn));\n }\n }\n }\n}\n\n/// Outputs typography theme styles for the mat-checkbox.\n/// @param {Map} $theme The theme to generate typography styles for.\n@mixin typography($theme) {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, typography));\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n @include mdc-checkbox-theme.theme(tokens-mdc-checkbox.get-typography-tokens($theme));\n @include token-utils.create-token-values(\n tokens-mat-checkbox.$prefix, tokens-mat-checkbox.get-typography-tokens($theme));\n }\n\n .mat-mdc-checkbox {\n @include mdc-form-field-theme.theme(tokens-mdc-form-field.get-typography-tokens($theme));\n }\n }\n}\n\n/// Outputs density theme styles for the mat-checkbox.\n/// @param {Map} $theme The theme to generate density styles for.\n@mixin density($theme) {\n $density-scale: inspection.get-theme-density($theme);\n\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme, density));\n }\n @else {\n @include sass-utils.current-selector-or-root() {\n @include mdc-checkbox-theme.theme(tokens-mdc-checkbox.get-density-tokens($theme));\n @include token-utils.create-token-values(\n tokens-mat-checkbox.$prefix, tokens-mat-checkbox.get-density-tokens($theme));\n }\n }\n}\n\n/// Outputs all (base, color, typography, and density) theme styles for the mat-checkbox.\n/// @param {Map} $theme The theme to generate styles for.\n/// @param {ArgList} Additional optional arguments (only supported for M3 themes):\n/// $color-variant: The color variant to use for the checkbox: primary, secondary, tertiary, or\n/// error (If not specified, default primary color will be used).\n@mixin theme($theme, $options...) {\n @include theming.private-check-duplicate-theme-styles($theme, 'mat-checkbox') {\n @if inspection.get-theme-version($theme) == 1 {\n @include _theme-from-tokens(inspection.get-theme-tokens($theme), $options...);\n }\n @else {\n @include base($theme);\n @if inspection.theme-has($theme, color) {\n @include color($theme);\n }\n @if inspection.theme-has($theme, density) {\n @include density($theme);\n }\n @if inspection.theme-has($theme, typography) {\n @include typography($theme);\n }\n }\n }\n}\n\n@mixin _theme-from-tokens($tokens, $options...) {\n @include validation.selector-defined(\n 'Calls to Angular Material theme mixins with an M3 theme must be wrapped in a selector');\n $mdc-checkbox-tokens: token-utils.get-tokens-for(\n $tokens, tokens-mdc-checkbox.$prefix, $options...);\n // Don't pass $options here, since the mdc-form-field doesn't support color options,\n // only the mdc-checkbox does.\n $mdc-form-field-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-form-field.$prefix);\n $mat-checkbox-tokens: token-utils.get-tokens-for($tokens, tokens-mat-checkbox.$prefix);\n @include mdc-checkbox-theme.theme($mdc-checkbox-tokens);\n @include mdc-form-field-theme.theme($mdc-form-field-tokens);\n @include token-utils.create-token-values(tokens-mat-checkbox.$prefix, $mat-checkbox-tokens);\n}\n","@use '@angular/cdk';\n@use '../tokens/m2/mat/ripple' as tokens-mat-ripple;\n@use '../tokens/token-utils';\n\n@mixin ripple() {\n // The host element of an mat-ripple directive should always have a position of \"absolute\" or\n // \"relative\" so that the ripples inside are correctly positioned relatively to the container.\n .mat-ripple {\n overflow: hidden;\n\n // By default, every ripple container should have position: relative in favor of creating an\n // easy API for developers using the MatRipple directive.\n position: relative;\n\n // Promote containers that have ripples to a new layer. We want to target `:not(:empty)`,\n // because we don't want all ripple containers to have their own layer since they're used in a\n // lot of places and the layer is only relevant while animating. Note that ideally we'd use\n // the `contain` property here (see #13175), because `:empty` can be broken by having extra\n // text inside the element, but it isn't very well supported yet.\n &:not(:empty) {\n transform: translateZ(0);\n }\n }\n\n .mat-ripple.mat-ripple-unbounded {\n overflow: visible;\n }\n\n .mat-ripple-element {\n position: absolute;\n border-radius: 50%;\n pointer-events: none;\n\n transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);\n\n // We use a 3d transform here in order to avoid an issue in Safari where\n // the ripples aren't clipped when inside the shadow DOM (see #24028).\n transform: scale3d(0, 0, 0);\n\n @include token-utils.use-tokens(\n tokens-mat-ripple.$prefix, tokens-mat-ripple.get-token-slots()) {\n // We have to emit a fallback value here, because some internal builds depend on it.\n background-color: var(#{token-utils.get-token-variable(color)}, rgba(#000, 0.1));\n }\n\n // In high contrast mode the ripple is opaque, causing it to obstruct the content.\n @include cdk.high-contrast(active, off) {\n display: none;\n }\n }\n}\n","/// Emits a CSS class, `.cdk-visually-hidden`. This class can be applied to an element\n/// to make that element visually hidden while remaining available to assistive technology.\n@mixin a11y-visually-hidden() {\n .cdk-visually-hidden {\n border: 0;\n clip: rect(0 0 0 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n\n // This works around a Chrome bug that can cause the tab to crash when large amounts of\n // non-English text get wrapped: https://bugs.chromium.org/p/chromium/issues/detail?id=1201444\n white-space: nowrap;\n\n // Avoid browsers rendering the focus ring in some cases.\n outline: 0;\n\n // Avoid some cases where the browser will still render the native controls (see #9049).\n -webkit-appearance: none;\n -moz-appearance: none;\n\n // We need at least one of top/bottom/left/right in order to prevent cases where the\n // absolute-positioned element is pushed down and can affect scrolling (see #24597).\n // `left` was chosen here, because it's the least likely to break overrides where the\n // element might have been positioned (e.g. `mat-checkbox`).\n left: 0;\n\n [dir='rtl'] & {\n left: auto;\n right: 0;\n }\n }\n}\n\n/// @deprecated Use `a11y-visually-hidden`.\n@mixin a11y() {\n @include a11y-visually-hidden;\n}\n\n/// Emits the mixin's content nested under `$selector-context` if `$selector-context`\n/// is non-empty.\n/// @param {String} selector-context The selector under which to nest the mixin's content.\n@mixin _optionally-nest-content($selector-context) {\n @if ($selector-context == '') {\n @content;\n }\n @else {\n #{$selector-context} {\n @content;\n }\n }\n}\n\n/// Applies styles for users in high contrast mode. Note that this only applies\n/// to Microsoft browsers. Chrome can be included by checking for the `html[hc]`\n/// attribute, however Chrome handles high contrast differently.\n///\n/// @param {String} target Type of high contrast setting to target. Defaults to `active`, can be\n/// `white-on-black` or `black-on-white`.\n/// @param {String} encapsulation Whether to emit styles for view encapsulation. Values are:\n/// * `on` - works for `Emulated`, `Native`, and `ShadowDom`\n/// * `off` - works for `None`\n/// * `any` - works for all encapsulation modes by emitting the CSS twice (default).\n@mixin high-contrast($target: active, $encapsulation: 'any') {\n @if ($target != 'active' and $target != 'black-on-white' and $target != 'white-on-black') {\n @error 'Unknown cdk-high-contrast value \"#{$target}\" provided. ' +\n 'Allowed values are \"active\", \"black-on-white\", and \"white-on-black\"';\n }\n\n @if ($encapsulation != 'on' and $encapsulation != 'off' and $encapsulation != 'any') {\n @error 'Unknown cdk-high-contrast encapsulation \"#{$encapsulation}\" provided. ' +\n 'Allowed values are \"on\", \"off\", and \"any\"';\n }\n\n // If the selector context has multiple parts, such as `.section, .region`, just doing\n // `.cdk-high-contrast-xxx #{&}` will only apply the parent selector to the first part of the\n // context. We address this by nesting the selector context under .cdk-high-contrast.\n @at-root {\n $selector-context: #{&};\n\n @if ($encapsulation != 'on') {\n // Note that if this selector is updated, the same change has to be made inside\n // `_overlay.scss` which can't depend on this mixin due to some infrastructure limitations.\n .cdk-high-contrast-#{$target} {\n @include _optionally-nest-content($selector-context) {\n @content;\n }\n }\n }\n\n @if ($encapsulation != 'off') {\n .cdk-high-contrast-#{$target} :host {\n @include _optionally-nest-content($selector-context) {\n @content;\n }\n }\n }\n }\n}\n","// We want overlays to always appear over user content, so set a baseline\n// very high z-index for the overlay container, which is where we create the new\n// stacking context for all overlays.\n$overlay-container-z-index: 1000 !default;\n$overlay-z-index: 1000 !default;\n$overlay-backdrop-z-index: 1000 !default;\n\n// Background color for all of the backdrops\n$overlay-backdrop-color: rgba(0, 0, 0, 0.32) !default;\n\n// Default backdrop animation is based on the Material Design swift-ease-out.\n$backdrop-animation-duration: 400ms !default;\n$backdrop-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;\n\n/// Emits structural styles required for cdk/overlay to function.\n@mixin overlay() {\n .cdk-overlay-container, .cdk-global-overlay-wrapper {\n // Disable events from being captured on the overlay container.\n pointer-events: none;\n\n // The container should be the size of the viewport.\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n }\n\n // The overlay-container is an invisible element which contains all individual overlays.\n .cdk-overlay-container {\n position: fixed;\n z-index: $overlay-container-z-index;\n\n &:empty {\n // Hide the element when it doesn't have any child nodes. This doesn't\n // include overlays that have been detached, rather than disposed.\n display: none;\n }\n }\n\n // We use an extra wrapper element in order to use make the overlay itself a flex item.\n // This makes centering the overlay easy without running into the subpixel rendering\n // problems tied to using `transform` and without interfering with the other position\n // strategies.\n .cdk-global-overlay-wrapper {\n display: flex;\n position: absolute;\n z-index: $overlay-z-index;\n }\n\n // A single overlay pane.\n .cdk-overlay-pane {\n // Note: it's important for this one to start off `absolute`,\n // in order for us to be able to measure it correctly.\n position: absolute;\n pointer-events: auto;\n box-sizing: border-box;\n z-index: $overlay-z-index;\n\n // For connected-position overlays, we set `display: flex` in\n // order to force `max-width` and `max-height` to take effect.\n display: flex;\n max-width: 100%;\n max-height: 100%;\n }\n\n .cdk-overlay-backdrop {\n // TODO(jelbourn): reuse sidenav fullscreen mixin.\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n\n z-index: $overlay-backdrop-z-index;\n pointer-events: auto;\n -webkit-tap-highlight-color: transparent;\n transition: opacity $backdrop-animation-duration $backdrop-animation-timing-function;\n opacity: 0;\n\n &.cdk-overlay-backdrop-showing {\n opacity: 1;\n\n // Note that we can't import and use the `high-contrast` mixin from `_a11y.scss`, because\n // this file will be copied to the top-level `cdk` package when putting together the files\n // for npm. Any relative import paths we use here will become invalid once the file is copied.\n .cdk-high-contrast-active & {\n // In high contrast mode the rgba background will become solid\n // so we need to fall back to making it opaque using `opacity`.\n opacity: 0.6;\n }\n }\n }\n\n .cdk-overlay-dark-backdrop {\n background: $overlay-backdrop-color;\n }\n\n .cdk-overlay-transparent-backdrop {\n // Define a transition on the visibility so that the `transitionend` event can fire immediately.\n transition: visibility 1ms linear, opacity 1ms linear;\n visibility: hidden;\n opacity: 1;\n\n // Note: as of Firefox 57, having the backdrop be `background: none` will prevent it from\n // capturing the user's mouse scroll events. Since we also can't use something like\n // `rgba(0, 0, 0, 0)`, we work around the inconsistency by not setting the background at\n // all and using `opacity` to make the element transparent.\n &.cdk-overlay-backdrop-showing {\n opacity: 0;\n visibility: visible;\n }\n }\n\n .cdk-overlay-backdrop-noop-animation {\n transition: none;\n }\n\n // Overlay parent element used with the connected position strategy. Used to constrain the\n // overlay element's size to fit within the viewport.\n .cdk-overlay-connected-position-bounding-box {\n position: absolute;\n z-index: $overlay-z-index;\n\n // We use `display: flex` on this element exclusively for centering connected overlays.\n // When *not* centering, a top/left/bottom/right will be set which overrides the normal\n // flex layout.\n display: flex;\n\n // We use the `column` direction here to avoid some flexbox issues in Edge\n // when using the \"grow after open\" options.\n flex-direction: column;\n\n // Add some dimensions so the element has an `innerText` which some people depend on in tests.\n min-width: 1px;\n min-height: 1px;\n }\n\n // Used when disabling global scrolling.\n .cdk-global-scrollblock {\n position: fixed;\n\n // Necessary for the content not to lose its width. Note that we're using 100%, instead of\n // 100vw, because 100vw includes the width plus the scrollbar, whereas 100% is the width\n // that the element had before we made it `fixed`.\n width: 100%;\n\n // Note: this will always add a scrollbar to whatever element it is on, which can\n // potentially result in double scrollbars. It shouldn't be an issue, because we won't\n // block scrolling on a page that doesn't have a scrollbar in the first place.\n overflow-y: scroll;\n }\n}\n","// Structural styles for the autosize text fields.\n@mixin text-field-autosize() {\n // Remove the resize handle on autosizing textareas, because whatever height\n // the user resized to will be overwritten once they start typing again.\n textarea.cdk-textarea-autosize {\n resize: none;\n }\n\n // This class is temporarily applied to the textarea when it is being measured. It is immediately\n // removed when measuring is complete. We use `!important` rules here to make sure user-specified\n // rules do not interfere with the measurement.\n textarea.cdk-textarea-autosize-measuring {\n @include _autosize-measuring-base;\n height: auto !important;\n overflow: hidden !important;\n }\n\n // Similar to the `cdk-textarea-autosize-measuring` class, but only applied on Firefox. We need\n // to use this class, because Firefox has a bug where changing the `overflow` breaks the user's\n // ability to undo/redo what they were typing (see #16629). This class is only scoped to Firefox,\n // because the measurements there don't seem to be affected by the `height: 0`, whereas on other\n // browsers they are, e.g. Chrome detects longer text and IE does't resize back to normal.\n // Identical issue report: https://bugzilla.mozilla.org/show_bug.cgi?id=448784\n textarea.cdk-textarea-autosize-measuring-firefox {\n @include _autosize-measuring-base;\n height: 0 !important;\n }\n}\n\n// Core styles that enable monitoring autofill state of text fields.\n@mixin text-field-autofill() {\n // Keyframes that apply no styles, but allow us to monitor when an text field becomes autofilled\n // by watching for the animation events that are fired when they start. Note: the /*!*/ comment is\n // needed to prevent LibSass from stripping the keyframes out.\n // Based on: https://medium.com/@brunn/detecting-autofilled-fields-in-javascript-aed598d25da7\n @keyframes cdk-text-field-autofill-start {/*!*/}\n @keyframes cdk-text-field-autofill-end {/*!*/}\n\n .cdk-text-field-autofill-monitored:-webkit-autofill {\n // Since Chrome 80 we need a 1ms delay, or the animationstart event won't fire.\n animation: cdk-text-field-autofill-start 0s 1ms;\n }\n\n .cdk-text-field-autofill-monitored:not(:-webkit-autofill) {\n // Since Chrome 80 we need a 1ms delay, or the animationstart event won't fire.\n animation: cdk-text-field-autofill-end 0s 1ms;\n }\n}\n\n@mixin _autosize-measuring-base {\n // Having 2px top and bottom padding seems to fix a bug where Chrome gets an incorrect\n // measurement. We just have to account for it later and subtract it off the final result.\n padding: 2px 0 !important;\n box-sizing: content-box !important;\n}\n\n// Used to generate UIDs for keyframes used to change the text field autofill styles.\n$autofill-color-frame-count: 0;\n\n// Mixin used to apply custom background and foreground colors to an autofilled text field.\n// Based on: https://stackoverflow.com/questions/2781549/\n// removing-input-background-colour-for-chrome-autocomplete#answer-37432260\n@mixin text-field-autofill-color($background, $foreground:'') {\n @keyframes cdk-text-field-autofill-color-#{$autofill-color-frame-count} {\n to {\n background: $background;\n @if $foreground != '' { color: $foreground; }\n }\n }\n\n &:-webkit-autofill {\n animation: cdk-text-field-autofill-color-#{$autofill-color-frame-count} both;\n }\n\n &.cdk-text-field-autofill-monitored:-webkit-autofill {\n // Since Chrome 80 we need a 1ms delay for cdk-text-field-autofill-start, or the animationstart\n // event won't fire.\n animation: cdk-text-field-autofill-start 0s 1ms,\n cdk-text-field-autofill-color-#{$autofill-color-frame-count} both;\n }\n\n $autofill-color-frame-count: $autofill-color-frame-count + 1 !global;\n}\n\n// @deprecated Use `autosize` and `autofill` instead.\n@mixin text-field {\n @include text-field-autosize();\n @include text-field-autofill();\n}\n","@use 'sass:map';\n@use 'sass:meta';\n@use '@angular/cdk';\n@use '../style/layout-common';\n@use '../theming/theming';\n@use '../theming/inspection';\n\n// Private sass variables that will be used as reference throughout component stylesheets.\n$default-border-width: 3px;\n$default-border-style: solid;\n$default-border-color: transparent;\n$default-border-radius: 4px;\n\n// Mixin that renders the focus indicator structural styles.\n@mixin structural-styling($prefix) {\n .#{$prefix}-focus-indicator {\n position: relative;\n\n &::before {\n @include layout-common.fill();\n box-sizing: border-box;\n pointer-events: none;\n display: var(--#{$prefix}-focus-indicator-display, none); // Hide the indicator by default.\n border: var(\n --#{$prefix}-focus-indicator-border-width,\n #{$default-border-width}\n )\n var(\n --#{$prefix}-focus-indicator-border-style,\n #{$default-border-style}\n )\n var(\n --#{$prefix}-focus-indicator-border-color,\n #{$default-border-color}\n );\n border-radius: var(\n --#{$prefix}-focus-indicator-border-radius,\n #{$default-border-radius}\n );\n }\n\n // By default, render the focus indicator when the focus indicator host element takes focus.\n // Defining a pseudo element's content will cause it to render.\n &:focus::before {\n content: '';\n }\n }\n\n // Enable the indicator in high contrast mode.\n @include cdk.high-contrast(active, off) {\n @include customize-focus-indicators((display: block), $prefix);\n }\n}\n\n// Generates CSS variable declarations from a map.\n@mixin _output-variables($map) {\n @each $key, $value in $map {\n @if ($value) {\n --#{$key}: #{$value};\n }\n }\n}\n\n// Mixin that dedups CSS variables for the strong-focus-indicators mixin.\n@mixin customize-focus-indicators($config, $prefix) {\n $border-style: map.get($config, border-style);\n $border-width: map.get($config, border-width);\n $border-radius: map.get($config, border-radius);\n $border-color: map.get($config, border-color);\n $display: map.get($config, display);\n $map: (\n '#{$prefix}-focus-indicator-border-style': $border-style,\n '#{$prefix}-focus-indicator-border-width': $border-width,\n '#{$prefix}-focus-indicator-border-radius': $border-radius,\n '#{$prefix}-focus-indicator-border-color': $border-color,\n '#{$prefix}-focus-indicator-display': $display,\n );\n\n @if (&) {\n @include _output-variables($map);\n }\n @else {\n // We use `html` here instead of `:root`, because the\n // latter causes some issues with internal tooling.\n html {\n @include _output-variables($map);\n }\n }\n}\n\n@mixin strong-focus-indicators($config: ()) {\n // Default focus indicator config.\n $default-config: (\n border-color: black,\n display: block,\n );\n\n // Merge default config with user config.\n $config: map.merge($default-config, $config);\n\n @include customize-focus-indicators($config, 'mat');\n}\n\n@mixin mdc-strong-focus-indicators($config: ()) {\n // Default focus indicator config.\n $default-config: (\n border-color: black,\n display: block,\n );\n\n // Merge default config with user config.\n $config: map.merge($default-config, $config);\n\n @include customize-focus-indicators($config, 'mat-mdc');\n}\n\n@mixin strong-focus-indicators-color($theme-or-color) {\n @if meta.type-of($theme-or-color) == 'color' {\n @include customize-focus-indicators((\n border-color: $theme-or-color\n ), 'mat');\n }\n @else {\n $border-color: inspection.get-theme-color($theme-or-color, primary);\n @include customize-focus-indicators((\n border-color: $border-color\n ), 'mat');\n }\n}\n\n@mixin strong-focus-indicators-theme($theme-or-color) {\n @if meta.type-of($theme-or-color) == 'color' {\n @include customize-focus-indicators((\n border-color: $theme-or-color\n ), 'mat');\n }\n @else {\n @include theming.private-check-duplicate-theme-styles($theme-or-color, 'mat-focus-indicators') {\n @if inspection.theme-has($theme-or-color, color) {\n @include strong-focus-indicators-color($theme-or-color);\n }\n }\n }\n}\n\n@mixin mdc-strong-focus-indicators-color($theme-or-color) {\n @if meta.type-of($theme-or-color) == 'color' {\n @include customize-focus-indicators((\n border-color: $theme-or-color\n ), 'mat-mdc');\n }\n @else {\n $border-color: inspection.get-theme-color($theme-or-color, primary);\n @include customize-focus-indicators((\n border-color: $border-color\n ), 'mat-mdc');\n }\n}\n\n@mixin mdc-strong-focus-indicators-theme($theme-or-color) {\n @if meta.type-of($theme-or-color) == 'color' {\n @include customize-focus-indicators((\n border-color: $theme-or-color\n ), 'mat-mdc');\n }\n @else {\n @include theming.private-check-duplicate-theme-styles(\n $theme-or-color, 'mat-mdc-focus-indicators') {\n @if inspection.theme-has($theme-or-color, color) {\n @include mdc-strong-focus-indicators-color($theme-or-color);\n }\n }\n }\n}\n","// This mixin ensures an element spans to fill the nearest ancestor with defined positioning.\n@mixin fill {\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n position: absolute;\n}\n","@use '@angular/cdk';\n@use './tokens/m2/mat/app' as tokens-mat-app;\n@use './tokens/token-utils';\n@use './ripple/ripple';\n@use './focus-indicators/private';\n@use './mdc-helpers/mdc-helpers';\n\n// Mixin that renders all of the core styles that are not theme-dependent.\n@mixin core() {\n @include ripple.ripple();\n @include cdk.a11y-visually-hidden();\n @include cdk.overlay();\n @include cdk.text-field-autosize();\n @include cdk.text-field-autofill();\n @include private.structural-styling('mat');\n @include private.structural-styling('mat-mdc');\n\n // Wrapper element that provides the theme background when the\n // user's content isn't inside of a `mat-sidenav-container`.\n @at-root {\n .mat-app-background {\n @include mdc-helpers.disable-mdc-fallback-declarations {\n @include token-utils.use-tokens(tokens-mat-app.$prefix, tokens-mat-app.get-token-slots()) {\n // Note: we need to emit fallback values here to avoid errors in internal builds.\n @include token-utils.create-token-slot(background-color, background-color, transparent);\n @include token-utils.create-token-slot(color, text-color, inherit);\n }\n }\n }\n }\n}\n"],"mappings":"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A6EE,SAAA,SACA,UAAA,IhB4/CF,CACF,CiB7wDA,CV4JE,SAAA,kBU1JA,QAAA,aACA,YAAA,KrBRF,QqBSE,EAAA,KpBmFA,UAAA,KACA,YAAA,KoBlFA,YAAA,IrBXF,cqBYE,IACA,gBAAA,KACA,eAAA,UACA,SAAA,OACA,OAAA,IjBixDF,CiB9wDE,CV8IA,MU9IA,CAAA,eV8IA,kBU9IA,apB8EA,UAAA,KACA,YAAA,KoB7EE,YAAA,KrBrBJ,QqBsBI,EAAA,GjBkxDJ,CiB/wDE,CVwIA,MUxIA,CAAA,eVwIA,kBUxIA,apBmEA,UAAA,KACA,YAAA,KoBlEE,YAAA,KrB3BJ,QqB4BI,EAAA,IjBmxDJ,CiBhxDE,CVkIA,MUlIA,CAAA,iBVkIA,kBUlIA,epBwDA,UAAA,KACA,YAAA,KoBvDE,YAAA,KrBjCJ,QqBkCI,EAAA,IjBoxDJ,CiB/wDE,CV0HA,MU1HA,CAAA,cAAA,CV0HA,MU1HA,CAAA,aAAA,cV0HA,kBU1HA,gBV0HA,kBU1HA,yBAEE,MAAA,UACA,aAAA,KACA,gBAAA,KAAA,IjBkxDJ,CiB9wDA,CVmQA,QUlQE,WAAA,MjBixDF,CiB/wDE,CVgQF,QUhQE,CV+GA,OXjKF,OqBmDI,EAAA,IACA,WAAA,EAAA,IAAA,IAAA,UACA,WAAA,IAAA,IAAA,WjBixDJ,CiBhxDI,CV4PJ,QU5PI,CV2GF,MU3GE,OACI,UAAA,MAAA,IjBkxDR,CiB7wDA,CAAA,CAAA,cACE,MAAA,MpB+BA,UAAA,KACA,YAAA,KoB9BA,YAAA,KrB/DF,QqBgEE,EAAA,KrBhEF,OqBiEE,IrBjEF,cqBkEE,GjBixDF,CiB9wDA,CAAA,YAAA,CAAA,mBACE,eAAA,SjBixDF,CkBp1DA,CJDA,QlBFA,QsBKE,EACA,YAAA,etBNF,csBOE,GlBy1DF,CkBv1DE,CJPF,QIOE,OACE,YAAA,KACA,YAAA,ItBXJ,QsBYI,IAAA,KtBZJ,OsBaI,EACA,eAAA,UtBdJ,csBeI,IAAA,IAAA,EAAA,ClBy1DJ,CkBt1DE,CJhBF,QIgBE,EtBlBF,QsBmBI,KtBnBJ,OsBoBI,ErBwEF,UAAA,KACA,YAAA,IGixDF,CmB5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","names":[],"sourceRoot":"webpack:///","file":"styles.8bbf081136b62e40.css","x_google_ignoreList":[46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62]}