.\\n\\n.list-group {\\n // No need to set list-style: none; since .list-group-item is block level\\n padding-left: 0; // reset padding because ul and ol\\n margin-bottom: 20px;\\n}\\n\\n\\n// Individual list items\\n//\\n// Use on `li`s or `div`s within the `.list-group` parent.\\n\\n.list-group-item {\\n position: relative;\\n display: block;\\n padding: 10px 15px;\\n // Place the border on the list items and negative margin up for better styling\\n margin-bottom: -1px;\\n background-color: @list-group-bg;\\n border: 1px solid @list-group-border;\\n\\n // Round the first and last items\\n &:first-child {\\n .border-top-radius(@list-group-border-radius);\\n }\\n &:last-child {\\n margin-bottom: 0;\\n .border-bottom-radius(@list-group-border-radius);\\n }\\n\\n // Disabled state\\n &.disabled,\\n &.disabled:hover,\\n &.disabled:focus {\\n color: @list-group-disabled-color;\\n cursor: @cursor-disabled;\\n background-color: @list-group-disabled-bg;\\n\\n // Force color to inherit for custom content\\n .list-group-item-heading {\\n color: inherit;\\n }\\n .list-group-item-text {\\n color: @list-group-disabled-text-color;\\n }\\n }\\n\\n // Active class on item itself, not parent\\n &.active,\\n &.active:hover,\\n &.active:focus {\\n z-index: 2; // Place active items above their siblings for proper border styling\\n color: @list-group-active-color;\\n background-color: @list-group-active-bg;\\n border-color: @list-group-active-border;\\n\\n // Force color to inherit for custom content\\n .list-group-item-heading,\\n .list-group-item-heading > small,\\n .list-group-item-heading > .small {\\n color: inherit;\\n }\\n .list-group-item-text {\\n color: @list-group-active-text-color;\\n }\\n }\\n}\\n\\n\\n// Interactive list items\\n//\\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\\n// Includes an extra `.active` modifier class for showing selected items.\\n\\na.list-group-item,\\nbutton.list-group-item {\\n color: @list-group-link-color;\\n\\n .list-group-item-heading {\\n color: @list-group-link-heading-color;\\n }\\n\\n // Hover state\\n &:hover,\\n &:focus {\\n color: @list-group-link-hover-color;\\n text-decoration: none;\\n background-color: @list-group-hover-bg;\\n }\\n}\\n\\nbutton.list-group-item {\\n width: 100%;\\n text-align: left;\\n}\\n\\n\\n// Contextual variants\\n//\\n// Add modifier classes to change text and background color on individual items.\\n// Organizationally, this must come after the `:hover` states.\\n\\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\\n\\n\\n// Custom content options\\n//\\n// Extra classes for creating well-formatted content within `.list-group-item`s.\\n\\n.list-group-item-heading {\\n margin-top: 0;\\n margin-bottom: 5px;\\n}\\n.list-group-item-text {\\n margin-bottom: 0;\\n line-height: 1.3;\\n}\\n\",\"// List Groups\\n\\n.list-group-item-variant(@state; @background; @color) {\\n .list-group-item-@{state} {\\n color: @color;\\n background-color: @background;\\n\\n a&,\\n button& {\\n color: @color;\\n\\n .list-group-item-heading {\\n color: inherit;\\n }\\n\\n &:hover,\\n &:focus {\\n color: @color;\\n background-color: darken(@background, 5%);\\n }\\n &.active,\\n &.active:hover,\\n &.active:focus {\\n color: #fff;\\n background-color: @color;\\n border-color: @color;\\n }\\n }\\n }\\n}\\n\",\"// stylelint-disable selector-max-type, selector-max-compound-selectors, selector-max-combinators, no-duplicate-selectors\\n\\n//\\n// Panels\\n// --------------------------------------------------\\n\\n\\n// Base class\\n.panel {\\n margin-bottom: @line-height-computed;\\n background-color: @panel-bg;\\n border: 1px solid transparent;\\n border-radius: @panel-border-radius;\\n .box-shadow(0 1px 1px rgba(0, 0, 0, .05));\\n}\\n\\n// Panel contents\\n.panel-body {\\n padding: @panel-body-padding;\\n &:extend(.clearfix all);\\n}\\n\\n// Optional heading\\n.panel-heading {\\n padding: @panel-heading-padding;\\n border-bottom: 1px solid transparent;\\n .border-top-radius((@panel-border-radius - 1));\\n\\n > .dropdown .dropdown-toggle {\\n color: inherit;\\n }\\n}\\n\\n// Within heading, strip any `h*` tag of its default margins for spacing.\\n.panel-title {\\n margin-top: 0;\\n margin-bottom: 0;\\n font-size: ceil((@font-size-base * 1.125));\\n color: inherit;\\n\\n > a,\\n > small,\\n > .small,\\n > small > a,\\n > .small > a {\\n color: inherit;\\n }\\n}\\n\\n// Optional footer (stays gray in every modifier class)\\n.panel-footer {\\n padding: @panel-footer-padding;\\n background-color: @panel-footer-bg;\\n border-top: 1px solid @panel-inner-border;\\n .border-bottom-radius((@panel-border-radius - 1));\\n}\\n\\n\\n// List groups in panels\\n//\\n// By default, space out list group content from panel headings to account for\\n// any kind of custom content between the two.\\n\\n.panel {\\n > .list-group,\\n > .panel-collapse > .list-group {\\n margin-bottom: 0;\\n\\n .list-group-item {\\n border-width: 1px 0;\\n border-radius: 0;\\n }\\n\\n // Add border top radius for first one\\n &:first-child {\\n .list-group-item:first-child {\\n border-top: 0;\\n .border-top-radius((@panel-border-radius - 1));\\n }\\n }\\n\\n // Add border bottom radius for last one\\n &:last-child {\\n .list-group-item:last-child {\\n border-bottom: 0;\\n .border-bottom-radius((@panel-border-radius - 1));\\n }\\n }\\n }\\n > .panel-heading + .panel-collapse > .list-group {\\n .list-group-item:first-child {\\n .border-top-radius(0);\\n }\\n }\\n}\\n// Collapse space between when there's no additional content.\\n.panel-heading + .list-group {\\n .list-group-item:first-child {\\n border-top-width: 0;\\n }\\n}\\n.list-group + .panel-footer {\\n border-top-width: 0;\\n}\\n\\n// Tables in panels\\n//\\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\\n// watch it go full width.\\n\\n.panel {\\n > .table,\\n > .table-responsive > .table,\\n > .panel-collapse > .table {\\n margin-bottom: 0;\\n\\n caption {\\n padding-right: @panel-body-padding;\\n padding-left: @panel-body-padding;\\n }\\n }\\n // Add border top radius for first one\\n > .table:first-child,\\n > .table-responsive:first-child > .table:first-child {\\n .border-top-radius((@panel-border-radius - 1));\\n\\n > thead:first-child,\\n > tbody:first-child {\\n > tr:first-child {\\n border-top-left-radius: (@panel-border-radius - 1);\\n border-top-right-radius: (@panel-border-radius - 1);\\n\\n td:first-child,\\n th:first-child {\\n border-top-left-radius: (@panel-border-radius - 1);\\n }\\n td:last-child,\\n th:last-child {\\n border-top-right-radius: (@panel-border-radius - 1);\\n }\\n }\\n }\\n }\\n // Add border bottom radius for last one\\n > .table:last-child,\\n > .table-responsive:last-child > .table:last-child {\\n .border-bottom-radius((@panel-border-radius - 1));\\n\\n > tbody:last-child,\\n > tfoot:last-child {\\n > tr:last-child {\\n border-bottom-right-radius: (@panel-border-radius - 1);\\n border-bottom-left-radius: (@panel-border-radius - 1);\\n\\n td:first-child,\\n th:first-child {\\n border-bottom-left-radius: (@panel-border-radius - 1);\\n }\\n td:last-child,\\n th:last-child {\\n border-bottom-right-radius: (@panel-border-radius - 1);\\n }\\n }\\n }\\n }\\n > .panel-body + .table,\\n > .panel-body + .table-responsive,\\n > .table + .panel-body,\\n > .table-responsive + .panel-body {\\n border-top: 1px solid @table-border-color;\\n }\\n > .table > tbody:first-child > tr:first-child th,\\n > .table > tbody:first-child > tr:first-child td {\\n border-top: 0;\\n }\\n > .table-bordered,\\n > .table-responsive > .table-bordered {\\n border: 0;\\n > thead,\\n > tbody,\\n > tfoot {\\n > tr {\\n > th:first-child,\\n > td:first-child {\\n border-left: 0;\\n }\\n > th:last-child,\\n > td:last-child {\\n border-right: 0;\\n }\\n }\\n }\\n > thead,\\n > tbody {\\n > tr:first-child {\\n > td,\\n > th {\\n border-bottom: 0;\\n }\\n }\\n }\\n > tbody,\\n > tfoot {\\n > tr:last-child {\\n > td,\\n > th {\\n border-bottom: 0;\\n }\\n }\\n }\\n }\\n > .table-responsive {\\n margin-bottom: 0;\\n border: 0;\\n }\\n}\\n\\n\\n// Collapsible panels (aka, accordion)\\n//\\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\\n// the help of our collapse JavaScript plugin.\\n\\n.panel-group {\\n margin-bottom: @line-height-computed;\\n\\n // Tighten up margin so it's only between panels\\n .panel {\\n margin-bottom: 0;\\n border-radius: @panel-border-radius;\\n\\n + .panel {\\n margin-top: 5px;\\n }\\n }\\n\\n .panel-heading {\\n border-bottom: 0;\\n\\n + .panel-collapse > .panel-body,\\n + .panel-collapse > .list-group {\\n border-top: 1px solid @panel-inner-border;\\n }\\n }\\n\\n .panel-footer {\\n border-top: 0;\\n + .panel-collapse .panel-body {\\n border-bottom: 1px solid @panel-inner-border;\\n }\\n }\\n}\\n\\n\\n// Contextual variations\\n.panel-default {\\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\\n}\\n.panel-primary {\\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\\n}\\n.panel-success {\\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\\n}\\n.panel-info {\\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\\n}\\n.panel-warning {\\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\\n}\\n.panel-danger {\\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\\n}\\n\",\"// Panels\\n\\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\\n border-color: @border;\\n\\n & > .panel-heading {\\n color: @heading-text-color;\\n background-color: @heading-bg-color;\\n border-color: @heading-border;\\n\\n + .panel-collapse > .panel-body {\\n border-top-color: @border;\\n }\\n .badge {\\n color: @heading-bg-color;\\n background-color: @heading-text-color;\\n }\\n }\\n & > .panel-footer {\\n + .panel-collapse > .panel-body {\\n border-bottom-color: @border;\\n }\\n }\\n}\\n\",\"// Embeds responsive\\n//\\n// Credit: Nicolas Gallagher and SUIT CSS.\\n\\n.embed-responsive {\\n position: relative;\\n display: block;\\n height: 0;\\n padding: 0;\\n overflow: hidden;\\n\\n .embed-responsive-item,\\n iframe,\\n embed,\\n object,\\n video {\\n position: absolute;\\n top: 0;\\n bottom: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n border: 0;\\n }\\n}\\n\\n// Modifier class for 16:9 aspect ratio\\n.embed-responsive-16by9 {\\n padding-bottom: 56.25%;\\n}\\n\\n// Modifier class for 4:3 aspect ratio\\n.embed-responsive-4by3 {\\n padding-bottom: 75%;\\n}\\n\",\"//\\n// Wells\\n// --------------------------------------------------\\n\\n\\n// Base class\\n.well {\\n min-height: 20px;\\n padding: 19px;\\n margin-bottom: 20px;\\n background-color: @well-bg;\\n border: 1px solid @well-border;\\n border-radius: @border-radius-base;\\n .box-shadow(inset 0 1px 1px rgba(0, 0, 0, .05));\\n blockquote {\\n border-color: #ddd;\\n border-color: rgba(0, 0, 0, .15);\\n }\\n}\\n\\n// Sizes\\n.well-lg {\\n padding: 24px;\\n border-radius: @border-radius-large;\\n}\\n.well-sm {\\n padding: 9px;\\n border-radius: @border-radius-small;\\n}\\n\",\"// stylelint-disable property-no-vendor-prefix\\n\\n//\\n// Close icons\\n// --------------------------------------------------\\n\\n\\n.close {\\n float: right;\\n font-size: (@font-size-base * 1.5);\\n font-weight: @close-font-weight;\\n line-height: 1;\\n color: @close-color;\\n text-shadow: @close-text-shadow;\\n .opacity(.2);\\n\\n &:hover,\\n &:focus {\\n color: @close-color;\\n text-decoration: none;\\n cursor: pointer;\\n .opacity(.5);\\n }\\n\\n // Additional properties for button version\\n // iOS requires the button element instead of an anchor tag.\\n // If you want the anchor version, it requires `href=\\\"#\\\"`.\\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\\n button& {\\n padding: 0;\\n cursor: pointer;\\n background: transparent;\\n border: 0;\\n -webkit-appearance: none;\\n appearance: none;\\n }\\n}\\n\",\"//\\n// Modals\\n// --------------------------------------------------\\n\\n// .modal-open - body class for killing the scroll\\n// .modal - container to scroll within\\n// .modal-dialog - positioning shell for the actual modal\\n// .modal-content - actual modal w/ bg and corners and shit\\n\\n// Kill the scroll on the body\\n.modal-open {\\n overflow: hidden;\\n}\\n\\n// Container that the modal scrolls within\\n.modal {\\n position: fixed;\\n top: 0;\\n right: 0;\\n bottom: 0;\\n left: 0;\\n z-index: @zindex-modal;\\n display: none;\\n overflow: hidden;\\n -webkit-overflow-scrolling: touch;\\n\\n // Prevent Chrome on Windows from adding a focus outline. For details, see\\n // https://github.com/twbs/bootstrap/pull/10951.\\n outline: 0;\\n\\n // When fading in the modal, animate it to slide down\\n &.fade .modal-dialog {\\n .translate(0, -25%);\\n .transition-transform(~\\\"0.3s ease-out\\\");\\n }\\n &.in .modal-dialog { .translate(0, 0); }\\n}\\n.modal-open .modal {\\n overflow-x: hidden;\\n overflow-y: auto;\\n}\\n\\n// Shell div to position the modal with bottom padding\\n.modal-dialog {\\n position: relative;\\n width: auto;\\n margin: 10px;\\n}\\n\\n// Actual modal\\n.modal-content {\\n position: relative;\\n background-color: @modal-content-bg;\\n background-clip: padding-box;\\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\\n border: 1px solid @modal-content-border-color;\\n border-radius: @border-radius-large;\\n .box-shadow(0 3px 9px rgba(0, 0, 0, .5));\\n // Remove focus outline from opened modal\\n outline: 0;\\n}\\n\\n// Modal background\\n.modal-backdrop {\\n position: fixed;\\n top: 0;\\n right: 0;\\n bottom: 0;\\n left: 0;\\n z-index: @zindex-modal-background;\\n background-color: @modal-backdrop-bg;\\n // Fade for backdrop\\n &.fade { .opacity(0); }\\n &.in { .opacity(@modal-backdrop-opacity); }\\n}\\n\\n// Modal header\\n// Top section of the modal w/ title and dismiss\\n.modal-header {\\n padding: @modal-title-padding;\\n border-bottom: 1px solid @modal-header-border-color;\\n &:extend(.clearfix all);\\n}\\n// Close icon\\n.modal-header .close {\\n margin-top: -2px;\\n}\\n\\n// Title text within header\\n.modal-title {\\n margin: 0;\\n line-height: @modal-title-line-height;\\n}\\n\\n// Modal body\\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\\n.modal-body {\\n position: relative;\\n padding: @modal-inner-padding;\\n}\\n\\n// Footer (for actions)\\n.modal-footer {\\n padding: @modal-inner-padding;\\n text-align: right; // right align buttons\\n border-top: 1px solid @modal-footer-border-color;\\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\\n\\n // Properly space out buttons\\n .btn + .btn {\\n margin-bottom: 0; // account for input[type=\\\"submit\\\"] which gets the bottom margin like all other inputs\\n margin-left: 5px;\\n }\\n // but override that for button groups\\n .btn-group .btn + .btn {\\n margin-left: -1px;\\n }\\n // and override it for block buttons as well\\n .btn-block + .btn-block {\\n margin-left: 0;\\n }\\n}\\n\\n// Measure scrollbar width for padding body during modal show/hide\\n.modal-scrollbar-measure {\\n position: absolute;\\n top: -9999px;\\n width: 50px;\\n height: 50px;\\n overflow: scroll;\\n}\\n\\n// Scale up the modal\\n@media (min-width: @screen-sm-min) {\\n // Automatically set modal's width for larger viewports\\n .modal-dialog {\\n width: @modal-md;\\n margin: 30px auto;\\n }\\n .modal-content {\\n .box-shadow(0 5px 15px rgba(0, 0, 0, .5));\\n }\\n\\n // Modal sizes\\n .modal-sm { width: @modal-sm; }\\n}\\n\\n@media (min-width: @screen-md-min) {\\n .modal-lg { width: @modal-lg; }\\n}\\n\",\"//\\n// Tooltips\\n// --------------------------------------------------\\n\\n\\n// Base class\\n.tooltip {\\n position: absolute;\\n z-index: @zindex-tooltip;\\n display: block;\\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\\n // So reset our font and text properties to avoid inheriting weird values.\\n .reset-text();\\n font-size: @font-size-small;\\n\\n .opacity(0);\\n\\n &.in { .opacity(@tooltip-opacity); }\\n &.top {\\n padding: @tooltip-arrow-width 0;\\n margin-top: -3px;\\n }\\n &.right {\\n padding: 0 @tooltip-arrow-width;\\n margin-left: 3px;\\n }\\n &.bottom {\\n padding: @tooltip-arrow-width 0;\\n margin-top: 3px;\\n }\\n &.left {\\n padding: 0 @tooltip-arrow-width;\\n margin-left: -3px;\\n }\\n\\n // Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\\n &.top .tooltip-arrow {\\n bottom: 0;\\n left: 50%;\\n margin-left: -@tooltip-arrow-width;\\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\\n border-top-color: @tooltip-arrow-color;\\n }\\n &.top-left .tooltip-arrow {\\n right: @tooltip-arrow-width;\\n bottom: 0;\\n margin-bottom: -@tooltip-arrow-width;\\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\\n border-top-color: @tooltip-arrow-color;\\n }\\n &.top-right .tooltip-arrow {\\n bottom: 0;\\n left: @tooltip-arrow-width;\\n margin-bottom: -@tooltip-arrow-width;\\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\\n border-top-color: @tooltip-arrow-color;\\n }\\n &.right .tooltip-arrow {\\n top: 50%;\\n left: 0;\\n margin-top: -@tooltip-arrow-width;\\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\\n border-right-color: @tooltip-arrow-color;\\n }\\n &.left .tooltip-arrow {\\n top: 50%;\\n right: 0;\\n margin-top: -@tooltip-arrow-width;\\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\\n border-left-color: @tooltip-arrow-color;\\n }\\n &.bottom .tooltip-arrow {\\n top: 0;\\n left: 50%;\\n margin-left: -@tooltip-arrow-width;\\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\\n border-bottom-color: @tooltip-arrow-color;\\n }\\n &.bottom-left .tooltip-arrow {\\n top: 0;\\n right: @tooltip-arrow-width;\\n margin-top: -@tooltip-arrow-width;\\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\\n border-bottom-color: @tooltip-arrow-color;\\n }\\n &.bottom-right .tooltip-arrow {\\n top: 0;\\n left: @tooltip-arrow-width;\\n margin-top: -@tooltip-arrow-width;\\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\\n border-bottom-color: @tooltip-arrow-color;\\n }\\n}\\n\\n// Wrapper for the tooltip content\\n.tooltip-inner {\\n max-width: @tooltip-max-width;\\n padding: 3px 8px;\\n color: @tooltip-color;\\n text-align: center;\\n background-color: @tooltip-bg;\\n border-radius: @border-radius-base;\\n}\\n\\n// Arrows\\n.tooltip-arrow {\\n position: absolute;\\n width: 0;\\n height: 0;\\n border-color: transparent;\\n border-style: solid;\\n}\\n\",\".reset-text() {\\n font-family: @font-family-base;\\n // We deliberately do NOT reset font-size.\\n font-style: normal;\\n font-weight: 400;\\n line-height: @line-height-base;\\n line-break: auto;\\n text-align: left; // Fallback for where `start` is not supported\\n text-align: start;\\n text-decoration: none;\\n text-shadow: none;\\n text-transform: none;\\n letter-spacing: normal;\\n word-break: normal;\\n word-spacing: normal;\\n word-wrap: normal;\\n white-space: normal;\\n}\\n\",\"//\\n// Popovers\\n// --------------------------------------------------\\n\\n\\n.popover {\\n position: absolute;\\n top: 0;\\n left: 0;\\n z-index: @zindex-popover;\\n display: none;\\n max-width: @popover-max-width;\\n padding: 1px;\\n // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\\n // So reset our font and text properties to avoid inheriting weird values.\\n .reset-text();\\n font-size: @font-size-base;\\n background-color: @popover-bg;\\n background-clip: padding-box;\\n border: 1px solid @popover-fallback-border-color;\\n border: 1px solid @popover-border-color;\\n border-radius: @border-radius-large;\\n .box-shadow(0 5px 10px rgba(0, 0, 0, .2));\\n\\n // Offset the popover to account for the popover arrow\\n &.top { margin-top: -@popover-arrow-width; }\\n &.right { margin-left: @popover-arrow-width; }\\n &.bottom { margin-top: @popover-arrow-width; }\\n &.left { margin-left: -@popover-arrow-width; }\\n\\n // Arrows\\n // .arrow is outer, .arrow:after is inner\\n > .arrow {\\n border-width: @popover-arrow-outer-width;\\n\\n &,\\n &:after {\\n position: absolute;\\n display: block;\\n width: 0;\\n height: 0;\\n border-color: transparent;\\n border-style: solid;\\n }\\n\\n &:after {\\n content: \\\"\\\";\\n border-width: @popover-arrow-width;\\n }\\n }\\n\\n &.top > .arrow {\\n bottom: -@popover-arrow-outer-width;\\n left: 50%;\\n margin-left: -@popover-arrow-outer-width;\\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\\n border-top-color: @popover-arrow-outer-color;\\n border-bottom-width: 0;\\n &:after {\\n bottom: 1px;\\n margin-left: -@popover-arrow-width;\\n content: \\\" \\\";\\n border-top-color: @popover-arrow-color;\\n border-bottom-width: 0;\\n }\\n }\\n &.right > .arrow {\\n top: 50%;\\n left: -@popover-arrow-outer-width;\\n margin-top: -@popover-arrow-outer-width;\\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\\n border-right-color: @popover-arrow-outer-color;\\n border-left-width: 0;\\n &:after {\\n bottom: -@popover-arrow-width;\\n left: 1px;\\n content: \\\" \\\";\\n border-right-color: @popover-arrow-color;\\n border-left-width: 0;\\n }\\n }\\n &.bottom > .arrow {\\n top: -@popover-arrow-outer-width;\\n left: 50%;\\n margin-left: -@popover-arrow-outer-width;\\n border-top-width: 0;\\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\\n border-bottom-color: @popover-arrow-outer-color;\\n &:after {\\n top: 1px;\\n margin-left: -@popover-arrow-width;\\n content: \\\" \\\";\\n border-top-width: 0;\\n border-bottom-color: @popover-arrow-color;\\n }\\n }\\n\\n &.left > .arrow {\\n top: 50%;\\n right: -@popover-arrow-outer-width;\\n margin-top: -@popover-arrow-outer-width;\\n border-right-width: 0;\\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\\n border-left-color: @popover-arrow-outer-color;\\n &:after {\\n right: 1px;\\n bottom: -@popover-arrow-width;\\n content: \\\" \\\";\\n border-right-width: 0;\\n border-left-color: @popover-arrow-color;\\n }\\n }\\n}\\n\\n.popover-title {\\n padding: 8px 14px;\\n margin: 0; // reset heading margin\\n font-size: @font-size-base;\\n background-color: @popover-title-bg;\\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\\n border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\\n}\\n\\n.popover-content {\\n padding: 9px 14px;\\n}\\n\",\"// stylelint-disable media-feature-name-no-unknown\\n\\n//\\n// Carousel\\n// --------------------------------------------------\\n\\n\\n// Wrapper for the slide container and indicators\\n.carousel {\\n position: relative;\\n}\\n\\n.carousel-inner {\\n position: relative;\\n width: 100%;\\n overflow: hidden;\\n\\n > .item {\\n position: relative;\\n display: none;\\n .transition(.6s ease-in-out left);\\n\\n // Account for jankitude on images\\n > img,\\n > a > img {\\n &:extend(.img-responsive);\\n line-height: 1;\\n }\\n\\n // WebKit CSS3 transforms for supported devices\\n @media all and (transform-3d), (-webkit-transform-3d) {\\n .transition-transform(~\\\"0.6s ease-in-out\\\");\\n .backface-visibility(~\\\"hidden\\\");\\n .perspective(1000px);\\n\\n &.next,\\n &.active.right {\\n .translate3d(100%, 0, 0);\\n left: 0;\\n }\\n &.prev,\\n &.active.left {\\n .translate3d(-100%, 0, 0);\\n left: 0;\\n }\\n &.next.left,\\n &.prev.right,\\n &.active {\\n .translate3d(0, 0, 0);\\n left: 0;\\n }\\n }\\n }\\n\\n > .active,\\n > .next,\\n > .prev {\\n display: block;\\n }\\n\\n > .active {\\n left: 0;\\n }\\n\\n > .next,\\n > .prev {\\n position: absolute;\\n top: 0;\\n width: 100%;\\n }\\n\\n > .next {\\n left: 100%;\\n }\\n > .prev {\\n left: -100%;\\n }\\n > .next.left,\\n > .prev.right {\\n left: 0;\\n }\\n\\n > .active.left {\\n left: -100%;\\n }\\n > .active.right {\\n left: 100%;\\n }\\n\\n}\\n\\n// Left/right controls for nav\\n// ---------------------------\\n\\n.carousel-control {\\n position: absolute;\\n top: 0;\\n bottom: 0;\\n left: 0;\\n width: @carousel-control-width;\\n font-size: @carousel-control-font-size;\\n color: @carousel-control-color;\\n text-align: center;\\n text-shadow: @carousel-text-shadow;\\n background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\\n .opacity(@carousel-control-opacity);\\n // We can't have this transition here because WebKit cancels the carousel\\n // animation if you trip this while in the middle of another animation.\\n\\n // Set gradients for backgrounds\\n &.left {\\n #gradient > .horizontal(@start-color: rgba(0, 0, 0, .5); @end-color: rgba(0, 0, 0, .0001));\\n }\\n &.right {\\n right: 0;\\n left: auto;\\n #gradient > .horizontal(@start-color: rgba(0, 0, 0, .0001); @end-color: rgba(0, 0, 0, .5));\\n }\\n\\n // Hover/focus state\\n &:hover,\\n &:focus {\\n color: @carousel-control-color;\\n text-decoration: none;\\n outline: 0;\\n .opacity(.9);\\n }\\n\\n // Toggles\\n .icon-prev,\\n .icon-next,\\n .glyphicon-chevron-left,\\n .glyphicon-chevron-right {\\n position: absolute;\\n top: 50%;\\n z-index: 5;\\n display: inline-block;\\n margin-top: -10px;\\n }\\n .icon-prev,\\n .glyphicon-chevron-left {\\n left: 50%;\\n margin-left: -10px;\\n }\\n .icon-next,\\n .glyphicon-chevron-right {\\n right: 50%;\\n margin-right: -10px;\\n }\\n .icon-prev,\\n .icon-next {\\n width: 20px;\\n height: 20px;\\n font-family: serif;\\n line-height: 1;\\n }\\n\\n .icon-prev {\\n &:before {\\n content: \\\"\\\\2039\\\";// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\\n }\\n }\\n .icon-next {\\n &:before {\\n content: \\\"\\\\203a\\\";// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\\n }\\n }\\n}\\n\\n// Optional indicator pips\\n//\\n// Add an unordered list with the following class and add a list item for each\\n// slide your carousel holds.\\n\\n.carousel-indicators {\\n position: absolute;\\n bottom: 10px;\\n left: 50%;\\n z-index: 15;\\n width: 60%;\\n padding-left: 0;\\n margin-left: -30%;\\n text-align: center;\\n list-style: none;\\n\\n li {\\n display: inline-block;\\n width: 10px;\\n height: 10px;\\n margin: 1px;\\n text-indent: -999px;\\n cursor: pointer;\\n // IE8-9 hack for event handling\\n //\\n // Internet Explorer 8-9 does not support clicks on elements without a set\\n // `background-color`. We cannot use `filter` since that's not viewed as a\\n // background color by the browser. Thus, a hack is needed.\\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\\n //\\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\\n // set alpha transparency for the best results possible.\\n background-color: #000 \\\\9; // IE8\\n background-color: rgba(0, 0, 0, 0); // IE9\\n\\n border: 1px solid @carousel-indicator-border-color;\\n border-radius: 10px;\\n }\\n\\n .active {\\n width: 12px;\\n height: 12px;\\n margin: 0;\\n background-color: @carousel-indicator-active-bg;\\n }\\n}\\n\\n// Optional captions\\n// -----------------------------\\n// Hidden by default for smaller viewports\\n.carousel-caption {\\n position: absolute;\\n right: 15%;\\n bottom: 20px;\\n left: 15%;\\n z-index: 10;\\n padding-top: 20px;\\n padding-bottom: 20px;\\n color: @carousel-caption-color;\\n text-align: center;\\n text-shadow: @carousel-text-shadow;\\n\\n & .btn {\\n text-shadow: none; // No shadow for button elements in carousel-caption\\n }\\n}\\n\\n\\n// Scale up controls for tablets and up\\n@media screen and (min-width: @screen-sm-min) {\\n\\n // Scale up the controls a smidge\\n .carousel-control {\\n .glyphicon-chevron-left,\\n .glyphicon-chevron-right,\\n .icon-prev,\\n .icon-next {\\n width: (@carousel-control-font-size * 1.5);\\n height: (@carousel-control-font-size * 1.5);\\n margin-top: (@carousel-control-font-size / -2);\\n font-size: (@carousel-control-font-size * 1.5);\\n }\\n .glyphicon-chevron-left,\\n .icon-prev {\\n margin-left: (@carousel-control-font-size / -2);\\n }\\n .glyphicon-chevron-right,\\n .icon-next {\\n margin-right: (@carousel-control-font-size / -2);\\n }\\n }\\n\\n // Show and left align the captions\\n .carousel-caption {\\n right: 20%;\\n left: 20%;\\n padding-bottom: 30px;\\n }\\n\\n // Move up the indicators\\n .carousel-indicators {\\n bottom: 20px;\\n }\\n}\\n\",\"// Clearfix\\n//\\n// For modern browsers\\n// 1. The space content is one way to avoid an Opera bug when the\\n// contenteditable attribute is included anywhere else in the document.\\n// Otherwise it causes space to appear at the top and bottom of elements\\n// that are clearfixed.\\n// 2. The use of `table` rather than `block` is only necessary if using\\n// `:before` to contain the top-margins of child elements.\\n//\\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\\n\\n.clearfix() {\\n &:before,\\n &:after {\\n display: table; // 2\\n content: \\\" \\\"; // 1\\n }\\n &:after {\\n clear: both;\\n }\\n}\\n\",\"// Center-align a block level element\\n\\n.center-block() {\\n display: block;\\n margin-right: auto;\\n margin-left: auto;\\n}\\n\",\"// stylelint-disable font-family-name-quotes, font-family-no-missing-generic-family-keyword\\n\\n// CSS image replacement\\n//\\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\\n// mixins being reused as classes with the same name, this doesn't hold up. As\\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\\n//\\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\\n\\n// Deprecated as of v3.0.1 (has been removed in v4)\\n.hide-text() {\\n font: ~\\\"0/0\\\" a;\\n color: transparent;\\n text-shadow: none;\\n background-color: transparent;\\n border: 0;\\n}\\n\\n// New mixin to use as of v3.0.1\\n.text-hide() {\\n .hide-text();\\n}\\n\",\"// stylelint-disable declaration-no-important, at-rule-no-vendor-prefix\\n\\n//\\n// Responsive: Utility classes\\n// --------------------------------------------------\\n\\n\\n// IE10 in Windows (Phone) 8\\n//\\n// Support for responsive views via media queries is kind of borked in IE10, for\\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\\n// our Getting Started page for more information on this bug.\\n//\\n// For more information, see the following:\\n//\\n// Issue: https://github.com/twbs/bootstrap/issues/10497\\n// Docs: https://getbootstrap.com/docs/3.4/getting-started/#support-ie10-width\\n// Source: https://timkadlec.com/2013/01/windows-phone-8-and-device-width/\\n// Source: https://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\\n\\n@-ms-viewport {\\n width: device-width;\\n}\\n\\n\\n// Visibility utilities\\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\\n.visible-xs,\\n.visible-sm,\\n.visible-md,\\n.visible-lg {\\n .responsive-invisibility();\\n}\\n\\n.visible-xs-block,\\n.visible-xs-inline,\\n.visible-xs-inline-block,\\n.visible-sm-block,\\n.visible-sm-inline,\\n.visible-sm-inline-block,\\n.visible-md-block,\\n.visible-md-inline,\\n.visible-md-inline-block,\\n.visible-lg-block,\\n.visible-lg-inline,\\n.visible-lg-inline-block {\\n display: none !important;\\n}\\n\\n.visible-xs {\\n @media (max-width: @screen-xs-max) {\\n .responsive-visibility();\\n }\\n}\\n.visible-xs-block {\\n @media (max-width: @screen-xs-max) {\\n display: block !important;\\n }\\n}\\n.visible-xs-inline {\\n @media (max-width: @screen-xs-max) {\\n display: inline !important;\\n }\\n}\\n.visible-xs-inline-block {\\n @media (max-width: @screen-xs-max) {\\n display: inline-block !important;\\n }\\n}\\n\\n.visible-sm {\\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\\n .responsive-visibility();\\n }\\n}\\n.visible-sm-block {\\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\\n display: block !important;\\n }\\n}\\n.visible-sm-inline {\\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\\n display: inline !important;\\n }\\n}\\n.visible-sm-inline-block {\\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\\n display: inline-block !important;\\n }\\n}\\n\\n.visible-md {\\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\\n .responsive-visibility();\\n }\\n}\\n.visible-md-block {\\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\\n display: block !important;\\n }\\n}\\n.visible-md-inline {\\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\\n display: inline !important;\\n }\\n}\\n.visible-md-inline-block {\\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\\n display: inline-block !important;\\n }\\n}\\n\\n.visible-lg {\\n @media (min-width: @screen-lg-min) {\\n .responsive-visibility();\\n }\\n}\\n.visible-lg-block {\\n @media (min-width: @screen-lg-min) {\\n display: block !important;\\n }\\n}\\n.visible-lg-inline {\\n @media (min-width: @screen-lg-min) {\\n display: inline !important;\\n }\\n}\\n.visible-lg-inline-block {\\n @media (min-width: @screen-lg-min) {\\n display: inline-block !important;\\n }\\n}\\n\\n.hidden-xs {\\n @media (max-width: @screen-xs-max) {\\n .responsive-invisibility();\\n }\\n}\\n.hidden-sm {\\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\\n .responsive-invisibility();\\n }\\n}\\n.hidden-md {\\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\\n .responsive-invisibility();\\n }\\n}\\n.hidden-lg {\\n @media (min-width: @screen-lg-min) {\\n .responsive-invisibility();\\n }\\n}\\n\\n\\n// Print utilities\\n//\\n// Media queries are placed on the inside to be mixin-friendly.\\n\\n// Note: Deprecated .visible-print as of v3.2.0\\n.visible-print {\\n .responsive-invisibility();\\n\\n @media print {\\n .responsive-visibility();\\n }\\n}\\n.visible-print-block {\\n display: none !important;\\n\\n @media print {\\n display: block !important;\\n }\\n}\\n.visible-print-inline {\\n display: none !important;\\n\\n @media print {\\n display: inline !important;\\n }\\n}\\n.visible-print-inline-block {\\n display: none !important;\\n\\n @media print {\\n display: inline-block !important;\\n }\\n}\\n\\n.hidden-print {\\n @media print {\\n .responsive-invisibility();\\n }\\n}\\n\",\"// stylelint-disable declaration-no-important\\n\\n.responsive-visibility() {\\n display: block !important;\\n table& { display: table !important; }\\n tr& { display: table-row !important; }\\n th&,\\n td& { display: table-cell !important; }\\n}\\n\\n.responsive-invisibility() {\\n display: none !important;\\n}\\n\",null,\"html.ios {\\n --ion-default-font: -apple-system, BlinkMacSystemFont, \\\"Helvetica Neue\\\", \\\"Roboto\\\", sans-serif;\\n}\\n\\nhtml.md {\\n --ion-default-font: \\\"Roboto\\\", \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\nhtml {\\n --ion-font-family: var(--ion-default-font);\\n}\\n\\nbody {\\n background: var(--ion-background-color);\\n}\\n\\nbody.backdrop-no-scroll {\\n overflow: hidden;\\n}\\n\\nhtml.ios ion-modal.modal-card .ion-page > ion-header > ion-toolbar:first-of-type {\\n padding-top: 0px;\\n}\\n\\nhtml.ios ion-modal .ion-page {\\n border-radius: inherit;\\n}\\n\\n.ion-color-primary {\\n --ion-color-base: var(--ion-color-primary, #3880ff) !important;\\n --ion-color-base-rgb: var(--ion-color-primary-rgb, 56, 128, 255) !important;\\n --ion-color-contrast: var(--ion-color-primary-contrast, #fff) !important;\\n --ion-color-contrast-rgb: var(--ion-color-primary-contrast-rgb, 255, 255, 255) !important;\\n --ion-color-shade: var(--ion-color-primary-shade, #3171e0) !important;\\n --ion-color-tint: var(--ion-color-primary-tint, #4c8dff) !important;\\n}\\n\\n.ion-color-secondary {\\n --ion-color-base: var(--ion-color-secondary, #3dc2ff) !important;\\n --ion-color-base-rgb: var(--ion-color-secondary-rgb, 61, 194, 255) !important;\\n --ion-color-contrast: var(--ion-color-secondary-contrast, #fff) !important;\\n --ion-color-contrast-rgb: var(--ion-color-secondary-contrast-rgb, 255, 255, 255) !important;\\n --ion-color-shade: var(--ion-color-secondary-shade, #36abe0) !important;\\n --ion-color-tint: var(--ion-color-secondary-tint, #50c8ff) !important;\\n}\\n\\n.ion-color-tertiary {\\n --ion-color-base: var(--ion-color-tertiary, #5260ff) !important;\\n --ion-color-base-rgb: var(--ion-color-tertiary-rgb, 82, 96, 255) !important;\\n --ion-color-contrast: var(--ion-color-tertiary-contrast, #fff) !important;\\n --ion-color-contrast-rgb: var(--ion-color-tertiary-contrast-rgb, 255, 255, 255) !important;\\n --ion-color-shade: var(--ion-color-tertiary-shade, #4854e0) !important;\\n --ion-color-tint: var(--ion-color-tertiary-tint, #6370ff) !important;\\n}\\n\\n.ion-color-success {\\n --ion-color-base: var(--ion-color-success, #2dd36f) !important;\\n --ion-color-base-rgb: var(--ion-color-success-rgb, 45, 211, 111) !important;\\n --ion-color-contrast: var(--ion-color-success-contrast, #fff) !important;\\n --ion-color-contrast-rgb: var(--ion-color-success-contrast-rgb, 255, 255, 255) !important;\\n --ion-color-shade: var(--ion-color-success-shade, #28ba62) !important;\\n --ion-color-tint: var(--ion-color-success-tint, #42d77d) !important;\\n}\\n\\n.ion-color-warning {\\n --ion-color-base: var(--ion-color-warning, #ffc409) !important;\\n --ion-color-base-rgb: var(--ion-color-warning-rgb, 255, 196, 9) !important;\\n --ion-color-contrast: var(--ion-color-warning-contrast, #000) !important;\\n --ion-color-contrast-rgb: var(--ion-color-warning-contrast-rgb, 0, 0, 0) !important;\\n --ion-color-shade: var(--ion-color-warning-shade, #e0ac08) !important;\\n --ion-color-tint: var(--ion-color-warning-tint, #ffca22) !important;\\n}\\n\\n.ion-color-danger {\\n --ion-color-base: var(--ion-color-danger, #eb445a) !important;\\n --ion-color-base-rgb: var(--ion-color-danger-rgb, 235, 68, 90) !important;\\n --ion-color-contrast: var(--ion-color-danger-contrast, #fff) !important;\\n --ion-color-contrast-rgb: var(--ion-color-danger-contrast-rgb, 255, 255, 255) !important;\\n --ion-color-shade: var(--ion-color-danger-shade, #cf3c4f) !important;\\n --ion-color-tint: var(--ion-color-danger-tint, #ed576b) !important;\\n}\\n\\n.ion-color-light {\\n --ion-color-base: var(--ion-color-light, #f4f5f8) !important;\\n --ion-color-base-rgb: var(--ion-color-light-rgb, 244, 245, 248) !important;\\n --ion-color-contrast: var(--ion-color-light-contrast, #000) !important;\\n --ion-color-contrast-rgb: var(--ion-color-light-contrast-rgb, 0, 0, 0) !important;\\n --ion-color-shade: var(--ion-color-light-shade, #d7d8da) !important;\\n --ion-color-tint: var(--ion-color-light-tint, #f5f6f9) !important;\\n}\\n\\n.ion-color-medium {\\n --ion-color-base: var(--ion-color-medium, #92949c) !important;\\n --ion-color-base-rgb: var(--ion-color-medium-rgb, 146, 148, 156) !important;\\n --ion-color-contrast: var(--ion-color-medium-contrast, #fff) !important;\\n --ion-color-contrast-rgb: var(--ion-color-medium-contrast-rgb, 255, 255, 255) !important;\\n --ion-color-shade: var(--ion-color-medium-shade, #808289) !important;\\n --ion-color-tint: var(--ion-color-medium-tint, #9d9fa6) !important;\\n}\\n\\n.ion-color-dark {\\n --ion-color-base: var(--ion-color-dark, #222428) !important;\\n --ion-color-base-rgb: var(--ion-color-dark-rgb, 34, 36, 40) !important;\\n --ion-color-contrast: var(--ion-color-dark-contrast, #fff) !important;\\n --ion-color-contrast-rgb: var(--ion-color-dark-contrast-rgb, 255, 255, 255) !important;\\n --ion-color-shade: var(--ion-color-dark-shade, #1e2023) !important;\\n --ion-color-tint: var(--ion-color-dark-tint, #383a3e) !important;\\n}\\n\\n.ion-page {\\n left: 0;\\n right: 0;\\n top: 0;\\n bottom: 0;\\n display: flex;\\n position: absolute;\\n flex-direction: column;\\n justify-content: space-between;\\n contain: layout size style;\\n overflow: hidden;\\n z-index: 0;\\n}\\n\\n.split-pane-visible > .ion-page.split-pane-main {\\n position: relative;\\n}\\n\\nion-route,\\nion-route-redirect,\\nion-router,\\nion-select-option,\\nion-nav-controller,\\nion-menu-controller,\\nion-action-sheet-controller,\\nion-alert-controller,\\nion-loading-controller,\\nion-modal-controller,\\nion-picker-controller,\\nion-popover-controller,\\nion-toast-controller,\\n.ion-page-hidden,\\n[hidden] {\\n /* stylelint-disable-next-line declaration-no-important */\\n display: none !important;\\n}\\n\\n.ion-page-invisible {\\n opacity: 0;\\n}\\n\\n.can-go-back > ion-header ion-back-button {\\n display: block;\\n}\\n\\nhtml.plt-ios.plt-hybrid, html.plt-ios.plt-pwa {\\n --ion-statusbar-padding: 20px;\\n}\\n\\n@supports (padding-top: 20px) {\\n html {\\n --ion-safe-area-top: var(--ion-statusbar-padding);\\n }\\n}\\n@supports (padding-top: constant(safe-area-inset-top)) {\\n html {\\n --ion-safe-area-top: constant(safe-area-inset-top);\\n --ion-safe-area-bottom: constant(safe-area-inset-bottom);\\n --ion-safe-area-left: constant(safe-area-inset-left);\\n --ion-safe-area-right: constant(safe-area-inset-right);\\n }\\n}\\n@supports (padding-top: env(safe-area-inset-top)) {\\n html {\\n --ion-safe-area-top: env(safe-area-inset-top);\\n --ion-safe-area-bottom: env(safe-area-inset-bottom);\\n --ion-safe-area-left: env(safe-area-inset-left);\\n --ion-safe-area-right: env(safe-area-inset-right);\\n }\\n}\\nion-card.ion-color .ion-inherit-color,\\nion-card-header.ion-color .ion-inherit-color {\\n color: inherit;\\n}\\n\\n.menu-content {\\n transform: translate3d(0, 0, 0);\\n}\\n\\n.menu-content-open {\\n cursor: pointer;\\n touch-action: manipulation;\\n pointer-events: none;\\n}\\n\\n.ios .menu-content-reveal {\\n box-shadow: -8px 0 42px rgba(0, 0, 0, 0.08);\\n}\\n\\n[dir=rtl].ios .menu-content-reveal {\\n box-shadow: 8px 0 42px rgba(0, 0, 0, 0.08);\\n}\\n\\n.md .menu-content-reveal {\\n box-shadow: 4px 0px 16px rgba(0, 0, 0, 0.18);\\n}\\n\\n.md .menu-content-push {\\n box-shadow: 4px 0px 16px rgba(0, 0, 0, 0.18);\\n}\\n\\nion-input input::-webkit-date-and-time-value {\\n text-align: start;\\n}\\n\\n/*# sourceMappingURL=core.css.map */\\n\",null,null,null,null,null,\"audio,\\ncanvas,\\nprogress,\\nvideo {\\n vertical-align: baseline;\\n}\\n\\naudio:not([controls]) {\\n display: none;\\n height: 0;\\n}\\n\\nb,\\nstrong {\\n font-weight: bold;\\n}\\n\\nimg {\\n max-width: 100%;\\n border: 0;\\n}\\n\\nsvg:not(:root) {\\n overflow: hidden;\\n}\\n\\nfigure {\\n margin: 1em 40px;\\n}\\n\\nhr {\\n height: 1px;\\n border-width: 0;\\n box-sizing: content-box;\\n}\\n\\npre {\\n overflow: auto;\\n}\\n\\ncode,\\nkbd,\\npre,\\nsamp {\\n font-family: monospace, monospace;\\n font-size: 1em;\\n}\\n\\nlabel,\\ninput,\\nselect,\\ntextarea {\\n font-family: inherit;\\n line-height: normal;\\n}\\n\\ntextarea {\\n overflow: auto;\\n height: auto;\\n font: inherit;\\n color: inherit;\\n}\\n\\ntextarea::placeholder {\\n padding-left: 2px;\\n}\\n\\nform,\\ninput,\\noptgroup,\\nselect {\\n margin: 0;\\n font: inherit;\\n color: inherit;\\n}\\n\\nhtml input[type=button],\\ninput[type=reset],\\ninput[type=submit] {\\n cursor: pointer;\\n -webkit-appearance: button;\\n}\\n\\na,\\na div,\\na span,\\na ion-icon,\\na ion-label,\\nbutton,\\nbutton div,\\nbutton span,\\nbutton ion-icon,\\nbutton ion-label,\\n.ion-tappable,\\n[tappable],\\n[tappable] div,\\n[tappable] span,\\n[tappable] ion-icon,\\n[tappable] ion-label,\\ninput,\\ntextarea {\\n touch-action: manipulation;\\n}\\n\\na ion-label,\\nbutton ion-label {\\n pointer-events: none;\\n}\\n\\nbutton {\\n border: 0;\\n border-radius: 0;\\n font-family: inherit;\\n font-style: inherit;\\n font-variant: inherit;\\n line-height: 1;\\n text-transform: none;\\n cursor: pointer;\\n -webkit-appearance: button;\\n}\\n\\n[tappable] {\\n cursor: pointer;\\n}\\n\\na[disabled],\\nbutton[disabled],\\nhtml input[disabled] {\\n cursor: default;\\n}\\n\\nbutton::-moz-focus-inner,\\ninput::-moz-focus-inner {\\n padding: 0;\\n border: 0;\\n}\\n\\ninput[type=checkbox],\\ninput[type=radio] {\\n padding: 0;\\n box-sizing: border-box;\\n}\\n\\ninput[type=number]::-webkit-inner-spin-button,\\ninput[type=number]::-webkit-outer-spin-button {\\n height: auto;\\n}\\n\\ninput[type=search]::-webkit-search-cancel-button,\\ninput[type=search]::-webkit-search-decoration {\\n -webkit-appearance: none;\\n}\\n\\ntable {\\n border-collapse: collapse;\\n border-spacing: 0;\\n}\\n\\ntd,\\nth {\\n padding: 0;\\n}\\n\\n/*# sourceMappingURL=normalize.css.map */\\n\",null,\"* {\\n box-sizing: border-box;\\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\\n -webkit-tap-highlight-color: transparent;\\n -webkit-touch-callout: none;\\n}\\n\\nhtml {\\n width: 100%;\\n height: 100%;\\n text-size-adjust: 100%;\\n}\\n\\nhtml:not(.hydrated) body {\\n display: none;\\n}\\n\\nhtml.plt-pwa {\\n height: 100vh;\\n}\\n\\nbody {\\n -moz-osx-font-smoothing: grayscale;\\n -webkit-font-smoothing: antialiased;\\n margin-left: 0;\\n margin-right: 0;\\n margin-top: 0;\\n margin-bottom: 0;\\n padding-left: 0;\\n padding-right: 0;\\n padding-top: 0;\\n padding-bottom: 0;\\n position: fixed;\\n width: 100%;\\n max-width: 100%;\\n height: 100%;\\n max-height: 100%;\\n text-rendering: optimizeLegibility;\\n overflow: hidden;\\n touch-action: manipulation;\\n -webkit-user-drag: none;\\n -ms-content-zooming: none;\\n word-wrap: break-word;\\n overscroll-behavior-y: none;\\n text-size-adjust: none;\\n}\\n\\n/*# sourceMappingURL=structure.css.map */\\n\",null,\"html {\\n font-family: var(--ion-font-family);\\n}\\n\\na {\\n background-color: transparent;\\n color: var(--ion-color-primary, #3880ff);\\n}\\n\\nh1,\\nh2,\\nh3,\\nh4,\\nh5,\\nh6 {\\n margin-top: 16px;\\n margin-bottom: 10px;\\n font-weight: 500;\\n line-height: 1.2;\\n}\\nh1 {\\n margin-top: 20px;\\n font-size: 26px;\\n}\\nh2 {\\n margin-top: 18px;\\n font-size: 24px;\\n}\\nh3 {\\n font-size: 22px;\\n}\\n\\nh4 {\\n font-size: 20px;\\n}\\n\\nh5 {\\n font-size: 18px;\\n}\\n\\nh6 {\\n font-size: 16px;\\n}\\n\\nsmall {\\n font-size: 75%;\\n}\\n\\nsub,\\nsup {\\n position: relative;\\n font-size: 75%;\\n line-height: 0;\\n vertical-align: baseline;\\n}\\n\\nsup {\\n top: -0.5em;\\n}\\n\\nsub {\\n bottom: -0.25em;\\n}\\n\\n/*# sourceMappingURL=typography.css.map */\\n\",null,\".ion-hide {\\n display: none !important;\\n}\\n\\n.ion-hide-up {\\n display: none !important;\\n}\\n\\n.ion-hide-down {\\n display: none !important;\\n}\\n\\n@media (min-width: 576px) {\\n .ion-hide-sm-up {\\n display: none !important;\\n }\\n}\\n@media (max-width: 575.98px) {\\n .ion-hide-sm-down {\\n display: none !important;\\n }\\n}\\n@media (min-width: 768px) {\\n .ion-hide-md-up {\\n display: none !important;\\n }\\n}\\n@media (max-width: 767.98px) {\\n .ion-hide-md-down {\\n display: none !important;\\n }\\n}\\n@media (min-width: 992px) {\\n .ion-hide-lg-up {\\n display: none !important;\\n }\\n}\\n@media (max-width: 991.98px) {\\n .ion-hide-lg-down {\\n display: none !important;\\n }\\n}\\n@media (min-width: 1200px) {\\n .ion-hide-xl-up {\\n display: none !important;\\n }\\n}\\n@media (max-width: 1199.98px) {\\n .ion-hide-xl-down {\\n display: none !important;\\n }\\n}\\n\\n/*# sourceMappingURL=display.css.map */\\n\",null,\".ion-no-padding {\\n --padding-start: 0;\\n --padding-end: 0;\\n --padding-top: 0;\\n --padding-bottom: 0;\\n padding-left: 0;\\n padding-right: 0;\\n padding-top: 0;\\n padding-bottom: 0;\\n}\\n\\n.ion-padding {\\n --padding-start: var(--ion-padding, 16px);\\n --padding-end: var(--ion-padding, 16px);\\n --padding-top: var(--ion-padding, 16px);\\n --padding-bottom: var(--ion-padding, 16px);\\n padding-left: var(--ion-padding, 16px);\\n padding-right: var(--ion-padding, 16px);\\n padding-top: var(--ion-padding, 16px);\\n padding-bottom: var(--ion-padding, 16px);\\n}\\n@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {\\n .ion-padding {\\n padding-left: unset;\\n padding-right: unset;\\n -webkit-padding-start: var(--ion-padding, 16px);\\n padding-inline-start: var(--ion-padding, 16px);\\n -webkit-padding-end: var(--ion-padding, 16px);\\n padding-inline-end: var(--ion-padding, 16px);\\n }\\n}\\n\\n.ion-padding-top {\\n --padding-top: var(--ion-padding, 16px);\\n padding-top: var(--ion-padding, 16px);\\n}\\n.ion-padding-start {\\n --padding-start: var(--ion-padding, 16px);\\n padding-left: var(--ion-padding, 16px);\\n}\\n@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {\\n .ion-padding-start {\\n padding-left: unset;\\n -webkit-padding-start: var(--ion-padding, 16px);\\n padding-inline-start: var(--ion-padding, 16px);\\n }\\n}\\n\\n.ion-padding-end {\\n --padding-end: var(--ion-padding, 16px);\\n padding-right: var(--ion-padding, 16px);\\n}\\n@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {\\n .ion-padding-end {\\n padding-right: unset;\\n -webkit-padding-end: var(--ion-padding, 16px);\\n padding-inline-end: var(--ion-padding, 16px);\\n }\\n}\\n\\n.ion-padding-bottom {\\n --padding-bottom: var(--ion-padding, 16px);\\n padding-bottom: var(--ion-padding, 16px);\\n}\\n.ion-padding-vertical {\\n --padding-top: var(--ion-padding, 16px);\\n --padding-bottom: var(--ion-padding, 16px);\\n padding-top: var(--ion-padding, 16px);\\n padding-bottom: var(--ion-padding, 16px);\\n}\\n.ion-padding-horizontal {\\n --padding-start: var(--ion-padding, 16px);\\n --padding-end: var(--ion-padding, 16px);\\n padding-left: var(--ion-padding, 16px);\\n padding-right: var(--ion-padding, 16px);\\n}\\n@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {\\n .ion-padding-horizontal {\\n padding-left: unset;\\n padding-right: unset;\\n -webkit-padding-start: var(--ion-padding, 16px);\\n padding-inline-start: var(--ion-padding, 16px);\\n -webkit-padding-end: var(--ion-padding, 16px);\\n padding-inline-end: var(--ion-padding, 16px);\\n }\\n}\\n\\n.ion-no-margin {\\n --margin-start: 0;\\n --margin-end: 0;\\n --margin-top: 0;\\n --margin-bottom: 0;\\n margin-left: 0;\\n margin-right: 0;\\n margin-top: 0;\\n margin-bottom: 0;\\n}\\n\\n.ion-margin {\\n --margin-start: var(--ion-margin, 16px);\\n --margin-end: var(--ion-margin, 16px);\\n --margin-top: var(--ion-margin, 16px);\\n --margin-bottom: var(--ion-margin, 16px);\\n margin-left: var(--ion-margin, 16px);\\n margin-right: var(--ion-margin, 16px);\\n margin-top: var(--ion-margin, 16px);\\n margin-bottom: var(--ion-margin, 16px);\\n}\\n@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {\\n .ion-margin {\\n margin-left: unset;\\n margin-right: unset;\\n -webkit-margin-start: var(--ion-margin, 16px);\\n margin-inline-start: var(--ion-margin, 16px);\\n -webkit-margin-end: var(--ion-margin, 16px);\\n margin-inline-end: var(--ion-margin, 16px);\\n }\\n}\\n\\n.ion-margin-top {\\n --margin-top: var(--ion-margin, 16px);\\n margin-top: var(--ion-margin, 16px);\\n}\\n.ion-margin-start {\\n --margin-start: var(--ion-margin, 16px);\\n margin-left: var(--ion-margin, 16px);\\n}\\n@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {\\n .ion-margin-start {\\n margin-left: unset;\\n -webkit-margin-start: var(--ion-margin, 16px);\\n margin-inline-start: var(--ion-margin, 16px);\\n }\\n}\\n\\n.ion-margin-end {\\n --margin-end: var(--ion-margin, 16px);\\n margin-right: var(--ion-margin, 16px);\\n}\\n@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {\\n .ion-margin-end {\\n margin-right: unset;\\n -webkit-margin-end: var(--ion-margin, 16px);\\n margin-inline-end: var(--ion-margin, 16px);\\n }\\n}\\n\\n.ion-margin-bottom {\\n --margin-bottom: var(--ion-margin, 16px);\\n margin-bottom: var(--ion-margin, 16px);\\n}\\n.ion-margin-vertical {\\n --margin-top: var(--ion-margin, 16px);\\n --margin-bottom: var(--ion-margin, 16px);\\n margin-top: var(--ion-margin, 16px);\\n margin-bottom: var(--ion-margin, 16px);\\n}\\n.ion-margin-horizontal {\\n --margin-start: var(--ion-margin, 16px);\\n --margin-end: var(--ion-margin, 16px);\\n margin-left: var(--ion-margin, 16px);\\n margin-right: var(--ion-margin, 16px);\\n}\\n@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {\\n .ion-margin-horizontal {\\n margin-left: unset;\\n margin-right: unset;\\n -webkit-margin-start: var(--ion-margin, 16px);\\n margin-inline-start: var(--ion-margin, 16px);\\n -webkit-margin-end: var(--ion-margin, 16px);\\n margin-inline-end: var(--ion-margin, 16px);\\n }\\n}\\n\\n/*# sourceMappingURL=padding.css.map */\\n\",null,\".ion-float-left {\\n float: left !important;\\n}\\n\\n.ion-float-right {\\n float: right !important;\\n}\\n\\n.ion-float-start {\\n float: left !important;\\n}\\n[dir=rtl] .ion-float-start, :host-context([dir=rtl]) .ion-float-start {\\n float: right !important;\\n}\\n\\n.ion-float-end {\\n float: right !important;\\n}\\n[dir=rtl] .ion-float-end, :host-context([dir=rtl]) .ion-float-end {\\n float: left !important;\\n}\\n\\n@media (min-width: 576px) {\\n .ion-float-sm-left {\\n float: left !important;\\n }\\n\\n .ion-float-sm-right {\\n float: right !important;\\n }\\n\\n .ion-float-sm-start {\\n float: left !important;\\n }\\n [dir=rtl] .ion-float-sm-start, :host-context([dir=rtl]) .ion-float-sm-start {\\n float: right !important;\\n }\\n\\n .ion-float-sm-end {\\n float: right !important;\\n }\\n [dir=rtl] .ion-float-sm-end, :host-context([dir=rtl]) .ion-float-sm-end {\\n float: left !important;\\n }\\n}\\n@media (min-width: 768px) {\\n .ion-float-md-left {\\n float: left !important;\\n }\\n\\n .ion-float-md-right {\\n float: right !important;\\n }\\n\\n .ion-float-md-start {\\n float: left !important;\\n }\\n [dir=rtl] .ion-float-md-start, :host-context([dir=rtl]) .ion-float-md-start {\\n float: right !important;\\n }\\n\\n .ion-float-md-end {\\n float: right !important;\\n }\\n [dir=rtl] .ion-float-md-end, :host-context([dir=rtl]) .ion-float-md-end {\\n float: left !important;\\n }\\n}\\n@media (min-width: 992px) {\\n .ion-float-lg-left {\\n float: left !important;\\n }\\n\\n .ion-float-lg-right {\\n float: right !important;\\n }\\n\\n .ion-float-lg-start {\\n float: left !important;\\n }\\n [dir=rtl] .ion-float-lg-start, :host-context([dir=rtl]) .ion-float-lg-start {\\n float: right !important;\\n }\\n\\n .ion-float-lg-end {\\n float: right !important;\\n }\\n [dir=rtl] .ion-float-lg-end, :host-context([dir=rtl]) .ion-float-lg-end {\\n float: left !important;\\n }\\n}\\n@media (min-width: 1200px) {\\n .ion-float-xl-left {\\n float: left !important;\\n }\\n\\n .ion-float-xl-right {\\n float: right !important;\\n }\\n\\n .ion-float-xl-start {\\n float: left !important;\\n }\\n [dir=rtl] .ion-float-xl-start, :host-context([dir=rtl]) .ion-float-xl-start {\\n float: right !important;\\n }\\n\\n .ion-float-xl-end {\\n float: right !important;\\n }\\n [dir=rtl] .ion-float-xl-end, :host-context([dir=rtl]) .ion-float-xl-end {\\n float: left !important;\\n }\\n}\\n\\n/*# sourceMappingURL=float-elements.css.map */\\n\",null,\".ion-text-center {\\n text-align: center !important;\\n}\\n\\n.ion-text-justify {\\n text-align: justify !important;\\n}\\n\\n.ion-text-start {\\n text-align: start !important;\\n}\\n\\n.ion-text-end {\\n text-align: end !important;\\n}\\n\\n.ion-text-left {\\n text-align: left !important;\\n}\\n\\n.ion-text-right {\\n text-align: right !important;\\n}\\n\\n.ion-text-nowrap {\\n white-space: nowrap !important;\\n}\\n\\n.ion-text-wrap {\\n white-space: normal !important;\\n}\\n\\n@media (min-width: 576px) {\\n .ion-text-sm-center {\\n text-align: center !important;\\n }\\n\\n .ion-text-sm-justify {\\n text-align: justify !important;\\n }\\n\\n .ion-text-sm-start {\\n text-align: start !important;\\n }\\n\\n .ion-text-sm-end {\\n text-align: end !important;\\n }\\n\\n .ion-text-sm-left {\\n text-align: left !important;\\n }\\n\\n .ion-text-sm-right {\\n text-align: right !important;\\n }\\n\\n .ion-text-sm-nowrap {\\n white-space: nowrap !important;\\n }\\n\\n .ion-text-sm-wrap {\\n white-space: normal !important;\\n }\\n}\\n@media (min-width: 768px) {\\n .ion-text-md-center {\\n text-align: center !important;\\n }\\n\\n .ion-text-md-justify {\\n text-align: justify !important;\\n }\\n\\n .ion-text-md-start {\\n text-align: start !important;\\n }\\n\\n .ion-text-md-end {\\n text-align: end !important;\\n }\\n\\n .ion-text-md-left {\\n text-align: left !important;\\n }\\n\\n .ion-text-md-right {\\n text-align: right !important;\\n }\\n\\n .ion-text-md-nowrap {\\n white-space: nowrap !important;\\n }\\n\\n .ion-text-md-wrap {\\n white-space: normal !important;\\n }\\n}\\n@media (min-width: 992px) {\\n .ion-text-lg-center {\\n text-align: center !important;\\n }\\n\\n .ion-text-lg-justify {\\n text-align: justify !important;\\n }\\n\\n .ion-text-lg-start {\\n text-align: start !important;\\n }\\n\\n .ion-text-lg-end {\\n text-align: end !important;\\n }\\n\\n .ion-text-lg-left {\\n text-align: left !important;\\n }\\n\\n .ion-text-lg-right {\\n text-align: right !important;\\n }\\n\\n .ion-text-lg-nowrap {\\n white-space: nowrap !important;\\n }\\n\\n .ion-text-lg-wrap {\\n white-space: normal !important;\\n }\\n}\\n@media (min-width: 1200px) {\\n .ion-text-xl-center {\\n text-align: center !important;\\n }\\n\\n .ion-text-xl-justify {\\n text-align: justify !important;\\n }\\n\\n .ion-text-xl-start {\\n text-align: start !important;\\n }\\n\\n .ion-text-xl-end {\\n text-align: end !important;\\n }\\n\\n .ion-text-xl-left {\\n text-align: left !important;\\n }\\n\\n .ion-text-xl-right {\\n text-align: right !important;\\n }\\n\\n .ion-text-xl-nowrap {\\n white-space: nowrap !important;\\n }\\n\\n .ion-text-xl-wrap {\\n white-space: normal !important;\\n }\\n}\\n\\n/*# sourceMappingURL=text-alignment.css.map */\\n\",null,\".ion-text-uppercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: uppercase !important;\\n}\\n\\n.ion-text-lowercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: lowercase !important;\\n}\\n\\n.ion-text-capitalize {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: capitalize !important;\\n}\\n\\n@media (min-width: 576px) {\\n .ion-text-sm-uppercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: uppercase !important;\\n }\\n\\n .ion-text-sm-lowercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: lowercase !important;\\n }\\n\\n .ion-text-sm-capitalize {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: capitalize !important;\\n }\\n}\\n@media (min-width: 768px) {\\n .ion-text-md-uppercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: uppercase !important;\\n }\\n\\n .ion-text-md-lowercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: lowercase !important;\\n }\\n\\n .ion-text-md-capitalize {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: capitalize !important;\\n }\\n}\\n@media (min-width: 992px) {\\n .ion-text-lg-uppercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: uppercase !important;\\n }\\n\\n .ion-text-lg-lowercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: lowercase !important;\\n }\\n\\n .ion-text-lg-capitalize {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: capitalize !important;\\n }\\n}\\n@media (min-width: 1200px) {\\n .ion-text-xl-uppercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: uppercase !important;\\n }\\n\\n .ion-text-xl-lowercase {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: lowercase !important;\\n }\\n\\n .ion-text-xl-capitalize {\\n /* stylelint-disable-next-line declaration-no-important */\\n text-transform: capitalize !important;\\n }\\n}\\n\\n/*# sourceMappingURL=text-transformation.css.map */\\n\",null,\".ion-align-self-start {\\n align-self: flex-start !important;\\n}\\n\\n.ion-align-self-end {\\n align-self: flex-end !important;\\n}\\n\\n.ion-align-self-center {\\n align-self: center !important;\\n}\\n\\n.ion-align-self-stretch {\\n align-self: stretch !important;\\n}\\n\\n.ion-align-self-baseline {\\n align-self: baseline !important;\\n}\\n\\n.ion-align-self-auto {\\n align-self: auto !important;\\n}\\n\\n.ion-wrap {\\n flex-wrap: wrap !important;\\n}\\n\\n.ion-nowrap {\\n flex-wrap: nowrap !important;\\n}\\n\\n.ion-wrap-reverse {\\n flex-wrap: wrap-reverse !important;\\n}\\n\\n.ion-justify-content-start {\\n justify-content: flex-start !important;\\n}\\n\\n.ion-justify-content-center {\\n justify-content: center !important;\\n}\\n\\n.ion-justify-content-end {\\n justify-content: flex-end !important;\\n}\\n\\n.ion-justify-content-around {\\n justify-content: space-around !important;\\n}\\n\\n.ion-justify-content-between {\\n justify-content: space-between !important;\\n}\\n\\n.ion-justify-content-evenly {\\n justify-content: space-evenly !important;\\n}\\n\\n.ion-align-items-start {\\n align-items: flex-start !important;\\n}\\n\\n.ion-align-items-center {\\n align-items: center !important;\\n}\\n\\n.ion-align-items-end {\\n align-items: flex-end !important;\\n}\\n\\n.ion-align-items-stretch {\\n align-items: stretch !important;\\n}\\n\\n.ion-align-items-baseline {\\n align-items: baseline !important;\\n}\\n\\n/*# sourceMappingURL=flex-utils.css.map */\\n\",\"/*\\n * App Global CSS\\n * ----------------------------------------------------------------------------\\n * Put style rules here that you want to apply globally. These styles are for\\n * the entire app and not just one component. Additionally, this file can be\\n * used as an entry point to import other CSS/Sass files to be included in the\\n * output CSS.\\n * For more information on global stylesheets, visit the documentation:\\n * https://ionicframework.com/docs/layout/global-stylesheets\\n */\\n/* Core CSS required for Ionic components to work properly */\\n/* Theme for the ripple elements.*/\\n/* stylelint-disable material/no-prefixes */\\n/* stylelint-enable */\\n@import \\\"~bootstrap/dist/css/bootstrap.css\\\";\\n@import \\\"~@ionic/angular/css/core.css\\\";\\n@import \\\"~@ionic/angular/css/normalize.css\\\";\\n@import \\\"~@ionic/angular/css/structure.css\\\";\\n@import \\\"~@ionic/angular/css/typography.css\\\";\\n@import '~@ionic/angular/css/display.css';\\n@import \\\"~@ionic/angular/css/padding.css\\\";\\n@import \\\"~@ionic/angular/css/float-elements.css\\\";\\n@import \\\"~@ionic/angular/css/text-alignment.css\\\";\\n@import \\\"~@ionic/angular/css/text-transformation.css\\\";\\n@import \\\"~@ionic/angular/css/flex-utils.css\\\";\\n.mat-badge-content {\\n font-weight: 600;\\n font-size: 12px;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-badge-small .mat-badge-content {\\n font-size: 9px;\\n}\\n\\n.mat-badge-large .mat-badge-content {\\n font-size: 24px;\\n}\\n\\n.mat-h1, .mat-headline, .mat-typography h1 {\\n font: 400 24px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h2, .mat-title, .mat-typography h2 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h3, .mat-subheading-2, .mat-typography h3 {\\n font: 400 16px/28px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h4, .mat-subheading-1, .mat-typography h4 {\\n font: 400 15px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h5, .mat-typography h5 {\\n font: 400 calc(14px * 0.83)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n\\n.mat-h6, .mat-typography h6 {\\n font: 400 calc(14px * 0.67)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n\\n.mat-body-strong, .mat-body-2 {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-body, .mat-body-1, .mat-typography {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-body p, .mat-body-1 p, .mat-typography p {\\n margin: 0 0 12px;\\n}\\n\\n.mat-small, .mat-caption {\\n font: 400 12px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-display-4, .mat-typography .mat-display-4 {\\n font: 300 112px/112px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.05em;\\n margin: 0 0 56px;\\n}\\n\\n.mat-display-3, .mat-typography .mat-display-3 {\\n font: 400 56px/56px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.02em;\\n margin: 0 0 64px;\\n}\\n\\n.mat-display-2, .mat-typography .mat-display-2 {\\n font: 400 45px/48px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.005em;\\n margin: 0 0 64px;\\n}\\n\\n.mat-display-1, .mat-typography .mat-display-1 {\\n font: 400 34px/40px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 64px;\\n}\\n\\n.mat-bottom-sheet-container {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,\\n.mat-flat-button, .mat-fab, .mat-mini-fab {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-button-toggle {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-card {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-card-title {\\n font-size: 24px;\\n font-weight: 500;\\n}\\n\\n.mat-card-header .mat-card-title {\\n font-size: 20px;\\n}\\n\\n.mat-card-subtitle,\\n.mat-card-content {\\n font-size: 14px;\\n}\\n\\n.mat-checkbox {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-checkbox-layout .mat-checkbox-label {\\n line-height: 24px;\\n}\\n\\n.mat-chip {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-chip .mat-chip-trailing-icon.mat-icon,\\n.mat-chip .mat-chip-remove.mat-icon {\\n font-size: 18px;\\n}\\n\\n.mat-table {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-header-cell {\\n font-size: 12px;\\n font-weight: 500;\\n}\\n\\n.mat-cell, .mat-footer-cell {\\n font-size: 14px;\\n}\\n\\n.mat-calendar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-calendar-body {\\n font-size: 13px;\\n}\\n\\n.mat-calendar-body-label,\\n.mat-calendar-period-button {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-calendar-table-header th {\\n font-size: 11px;\\n font-weight: 400;\\n}\\n\\n.mat-dialog-title {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-expansion-panel-header {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 15px;\\n font-weight: 400;\\n}\\n\\n.mat-expansion-panel-content {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-form-field {\\n font-size: inherit;\\n font-weight: 400;\\n line-height: 1.125;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-form-field-wrapper {\\n padding-bottom: 1.34375em;\\n}\\n\\n.mat-form-field-prefix .mat-icon,\\n.mat-form-field-suffix .mat-icon {\\n font-size: 150%;\\n line-height: 1.125;\\n}\\n.mat-form-field-prefix .mat-icon-button,\\n.mat-form-field-suffix .mat-icon-button {\\n height: 1.5em;\\n width: 1.5em;\\n}\\n.mat-form-field-prefix .mat-icon-button .mat-icon,\\n.mat-form-field-suffix .mat-icon-button .mat-icon {\\n height: 1.125em;\\n line-height: 1.125;\\n}\\n\\n.mat-form-field-infix {\\n padding: 0.5em 0;\\n border-top: 0.84375em solid transparent;\\n}\\n\\n.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n\\n.mat-form-field-label-wrapper {\\n top: -0.84375em;\\n padding-top: 0.84375em;\\n}\\n\\n.mat-form-field-label {\\n top: 1.34375em;\\n}\\n\\n.mat-form-field-underline {\\n bottom: 1.34375em;\\n}\\n\\n.mat-form-field-subscript-wrapper {\\n font-size: 75%;\\n margin-top: 0.6666666667em;\\n top: calc(100% - 1.7916666667em);\\n}\\n\\n.mat-form-field-appearance-legacy .mat-form-field-wrapper {\\n padding-bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-infix {\\n padding: 0.4375em 0;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);\\n -ms-transform: translateY(-1.28125em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);\\n -ms-transform: translateY(-1.28124em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);\\n -ms-transform: translateY(-1.28123em) scale(0.75);\\n width: 133.3333533333%;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-label {\\n top: 1.28125em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-underline {\\n bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {\\n margin-top: 0.5416666667em;\\n top: calc(100% - 1.6666666667em);\\n}\\n\\n@media print {\\n .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28122em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28121em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.2812em) scale(0.75);\\n }\\n}\\n.mat-form-field-appearance-fill .mat-form-field-infix {\\n padding: 0.25em 0 0.75em 0;\\n}\\n.mat-form-field-appearance-fill .mat-form-field-label {\\n top: 1.09375em;\\n margin-top: -0.5em;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n\\n.mat-form-field-appearance-outline .mat-form-field-infix {\\n padding: 1em 0 1em 0;\\n}\\n.mat-form-field-appearance-outline .mat-form-field-label {\\n top: 1.84375em;\\n margin-top: -0.25em;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n\\n.mat-grid-tile-header,\\n.mat-grid-tile-footer {\\n font-size: 14px;\\n}\\n.mat-grid-tile-header .mat-line,\\n.mat-grid-tile-footer .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-grid-tile-header .mat-line:nth-child(n+2),\\n.mat-grid-tile-footer .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n\\ninput.mat-input-element {\\n margin-top: -0.0625em;\\n}\\n\\n.mat-menu-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 400;\\n}\\n\\n.mat-paginator,\\n.mat-paginator-page-size .mat-select-trigger {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n}\\n\\n.mat-radio-button {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-select {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-select-trigger {\\n height: 1.125em;\\n}\\n\\n.mat-slide-toggle-content {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-slider-thumb-label-text {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n\\n.mat-stepper-vertical, .mat-stepper-horizontal {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-step-label {\\n font-size: 14px;\\n font-weight: 400;\\n}\\n\\n.mat-step-sub-label-error {\\n font-weight: normal;\\n}\\n\\n.mat-step-label-error {\\n font-size: 14px;\\n}\\n\\n.mat-step-label-selected {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-tab-group {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-tab-label, .mat-tab-link {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-toolbar,\\n.mat-toolbar h1,\\n.mat-toolbar h2,\\n.mat-toolbar h3,\\n.mat-toolbar h4,\\n.mat-toolbar h5,\\n.mat-toolbar h6 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0;\\n}\\n\\n.mat-tooltip {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 10px;\\n padding-top: 6px;\\n padding-bottom: 6px;\\n}\\n\\n.mat-tooltip-handset {\\n font-size: 14px;\\n padding-top: 8px;\\n padding-bottom: 8px;\\n}\\n\\n.mat-list-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-list-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-list-base .mat-list-item {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-list-option {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-list-base[dense] .mat-list-item {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n\\n.mat-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 16px;\\n}\\n\\n.mat-optgroup-label {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-simple-snackbar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n}\\n\\n.mat-simple-snackbar-action {\\n line-height: 1;\\n font-family: inherit;\\n font-size: inherit;\\n font-weight: 500;\\n}\\n\\n.mat-tree {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-tree-node,\\n.mat-nested-tree-node {\\n font-weight: 400;\\n font-size: 14px;\\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: scale(0);\\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 outline: 0;\\n -webkit-appearance: none;\\n -moz-appearance: none;\\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@media screen and (-ms-high-contrast: active) {\\n .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {\\n opacity: 0.6;\\n }\\n}\\n\\n.cdk-overlay-dark-backdrop {\\n background: rgba(0, 0, 0, 0.32);\\n}\\n\\n.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {\\n opacity: 0;\\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\\n@keyframes cdk-text-field-autofill-start {\\n /*!*/\\n}\\n@keyframes cdk-text-field-autofill-end {\\n /*!*/\\n}\\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\\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.mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n\\n.mat-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.mat-option.mat-active {\\n background: rgba(0, 0, 0, 0.04);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-option.mat-option-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #e53935;\\n}\\n\\n.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ffd740;\\n}\\n\\n.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ff5722;\\n}\\n\\n.mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-optgroup-disabled .mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-pseudo-checkbox {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-pseudo-checkbox::after {\\n color: #fafafa;\\n}\\n\\n.mat-pseudo-checkbox-disabled {\\n color: #b0b0b0;\\n}\\n\\n.mat-primary .mat-pseudo-checkbox-checked,\\n.mat-primary .mat-pseudo-checkbox-indeterminate {\\n background: #e53935;\\n}\\n\\n.mat-pseudo-checkbox-checked,\\n.mat-pseudo-checkbox-indeterminate,\\n.mat-accent .mat-pseudo-checkbox-checked,\\n.mat-accent .mat-pseudo-checkbox-indeterminate {\\n background: #ffd740;\\n}\\n\\n.mat-warn .mat-pseudo-checkbox-checked,\\n.mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: #ff5722;\\n}\\n\\n.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,\\n.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {\\n background: #b0b0b0;\\n}\\n\\n.mat-elevation-z0 {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z1 {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z2 {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z3 {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z4 {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z5 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z6 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z7 {\\n box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z8 {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z9 {\\n box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z10 {\\n box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z11 {\\n box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z12 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z13 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z14 {\\n box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z15 {\\n box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z16 {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z17 {\\n box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z18 {\\n box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z19 {\\n box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z20 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z21 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z22 {\\n box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z23 {\\n box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z24 {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-app-background {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-theme-loaded-marker {\\n display: none;\\n}\\n\\n.mat-autocomplete-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-autocomplete-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {\\n background: white;\\n}\\n.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-badge-content {\\n color: white;\\n background: #e53935;\\n}\\n.cdk-high-contrast-active .mat-badge-content {\\n outline: solid 1px;\\n border-radius: 0;\\n}\\n\\n.mat-badge-accent .mat-badge-content {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-badge-warn .mat-badge-content {\\n color: white;\\n background: #ff5722;\\n}\\n\\n.mat-badge {\\n position: relative;\\n}\\n\\n.mat-badge-hidden .mat-badge-content {\\n display: none;\\n}\\n\\n.mat-badge-disabled .mat-badge-content {\\n background: #b9b9b9;\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-badge-content {\\n position: absolute;\\n text-align: center;\\n display: inline-block;\\n border-radius: 50%;\\n transition: transform 200ms ease-in-out;\\n transform: scale(0.6);\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n pointer-events: none;\\n}\\n\\n.ng-animate-disabled .mat-badge-content,\\n.mat-badge-content._mat-animation-noopable {\\n transition: none;\\n}\\n\\n.mat-badge-content.mat-badge-active {\\n transform: none;\\n}\\n\\n.mat-badge-small .mat-badge-content {\\n width: 16px;\\n height: 16px;\\n line-height: 16px;\\n}\\n.mat-badge-small.mat-badge-above .mat-badge-content {\\n top: -8px;\\n}\\n.mat-badge-small.mat-badge-below .mat-badge-content {\\n bottom: -8px;\\n}\\n.mat-badge-small.mat-badge-before .mat-badge-content {\\n left: -16px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -16px;\\n}\\n.mat-badge-small.mat-badge-after .mat-badge-content {\\n right: -16px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -16px;\\n}\\n.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -8px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -8px;\\n}\\n.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -8px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -8px;\\n}\\n\\n.mat-badge-medium .mat-badge-content {\\n width: 22px;\\n height: 22px;\\n line-height: 22px;\\n}\\n.mat-badge-medium.mat-badge-above .mat-badge-content {\\n top: -11px;\\n}\\n.mat-badge-medium.mat-badge-below .mat-badge-content {\\n bottom: -11px;\\n}\\n.mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: -22px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -22px;\\n}\\n.mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: -22px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -22px;\\n}\\n.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -11px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -11px;\\n}\\n.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -11px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -11px;\\n}\\n\\n.mat-badge-large .mat-badge-content {\\n width: 28px;\\n height: 28px;\\n line-height: 28px;\\n}\\n.mat-badge-large.mat-badge-above .mat-badge-content {\\n top: -14px;\\n}\\n.mat-badge-large.mat-badge-below .mat-badge-content {\\n bottom: -14px;\\n}\\n.mat-badge-large.mat-badge-before .mat-badge-content {\\n left: -28px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -28px;\\n}\\n.mat-badge-large.mat-badge-after .mat-badge-content {\\n right: -28px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -28px;\\n}\\n.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -14px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -14px;\\n}\\n.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -14px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -14px;\\n}\\n\\n.mat-bottom-sheet-container {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-button, .mat-icon-button, .mat-stroked-button {\\n color: inherit;\\n background: transparent;\\n}\\n.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {\\n color: #e53935;\\n}\\n.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {\\n color: #ffd740;\\n}\\n.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {\\n color: #ff5722;\\n}\\n.mat-button.mat-primary[disabled], .mat-button.mat-accent[disabled], .mat-button.mat-warn[disabled], .mat-button[disabled][disabled], .mat-icon-button.mat-primary[disabled], .mat-icon-button.mat-accent[disabled], .mat-icon-button.mat-warn[disabled], .mat-icon-button[disabled][disabled], .mat-stroked-button.mat-primary[disabled], .mat-stroked-button.mat-accent[disabled], .mat-stroked-button.mat-warn[disabled], .mat-stroked-button[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {\\n background-color: #e53935;\\n}\\n.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {\\n background-color: #ffd740;\\n}\\n.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay, .mat-stroked-button.mat-warn .mat-button-focus-overlay {\\n background-color: #ff5722;\\n}\\n.mat-button[disabled] .mat-button-focus-overlay, .mat-icon-button[disabled] .mat-button-focus-overlay, .mat-stroked-button[disabled] .mat-button-focus-overlay {\\n background-color: transparent;\\n}\\n.mat-button .mat-ripple-element, .mat-icon-button .mat-ripple-element, .mat-stroked-button .mat-ripple-element {\\n opacity: 0.1;\\n background-color: currentColor;\\n}\\n\\n.mat-button-focus-overlay {\\n background: black;\\n}\\n\\n.mat-stroked-button:not([disabled]) {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {\\n color: rgba(0, 0, 0, 0.87);\\n background-color: white;\\n}\\n.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {\\n color: white;\\n}\\n.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {\\n color: white;\\n}\\n.mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-accent[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {\\n background-color: #e53935;\\n}\\n.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {\\n background-color: #ffd740;\\n}\\n.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {\\n background-color: #ff5722;\\n}\\n.mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-accent[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled] {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-flat-button.mat-primary .mat-ripple-element, .mat-raised-button.mat-primary .mat-ripple-element, .mat-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.mat-flat-button.mat-accent .mat-ripple-element, .mat-raised-button.mat-accent .mat-ripple-element, .mat-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.mat-flat-button.mat-warn .mat-ripple-element, .mat-raised-button.mat-warn .mat-ripple-element, .mat-fab.mat-warn .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n\\n.mat-stroked-button:not([class*=mat-elevation-z]), .mat-flat-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-raised-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-raised-button:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.mat-raised-button[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-fab:not([class*=mat-elevation-z]), .mat-mini-fab:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]), .mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n.mat-fab[disabled]:not([class*=mat-elevation-z]), .mat-mini-fab[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-standalone,\\n.mat-button-toggle-group {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.mat-button-toggle-group-appearance-standard {\\n box-shadow: none;\\n}\\n\\n.mat-button-toggle {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-button-toggle .mat-button-toggle-focus-overlay {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n background: white;\\n}\\n.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {\\n background-color: black;\\n}\\n\\n.mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: none;\\n border-top: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-checked {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-button-toggle-checked.mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-button-toggle-disabled {\\n color: rgba(0, 0, 0, 0.26);\\n background-color: #eeeeee;\\n}\\n.mat-button-toggle-disabled.mat-button-toggle-appearance-standard {\\n background: white;\\n}\\n.mat-button-toggle-disabled.mat-button-toggle-checked {\\n background-color: #bdbdbd;\\n}\\n\\n.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.mat-button-toggle-group-appearance-standard {\\n border: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-card {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-card:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-card.mat-card-flat:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-card-subtitle {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-checkbox-frame {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-checkbox-checkmark {\\n fill: #fafafa;\\n}\\n\\n.mat-checkbox-checkmark-path {\\n stroke: #fafafa !important;\\n}\\n\\n.mat-checkbox-mixedmark {\\n background-color: #fafafa;\\n}\\n\\n.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {\\n background-color: #e53935;\\n}\\n.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {\\n background-color: #ffd740;\\n}\\n.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {\\n background-color: #ff5722;\\n}\\n\\n.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {\\n background-color: #b0b0b0;\\n}\\n.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {\\n border-color: #b0b0b0;\\n}\\n.mat-checkbox-disabled .mat-checkbox-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-checkbox .mat-ripple-element {\\n background-color: black;\\n}\\n\\n.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,\\n.mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {\\n background: #e53935;\\n}\\n.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,\\n.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {\\n background: #ffd740;\\n}\\n.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,\\n.mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {\\n background: #ff5722;\\n}\\n\\n.mat-chip.mat-standard-chip {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-chip.mat-standard-chip .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {\\n opacity: 0.54;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-disabled {\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip::after {\\n background: black;\\n}\\n\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {\\n background-color: #e53935;\\n color: white;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {\\n color: white;\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {\\n background-color: #ff5722;\\n color: white;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {\\n color: white;\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n\\n.mat-table {\\n background: white;\\n}\\n\\n.mat-table thead, .mat-table tbody, .mat-table tfoot,\\nmat-header-row, mat-row, mat-footer-row,\\n[mat-header-row], [mat-row], [mat-footer-row],\\n.mat-table-sticky {\\n background: inherit;\\n}\\n\\nmat-row, mat-header-row, mat-footer-row,\\nth.mat-header-cell, td.mat-cell, td.mat-footer-cell {\\n border-bottom-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-header-cell {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-cell, .mat-footer-cell {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-calendar-arrow {\\n border-top-color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-datepicker-toggle,\\n.mat-datepicker-content .mat-calendar-next-button,\\n.mat-datepicker-content .mat-calendar-previous-button {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-calendar-table-header {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-calendar-table-header-divider::after {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-calendar-body-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-calendar-body-cell-content {\\n color: rgba(0, 0, 0, 0.87);\\n border-color: transparent;\\n}\\n\\n.mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n\\n.mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.18);\\n}\\n\\n.mat-calendar-body-selected {\\n background-color: #e53935;\\n color: white;\\n}\\n\\n.mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(229, 57, 53, 0.4);\\n}\\n\\n.mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px white;\\n}\\n\\n.mat-datepicker-content {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-selected {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 215, 64, 0.4);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-selected {\\n background-color: #ff5722;\\n color: white;\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 87, 34, 0.4);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px white;\\n}\\n\\n.mat-datepicker-content-touch {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-datepicker-toggle-active {\\n color: #e53935;\\n}\\n.mat-datepicker-toggle-active.mat-accent {\\n color: #ffd740;\\n}\\n.mat-datepicker-toggle-active.mat-warn {\\n color: #ff5722;\\n}\\n\\n.mat-dialog-container {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-divider {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-divider-vertical {\\n border-right-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-expansion-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-expansion-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-action-row {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n\\n@media (hover: none) {\\n .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {\\n background: white;\\n }\\n}\\n.mat-expansion-panel-header-title {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-expansion-panel-header-description,\\n.mat-expansion-indicator::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-expansion-panel-header[aria-disabled=true] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,\\n.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {\\n color: inherit;\\n}\\n\\n.mat-form-field-label {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.mat-hint {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.mat-form-field.mat-focused .mat-form-field-label {\\n color: #e53935;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-accent {\\n color: #ffd740;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-warn {\\n color: #ff5722;\\n}\\n\\n.mat-focused .mat-form-field-required-marker {\\n color: #ffd740;\\n}\\n\\n.mat-form-field-ripple {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-form-field.mat-focused .mat-form-field-ripple {\\n background-color: #e53935;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {\\n background-color: #ffd740;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {\\n background-color: #ff5722;\\n}\\n\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {\\n color: #e53935;\\n}\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {\\n color: #ffd740;\\n}\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label {\\n color: #ff5722;\\n}\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {\\n color: #ff5722;\\n}\\n.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,\\n.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {\\n background-color: #ff5722;\\n}\\n\\n.mat-error {\\n color: #ff5722;\\n}\\n\\n.mat-form-field-appearance-legacy .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-form-field-appearance-legacy .mat-hint {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n\\n.mat-form-field-appearance-standard .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n\\n.mat-form-field-appearance-fill .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.02);\\n}\\n.mat-form-field-appearance-fill .mat-form-field-underline::before {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {\\n background-color: transparent;\\n}\\n\\n.mat-form-field-appearance-outline .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-form-field-appearance-outline .mat-form-field-outline-thick {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {\\n color: #e53935;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {\\n color: #ffd740;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.06);\\n}\\n\\n.mat-icon.mat-primary {\\n color: #e53935;\\n}\\n.mat-icon.mat-accent {\\n color: #ffd740;\\n}\\n.mat-icon.mat-warn {\\n color: #ff5722;\\n}\\n\\n.mat-form-field-type-mat-native-select .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-input-element:disabled,\\n.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-input-element {\\n caret-color: #e53935;\\n}\\n.mat-input-element::placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element::-webkit-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element:-ms-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n\\n.mat-accent .mat-input-element {\\n caret-color: #ffd740;\\n}\\n\\n.mat-warn .mat-input-element,\\n.mat-form-field-invalid .mat-input-element {\\n caret-color: #ff5722;\\n}\\n\\n.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n\\n.mat-list-base .mat-list-item {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-list-base .mat-list-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-list-base .mat-subheader {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-list-item-disabled {\\n background-color: #eeeeee;\\n}\\n\\n.mat-list-option:hover, .mat-list-option:focus,\\n.mat-nav-list .mat-list-item:hover,\\n.mat-nav-list .mat-list-item:focus,\\n.mat-action-list .mat-list-item:hover,\\n.mat-action-list .mat-list-item:focus {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n\\n.mat-list-single-selected-option, .mat-list-single-selected-option:hover, .mat-list-single-selected-option:focus {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-menu-panel {\\n background: white;\\n}\\n.mat-menu-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-menu-item {\\n background: transparent;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-menu-item[disabled], .mat-menu-item[disabled]::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-menu-item .mat-icon-no-color,\\n.mat-menu-item-submenu-trigger::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-menu-item:hover:not([disabled]),\\n.mat-menu-item.cdk-program-focused:not([disabled]),\\n.mat-menu-item.cdk-keyboard-focused:not([disabled]),\\n.mat-menu-item-highlighted:not([disabled]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n\\n.mat-paginator {\\n background: white;\\n}\\n\\n.mat-paginator,\\n.mat-paginator-page-size .mat-select-trigger {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-paginator-decrement,\\n.mat-paginator-increment {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n border-right: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-paginator-first,\\n.mat-paginator-last {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-icon-button[disabled] .mat-paginator-decrement,\\n.mat-icon-button[disabled] .mat-paginator-increment,\\n.mat-icon-button[disabled] .mat-paginator-first,\\n.mat-icon-button[disabled] .mat-paginator-last {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-progress-bar-background {\\n fill: #e53935;\\n}\\n\\n.mat-progress-bar-buffer {\\n background-color: #e53935;\\n}\\n\\n.mat-progress-bar-fill::after {\\n background-color: #e53935;\\n}\\n\\n.mat-progress-bar.mat-accent .mat-progress-bar-background {\\n fill: #ffe57f;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-buffer {\\n background-color: #ffe57f;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {\\n background-color: #ffd740;\\n}\\n\\n.mat-progress-bar.mat-warn .mat-progress-bar-background {\\n fill: #ffccbc;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-buffer {\\n background-color: #ffccbc;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {\\n background-color: #ff5722;\\n}\\n\\n.mat-progress-spinner circle, .mat-spinner circle {\\n stroke: #e53935;\\n}\\n.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {\\n stroke: #ffd740;\\n}\\n.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {\\n stroke: #ff5722;\\n}\\n\\n.mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #e53935;\\n}\\n.mat-radio-button.mat-primary .mat-radio-inner-circle,\\n.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {\\n background-color: #e53935;\\n}\\n.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ffd740;\\n}\\n.mat-radio-button.mat-accent .mat-radio-inner-circle,\\n.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {\\n background-color: #ffd740;\\n}\\n.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ff5722;\\n}\\n.mat-radio-button.mat-warn .mat-radio-inner-circle,\\n.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {\\n background-color: #ff5722;\\n}\\n.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,\\n.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,\\n.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-radio-button.mat-radio-disabled .mat-radio-label-content {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-radio-button .mat-ripple-element {\\n background-color: black;\\n}\\n\\n.mat-select-value {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-select-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n\\n.mat-select-disabled .mat-select-value {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-select-arrow {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-select-panel {\\n background: white;\\n}\\n.mat-select-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-form-field.mat-focused.mat-primary .mat-select-arrow {\\n color: #e53935;\\n}\\n.mat-form-field.mat-focused.mat-accent .mat-select-arrow {\\n color: #ffd740;\\n}\\n.mat-form-field.mat-focused.mat-warn .mat-select-arrow {\\n color: #ff5722;\\n}\\n.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {\\n color: #ff5722;\\n}\\n.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-drawer-container {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-drawer {\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-drawer.mat-drawer-push {\\n background-color: white;\\n}\\n.mat-drawer:not(.mat-drawer-side) {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-drawer-side {\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.mat-drawer-side.mat-drawer-end {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n\\n[dir=rtl] .mat-drawer-side {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n[dir=rtl] .mat-drawer-side.mat-drawer-end {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-drawer-backdrop.mat-drawer-shown {\\n background-color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ffd740;\\n}\\n.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 215, 64, 0.54);\\n}\\n.mat-slide-toggle.mat-checked .mat-ripple-element {\\n background-color: #ffd740;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {\\n background-color: #e53935;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(229, 57, 53, 0.54);\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {\\n background-color: #e53935;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ff5722;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 87, 34, 0.54);\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {\\n background-color: #ff5722;\\n}\\n.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {\\n background-color: black;\\n}\\n\\n.mat-slide-toggle-thumb {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n background-color: #fafafa;\\n}\\n\\n.mat-slide-toggle-bar {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n\\n.mat-primary .mat-slider-track-fill,\\n.mat-primary .mat-slider-thumb,\\n.mat-primary .mat-slider-thumb-label {\\n background-color: #e53935;\\n}\\n.mat-primary .mat-slider-thumb-label-text {\\n color: white;\\n}\\n\\n.mat-accent .mat-slider-track-fill,\\n.mat-accent .mat-slider-thumb,\\n.mat-accent .mat-slider-thumb-label {\\n background-color: #ffd740;\\n}\\n.mat-accent .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-warn .mat-slider-track-fill,\\n.mat-warn .mat-slider-thumb,\\n.mat-warn .mat-slider-thumb-label {\\n background-color: #ff5722;\\n}\\n.mat-warn .mat-slider-thumb-label-text {\\n color: white;\\n}\\n\\n.mat-slider-focus-ring {\\n background-color: rgba(255, 215, 64, 0.2);\\n}\\n\\n.mat-slider:hover .mat-slider-track-background,\\n.cdk-focused .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-slider-disabled .mat-slider-track-background,\\n.mat-slider-disabled .mat-slider-track-fill,\\n.mat-slider-disabled .mat-slider-thumb {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-slider-disabled:hover .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n\\n.mat-slider-min-value .mat-slider-focus-ring {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,\\n.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,\\n.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n background-color: transparent;\\n}\\n.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n}\\n\\n.mat-slider-has-ticks .mat-slider-wrapper::after {\\n border-color: rgba(0, 0, 0, 0.7);\\n}\\n\\n.mat-slider-horizontal .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n\\n.mat-slider-vertical .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n\\n.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n@media (hover: none) {\\n .mat-step-header:hover {\\n background: none;\\n }\\n}\\n.mat-step-header .mat-step-label,\\n.mat-step-header .mat-step-optional {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-step-header .mat-step-icon {\\n background-color: rgba(0, 0, 0, 0.54);\\n color: white;\\n}\\n.mat-step-header .mat-step-icon-selected,\\n.mat-step-header .mat-step-icon-state-done,\\n.mat-step-header .mat-step-icon-state-edit {\\n background-color: #e53935;\\n color: white;\\n}\\n.mat-step-header .mat-step-icon-state-error {\\n background-color: transparent;\\n color: #ff5722;\\n}\\n.mat-step-header .mat-step-label.mat-step-label-active {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-step-header .mat-step-label.mat-step-label-error {\\n color: #ff5722;\\n}\\n\\n.mat-stepper-horizontal, .mat-stepper-vertical {\\n background-color: white;\\n}\\n\\n.mat-stepper-vertical-line::before {\\n border-left-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-horizontal-stepper-header::before,\\n.mat-horizontal-stepper-header::after,\\n.mat-stepper-horizontal-line {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-sort-header-arrow {\\n color: #757575;\\n}\\n\\n.mat-tab-nav-bar,\\n.mat-tab-header {\\n border-bottom: 1px solid rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-tab-group-inverted-header .mat-tab-nav-bar,\\n.mat-tab-group-inverted-header .mat-tab-header {\\n border-top: 1px solid rgba(0, 0, 0, 0.12);\\n border-bottom: none;\\n}\\n\\n.mat-tab-label, .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-tab-group[class*=mat-background-] .mat-tab-header,\\n.mat-tab-nav-bar[class*=mat-background-] {\\n border-bottom: none;\\n border-top: none;\\n}\\n\\n.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(229, 57, 53, 0.3);\\n}\\n.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {\\n background-color: #e53935;\\n}\\n.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {\\n background-color: white;\\n}\\n.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {\\n background-color: #ffd740;\\n}\\n.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {\\n background-color: #ff5722;\\n}\\n.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {\\n background-color: white;\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(229, 57, 53, 0.3);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-links, .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {\\n background-color: #e53935;\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link, .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .mat-tab-nav-bar.mat-background-primary .mat-tab-link {\\n color: white;\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {\\n color: rgba(255, 255, 255, 0.4);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {\\n border-color: white;\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(255, 255, 255, 0.4);\\n}\\n.mat-tab-group.mat-background-primary .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.12);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-links, .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {\\n background-color: #ffd740;\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link, .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-accent .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-links, .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {\\n background-color: #ff5722;\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link, .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link {\\n color: white;\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {\\n color: rgba(255, 255, 255, 0.4);\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {\\n border-color: white;\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(255, 255, 255, 0.4);\\n}\\n.mat-tab-group.mat-background-warn .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.12);\\n}\\n\\n.mat-toolbar {\\n background: whitesmoke;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-primary {\\n background: #e53935;\\n color: white;\\n}\\n.mat-toolbar.mat-accent {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-warn {\\n background: #ff5722;\\n color: white;\\n}\\n.mat-toolbar .mat-form-field-underline,\\n.mat-toolbar .mat-form-field-ripple,\\n.mat-toolbar .mat-focused .mat-form-field-ripple {\\n background-color: currentColor;\\n}\\n.mat-toolbar .mat-form-field-label,\\n.mat-toolbar .mat-focused .mat-form-field-label,\\n.mat-toolbar .mat-select-value,\\n.mat-toolbar .mat-select-arrow,\\n.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {\\n color: inherit;\\n}\\n.mat-toolbar .mat-input-element {\\n caret-color: currentColor;\\n}\\n\\n.mat-tooltip {\\n background: rgba(97, 97, 97, 0.9);\\n}\\n\\n.mat-tree {\\n background: white;\\n}\\n\\n.mat-tree-node,\\n.mat-nested-tree-node {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-snack-bar-container {\\n color: rgba(255, 255, 255, 0.7);\\n background: #323232;\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-simple-snackbar-action {\\n color: #ffd740;\\n}\\n\\n/* Basic CSS for apps built with Ionic */\\n/* Optional CSS utils that can be commented out */\\n@font-face {\\n font-family: \\\"MerriweatherSans-Light\\\";\\n src: url(\\\"../src/assets/fonts/MerriweatherSans-Light.ttf\\\");\\n font-weight: 900;\\n font-style: normal;\\n}\\n@font-face {\\n font-family: \\\"Barlow-Bold\\\";\\n src: url(\\\"../src/assets/fonts/Barlow/Barlow-Bold.otf\\\");\\n font-style: normal;\\n}\\n@font-face {\\n font-family: \\\"Barlow-Regular\\\";\\n src: url(\\\"../src/assets/fonts/Barlow/Barlow-Regular.otf\\\");\\n font-style: normal;\\n}\\n@font-face {\\n font-family: \\\"Barlow-Medium\\\";\\n src: url(\\\"../src/assets/fonts/Barlow/Barlow-Medium.otf\\\");\\n font-style: normal;\\n}\\n@font-face {\\n font-family: \\\"Montserrat-Regular\\\";\\n src: url(\\\"../src/assets/fonts/Montserrat/Montserrat-Regular.ttf\\\");\\n font-style: normal;\\n}\\n@font-face {\\n font-family: \\\"Montserrat-Bold\\\";\\n src: url(\\\"../src/assets/fonts/Montserrat/Montserrat-Bold.ttf\\\");\\n font-style: normal;\\n}\\n@font-face {\\n font-family: \\\"Montserrat-SemiBold\\\";\\n src: url(\\\"../src/assets/fonts/Montserrat/Montserrat-SemiBold.ttf\\\");\\n font-style: normal;\\n}\\nmat-list-option[aria-selected=true] {\\n font-family: \\\"Barlow-Medium\\\";\\n font-size: 17px;\\n color: #E80510;\\n}\\n\\nmat-list-option[aria-selected=false] {\\n font-family: \\\"Barlow-Medium\\\";\\n font-size: 17px;\\n}\\n\\n@font-face {\\n font-family: \\\"MerriweatherSans-ExtraBold\\\";\\n src: url(\\\"../src/assets/fonts/MerriweatherSans-ExtraBold.ttf\\\");\\n font-weight: 900;\\n font-style: normal;\\n}\\n@font-face {\\n font-family: \\\"MerriweatherSans-Bold\\\";\\n src: url(\\\"../src/assets/fonts/MerriweatherSans-Bold.ttf\\\");\\n font-weight: 900;\\n font-style: normal;\\n}\\n@font-face {\\n font-family: \\\"Material Icons\\\";\\n font-style: normal;\\n font-weight: 400;\\n src: url(\\\"../src/assets/MaterialIcon/MaterialIcons-Regular.eot\\\");\\n /* For IE6-8 */\\n src: local(\\\"Material Icons\\\"), local(\\\"MaterialIcons-Regular\\\"), url(\\\"../src/assets/MaterialIcon/MaterialIcons-Regular.ttf\\\") format(\\\"truetype\\\");\\n}\\n.button {\\n background-color: none !important;\\n}\\n\\n.slick-next {\\n background: blue !important;\\n}\\n\\n.slick-prev {\\n background: blue !important;\\n}\\n\\n.material-icons {\\n font-family: \\\"Material Icons\\\";\\n font-weight: normal;\\n font-style: normal;\\n font-size: 24px;\\n /* Preferred icon size */\\n display: inline-block;\\n line-height: 1;\\n text-transform: none;\\n letter-spacing: normal;\\n word-wrap: normal;\\n white-space: nowrap;\\n direction: ltr;\\n /* Support for all WebKit browsers. */\\n -webkit-font-smoothing: antialiased;\\n /* Support for Safari and Chrome. */\\n text-rendering: optimizeLegibility;\\n /* Support for Firefox. */\\n -moz-osx-font-smoothing: grayscale;\\n /* Support for IE. */\\n font-feature-settings: \\\"liga\\\";\\n}\\n\\n.mat-option:hover:not(.mat-option-disabled),\\n.mat-option:focus:not(.mat-option-disabled) {\\n background: #2a7749;\\n color: white;\\n}\\n\\n@media screen and (min-width: 1200px) {\\n .my-modal {\\n background: #ffffffeb;\\n opacity: 1;\\n --backdrop-opacity: 0 !important;\\n --width: 40%;\\n --height: 80%;\\n --border-radius: 0px;\\n }\\n}\\n@media screen and (max-width: 1200px) {\\n .my-modal {\\n --width: 50%;\\n --height: 70%;\\n --border-radius: 0px;\\n }\\n}\\n@media screen and (max-width: 1100px) {\\n .my-modal {\\n --width: 100%;\\n --height: 100%;\\n --border-radius: 0px;\\n }\\n}\\n.mat-app-background {\\n background-color: #ffff !important;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\ninput[type=radio]:after {\\n cursor: pointer;\\n}\\n\\ninput[type=radio]:checked:after {\\n cursor: pointer;\\n}\\n\\ninput[type=checkbox]:after {\\n cursor: pointer;\\n}\\n\\ninput[type=checkbox]:checked:after {\\n cursor: pointer;\\n}\\n\\nselect {\\n margin-top: 10px !important;\\n background: white;\\n border-color: black;\\n border-width: 1.5px;\\n font-weight: 600 !important;\\n}\\n\\nion-button {\\n --border-radius:0px !important;\\n font-family: \\\"Barlow-Medium\\\";\\n}\\n\\nion-input {\\n margin-top: 10px !important;\\n background: transparent !important;\\n}\\n\\nion-header {\\n border-bottom: 1px solid black !important;\\n}\\n\\nmat-card {\\n padding-top: 0px !important;\\n}\"]}]);\n// Exports\nmodule.exports = exports;\n","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(true);\n// Module\nexports.push([module.id, \"/* Theme for the ripple elements.*/\\n/* stylelint-disable material/no-prefixes */\\n/* stylelint-enable */\\n.mat-badge-content {\\n font-weight: 600;\\n font-size: 12px;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-badge-small .mat-badge-content {\\n font-size: 9px;\\n}\\n.mat-badge-large .mat-badge-content {\\n font-size: 24px;\\n}\\n.mat-h1, .mat-headline, .mat-typography h1 {\\n font: 400 24px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n.mat-h2, .mat-title, .mat-typography h2 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n.mat-h3, .mat-subheading-2, .mat-typography h3 {\\n font: 400 16px/28px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n.mat-h4, .mat-subheading-1, .mat-typography h4 {\\n font: 400 15px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n.mat-h5, .mat-typography h5 {\\n font: 400 calc(14px * 0.83)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n.mat-h6, .mat-typography h6 {\\n font: 400 calc(14px * 0.67)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n.mat-body-strong, .mat-body-2 {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-body, .mat-body-1, .mat-typography {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-body p, .mat-body-1 p, .mat-typography p {\\n margin: 0 0 12px;\\n}\\n.mat-small, .mat-caption {\\n font: 400 12px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-display-4, .mat-typography .mat-display-4 {\\n font: 300 112px/112px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.05em;\\n margin: 0 0 56px;\\n}\\n.mat-display-3, .mat-typography .mat-display-3 {\\n font: 400 56px/56px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.02em;\\n margin: 0 0 64px;\\n}\\n.mat-display-2, .mat-typography .mat-display-2 {\\n font: 400 45px/48px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.005em;\\n margin: 0 0 64px;\\n}\\n.mat-display-1, .mat-typography .mat-display-1 {\\n font: 400 34px/40px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 64px;\\n}\\n.mat-bottom-sheet-container {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,\\n.mat-flat-button, .mat-fab, .mat-mini-fab {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-button-toggle {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-card {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-card-title {\\n font-size: 24px;\\n font-weight: 500;\\n}\\n.mat-card-header .mat-card-title {\\n font-size: 20px;\\n}\\n.mat-card-subtitle,\\n.mat-card-content {\\n font-size: 14px;\\n}\\n.mat-checkbox {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-checkbox-layout .mat-checkbox-label {\\n line-height: 24px;\\n}\\n.mat-chip {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-chip .mat-chip-trailing-icon.mat-icon,\\n.mat-chip .mat-chip-remove.mat-icon {\\n font-size: 18px;\\n}\\n.mat-table {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-header-cell {\\n font-size: 12px;\\n font-weight: 500;\\n}\\n.mat-cell, .mat-footer-cell {\\n font-size: 14px;\\n}\\n.mat-calendar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-calendar-body {\\n font-size: 13px;\\n}\\n.mat-calendar-body-label,\\n.mat-calendar-period-button {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-calendar-table-header th {\\n font-size: 11px;\\n font-weight: 400;\\n}\\n.mat-dialog-title {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-expansion-panel-header {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 15px;\\n font-weight: 400;\\n}\\n.mat-expansion-panel-content {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-form-field {\\n font-size: inherit;\\n font-weight: 400;\\n line-height: 1.125;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-form-field-wrapper {\\n padding-bottom: 1.34375em;\\n}\\n.mat-form-field-prefix .mat-icon,\\n.mat-form-field-suffix .mat-icon {\\n font-size: 150%;\\n line-height: 1.125;\\n}\\n.mat-form-field-prefix .mat-icon-button,\\n.mat-form-field-suffix .mat-icon-button {\\n height: 1.5em;\\n width: 1.5em;\\n}\\n.mat-form-field-prefix .mat-icon-button .mat-icon,\\n.mat-form-field-suffix .mat-icon-button .mat-icon {\\n height: 1.125em;\\n line-height: 1.125;\\n}\\n.mat-form-field-infix {\\n padding: 0.5em 0;\\n border-top: 0.84375em solid transparent;\\n}\\n.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-form-field-label-wrapper {\\n top: -0.84375em;\\n padding-top: 0.84375em;\\n}\\n.mat-form-field-label {\\n top: 1.34375em;\\n}\\n.mat-form-field-underline {\\n bottom: 1.34375em;\\n}\\n.mat-form-field-subscript-wrapper {\\n font-size: 75%;\\n margin-top: 0.6666666667em;\\n top: calc(100% - 1.7916666667em);\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-wrapper {\\n padding-bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-infix {\\n padding: 0.4375em 0;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);\\n -ms-transform: translateY(-1.28125em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);\\n -ms-transform: translateY(-1.28124em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);\\n -ms-transform: translateY(-1.28123em) scale(0.75);\\n width: 133.3333533333%;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-label {\\n top: 1.28125em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-underline {\\n bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {\\n margin-top: 0.5416666667em;\\n top: calc(100% - 1.6666666667em);\\n}\\n@media print {\\n .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28122em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28121em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.2812em) scale(0.75);\\n }\\n}\\n.mat-form-field-appearance-fill .mat-form-field-infix {\\n padding: 0.25em 0 0.75em 0;\\n}\\n.mat-form-field-appearance-fill .mat-form-field-label {\\n top: 1.09375em;\\n margin-top: -0.5em;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-form-field-appearance-outline .mat-form-field-infix {\\n padding: 1em 0 1em 0;\\n}\\n.mat-form-field-appearance-outline .mat-form-field-label {\\n top: 1.84375em;\\n margin-top: -0.25em;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-grid-tile-header,\\n.mat-grid-tile-footer {\\n font-size: 14px;\\n}\\n.mat-grid-tile-header .mat-line,\\n.mat-grid-tile-footer .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-grid-tile-header .mat-line:nth-child(n+2),\\n.mat-grid-tile-footer .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\ninput.mat-input-element {\\n margin-top: -0.0625em;\\n}\\n.mat-menu-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 400;\\n}\\n.mat-paginator,\\n.mat-paginator-page-size .mat-select-trigger {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n}\\n.mat-radio-button {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-select {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-select-trigger {\\n height: 1.125em;\\n}\\n.mat-slide-toggle-content {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-slider-thumb-label-text {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n.mat-stepper-vertical, .mat-stepper-horizontal {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-step-label {\\n font-size: 14px;\\n font-weight: 400;\\n}\\n.mat-step-sub-label-error {\\n font-weight: normal;\\n}\\n.mat-step-label-error {\\n font-size: 14px;\\n}\\n.mat-step-label-selected {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-tab-group {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-tab-label, .mat-tab-link {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-toolbar,\\n.mat-toolbar h1,\\n.mat-toolbar h2,\\n.mat-toolbar h3,\\n.mat-toolbar h4,\\n.mat-toolbar h5,\\n.mat-toolbar h6 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0;\\n}\\n.mat-tooltip {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 10px;\\n padding-top: 6px;\\n padding-bottom: 6px;\\n}\\n.mat-tooltip-handset {\\n font-size: 14px;\\n padding-top: 8px;\\n padding-bottom: 8px;\\n}\\n.mat-list-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-list-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-list-base .mat-list-item {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-list-option {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-list-base[dense] .mat-list-item {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n.mat-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 16px;\\n}\\n.mat-optgroup-label {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-simple-snackbar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n}\\n.mat-simple-snackbar-action {\\n line-height: 1;\\n font-family: inherit;\\n font-size: inherit;\\n font-weight: 500;\\n}\\n.mat-tree {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-tree-node,\\n.mat-nested-tree-node {\\n font-weight: 400;\\n font-size: 14px;\\n}\\n.mat-ripple {\\n overflow: hidden;\\n position: relative;\\n}\\n.mat-ripple:not(:empty) {\\n transform: translateZ(0);\\n}\\n.mat-ripple.mat-ripple-unbounded {\\n overflow: visible;\\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: scale(0);\\n}\\n.cdk-high-contrast-active .mat-ripple-element {\\n display: none;\\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 outline: 0;\\n -webkit-appearance: none;\\n -moz-appearance: none;\\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.cdk-overlay-container {\\n position: fixed;\\n z-index: 1000;\\n}\\n.cdk-overlay-container:empty {\\n display: none;\\n}\\n.cdk-global-overlay-wrapper {\\n display: flex;\\n position: absolute;\\n z-index: 1000;\\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.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@media screen and (-ms-high-contrast: active) {\\n .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.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {\\n opacity: 0;\\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.cdk-global-scrollblock {\\n position: fixed;\\n width: 100%;\\n overflow-y: scroll;\\n}\\n@keyframes cdk-text-field-autofill-start {\\n /*!*/\\n}\\n@keyframes cdk-text-field-autofill-end {\\n /*!*/\\n}\\n.cdk-text-field-autofill-monitored:-webkit-autofill {\\n animation: cdk-text-field-autofill-start 0s 1ms;\\n}\\n.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {\\n animation: cdk-text-field-autofill-end 0s 1ms;\\n}\\ntextarea.cdk-textarea-autosize {\\n resize: none;\\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}\\ntextarea.cdk-textarea-autosize-measuring-firefox {\\n padding: 2px 0 !important;\\n box-sizing: content-box !important;\\n height: 0 !important;\\n}\\n.teal-light-theme-css .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-option:hover:not(.mat-option-disabled), .teal-light-theme-css .mat-option:focus:not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-option.mat-active {\\n background: rgba(0, 0, 0, 0.04);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-option.mat-option-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-optgroup-disabled .mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox::after {\\n color: #fafafa;\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox-disabled {\\n color: #b0b0b0;\\n}\\n.teal-light-theme-css .mat-primary .mat-pseudo-checkbox-checked,\\n.teal-light-theme-css .mat-primary .mat-pseudo-checkbox-indeterminate {\\n background: #ef5350;\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox-checked,\\n.teal-light-theme-css .mat-pseudo-checkbox-indeterminate,\\n.teal-light-theme-css .mat-accent .mat-pseudo-checkbox-checked,\\n.teal-light-theme-css .mat-accent .mat-pseudo-checkbox-indeterminate {\\n background: #ffd740;\\n}\\n.teal-light-theme-css .mat-warn .mat-pseudo-checkbox-checked,\\n.teal-light-theme-css .mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: #ff5722;\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,\\n.teal-light-theme-css .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {\\n background: #b0b0b0;\\n}\\n.teal-light-theme-css .mat-elevation-z0 {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z1 {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z2 {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z3 {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z4 {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z5 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z6 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z7 {\\n box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z8 {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z9 {\\n box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z10 {\\n box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z11 {\\n box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z12 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z13 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z14 {\\n box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z15 {\\n box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z16 {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z17 {\\n box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z18 {\\n box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z19 {\\n box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z20 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z21 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z22 {\\n box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z23 {\\n box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z24 {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-app-background, .teal-light-theme-css.mat-app-background {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-theme-loaded-marker {\\n display: none;\\n}\\n.teal-light-theme-css .mat-autocomplete-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-autocomplete-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {\\n background: white;\\n}\\n.teal-light-theme-css .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-badge-content {\\n color: rgba(0, 0, 0, 0.87);\\n background: #ef5350;\\n}\\n.cdk-high-contrast-active .teal-light-theme-css .mat-badge-content {\\n outline: solid 1px;\\n border-radius: 0;\\n}\\n.teal-light-theme-css .mat-badge-accent .mat-badge-content {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-badge-warn .mat-badge-content {\\n color: white;\\n background: #ff5722;\\n}\\n.teal-light-theme-css .mat-badge {\\n position: relative;\\n}\\n.teal-light-theme-css .mat-badge-hidden .mat-badge-content {\\n display: none;\\n}\\n.teal-light-theme-css .mat-badge-disabled .mat-badge-content {\\n background: #b9b9b9;\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-badge-content {\\n position: absolute;\\n text-align: center;\\n display: inline-block;\\n border-radius: 50%;\\n transition: transform 200ms ease-in-out;\\n transform: scale(0.6);\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n pointer-events: none;\\n}\\n.teal-light-theme-css .ng-animate-disabled .mat-badge-content,\\n.teal-light-theme-css .mat-badge-content._mat-animation-noopable {\\n transition: none;\\n}\\n.teal-light-theme-css .mat-badge-content.mat-badge-active {\\n transform: none;\\n}\\n.teal-light-theme-css .mat-badge-small .mat-badge-content {\\n width: 16px;\\n height: 16px;\\n line-height: 16px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-above .mat-badge-content {\\n top: -8px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-below .mat-badge-content {\\n bottom: -8px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-before .mat-badge-content {\\n left: -16px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-small.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -16px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-after .mat-badge-content {\\n right: -16px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-small.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -16px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -8px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -8px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -8px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -8px;\\n}\\n.teal-light-theme-css .mat-badge-medium .mat-badge-content {\\n width: 22px;\\n height: 22px;\\n line-height: 22px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-above .mat-badge-content {\\n top: -11px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-below .mat-badge-content {\\n bottom: -11px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: -22px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -22px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: -22px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -22px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -11px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -11px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -11px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -11px;\\n}\\n.teal-light-theme-css .mat-badge-large .mat-badge-content {\\n width: 28px;\\n height: 28px;\\n line-height: 28px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-above .mat-badge-content {\\n top: -14px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-below .mat-badge-content {\\n bottom: -14px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-before .mat-badge-content {\\n left: -28px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-large.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -28px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-after .mat-badge-content {\\n right: -28px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-large.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -28px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -14px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -14px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -14px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -14px;\\n}\\n.teal-light-theme-css .mat-bottom-sheet-container {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-button, .teal-light-theme-css .mat-icon-button, .teal-light-theme-css .mat-stroked-button {\\n color: inherit;\\n background: transparent;\\n}\\n.teal-light-theme-css .mat-button.mat-primary, .teal-light-theme-css .mat-icon-button.mat-primary, .teal-light-theme-css .mat-stroked-button.mat-primary {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-button.mat-accent, .teal-light-theme-css .mat-icon-button.mat-accent, .teal-light-theme-css .mat-stroked-button.mat-accent {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-button.mat-warn, .teal-light-theme-css .mat-icon-button.mat-warn, .teal-light-theme-css .mat-stroked-button.mat-warn {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-button.mat-primary[disabled], .teal-light-theme-css .mat-button.mat-accent[disabled], .teal-light-theme-css .mat-button.mat-warn[disabled], .teal-light-theme-css .mat-button[disabled][disabled], .teal-light-theme-css .mat-icon-button.mat-primary[disabled], .teal-light-theme-css .mat-icon-button.mat-accent[disabled], .teal-light-theme-css .mat-icon-button.mat-warn[disabled], .teal-light-theme-css .mat-icon-button[disabled][disabled], .teal-light-theme-css .mat-stroked-button.mat-primary[disabled], .teal-light-theme-css .mat-stroked-button.mat-accent[disabled], .teal-light-theme-css .mat-stroked-button.mat-warn[disabled], .teal-light-theme-css .mat-stroked-button[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-button.mat-primary .mat-button-focus-overlay, .teal-light-theme-css .mat-icon-button.mat-primary .mat-button-focus-overlay, .teal-light-theme-css .mat-stroked-button.mat-primary .mat-button-focus-overlay {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-button.mat-accent .mat-button-focus-overlay, .teal-light-theme-css .mat-icon-button.mat-accent .mat-button-focus-overlay, .teal-light-theme-css .mat-stroked-button.mat-accent .mat-button-focus-overlay {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-button.mat-warn .mat-button-focus-overlay, .teal-light-theme-css .mat-icon-button.mat-warn .mat-button-focus-overlay, .teal-light-theme-css .mat-stroked-button.mat-warn .mat-button-focus-overlay {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-button[disabled] .mat-button-focus-overlay, .teal-light-theme-css .mat-icon-button[disabled] .mat-button-focus-overlay, .teal-light-theme-css .mat-stroked-button[disabled] .mat-button-focus-overlay {\\n background-color: transparent;\\n}\\n.teal-light-theme-css .mat-button .mat-ripple-element, .teal-light-theme-css .mat-icon-button .mat-ripple-element, .teal-light-theme-css .mat-stroked-button .mat-ripple-element {\\n opacity: 0.1;\\n background-color: currentColor;\\n}\\n.teal-light-theme-css .mat-button-focus-overlay {\\n background: black;\\n}\\n.teal-light-theme-css .mat-stroked-button:not([disabled]) {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-flat-button, .teal-light-theme-css .mat-raised-button, .teal-light-theme-css .mat-fab, .teal-light-theme-css .mat-mini-fab {\\n color: rgba(0, 0, 0, 0.87);\\n background-color: white;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary, .teal-light-theme-css .mat-raised-button.mat-primary, .teal-light-theme-css .mat-fab.mat-primary, .teal-light-theme-css .mat-mini-fab.mat-primary {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-accent, .teal-light-theme-css .mat-raised-button.mat-accent, .teal-light-theme-css .mat-fab.mat-accent, .teal-light-theme-css .mat-mini-fab.mat-accent {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-warn, .teal-light-theme-css .mat-raised-button.mat-warn, .teal-light-theme-css .mat-fab.mat-warn, .teal-light-theme-css .mat-mini-fab.mat-warn {\\n color: white;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary[disabled], .teal-light-theme-css .mat-flat-button.mat-accent[disabled], .teal-light-theme-css .mat-flat-button.mat-warn[disabled], .teal-light-theme-css .mat-flat-button[disabled][disabled], .teal-light-theme-css .mat-raised-button.mat-primary[disabled], .teal-light-theme-css .mat-raised-button.mat-accent[disabled], .teal-light-theme-css .mat-raised-button.mat-warn[disabled], .teal-light-theme-css .mat-raised-button[disabled][disabled], .teal-light-theme-css .mat-fab.mat-primary[disabled], .teal-light-theme-css .mat-fab.mat-accent[disabled], .teal-light-theme-css .mat-fab.mat-warn[disabled], .teal-light-theme-css .mat-fab[disabled][disabled], .teal-light-theme-css .mat-mini-fab.mat-primary[disabled], .teal-light-theme-css .mat-mini-fab.mat-accent[disabled], .teal-light-theme-css .mat-mini-fab.mat-warn[disabled], .teal-light-theme-css .mat-mini-fab[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary, .teal-light-theme-css .mat-raised-button.mat-primary, .teal-light-theme-css .mat-fab.mat-primary, .teal-light-theme-css .mat-mini-fab.mat-primary {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-accent, .teal-light-theme-css .mat-raised-button.mat-accent, .teal-light-theme-css .mat-fab.mat-accent, .teal-light-theme-css .mat-mini-fab.mat-accent {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-warn, .teal-light-theme-css .mat-raised-button.mat-warn, .teal-light-theme-css .mat-fab.mat-warn, .teal-light-theme-css .mat-mini-fab.mat-warn {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary[disabled], .teal-light-theme-css .mat-flat-button.mat-accent[disabled], .teal-light-theme-css .mat-flat-button.mat-warn[disabled], .teal-light-theme-css .mat-flat-button[disabled][disabled], .teal-light-theme-css .mat-raised-button.mat-primary[disabled], .teal-light-theme-css .mat-raised-button.mat-accent[disabled], .teal-light-theme-css .mat-raised-button.mat-warn[disabled], .teal-light-theme-css .mat-raised-button[disabled][disabled], .teal-light-theme-css .mat-fab.mat-primary[disabled], .teal-light-theme-css .mat-fab.mat-accent[disabled], .teal-light-theme-css .mat-fab.mat-warn[disabled], .teal-light-theme-css .mat-fab[disabled][disabled], .teal-light-theme-css .mat-mini-fab.mat-primary[disabled], .teal-light-theme-css .mat-mini-fab.mat-accent[disabled], .teal-light-theme-css .mat-mini-fab.mat-warn[disabled], .teal-light-theme-css .mat-mini-fab[disabled][disabled] {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary .mat-ripple-element, .teal-light-theme-css .mat-raised-button.mat-primary .mat-ripple-element, .teal-light-theme-css .mat-fab.mat-primary .mat-ripple-element, .teal-light-theme-css .mat-mini-fab.mat-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-accent .mat-ripple-element, .teal-light-theme-css .mat-raised-button.mat-accent .mat-ripple-element, .teal-light-theme-css .mat-fab.mat-accent .mat-ripple-element, .teal-light-theme-css .mat-mini-fab.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-warn .mat-ripple-element, .teal-light-theme-css .mat-raised-button.mat-warn .mat-ripple-element, .teal-light-theme-css .mat-fab.mat-warn .mat-ripple-element, .teal-light-theme-css .mat-mini-fab.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.teal-light-theme-css .mat-stroked-button:not([class*=mat-elevation-z]), .teal-light-theme-css .mat-flat-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-raised-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-raised-button:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-raised-button[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-fab:not([class*=mat-elevation-z]), .teal-light-theme-css .mat-mini-fab:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-fab:not([disabled]):active:not([class*=mat-elevation-z]), .teal-light-theme-css .mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-fab[disabled]:not([class*=mat-elevation-z]), .teal-light-theme-css .mat-mini-fab[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-standalone,\\n.teal-light-theme-css .mat-button-toggle-group {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.teal-light-theme-css .mat-button-toggle-group-appearance-standard {\\n box-shadow: none;\\n}\\n.teal-light-theme-css .mat-button-toggle {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-button-toggle .mat-button-toggle-focus-overlay {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n background: white;\\n}\\n.teal-light-theme-css .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {\\n background-color: black;\\n}\\n.teal-light-theme-css .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: none;\\n border-top: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-checked {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-button-toggle-checked.mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-button-toggle-disabled {\\n color: rgba(0, 0, 0, 0.26);\\n background-color: #eeeeee;\\n}\\n.teal-light-theme-css .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {\\n background: white;\\n}\\n.teal-light-theme-css .mat-button-toggle-disabled.mat-button-toggle-checked {\\n background-color: #bdbdbd;\\n}\\n.teal-light-theme-css .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.teal-light-theme-css .mat-button-toggle-group-appearance-standard {\\n border: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-card {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-card:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-card.mat-card-flat:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-card-subtitle {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-checkbox-frame {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-checkbox-checkmark {\\n fill: #fafafa;\\n}\\n.teal-light-theme-css .mat-checkbox-checkmark-path {\\n stroke: #fafafa !important;\\n}\\n.teal-light-theme-css .mat-checkbox-mixedmark {\\n background-color: #fafafa;\\n}\\n.teal-light-theme-css .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .teal-light-theme-css .mat-checkbox-checked.mat-primary .mat-checkbox-background {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .teal-light-theme-css .mat-checkbox-checked.mat-accent .mat-checkbox-background {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .teal-light-theme-css .mat-checkbox-checked.mat-warn .mat-checkbox-background {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .teal-light-theme-css .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {\\n background-color: #b0b0b0;\\n}\\n.teal-light-theme-css .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {\\n border-color: #b0b0b0;\\n}\\n.teal-light-theme-css .mat-checkbox-disabled .mat-checkbox-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-checkbox .mat-ripple-element {\\n background-color: black;\\n}\\n.teal-light-theme-css .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,\\n.teal-light-theme-css .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {\\n background: #ef5350;\\n}\\n.teal-light-theme-css .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,\\n.teal-light-theme-css .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {\\n background: #ffd740;\\n}\\n.teal-light-theme-css .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,\\n.teal-light-theme-css .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {\\n background: #ff5722;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {\\n opacity: 0.54;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-disabled {\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip::after {\\n background: black;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {\\n background-color: #ff5722;\\n color: white;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {\\n color: white;\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-table {\\n background: white;\\n}\\n.teal-light-theme-css .mat-table thead, .teal-light-theme-css .mat-table tbody, .teal-light-theme-css .mat-table tfoot,\\n.teal-light-theme-css mat-header-row, .teal-light-theme-css mat-row, .teal-light-theme-css mat-footer-row,\\n.teal-light-theme-css [mat-header-row], .teal-light-theme-css [mat-row], .teal-light-theme-css [mat-footer-row],\\n.teal-light-theme-css .mat-table-sticky {\\n background: inherit;\\n}\\n.teal-light-theme-css mat-row, .teal-light-theme-css mat-header-row, .teal-light-theme-css mat-footer-row,\\n.teal-light-theme-css th.mat-header-cell, .teal-light-theme-css td.mat-cell, .teal-light-theme-css td.mat-footer-cell {\\n border-bottom-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-header-cell {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-cell, .teal-light-theme-css .mat-footer-cell {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-calendar-arrow {\\n border-top-color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-datepicker-toggle,\\n.teal-light-theme-css .mat-datepicker-content .mat-calendar-next-button,\\n.teal-light-theme-css .mat-datepicker-content .mat-calendar-previous-button {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-calendar-table-header {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-calendar-table-header-divider::after {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-calendar-body-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-calendar-body-cell-content {\\n color: rgba(0, 0, 0, 0.87);\\n border-color: transparent;\\n}\\n.teal-light-theme-css .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.teal-light-theme-css .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.teal-light-theme-css .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.18);\\n}\\n.teal-light-theme-css .mat-calendar-body-selected {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(239, 83, 80, 0.4);\\n}\\n.teal-light-theme-css .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-datepicker-content {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-accent .mat-calendar-body-selected {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 215, 64, 0.4);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-warn .mat-calendar-body-selected {\\n background-color: #ff5722;\\n color: white;\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 87, 34, 0.4);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px white;\\n}\\n.teal-light-theme-css .mat-datepicker-content-touch {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-datepicker-toggle-active {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-datepicker-toggle-active.mat-accent {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-datepicker-toggle-active.mat-warn {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-dialog-container {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-divider {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-divider-vertical {\\n border-right-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-expansion-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-expansion-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-action-row {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .teal-light-theme-css .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .teal-light-theme-css .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n@media (hover: none) {\\n .teal-light-theme-css .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {\\n background: white;\\n }\\n}\\n.teal-light-theme-css .mat-expansion-panel-header-title {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-expansion-panel-header-description,\\n.teal-light-theme-css .mat-expansion-indicator::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-expansion-panel-header[aria-disabled=true] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,\\n.teal-light-theme-css .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {\\n color: inherit;\\n}\\n.teal-light-theme-css .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.teal-light-theme-css .mat-hint {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-label {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-label.mat-accent {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-label.mat-warn {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-focused .mat-form-field-required-marker {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field-ripple {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-ripple {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-label {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-error {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-legacy .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-legacy .mat-hint {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-legacy .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-standard .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.02);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill .mat-form-field-underline::before {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {\\n background-color: transparent;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline .mat-form-field-outline-thick {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.06);\\n}\\n.teal-light-theme-css .mat-icon.mat-primary {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-icon.mat-accent {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-icon.mat-warn {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-input-element:disabled,\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-input-element {\\n caret-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-input-element::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-input-element::placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-input-element::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-input-element::-webkit-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-input-element:-ms-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-accent .mat-input-element {\\n caret-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-warn .mat-input-element,\\n.teal-light-theme-css .mat-form-field-invalid .mat-input-element {\\n caret-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-list-base .mat-list-item {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-list-base .mat-list-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-list-base .mat-subheader {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-list-item-disabled {\\n background-color: #eeeeee;\\n}\\n.teal-light-theme-css .mat-list-option:hover, .teal-light-theme-css .mat-list-option:focus,\\n.teal-light-theme-css .mat-nav-list .mat-list-item:hover,\\n.teal-light-theme-css .mat-nav-list .mat-list-item:focus,\\n.teal-light-theme-css .mat-action-list .mat-list-item:hover,\\n.teal-light-theme-css .mat-action-list .mat-list-item:focus {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-list-single-selected-option, .teal-light-theme-css .mat-list-single-selected-option:hover, .teal-light-theme-css .mat-list-single-selected-option:focus {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-menu-panel {\\n background: white;\\n}\\n.teal-light-theme-css .mat-menu-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-menu-item {\\n background: transparent;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-menu-item[disabled], .teal-light-theme-css .mat-menu-item[disabled]::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-menu-item .mat-icon-no-color,\\n.teal-light-theme-css .mat-menu-item-submenu-trigger::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-menu-item:hover:not([disabled]),\\n.teal-light-theme-css .mat-menu-item.cdk-program-focused:not([disabled]),\\n.teal-light-theme-css .mat-menu-item.cdk-keyboard-focused:not([disabled]),\\n.teal-light-theme-css .mat-menu-item-highlighted:not([disabled]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-paginator {\\n background: white;\\n}\\n.teal-light-theme-css .mat-paginator,\\n.teal-light-theme-css .mat-paginator-page-size .mat-select-trigger {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-paginator-decrement,\\n.teal-light-theme-css .mat-paginator-increment {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n border-right: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-paginator-first,\\n.teal-light-theme-css .mat-paginator-last {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-icon-button[disabled] .mat-paginator-decrement,\\n.teal-light-theme-css .mat-icon-button[disabled] .mat-paginator-increment,\\n.teal-light-theme-css .mat-icon-button[disabled] .mat-paginator-first,\\n.teal-light-theme-css .mat-icon-button[disabled] .mat-paginator-last {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-progress-bar-background {\\n fill: #ef9a9a;\\n}\\n.teal-light-theme-css .mat-progress-bar-buffer {\\n background-color: #ef9a9a;\\n}\\n.teal-light-theme-css .mat-progress-bar-fill::after {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-accent .mat-progress-bar-background {\\n fill: #ffe57f;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-accent .mat-progress-bar-buffer {\\n background-color: #ffe57f;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-warn .mat-progress-bar-background {\\n fill: #ffccbc;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-warn .mat-progress-bar-buffer {\\n background-color: #ffccbc;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-progress-spinner circle, .teal-light-theme-css .mat-spinner circle {\\n stroke: #ef5350;\\n}\\n.teal-light-theme-css .mat-progress-spinner.mat-accent circle, .teal-light-theme-css .mat-spinner.mat-accent circle {\\n stroke: #ffd740;\\n}\\n.teal-light-theme-css .mat-progress-spinner.mat-warn circle, .teal-light-theme-css .mat-spinner.mat-warn circle {\\n stroke: #ff5722;\\n}\\n.teal-light-theme-css .mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-primary .mat-radio-inner-circle,\\n.teal-light-theme-css .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .teal-light-theme-css .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .teal-light-theme-css .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-accent .mat-radio-inner-circle,\\n.teal-light-theme-css .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .teal-light-theme-css .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .teal-light-theme-css .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-warn .mat-radio-inner-circle,\\n.teal-light-theme-css .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .teal-light-theme-css .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .teal-light-theme-css .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled .mat-radio-label-content {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-radio-button .mat-ripple-element {\\n background-color: black;\\n}\\n.teal-light-theme-css .mat-select-value {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-select-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-select-disabled .mat-select-value {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-select-arrow {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-select-panel {\\n background: white;\\n}\\n.teal-light-theme-css .mat-select-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused.mat-primary .mat-select-arrow {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused.mat-accent .mat-select-arrow {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused.mat-warn .mat-select-arrow {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-drawer-container {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-drawer {\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-drawer.mat-drawer-push {\\n background-color: white;\\n}\\n.teal-light-theme-css .mat-drawer:not(.mat-drawer-side) {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-drawer-side {\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-drawer-side.mat-drawer-end {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n.teal-light-theme-css [dir=rtl] .mat-drawer-side {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n.teal-light-theme-css [dir=rtl] .mat-drawer-side.mat-drawer-end {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-drawer-backdrop.mat-drawer-shown {\\n background-color: rgba(0, 0, 0, 0.6);\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 215, 64, 0.54);\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-checked .mat-ripple-element {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(239, 83, 80, 0.54);\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 87, 34, 0.54);\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {\\n background-color: black;\\n}\\n.teal-light-theme-css .mat-slide-toggle-thumb {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n background-color: #fafafa;\\n}\\n.teal-light-theme-css .mat-slide-toggle-bar {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-primary .mat-slider-track-fill,\\n.teal-light-theme-css .mat-primary .mat-slider-thumb,\\n.teal-light-theme-css .mat-primary .mat-slider-thumb-label {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-primary .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-accent .mat-slider-track-fill,\\n.teal-light-theme-css .mat-accent .mat-slider-thumb,\\n.teal-light-theme-css .mat-accent .mat-slider-thumb-label {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-accent .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-warn .mat-slider-track-fill,\\n.teal-light-theme-css .mat-warn .mat-slider-thumb,\\n.teal-light-theme-css .mat-warn .mat-slider-thumb-label {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-warn .mat-slider-thumb-label-text {\\n color: white;\\n}\\n.teal-light-theme-css .mat-slider-focus-ring {\\n background-color: rgba(255, 215, 64, 0.2);\\n}\\n.teal-light-theme-css .mat-slider:hover .mat-slider-track-background,\\n.teal-light-theme-css .cdk-focused .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-slider-disabled .mat-slider-track-background,\\n.teal-light-theme-css .mat-slider-disabled .mat-slider-track-fill,\\n.teal-light-theme-css .mat-slider-disabled .mat-slider-thumb {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-slider-disabled:hover .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-slider-min-value .mat-slider-focus-ring {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,\\n.teal-light-theme-css .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,\\n.teal-light-theme-css .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n background-color: transparent;\\n}\\n.teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-slider-has-ticks .mat-slider-wrapper::after {\\n border-color: rgba(0, 0, 0, 0.7);\\n}\\n.teal-light-theme-css .mat-slider-horizontal .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n.teal-light-theme-css .mat-slider-vertical .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n.teal-light-theme-css .mat-step-header.cdk-keyboard-focused, .teal-light-theme-css .mat-step-header.cdk-program-focused, .teal-light-theme-css .mat-step-header:hover {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n@media (hover: none) {\\n .teal-light-theme-css .mat-step-header:hover {\\n background: none;\\n }\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-label,\\n.teal-light-theme-css .mat-step-header .mat-step-optional {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-icon {\\n background-color: rgba(0, 0, 0, 0.54);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-icon-selected,\\n.teal-light-theme-css .mat-step-header .mat-step-icon-state-done,\\n.teal-light-theme-css .mat-step-header .mat-step-icon-state-edit {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-icon-state-error {\\n background-color: transparent;\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-label.mat-step-label-active {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-label.mat-step-label-error {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-stepper-horizontal, .teal-light-theme-css .mat-stepper-vertical {\\n background-color: white;\\n}\\n.teal-light-theme-css .mat-stepper-vertical-line::before {\\n border-left-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-horizontal-stepper-header::before,\\n.teal-light-theme-css .mat-horizontal-stepper-header::after,\\n.teal-light-theme-css .mat-stepper-horizontal-line {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-sort-header-arrow {\\n color: #757575;\\n}\\n.teal-light-theme-css .mat-tab-nav-bar,\\n.teal-light-theme-css .mat-tab-header {\\n border-bottom: 1px solid rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-tab-group-inverted-header .mat-tab-nav-bar,\\n.teal-light-theme-css .mat-tab-group-inverted-header .mat-tab-header {\\n border-top: 1px solid rgba(0, 0, 0, 0.12);\\n border-bottom: none;\\n}\\n.teal-light-theme-css .mat-tab-label, .teal-light-theme-css .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-tab-group[class*=mat-background-] .mat-tab-header,\\n.teal-light-theme-css .mat-tab-nav-bar[class*=mat-background-] {\\n border-bottom: none;\\n border-top: none;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(239, 154, 154, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-primary .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-ink-bar {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-accent .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-ink-bar {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-warn .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-ink-bar {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {\\n background-color: white;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(239, 154, 154, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-header, .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-links, .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-label, .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-link, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-ripple-element, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-header, .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-links, .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-label, .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-link, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-ripple-element, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-header, .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-links, .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-label, .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-link, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-link {\\n color: white;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {\\n color: rgba(255, 255, 255, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {\\n border-color: white;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(255, 255, 255, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-ripple-element, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.12);\\n}\\n.teal-light-theme-css .mat-toolbar {\\n background: whitesmoke;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-toolbar.mat-primary {\\n background: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-toolbar.mat-accent {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-toolbar.mat-warn {\\n background: #ff5722;\\n color: white;\\n}\\n.teal-light-theme-css .mat-toolbar .mat-form-field-underline,\\n.teal-light-theme-css .mat-toolbar .mat-form-field-ripple,\\n.teal-light-theme-css .mat-toolbar .mat-focused .mat-form-field-ripple {\\n background-color: currentColor;\\n}\\n.teal-light-theme-css .mat-toolbar .mat-form-field-label,\\n.teal-light-theme-css .mat-toolbar .mat-focused .mat-form-field-label,\\n.teal-light-theme-css .mat-toolbar .mat-select-value,\\n.teal-light-theme-css .mat-toolbar .mat-select-arrow,\\n.teal-light-theme-css .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {\\n color: inherit;\\n}\\n.teal-light-theme-css .mat-toolbar .mat-input-element {\\n caret-color: currentColor;\\n}\\n.teal-light-theme-css .mat-tooltip {\\n background: rgba(97, 97, 97, 0.9);\\n}\\n.teal-light-theme-css .mat-tree {\\n background: white;\\n}\\n.teal-light-theme-css .mat-tree-node,\\n.teal-light-theme-css .mat-nested-tree-node {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-snack-bar-container {\\n color: rgba(255, 255, 255, 0.7);\\n background: #323232;\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-simple-snackbar-action {\\n color: #ffd740;\\n}\", \"\",{\"version\":3,\"sources\":[\"C:\\\\Rohith_Work\\\\Citadel\\\\Citadel\\\\thnxgivingfrontendnew\\\\thanksgivingfrontend/node_modules\\\\@angular\\\\material\\\\_theming.scss\",\"theme.scss\"],\"names\":[],\"mappings\":\"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\",\"file\":\"theme.scss\",\"sourcesContent\":[\"// Import all the theming functionality.\\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$cdk-z-index-overlay-container: 1000 !default;\\n$cdk-z-index-overlay: 1000 !default;\\n$cdk-z-index-overlay-backdrop: 1000 !default;\\n\\n// Background color for all of the backdrops\\n$cdk-overlay-dark-backdrop-background: 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\\n@mixin cdk-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: $cdk-z-index-overlay-container;\\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: $cdk-z-index-overlay;\\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: $cdk-z-index-overlay;\\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: $cdk-z-index-overlay-backdrop;\\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 // In high contrast mode the rgba background will become solid so we need to fall back\\n // to making it opaque using `opacity`. Note that we can't use the `cdk-high-contrast`\\n // mixin, because we can't normalize the import path to the _a11y.scss both for the\\n // source and when this file is distributed. See #10908.\\n @media screen and (-ms-high-contrast: active) {\\n opacity: 0.6;\\n }\\n }\\n }\\n\\n .cdk-overlay-dark-backdrop {\\n background: $cdk-overlay-dark-backdrop-background;\\n }\\n\\n .cdk-overlay-transparent-backdrop {\\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 }\\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: $cdk-z-index-overlay;\\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\\n@mixin cdk-a11y {\\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 // 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}\\n\\n/// Emits the mixin's content nested under `$selector-context` if `$selector-context`\\n/// is non-empty.\\n/// @param selector-context The selector under which to nest the mixin's content.\\n@mixin _cdk-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 target Which kind of high contrast setting to target. Defaults to `active`, can be\\n/// `white-on-black` or `black-on-white`.\\n/// @param 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 cdk-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 .cdk-high-contrast-#{$target} {\\n @include _cdk-optionally-nest-content($selector-context) {\\n @content;\\n }\\n }\\n }\\n\\n @if ($encapsulation != 'off') {\\n .cdk-high-contrast-#{$target} :host {\\n @include _cdk-optionally-nest-content($selector-context) {\\n @content;\\n }\\n }\\n }\\n }\\n}\\n\\n// Core styles that enable monitoring autofill state of text fields.\\n@mixin cdk-text-field {\\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 // 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 _cdk-textarea-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 _cdk-textarea-autosize-measuring-base;\\n height: 0 !important;\\n }\\n}\\n\\n@mixin _cdk-textarea-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$cdk-text-field-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 cdk-text-field-autofill-color($background, $foreground:'') {\\n @keyframes cdk-text-field-autofill-color-#{$cdk-text-field-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-#{$cdk-text-field-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-#{$cdk-text-field-autofill-color-frame-count} both;\\n }\\n\\n $cdk-text-field-autofill-color-frame-count:\\n $cdk-text-field-autofill-color-frame-count + 1 !global;\\n}\\n\\n\\n// Core styles that can be used to apply material design treatments to any element.\\n// Media queries\\n// TODO(josephperrott): Change $mat-xsmall and $mat-small usages to rely on BreakpointObserver,\\n$mat-xsmall: 'max-width: 599px';\\n$mat-small: 'max-width: 959px';\\n\\n// TODO: Revisit all z-indices before beta\\n// z-index master list\\n\\n$z-index-fab: 20 !default;\\n$z-index-drawer: 100 !default;\\n\\n// Global constants\\n$pi: 3.14159265;\\n\\n// Padding between input toggles and their labels\\n$mat-toggle-padding: 8px !default;\\n// Width and height of input toggles\\n$mat-toggle-size: 20px !default;\\n\\n// Easing Curves\\n// TODO(jelbourn): all of these need to be revisited\\n\\n// The default animation curves used by material design.\\n$mat-linear-out-slow-in-timing-function: cubic-bezier(0, 0, 0.2, 0.1) !default;\\n$mat-fast-out-slow-in-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !default;\\n$mat-fast-out-linear-in-timing-function: cubic-bezier(0.4, 0, 1, 1) !default;\\n\\n$ease-in-out-curve-function: cubic-bezier(0.35, 0, 0.25, 1) !default;\\n\\n$swift-ease-out-duration: 400ms !default;\\n$swift-ease-out-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;\\n$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-timing-function !default;\\n\\n$swift-ease-in-duration: 300ms !default;\\n$swift-ease-in-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2) !default;\\n$swift-ease-in: all $swift-ease-in-duration $swift-ease-in-timing-function !default;\\n\\n$swift-ease-in-out-duration: 500ms !default;\\n$swift-ease-in-out-timing-function: $ease-in-out-curve-function !default;\\n$swift-ease-in-out: all $swift-ease-in-out-duration $swift-ease-in-out-timing-function !default;\\n\\n$swift-linear-duration: 80ms !default;\\n$swift-linear-timing-function: linear !default;\\n$swift-linear: all $swift-linear-duration $swift-linear-timing-function !default;\\n\\n\\n\\n// A collection of mixins and CSS classes that can be used to apply elevation to a material\\n// element.\\n// See: https://material.io/design/environment/elevation.html\\n// Examples:\\n//\\n//\\n// .mat-foo {\\n// @include $mat-elevation(2);\\n//\\n// &:active {\\n// @include $mat-elevation(8);\\n// }\\n// }\\n//\\n//
\\n//\\n// For an explanation of the design behind how elevation is implemented, see the design doc at\\n// https://goo.gl/Kq0k9Z.\\n\\n// Colors for umbra, penumbra, and ambient shadows. As described in the design doc, each elevation\\n// level is created using a set of 3 shadow values, one for umbra (the shadow representing the\\n// space completely obscured by an object relative to its light source), one for penumbra (the\\n// space partially obscured by an object), and one for ambient (the space which contains the object\\n// itself). For a further explanation of these terms and their meanings, see\\n// https://en.wikipedia.org/wiki/Umbra,_penumbra_and_antumbra.\\n\\n// Maps for the different shadow sets and their values within each z-space. These values were\\n// created by taking a few reference shadow sets created by Google's Designers and interpolating\\n// all of the values between them.\\n\\n@function _get-umbra-map($color, $opacity) {\\n $shadow-color: if(type-of($color) == color, rgba($color, $opacity * 0.2), $color);\\n\\n @return (\\n 0: '0px 0px 0px 0px #{$shadow-color}',\\n 1: '0px 2px 1px -1px #{$shadow-color}',\\n 2: '0px 3px 1px -2px #{$shadow-color}',\\n 3: '0px 3px 3px -2px #{$shadow-color}',\\n 4: '0px 2px 4px -1px #{$shadow-color}',\\n 5: '0px 3px 5px -1px #{$shadow-color}',\\n 6: '0px 3px 5px -1px #{$shadow-color}',\\n 7: '0px 4px 5px -2px #{$shadow-color}',\\n 8: '0px 5px 5px -3px #{$shadow-color}',\\n 9: '0px 5px 6px -3px #{$shadow-color}',\\n 10: '0px 6px 6px -3px #{$shadow-color}',\\n 11: '0px 6px 7px -4px #{$shadow-color}',\\n 12: '0px 7px 8px -4px #{$shadow-color}',\\n 13: '0px 7px 8px -4px #{$shadow-color}',\\n 14: '0px 7px 9px -4px #{$shadow-color}',\\n 15: '0px 8px 9px -5px #{$shadow-color}',\\n 16: '0px 8px 10px -5px #{$shadow-color}',\\n 17: '0px 8px 11px -5px #{$shadow-color}',\\n 18: '0px 9px 11px -5px #{$shadow-color}',\\n 19: '0px 9px 12px -6px #{$shadow-color}',\\n 20: '0px 10px 13px -6px #{$shadow-color}',\\n 21: '0px 10px 13px -6px #{$shadow-color}',\\n 22: '0px 10px 14px -6px #{$shadow-color}',\\n 23: '0px 11px 14px -7px #{$shadow-color}',\\n 24: '0px 11px 15px -7px #{$shadow-color}'\\n );\\n}\\n\\n@function _get-penumbra-map($color, $opacity) {\\n $shadow-color: if(type-of($color) == color, rgba($color, $opacity * 0.14), $color);\\n\\n @return (\\n 0: '0px 0px 0px 0px #{$shadow-color}',\\n 1: '0px 1px 1px 0px #{$shadow-color}',\\n 2: '0px 2px 2px 0px #{$shadow-color}',\\n 3: '0px 3px 4px 0px #{$shadow-color}',\\n 4: '0px 4px 5px 0px #{$shadow-color}',\\n 5: '0px 5px 8px 0px #{$shadow-color}',\\n 6: '0px 6px 10px 0px #{$shadow-color}',\\n 7: '0px 7px 10px 1px #{$shadow-color}',\\n 8: '0px 8px 10px 1px #{$shadow-color}',\\n 9: '0px 9px 12px 1px #{$shadow-color}',\\n 10: '0px 10px 14px 1px #{$shadow-color}',\\n 11: '0px 11px 15px 1px #{$shadow-color}',\\n 12: '0px 12px 17px 2px #{$shadow-color}',\\n 13: '0px 13px 19px 2px #{$shadow-color}',\\n 14: '0px 14px 21px 2px #{$shadow-color}',\\n 15: '0px 15px 22px 2px #{$shadow-color}',\\n 16: '0px 16px 24px 2px #{$shadow-color}',\\n 17: '0px 17px 26px 2px #{$shadow-color}',\\n 18: '0px 18px 28px 2px #{$shadow-color}',\\n 19: '0px 19px 29px 2px #{$shadow-color}',\\n 20: '0px 20px 31px 3px #{$shadow-color}',\\n 21: '0px 21px 33px 3px #{$shadow-color}',\\n 22: '0px 22px 35px 3px #{$shadow-color}',\\n 23: '0px 23px 36px 3px #{$shadow-color}',\\n 24: '0px 24px 38px 3px #{$shadow-color}'\\n );\\n}\\n\\n@function _get-ambient-map($color, $opacity) {\\n $shadow-color: if(type-of($color) == color, rgba($color, $opacity * 0.12), $color);\\n\\n @return (\\n 0: '0px 0px 0px 0px #{$shadow-color}',\\n 1: '0px 1px 3px 0px #{$shadow-color}',\\n 2: '0px 1px 5px 0px #{$shadow-color}',\\n 3: '0px 1px 8px 0px #{$shadow-color}',\\n 4: '0px 1px 10px 0px #{$shadow-color}',\\n 5: '0px 1px 14px 0px #{$shadow-color}',\\n 6: '0px 1px 18px 0px #{$shadow-color}',\\n 7: '0px 2px 16px 1px #{$shadow-color}',\\n 8: '0px 3px 14px 2px #{$shadow-color}',\\n 9: '0px 3px 16px 2px #{$shadow-color}',\\n 10: '0px 4px 18px 3px #{$shadow-color}',\\n 11: '0px 4px 20px 3px #{$shadow-color}',\\n 12: '0px 5px 22px 4px #{$shadow-color}',\\n 13: '0px 5px 24px 4px #{$shadow-color}',\\n 14: '0px 5px 26px 4px #{$shadow-color}',\\n 15: '0px 6px 28px 5px #{$shadow-color}',\\n 16: '0px 6px 30px 5px #{$shadow-color}',\\n 17: '0px 6px 32px 5px #{$shadow-color}',\\n 18: '0px 7px 34px 6px #{$shadow-color}',\\n 19: '0px 7px 36px 6px #{$shadow-color}',\\n 20: '0px 8px 38px 7px #{$shadow-color}',\\n 21: '0px 8px 40px 7px #{$shadow-color}',\\n 22: '0px 8px 42px 7px #{$shadow-color}',\\n 23: '0px 9px 44px 8px #{$shadow-color}',\\n 24: '0px 9px 46px 8px #{$shadow-color}'\\n );\\n}\\n\\n// The default duration value for elevation transitions.\\n$mat-elevation-transition-duration: 280ms !default;\\n\\n// The default easing value for elevation transitions.\\n$mat-elevation-transition-timing-function: $mat-fast-out-slow-in-timing-function;\\n\\n// The default color for elevation shadows.\\n$mat-elevation-color: black !default;\\n\\n// The default opacity scaling value for elevation shadows.\\n$mat-elevation-opacity: 1 !default;\\n\\n// Prefix for elevation-related selectors.\\n$_mat-elevation-prefix: 'mat-elevation-z';\\n\\n// Applies the correct css rules to an element to give it the elevation specified by $zValue.\\n// The $zValue must be between 0 and 24.\\n@mixin mat-elevation($zValue, $color: $mat-elevation-color, $opacity: $mat-elevation-opacity) {\\n @if type-of($zValue) != number or not unitless($zValue) {\\n @error '$zValue must be a unitless number';\\n }\\n @if $zValue < 0 or $zValue > 24 {\\n @error '$zValue must be between 0 and 24';\\n }\\n\\n box-shadow: #{map-get(_get-umbra-map($color, $opacity), $zValue)},\\n #{map-get(_get-penumbra-map($color, $opacity), $zValue)},\\n #{map-get(_get-ambient-map($color, $opacity), $zValue)};\\n}\\n\\n@mixin _mat-theme-elevation($zValue, $theme, $opacity: $mat-elevation-opacity) {\\n $foreground: map-get($theme, foreground);\\n $elevation-color: map-get($foreground, elevation);\\n $elevation-color-or-default: if($elevation-color == null, $mat-elevation-color, $elevation-color);\\n\\n @include mat-elevation($zValue, $elevation-color-or-default, $opacity);\\n}\\n\\n// Applies the elevation to an element in a manner that allows\\n// consumers to override it via the Material elevation classes.\\n@mixin mat-overridable-elevation(\\n $zValue,\\n $color: $mat-elevation-color,\\n $opacity: $mat-elevation-opacity) {\\n &:not([class*='#{$_mat-elevation-prefix}']) {\\n @include mat-elevation($zValue, $color, $opacity);\\n }\\n}\\n\\n@mixin _mat-theme-overridable-elevation($zValue, $theme, $opacity: $mat-elevation-opacity) {\\n $foreground: map-get($theme, foreground);\\n $elevation-color: map-get($foreground, elevation);\\n $elevation-color-or-default: if($elevation-color == null, $mat-elevation-color, $elevation-color);\\n\\n @include mat-overridable-elevation($zValue, $elevation-color-or-default, $opacity);\\n}\\n\\n// Returns a string that can be used as the value for a transition property for elevation.\\n// Calling this function directly is useful in situations where a component needs to transition\\n// more than one property.\\n//\\n// .foo {\\n// transition: mat-elevation-transition-property-value(), opacity 100ms ease;\\n// }\\n@function mat-elevation-transition-property-value(\\n $duration: $mat-elevation-transition-duration,\\n $easing: $mat-elevation-transition-timing-function) {\\n @return box-shadow #{$duration} #{$easing};\\n}\\n\\n// Applies the correct css rules needed to have an element transition between elevations.\\n// This mixin should be applied to elements whose elevation values will change depending on their\\n// context (e.g. when active or disabled).\\n//\\n// NOTE(traviskaufman): Both this mixin and the above function use default parameters so they can\\n// be used in the same way by clients.\\n@mixin mat-elevation-transition(\\n $duration: $mat-elevation-transition-duration,\\n $easing: $mat-elevation-transition-timing-function) {\\n transition: mat-elevation-transition-property-value($duration, $easing);\\n}\\n\\n// Color palettes from the Material Design spec.\\n// See https://material.io/design/color/\\n//\\n// Contrast colors are hard-coded because it is too difficult (probably impossible) to\\n// calculate them. These contrast colors are pulled from the public Material Design spec swatches.\\n// While the contrast colors in the spec are not prescriptive, we use them for convenience.\\n\\n\\n// @deprecated renamed to $dark-primary-text.\\n// @breaking-change 8.0.0\\n$black-87-opacity: rgba(black, 0.87);\\n// @deprecated renamed to $light-primary-text.\\n// @breaking-change 8.0.0\\n$white-87-opacity: rgba(white, 0.87);\\n// @deprecated use $dark-[secondary-text,disabled-text,dividers,focused] instead.\\n// @breaking-change 8.0.0\\n$black-12-opacity: rgba(black, 0.12);\\n// @deprecated use $light-[secondary-text,disabled-text,dividers,focused] instead.\\n// @breaking-change 8.0.0\\n$white-12-opacity: rgba(white, 0.12);\\n// @deprecated use $dark-[secondary-text,disabled-text,dividers,focused] instead.\\n// @breaking-change 8.0.0\\n$black-6-opacity: rgba(black, 0.06);\\n// @deprecated use $light-[secondary-text,disabled-text,dividers,focused] instead.\\n// @breaking-change 8.0.0\\n$white-6-opacity: rgba(white, 0.06);\\n\\n$dark-primary-text: rgba(black, 0.87);\\n$dark-secondary-text: rgba(black, 0.54);\\n$dark-disabled-text: rgba(black, 0.38);\\n$dark-dividers: rgba(black, 0.12);\\n$dark-focused: rgba(black, 0.12);\\n$light-primary-text: white;\\n$light-secondary-text: rgba(white, 0.7);\\n$light-disabled-text: rgba(white, 0.5);\\n$light-dividers: rgba(white, 0.12);\\n$light-focused: rgba(white, 0.12);\\n\\n$mat-red: (\\n 50: #ffebee,\\n 100: #ffcdd2,\\n 200: #ef9a9a,\\n 300: #e57373,\\n 400: #ef5350,\\n 500: #f44336,\\n 600: #e53935,\\n 700: #d32f2f,\\n 800: #c62828,\\n 900: #b71c1c,\\n A100: #ff8a80,\\n A200: #ff5252,\\n A400: #ff1744,\\n A700: #d50000,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-pink: (\\n 50: #fce4ec,\\n 100: #f8bbd0,\\n 200: #f48fb1,\\n 300: #f06292,\\n 400: #ec407a,\\n 500: #e91e63,\\n 600: #d81b60,\\n 700: #c2185b,\\n 800: #ad1457,\\n 900: #880e4f,\\n A100: #ff80ab,\\n A200: #ff4081,\\n A400: #f50057,\\n A700: #c51162,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-purple: (\\n 50: #f3e5f5,\\n 100: #e1bee7,\\n 200: #ce93d8,\\n 300: #ba68c8,\\n 400: #ab47bc,\\n 500: #9c27b0,\\n 600: #8e24aa,\\n 700: #7b1fa2,\\n 800: #6a1b9a,\\n 900: #4a148c,\\n A100: #ea80fc,\\n A200: #e040fb,\\n A400: #d500f9,\\n A700: #aa00ff,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $light-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-deep-purple: (\\n 50: #ede7f6,\\n 100: #d1c4e9,\\n 200: #b39ddb,\\n 300: #9575cd,\\n 400: #7e57c2,\\n 500: #673ab7,\\n 600: #5e35b1,\\n 700: #512da8,\\n 800: #4527a0,\\n 900: #311b92,\\n A100: #b388ff,\\n A200: #7c4dff,\\n A400: #651fff,\\n A700: #6200ea,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $light-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-indigo: (\\n 50: #e8eaf6,\\n 100: #c5cae9,\\n 200: #9fa8da,\\n 300: #7986cb,\\n 400: #5c6bc0,\\n 500: #3f51b5,\\n 600: #3949ab,\\n 700: #303f9f,\\n 800: #283593,\\n 900: #1a237e,\\n A100: #8c9eff,\\n A200: #536dfe,\\n A400: #3d5afe,\\n A700: #304ffe,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $light-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-blue: (\\n 50: #e3f2fd,\\n 100: #bbdefb,\\n 200: #90caf9,\\n 300: #64b5f6,\\n 400: #42a5f5,\\n 500: #2196f3,\\n 600: #1e88e5,\\n 700: #1976d2,\\n 800: #1565c0,\\n 900: #0d47a1,\\n A100: #82b1ff,\\n A200: #448aff,\\n A400: #2979ff,\\n A700: #2962ff,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-light-blue: (\\n 50: #e1f5fe,\\n 100: #b3e5fc,\\n 200: #81d4fa,\\n 300: #4fc3f7,\\n 400: #29b6f6,\\n 500: #03a9f4,\\n 600: #039be5,\\n 700: #0288d1,\\n 800: #0277bd,\\n 900: #01579b,\\n A100: #80d8ff,\\n A200: #40c4ff,\\n A400: #00b0ff,\\n A700: #0091ea,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-cyan: (\\n 50: #e0f7fa,\\n 100: #b2ebf2,\\n 200: #80deea,\\n 300: #4dd0e1,\\n 400: #26c6da,\\n 500: #00bcd4,\\n 600: #00acc1,\\n 700: #0097a7,\\n 800: #00838f,\\n 900: #006064,\\n A100: #84ffff,\\n A200: #18ffff,\\n A400: #00e5ff,\\n A700: #00b8d4,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-teal: (\\n 50: #e0f2f1,\\n 100: #b2dfdb,\\n 200: #80cbc4,\\n 300: #4db6ac,\\n 400: #26a69a,\\n 500: #009688,\\n 600: #00897b,\\n 700: #00796b,\\n 800: #00695c,\\n 900: #004d40,\\n A100: #a7ffeb,\\n A200: #64ffda,\\n A400: #1de9b6,\\n A700: #00bfa5,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-green: (\\n 50: #e8f5e9,\\n 100: #c8e6c9,\\n 200: #a5d6a7,\\n 300: #81c784,\\n 400: #66bb6a,\\n 500: #4caf50,\\n 600: #43a047,\\n 700: #388e3c,\\n 800: #2e7d32,\\n 900: #1b5e20,\\n A100: #b9f6ca,\\n A200: #69f0ae,\\n A400: #00e676,\\n A700: #00c853,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-light-green: (\\n 50: #f1f8e9,\\n 100: #dcedc8,\\n 200: #c5e1a5,\\n 300: #aed581,\\n 400: #9ccc65,\\n 500: #8bc34a,\\n 600: #7cb342,\\n 700: #689f38,\\n 800: #558b2f,\\n 900: #33691e,\\n A100: #ccff90,\\n A200: #b2ff59,\\n A400: #76ff03,\\n A700: #64dd17,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-lime: (\\n 50: #f9fbe7,\\n 100: #f0f4c3,\\n 200: #e6ee9c,\\n 300: #dce775,\\n 400: #d4e157,\\n 500: #cddc39,\\n 600: #c0ca33,\\n 700: #afb42b,\\n 800: #9e9d24,\\n 900: #827717,\\n A100: #f4ff81,\\n A200: #eeff41,\\n A400: #c6ff00,\\n A700: #aeea00,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $dark-primary-text,\\n 800: $dark-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-yellow: (\\n 50: #fffde7,\\n 100: #fff9c4,\\n 200: #fff59d,\\n 300: #fff176,\\n 400: #ffee58,\\n 500: #ffeb3b,\\n 600: #fdd835,\\n 700: #fbc02d,\\n 800: #f9a825,\\n 900: #f57f17,\\n A100: #ffff8d,\\n A200: #ffff00,\\n A400: #ffea00,\\n A700: #ffd600,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $dark-primary-text,\\n 800: $dark-primary-text,\\n 900: $dark-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-amber: (\\n 50: #fff8e1,\\n 100: #ffecb3,\\n 200: #ffe082,\\n 300: #ffd54f,\\n 400: #ffca28,\\n 500: #ffc107,\\n 600: #ffb300,\\n 700: #ffa000,\\n 800: #ff8f00,\\n 900: #ff6f00,\\n A100: #ffe57f,\\n A200: #ffd740,\\n A400: #ffc400,\\n A700: #ffab00,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $dark-primary-text,\\n 800: $dark-primary-text,\\n 900: $dark-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-orange: (\\n 50: #fff3e0,\\n 100: #ffe0b2,\\n 200: #ffcc80,\\n 300: #ffb74d,\\n 400: #ffa726,\\n 500: #ff9800,\\n 600: #fb8c00,\\n 700: #f57c00,\\n 800: #ef6c00,\\n 900: #e65100,\\n A100: #ffd180,\\n A200: #ffab40,\\n A400: #ff9100,\\n A700: #ff6d00,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $dark-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: black,\\n )\\n);\\n\\n$mat-deep-orange: (\\n 50: #fbe9e7,\\n 100: #ffccbc,\\n 200: #ffab91,\\n 300: #ff8a65,\\n 400: #ff7043,\\n 500: #ff5722,\\n 600: #f4511e,\\n 700: #e64a19,\\n 800: #d84315,\\n 900: #bf360c,\\n A100: #ff9e80,\\n A200: #ff6e40,\\n A400: #ff3d00,\\n A700: #dd2c00,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-brown: (\\n 50: #efebe9,\\n 100: #d7ccc8,\\n 200: #bcaaa4,\\n 300: #a1887f,\\n 400: #8d6e63,\\n 500: #795548,\\n 600: #6d4c41,\\n 700: #5d4037,\\n 800: #4e342e,\\n 900: #3e2723,\\n A100: #d7ccc8,\\n A200: #bcaaa4,\\n A400: #8d6e63,\\n A700: #5d4037,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $light-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-grey: (\\n 50: #fafafa,\\n 100: #f5f5f5,\\n 200: #eeeeee,\\n 300: #e0e0e0,\\n 400: #bdbdbd,\\n 500: #9e9e9e,\\n 600: #757575,\\n 700: #616161,\\n 800: #424242,\\n 900: #212121,\\n A100: #ffffff,\\n A200: #eeeeee,\\n A400: #bdbdbd,\\n A700: #616161,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n// Alias for alternate spelling.\\n$mat-gray: $mat-grey;\\n\\n$mat-blue-grey: (\\n 50: #eceff1,\\n 100: #cfd8dc,\\n 200: #b0bec5,\\n 300: #90a4ae,\\n 400: #78909c,\\n 500: #607d8b,\\n 600: #546e7a,\\n 700: #455a64,\\n 800: #37474f,\\n 900: #263238,\\n A100: #cfd8dc,\\n A200: #b0bec5,\\n A400: #78909c,\\n A700: #455a64,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n// Alias for alternate spelling.\\n$mat-blue-gray: $mat-blue-grey;\\n\\n\\n// Background palette for light themes.\\n$mat-light-theme-background: (\\n status-bar: map_get($mat-grey, 300),\\n app-bar: map_get($mat-grey, 100),\\n background: map_get($mat-grey, 50),\\n hover: rgba(black, 0.04), // TODO(kara): check style with Material Design UX\\n card: white,\\n dialog: white,\\n disabled-button: rgba(black, 0.12),\\n raised-button: white,\\n focused-button: $dark-focused,\\n selected-button: map_get($mat-grey, 300),\\n selected-disabled-button: map_get($mat-grey, 400),\\n disabled-button-toggle: map_get($mat-grey, 200),\\n unselected-chip: map_get($mat-grey, 300),\\n disabled-list-option: map_get($mat-grey, 200),\\n tooltip: map_get($mat-grey, 700),\\n);\\n\\n// Background palette for dark themes.\\n$mat-dark-theme-background: (\\n status-bar: black,\\n app-bar: map_get($mat-grey, 900),\\n background: #303030,\\n hover: rgba(white, 0.04), // TODO(kara): check style with Material Design UX\\n card: map_get($mat-grey, 800),\\n dialog: map_get($mat-grey, 800),\\n disabled-button: rgba(white, 0.12),\\n raised-button: map-get($mat-grey, 800),\\n focused-button: $light-focused,\\n selected-button: map_get($mat-grey, 900),\\n selected-disabled-button: map_get($mat-grey, 800),\\n disabled-button-toggle: black,\\n unselected-chip: map_get($mat-grey, 700),\\n disabled-list-option: black,\\n tooltip: map_get($mat-grey, 700),\\n);\\n\\n// Foreground palette for light themes.\\n$mat-light-theme-foreground: (\\n base: black,\\n divider: $dark-dividers,\\n dividers: $dark-dividers,\\n disabled: $dark-disabled-text,\\n disabled-button: rgba(black, 0.26),\\n disabled-text: $dark-disabled-text,\\n elevation: black,\\n hint-text: $dark-disabled-text,\\n secondary-text: $dark-secondary-text,\\n icon: rgba(black, 0.54),\\n icons: rgba(black, 0.54),\\n text: rgba(black, 0.87),\\n slider-min: rgba(black, 0.87),\\n slider-off: rgba(black, 0.26),\\n slider-off-active: rgba(black, 0.38),\\n);\\n\\n// Foreground palette for dark themes.\\n$mat-dark-theme-foreground: (\\n base: white,\\n divider: $light-dividers,\\n dividers: $light-dividers,\\n disabled: $light-disabled-text,\\n disabled-button: rgba(white, 0.3),\\n disabled-text: $light-disabled-text,\\n elevation: black,\\n hint-text: $light-disabled-text,\\n secondary-text: $light-secondary-text,\\n icon: white,\\n icons: white,\\n text: white,\\n slider-min: white,\\n slider-off: rgba(white, 0.3),\\n slider-off-active: rgba(white, 0.3),\\n);\\n\\n\\n\\n// For a given hue in a palette, return the contrast color from the map of contrast palettes.\\n// @param $color-map\\n// @param $hue\\n@function mat-contrast($palette, $hue) {\\n @return map-get(map-get($palette, contrast), $hue);\\n}\\n\\n\\n// Creates a map of hues to colors for a theme. This is used to define a theme palette in terms\\n// of the Material Design hues.\\n// @param $color-map\\n// @param $primary\\n// @param $lighter\\n@function mat-palette($base-palette, $default: 500, $lighter: 100, $darker: 700, $text: $default) {\\n $result: map_merge($base-palette, (\\n default: map-get($base-palette, $default),\\n lighter: map-get($base-palette, $lighter),\\n darker: map-get($base-palette, $darker),\\n text: map-get($base-palette, $text),\\n\\n default-contrast: mat-contrast($base-palette, $default),\\n lighter-contrast: mat-contrast($base-palette, $lighter),\\n darker-contrast: mat-contrast($base-palette, $darker)\\n ));\\n\\n // For each hue in the palette, add a \\\"-contrast\\\" color to the map.\\n @each $hue, $color in $base-palette {\\n $result: map_merge($result, (\\n '#{$hue}-contrast': mat-contrast($base-palette, $hue)\\n ));\\n }\\n\\n @return $result;\\n}\\n\\n\\n// Gets a color from a theme palette (the output of mat-palette).\\n// The hue can be one of the standard values (500, A400, etc.), one of the three preconfigured\\n// hues (default, lighter, darker), or any of the aforementioned prefixed with \\\"-contrast\\\".\\n//\\n// @param $color-map The theme palette (output of mat-palette).\\n// @param $hue The hue from the palette to use. If this is a value between 0 and 1, it will\\n// be treated as opacity.\\n// @param $opacity The alpha channel value for the color.\\n@function mat-color($palette, $hue: default, $opacity: null) {\\n // If hueKey is a number between zero and one, then it actually contains an\\n // opacity value, so recall this function with the default hue and that given opacity.\\n @if type-of($hue) == number and $hue >= 0 and $hue <= 1 {\\n @return mat-color($palette, default, $hue);\\n }\\n\\n $color: map-get($palette, $hue);\\n\\n @if (type-of($color) != color) {\\n // If the $color resolved to something different from a color (e.g. a CSS variable),\\n // we can't apply the opacity anyway so we return the value as is, otherwise Sass can\\n // throw an error or output something invalid.\\n @return $color;\\n }\\n\\n @return rgba($color, if($opacity == null, opacity($color), $opacity));\\n}\\n\\n\\n// Creates a container object for a light theme to be given to individual component theme mixins.\\n@function mat-light-theme($primary, $accent, $warn: mat-palette($mat-red)) {\\n @return (\\n primary: $primary,\\n accent: $accent,\\n warn: $warn,\\n is-dark: false,\\n foreground: $mat-light-theme-foreground,\\n background: $mat-light-theme-background,\\n );\\n}\\n\\n\\n// Creates a container object for a dark theme to be given to individual component theme mixins.\\n@function mat-dark-theme($primary, $accent, $warn: mat-palette($mat-red)) {\\n @return (\\n primary: $primary,\\n accent: $accent,\\n warn: $warn,\\n is-dark: true,\\n foreground: $mat-dark-theme-foreground,\\n background: $mat-dark-theme-background,\\n );\\n}\\n\\n\\n\\n$mat-ripple-color-opacity: 0.1;\\n\\n@mixin mat-ripple() {\\n\\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 transform: scale(0);\\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\\n/* Theme for the ripple elements.*/\\n@mixin mat-ripple-theme($theme) {\\n $foreground: map_get($theme, foreground);\\n $foreground-base: map_get($foreground, base);\\n\\n .mat-ripple-element {\\n // If the ripple color is resolves to a color *type*, we can use it directly, otherwise\\n // (e.g. it resolves to a CSS variable) we fall back to using the color and setting an opacity.\\n @if (type-of($foreground-base) == color) {\\n background-color: rgba($foreground-base, $mat-ripple-color-opacity);\\n }\\n @else {\\n background-color: $foreground-base;\\n opacity: $mat-ripple-color-opacity;\\n }\\n }\\n}\\n\\n\\n\\n// Utility for fetching a nested value from a typography config.\\n@function _mat-get-type-value($config, $level, $name) {\\n @return map-get(map-get($config, $level), $name);\\n}\\n\\n// Gets the font size for a level inside a typography config.\\n@function mat-font-size($config, $level) {\\n @return _mat-get-type-value($config, $level, font-size);\\n}\\n\\n// Gets the line height for a level inside a typography config.\\n@function mat-line-height($config, $level) {\\n @return _mat-get-type-value($config, $level, line-height);\\n}\\n\\n// Gets the font weight for a level inside a typography config.\\n@function mat-font-weight($config, $level) {\\n @return _mat-get-type-value($config, $level, font-weight);\\n}\\n\\n// Gets the letter spacing for a level inside a typography config.\\n@function mat-letter-spacing($config, $level) {\\n @return _mat-get-type-value($config, $level, letter-spacing);\\n}\\n\\n// Gets the font-family from a typography config and removes the quotes around it.\\n@function mat-font-family($config, $level: null) {\\n $font-family: map-get($config, font-family);\\n\\n @if $level != null {\\n $font-family: _mat-get-type-value($config, $level, font-family);\\n }\\n\\n // Guard against unquoting non-string values, because it's deprecated.\\n @return if(type-of($font-family) == string, unquote($font-family), $font-family);\\n}\\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@mixin mat-typography-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. Note\\n // that we need to use interpolation for `font-size/line-height` in order to prevent\\n // Sass from dividing the two values.\\n font: $font-weight #{$font-size}/#{$line-height} $font-family;\\n }\\n}\\n\\n// Converts a typography level into CSS styles.\\n@mixin mat-typography-level-to-styles($config, $level) {\\n $font-size: mat-font-size($config, $level);\\n $font-weight: mat-font-weight($config, $level);\\n $line-height: mat-line-height($config, $level);\\n $font-family: mat-font-family($config, $level);\\n\\n @include mat-typography-font-shorthand($font-size, $font-weight, $line-height, $font-family);\\n letter-spacing: mat-letter-spacing($config, $level);\\n}\\n\\n\\n@mixin mat-option-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n .mat-option {\\n color: mat-color($foreground, text);\\n\\n &:hover:not(.mat-option-disabled),\\n &:focus:not(.mat-option-disabled) {\\n background: mat-color($background, hover);\\n }\\n\\n // In multiple mode there is a checkbox to show that the option is selected.\\n &.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {\\n background: mat-color($background, hover);\\n }\\n\\n &.mat-active {\\n background: mat-color($background, hover);\\n color: mat-color($foreground, text);\\n }\\n\\n &.mat-option-disabled {\\n color: mat-color($foreground, hint-text);\\n }\\n }\\n\\n .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: mat-color($primary, text);\\n }\\n\\n .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: mat-color($accent, text);\\n }\\n\\n .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: mat-color($warn, text);\\n }\\n}\\n\\n@mixin mat-option-typography($config) {\\n .mat-option {\\n font: {\\n family: mat-font-family($config);\\n size: mat-font-size($config, subheading-2);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-optgroup-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n\\n .mat-optgroup-label {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-optgroup-disabled .mat-optgroup-label {\\n color: mat-color($foreground, hint-text);\\n }\\n}\\n\\n@mixin mat-optgroup-typography($config) {\\n .mat-optgroup-label {\\n @include mat-typography-level-to-styles($config, body-2);\\n }\\n}\\n\\n\\n\\n@mixin mat-pseudo-checkbox-theme($theme) {\\n $is-dark-theme: map-get($theme, is-dark);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n\\n // NOTE(traviskaufman): While the spec calls for translucent blacks/whites for disabled colors,\\n // this does not work well with elements layered on top of one another. To get around this we\\n // blend the colors together based on the base color and the theme background.\\n $white-30pct-opacity-on-dark: #686868;\\n $black-26pct-opacity-on-light: #b0b0b0;\\n $disabled-color: if($is-dark-theme, $white-30pct-opacity-on-dark, $black-26pct-opacity-on-light);\\n $colored-box-selector: '.mat-pseudo-checkbox-checked, .mat-pseudo-checkbox-indeterminate';\\n\\n .mat-pseudo-checkbox {\\n color: mat-color(map-get($theme, foreground), secondary-text);\\n\\n &::after {\\n color: mat-color($background, background);\\n }\\n }\\n\\n .mat-pseudo-checkbox-disabled {\\n color: $disabled-color;\\n }\\n\\n .mat-primary .mat-pseudo-checkbox-checked,\\n .mat-primary .mat-pseudo-checkbox-indeterminate {\\n background: mat-color(map-get($theme, primary));\\n }\\n\\n // Default to the accent color. Note that the pseudo checkboxes are meant to inherit the\\n // theme from their parent, rather than implementing their own theming, which is why we\\n // don't attach to the `mat-*` classes. Also note that this needs to be below `.mat-primary`\\n // in order to allow for the color to be overwritten if the checkbox is inside a parent that\\n // has `mat-accent` and is placed inside another parent that has `mat-primary`.\\n .mat-pseudo-checkbox-checked,\\n .mat-pseudo-checkbox-indeterminate,\\n .mat-accent .mat-pseudo-checkbox-checked,\\n .mat-accent .mat-pseudo-checkbox-indeterminate {\\n background: mat-color(map-get($theme, accent));\\n }\\n\\n .mat-warn .mat-pseudo-checkbox-checked,\\n .mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: mat-color(map-get($theme, warn));\\n }\\n\\n .mat-pseudo-checkbox-checked,\\n .mat-pseudo-checkbox-indeterminate {\\n &.mat-pseudo-checkbox-disabled {\\n background: $disabled-color;\\n }\\n }\\n}\\n\\n\\n\\n// Represents a typography level from the Material design spec.\\n@function mat-typography-level(\\n $font-size,\\n $line-height: $font-size,\\n $font-weight: 400,\\n $font-family: null,\\n $letter-spacing: normal) {\\n\\n @return (\\n font-size: $font-size,\\n line-height: $line-height,\\n font-weight: $font-weight,\\n font-family: $font-family,\\n letter-spacing: $letter-spacing\\n );\\n}\\n\\n// Represents a collection of typography levels.\\n// Defaults come from https://material.io/guidelines/style/typography.html\\n// Note: The spec doesn't mention letter spacing. The values here come from\\n// eyeballing it until it looked exactly like the spec examples.\\n@function mat-typography-config(\\n $font-family: 'Roboto, \\\"Helvetica Neue\\\", sans-serif',\\n $display-4: mat-typography-level(112px, 112px, 300, $letter-spacing: -0.05em),\\n $display-3: mat-typography-level(56px, 56px, 400, $letter-spacing: -0.02em),\\n $display-2: mat-typography-level(45px, 48px, 400, $letter-spacing: -0.005em),\\n $display-1: mat-typography-level(34px, 40px, 400),\\n $headline: mat-typography-level(24px, 32px, 400),\\n $title: mat-typography-level(20px, 32px, 500),\\n $subheading-2: mat-typography-level(16px, 28px, 400),\\n $subheading-1: mat-typography-level(15px, 24px, 400),\\n $body-2: mat-typography-level(14px, 24px, 500),\\n $body-1: mat-typography-level(14px, 20px, 400),\\n $caption: mat-typography-level(12px, 20px, 400),\\n $button: mat-typography-level(14px, 14px, 500),\\n // Line-height must be unit-less fraction of the font-size.\\n $input: mat-typography-level(inherit, 1.125, 400)\\n) {\\n\\n // Declare an initial map with all of the levels.\\n $config: (\\n display-4: $display-4,\\n display-3: $display-3,\\n display-2: $display-2,\\n display-1: $display-1,\\n headline: $headline,\\n title: $title,\\n subheading-2: $subheading-2,\\n subheading-1: $subheading-1,\\n body-2: $body-2,\\n body-1: $body-1,\\n caption: $caption,\\n button: $button,\\n input: $input,\\n );\\n\\n // Loop through the levels and set the `font-family` of the ones that don't have one to the base.\\n // Note that Sass can't modify maps in place, which means that we need to merge and re-assign.\\n @each $key, $level in $config {\\n @if map-get($level, font-family) == null {\\n $new-level: map-merge($level, (font-family: $font-family));\\n $config: map-merge($config, ($key: $new-level));\\n }\\n }\\n\\n // Add the base font family to the config.\\n @return map-merge($config, (font-family: $font-family));\\n}\\n\\n// Adds the base typography styles, based on a config.\\n@mixin mat-base-typography($config, $selector: '.mat-typography') {\\n .mat-h1, .mat-headline, #{$selector} h1 {\\n @include mat-typography-level-to-styles($config, headline);\\n margin: 0 0 16px;\\n }\\n\\n .mat-h2, .mat-title, #{$selector} h2 {\\n @include mat-typography-level-to-styles($config, title);\\n margin: 0 0 16px;\\n }\\n\\n .mat-h3, .mat-subheading-2, #{$selector} h3 {\\n @include mat-typography-level-to-styles($config, subheading-2);\\n margin: 0 0 16px;\\n }\\n\\n .mat-h4, .mat-subheading-1, #{$selector} h4 {\\n @include mat-typography-level-to-styles($config, subheading-1);\\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, #{$selector} h5 {\\n @include mat-typography-font-shorthand(\\n // calc is used here to support css variables\\n calc(#{mat-font-size($config, body-1)} * 0.83),\\n mat-font-weight($config, body-1),\\n mat-line-height($config, body-1),\\n mat-font-family($config, body-1)\\n );\\n\\n margin: 0 0 12px;\\n }\\n\\n .mat-h6, #{$selector} h6 {\\n @include mat-typography-font-shorthand(\\n // calc is used here to support css variables\\n calc(#{mat-font-size($config, body-1)} * 0.67),\\n mat-font-weight($config, body-1),\\n mat-line-height($config, body-1),\\n mat-font-family($config, body-1)\\n );\\n\\n margin: 0 0 12px;\\n }\\n\\n .mat-body-strong, .mat-body-2 {\\n @include mat-typography-level-to-styles($config, body-2);\\n }\\n\\n .mat-body, .mat-body-1, #{$selector} {\\n @include mat-typography-level-to-styles($config, body-1);\\n\\n p {\\n margin: 0 0 12px;\\n }\\n }\\n\\n .mat-small, .mat-caption {\\n @include mat-typography-level-to-styles($config, caption);\\n }\\n\\n .mat-display-4, #{$selector} .mat-display-4 {\\n @include mat-typography-level-to-styles($config, display-4);\\n margin: 0 0 56px;\\n }\\n\\n .mat-display-3, #{$selector} .mat-display-3 {\\n @include mat-typography-level-to-styles($config, display-3);\\n margin: 0 0 64px;\\n }\\n\\n .mat-display-2, #{$selector} .mat-display-2 {\\n @include mat-typography-level-to-styles($config, display-2);\\n margin: 0 0 64px;\\n }\\n\\n .mat-display-1, #{$selector} .mat-display-1 {\\n @include mat-typography-level-to-styles($config, display-1);\\n margin: 0 0 64px;\\n }\\n}\\n\\n\\n\\n\\n@mixin mat-autocomplete-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n\\n .mat-autocomplete-panel {\\n @include _mat-theme-overridable-elevation(4, $theme);\\n background: mat-color($background, card);\\n color: mat-color($foreground, text);\\n\\n // Selected options in autocompletes should not be gray, but we\\n // only want to override the background for selected options if\\n // they are *not* in hover or focus state. This change has to be\\n // made here because base option styles are shared between the\\n // autocomplete and the select.\\n .mat-option.mat-selected:not(.mat-active):not(:hover) {\\n background: mat-color($background, card);\\n\\n &:not(.mat-option-disabled) {\\n color: mat-color($foreground, text);\\n }\\n }\\n }\\n\\n}\\n\\n@mixin mat-autocomplete-typography($config) { }\\n\\n// This contains all of the styles for the badge\\n// rather than just the color/theme because of\\n// no style sheet support for directives.\\n\\n\\n\\n\\n\\n$mat-badge-font-size: 12px;\\n$mat-badge-font-weight: 600;\\n$mat-badge-default-size: 22px !default;\\n$mat-badge-small-size: $mat-badge-default-size - 6;\\n$mat-badge-large-size: $mat-badge-default-size + 6;\\n\\n// Mixin for building offset given different sizes\\n@mixin _mat-badge-size($size) {\\n .mat-badge-content {\\n width: $size;\\n height: $size;\\n line-height: $size;\\n }\\n\\n &.mat-badge-above {\\n .mat-badge-content {\\n top: -$size / 2;\\n }\\n }\\n\\n &.mat-badge-below {\\n .mat-badge-content {\\n bottom: -$size / 2;\\n }\\n }\\n\\n &.mat-badge-before {\\n .mat-badge-content {\\n left: -$size;\\n }\\n }\\n\\n [dir='rtl'] &.mat-badge-before {\\n .mat-badge-content {\\n left: auto;\\n right: -$size;\\n }\\n }\\n\\n &.mat-badge-after {\\n .mat-badge-content {\\n right: -$size;\\n }\\n }\\n\\n [dir='rtl'] &.mat-badge-after {\\n .mat-badge-content {\\n right: auto;\\n left: -$size;\\n }\\n }\\n\\n &.mat-badge-overlap {\\n &.mat-badge-before {\\n .mat-badge-content {\\n left: -$size / 2;\\n }\\n }\\n\\n [dir='rtl'] &.mat-badge-before {\\n .mat-badge-content {\\n left: auto;\\n right: -$size / 2;\\n }\\n }\\n\\n &.mat-badge-after {\\n .mat-badge-content {\\n right: -$size / 2;\\n }\\n }\\n\\n [dir='rtl'] &.mat-badge-after {\\n .mat-badge-content {\\n right: auto;\\n left: -$size / 2;\\n }\\n }\\n }\\n}\\n\\n@mixin mat-badge-theme($theme) {\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $primary: map-get($theme, primary);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-badge-content {\\n color: mat-color($primary, default-contrast);\\n background: mat-color($primary);\\n\\n @include cdk-high-contrast(active, off) {\\n outline: solid 1px;\\n border-radius: 0;\\n }\\n }\\n\\n .mat-badge-accent {\\n .mat-badge-content {\\n background: mat-color($accent);\\n color: mat-color($accent, default-contrast);\\n }\\n }\\n\\n .mat-badge-warn {\\n .mat-badge-content {\\n color: mat-color($warn, default-contrast);\\n background: mat-color($warn);\\n }\\n }\\n\\n .mat-badge {\\n position: relative;\\n }\\n\\n .mat-badge-hidden {\\n .mat-badge-content {\\n display: none;\\n }\\n }\\n\\n .mat-badge-disabled {\\n .mat-badge-content {\\n $app-background: mat-color($background, 'background');\\n $badge-color: mat-color($foreground, disabled-button);\\n\\n // The disabled color usually has some kind of opacity, but because the badge is overlayed\\n // on top of something else, it won't look good if it's opaque. If it is a color *type*,\\n // we convert it into a solid color by taking the opacity from the rgba value and using\\n // the value to determine the percentage of the background to put into foreground when\\n // mixing the colors together.\\n @if (type-of($badge-color) == color and type-of($app-background) == color) {\\n $badge-opacity: opacity($badge-color);\\n background: mix($app-background, rgba($badge-color, 1), (1 - $badge-opacity) * 100%);\\n }\\n @else {\\n background: $badge-color;\\n }\\n\\n color: mat-color($foreground, disabled-text);\\n }\\n }\\n\\n .mat-badge-content {\\n position: absolute;\\n text-align: center;\\n display: inline-block;\\n border-radius: 50%;\\n transition: transform 200ms ease-in-out;\\n transform: scale(0.6);\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n pointer-events: none;\\n }\\n\\n .ng-animate-disabled .mat-badge-content,\\n .mat-badge-content._mat-animation-noopable {\\n transition: none;\\n }\\n\\n // The active class is added after the element is added\\n // so it can animate scale to default\\n .mat-badge-content.mat-badge-active {\\n // Scale to `none` instead of `1` to avoid blurry text in some browsers.\\n transform: none;\\n }\\n\\n .mat-badge-small {\\n @include _mat-badge-size($mat-badge-small-size);\\n }\\n .mat-badge-medium {\\n @include _mat-badge-size($mat-badge-default-size);\\n }\\n .mat-badge-large {\\n @include _mat-badge-size($mat-badge-large-size);\\n }\\n}\\n\\n@mixin mat-badge-typography($config) {\\n .mat-badge-content {\\n font-weight: $mat-badge-font-weight;\\n font-size: $mat-badge-font-size;\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-badge-small .mat-badge-content {\\n // Set the font size to 75% of the original.\\n font-size: $mat-badge-font-size * 0.75;\\n }\\n\\n .mat-badge-large .mat-badge-content {\\n font-size: $mat-badge-font-size * 2;\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-bottom-sheet-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-bottom-sheet-container {\\n @include _mat-theme-elevation(16, $theme);\\n background: mat-color($background, dialog);\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-bottom-sheet-typography($config) {\\n .mat-bottom-sheet-container {\\n @include mat-typography-level-to-styles($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n\\n$_mat-button-ripple-opacity: 0.1;\\n\\n// Applies a focus style to an mat-button element for each of the supported palettes.\\n@mixin _mat-button-focus-overlay-color($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n &.mat-primary .mat-button-focus-overlay {\\n background-color: mat-color($primary);\\n }\\n\\n &.mat-accent .mat-button-focus-overlay {\\n background-color: mat-color($accent);\\n }\\n\\n &.mat-warn .mat-button-focus-overlay {\\n background-color: mat-color($warn);\\n }\\n\\n &[disabled] .mat-button-focus-overlay {\\n background-color: transparent;\\n }\\n}\\n\\n// Applies the background color for a ripple. If the value provided is not a Sass color,\\n// we assume that we've been given a CSS variable. Since we can't perform alpha-blending\\n// on a CSS variable, we instead add the opacity directly to the ripple element.\\n@mixin _mat-button-ripple-background($palette, $hue, $opacity) {\\n $background-color: mat-color($palette, $hue, $opacity);\\n background-color: $background-color;\\n @if (type-of($background-color) != color) {\\n opacity: $opacity;\\n }\\n}\\n\\n@mixin _mat-button-ripple-color($theme, $hue, $opacity: $_mat-button-ripple-opacity) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n &.mat-primary .mat-ripple-element {\\n @include _mat-button-ripple-background($primary, $hue, $opacity);\\n }\\n\\n &.mat-accent .mat-ripple-element {\\n @include _mat-button-ripple-background($accent, $hue, $opacity);\\n }\\n\\n &.mat-warn .mat-ripple-element {\\n @include _mat-button-ripple-background($warn, $hue, $opacity);\\n }\\n}\\n\\n// Applies a property to an mat-button element for each of the supported palettes.\\n@mixin _mat-button-theme-property($theme, $property, $hue) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n &.mat-primary {\\n #{$property}: mat-color($primary, $hue);\\n }\\n &.mat-accent {\\n #{$property}: mat-color($accent, $hue);\\n }\\n &.mat-warn {\\n #{$property}: mat-color($warn, $hue);\\n }\\n\\n &.mat-primary, &.mat-accent, &.mat-warn, &[disabled] {\\n &[disabled] {\\n $palette: if($property == 'color', $foreground, $background);\\n #{$property}: mat-color($palette, disabled-button);\\n }\\n }\\n}\\n\\n@mixin mat-button-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-button, .mat-icon-button, .mat-stroked-button {\\n // Buttons without a background color should inherit the font color. This is necessary to\\n // ensure that the button is readable on custom background colors. It's wrong to always assume\\n // that those buttons are always placed inside of containers with the default background\\n // color of the theme (e.g. themed toolbars).\\n color: inherit;\\n background: transparent;\\n\\n @include _mat-button-theme-property($theme, 'color', text);\\n @include _mat-button-focus-overlay-color($theme);\\n\\n // Setup the ripple color to be based on the text color. This ensures that the ripples\\n // are matching with the current theme palette and are in contrast to the background color\\n // (e.g in themed toolbars).\\n .mat-ripple-element {\\n opacity: $_mat-button-ripple-opacity;\\n background-color: currentColor;\\n }\\n }\\n\\n .mat-button-focus-overlay {\\n background: map_get($foreground, base);\\n }\\n\\n // Note: this needs a bit extra specificity, because we're not guaranteed the inclusion\\n // order of the theme styles and the button reset may end up resetting this as well.\\n .mat-stroked-button:not([disabled]) {\\n border-color: mat-color($foreground, divider);\\n }\\n\\n .mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {\\n // Default font and background color when not using any color palette.\\n color: mat-color($foreground, text);\\n background-color: mat-color($background, raised-button);\\n\\n @include _mat-button-theme-property($theme, 'color', default-contrast);\\n @include _mat-button-theme-property($theme, 'background-color', default);\\n @include _mat-button-ripple-color($theme, default-contrast);\\n }\\n\\n .mat-stroked-button, .mat-flat-button {\\n @include _mat-theme-overridable-elevation(0, $theme);\\n }\\n\\n .mat-raised-button {\\n @include _mat-theme-overridable-elevation(2, $theme);\\n\\n &:not([disabled]):active {\\n @include _mat-theme-overridable-elevation(8, $theme);\\n }\\n\\n &[disabled] {\\n @include _mat-theme-overridable-elevation(0, $theme);\\n }\\n }\\n\\n .mat-fab, .mat-mini-fab {\\n @include _mat-theme-overridable-elevation(6, $theme);\\n\\n &:not([disabled]):active {\\n @include _mat-theme-overridable-elevation(12, $theme);\\n }\\n\\n &[disabled] {\\n @include _mat-theme-overridable-elevation(0, $theme);\\n }\\n }\\n}\\n\\n@mixin mat-button-typography($config) {\\n .mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,\\n .mat-flat-button, .mat-fab, .mat-mini-fab {\\n font: {\\n family: mat-font-family($config, button);\\n size: mat-font-size($config, button);\\n weight: mat-font-weight($config, button);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-button-toggle-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n $divider-color: mat-color($foreground, divider);\\n\\n .mat-button-toggle-standalone,\\n .mat-button-toggle-group {\\n @include _mat-theme-elevation(2, $theme);\\n }\\n\\n .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n .mat-button-toggle-group-appearance-standard {\\n box-shadow: none;\\n }\\n\\n .mat-button-toggle {\\n color: mat-color($foreground, hint-text);\\n\\n .mat-button-toggle-focus-overlay {\\n background-color: mat-color($background, focused-button);\\n }\\n }\\n\\n .mat-button-toggle-appearance-standard {\\n color: mat-color($foreground, text);\\n background: mat-color($background, card);\\n\\n .mat-button-toggle-focus-overlay {\\n background-color: mat-color($background, focused-button, 1);\\n }\\n }\\n\\n .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: solid 1px $divider-color;\\n }\\n\\n [dir='rtl'] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: solid 1px $divider-color;\\n }\\n\\n .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical {\\n .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: none;\\n border-top: solid 1px $divider-color;\\n }\\n }\\n\\n .mat-button-toggle-checked {\\n background-color: mat-color($background, selected-button);\\n color: mat-color($foreground, secondary-text);\\n\\n &.mat-button-toggle-appearance-standard {\\n color: mat-color($foreground, text);\\n }\\n }\\n\\n .mat-button-toggle-disabled {\\n color: mat-color($foreground, disabled-button);\\n background-color: mat-color($background, disabled-button-toggle);\\n\\n &.mat-button-toggle-appearance-standard {\\n background: mat-color($background, card);\\n }\\n\\n &.mat-button-toggle-checked {\\n background-color: mat-color($background, selected-disabled-button);\\n }\\n }\\n\\n .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n .mat-button-toggle-group-appearance-standard {\\n border: solid 1px $divider-color;\\n }\\n}\\n\\n@mixin mat-button-toggle-typography($config) {\\n .mat-button-toggle {\\n font-family: mat-font-family($config);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-card-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-card {\\n @include _mat-theme-overridable-elevation(1, $theme);\\n background: mat-color($background, card);\\n color: mat-color($foreground, text);\\n\\n // Needs extra specificity to be able to override the elevation selectors.\\n &.mat-card-flat {\\n @include _mat-theme-overridable-elevation(0, $theme);\\n }\\n }\\n\\n .mat-card-subtitle {\\n color: mat-color($foreground, secondary-text);\\n }\\n}\\n\\n@mixin mat-card-typography($config) {\\n .mat-card {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-card-title {\\n font: {\\n size: mat-font-size($config, headline);\\n weight: mat-font-weight($config, title);\\n }\\n }\\n\\n .mat-card-header .mat-card-title {\\n font-size: mat-font-size($config, title);\\n }\\n\\n .mat-card-subtitle,\\n .mat-card-content {\\n font-size: mat-font-size($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-checkbox-theme($theme) {\\n $is-dark-theme: map-get($theme, is-dark);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n\\n // The color of the checkbox's checkmark / mixedmark.\\n $checkbox-mark-color: mat-color($background, background);\\n\\n // NOTE(traviskaufman): While the spec calls for translucent blacks/whites for disabled colors,\\n // this does not work well with elements layered on top of one another. To get around this we\\n // blend the colors together based on the base color and the theme background.\\n $white-30pct-opacity-on-dark: #686868;\\n $black-26pct-opacity-on-light: #b0b0b0;\\n $disabled-color: if($is-dark-theme, $white-30pct-opacity-on-dark, $black-26pct-opacity-on-light);\\n\\n .mat-checkbox-frame {\\n border-color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-checkbox-checkmark {\\n fill: $checkbox-mark-color;\\n }\\n\\n .mat-checkbox-checkmark-path {\\n // !important is needed here because a stroke must be set as an\\n // attribute on the SVG in order for line animation to work properly.\\n stroke: $checkbox-mark-color !important;\\n }\\n\\n .mat-checkbox-mixedmark {\\n background-color: $checkbox-mark-color;\\n }\\n\\n .mat-checkbox-indeterminate, .mat-checkbox-checked {\\n &.mat-primary .mat-checkbox-background {\\n background-color: mat-color($primary);\\n }\\n\\n &.mat-accent .mat-checkbox-background {\\n background-color: mat-color($accent);\\n }\\n\\n &.mat-warn .mat-checkbox-background {\\n background-color: mat-color($warn);\\n }\\n }\\n\\n .mat-checkbox-disabled {\\n &.mat-checkbox-checked,\\n &.mat-checkbox-indeterminate {\\n .mat-checkbox-background {\\n background-color: $disabled-color;\\n }\\n }\\n\\n &:not(.mat-checkbox-checked) {\\n .mat-checkbox-frame {\\n border-color: $disabled-color;\\n }\\n }\\n\\n .mat-checkbox-label {\\n color: mat-color($foreground, secondary-text);\\n }\\n }\\n\\n // Switch this to a solid color since we're using `opacity`\\n // to control how opaque the ripple should be.\\n .mat-checkbox .mat-ripple-element {\\n background-color: map_get(map-get($theme, foreground), base);\\n }\\n\\n .mat-checkbox-checked:not(.mat-checkbox-disabled),\\n .mat-checkbox:active:not(.mat-checkbox-disabled) {\\n &.mat-primary .mat-ripple-element {\\n background: mat-color($primary);\\n }\\n\\n &.mat-accent .mat-ripple-element {\\n background: mat-color($accent);\\n }\\n\\n &.mat-warn .mat-ripple-element {\\n background: mat-color($warn);\\n }\\n }\\n}\\n\\n@mixin mat-checkbox-typography($config) {\\n .mat-checkbox {\\n font-family: mat-font-family($config);\\n }\\n\\n // TODO(kara): Remove this style when fixing vertical baseline\\n .mat-checkbox-layout .mat-checkbox-label {\\n line-height: mat-line-height($config, body-2);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n$mat-chip-remove-font-size: 18px;\\n\\n@mixin mat-chips-color($foreground, $background) {\\n background-color: $background;\\n color: $foreground;\\n\\n .mat-chip-remove {\\n color: $foreground;\\n opacity: 0.4;\\n }\\n}\\n\\n\\n// Applies the background color for a ripple element.\\n// If the color value provided is not a Sass color,\\n// we assume that we've been given a CSS variable.\\n// Since we can't perform alpha-blending on a CSS variable,\\n// we instead add the opacity directly to the ripple element.\\n@mixin _mat-chips-ripple-background($palette, $default-contrast, $opacity) {\\n $background-color: mat-color($palette, $default-contrast, $opacity);\\n background-color: $background-color;\\n @if (type-of($background-color) != color) {\\n opacity: $opacity;\\n }\\n}\\n\\n@mixin mat-chips-theme-color($palette) {\\n @include mat-chips-color(mat-color($palette, default-contrast), mat-color($palette));\\n\\n .mat-ripple-element {\\n @include _mat-chips-ripple-background($palette, default-contrast, 0.1);\\n }\\n}\\n\\n@mixin mat-chips-theme($theme) {\\n $is-dark-theme: map-get($theme, is-dark);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n $unselected-background: mat-color($background, unselected-chip);\\n $unselected-foreground: mat-color($foreground, text);\\n\\n .mat-chip.mat-standard-chip {\\n @include mat-chips-color($unselected-foreground, $unselected-background);\\n\\n &:not(.mat-chip-disabled) {\\n &:active {\\n @include _mat-theme-elevation(3, $theme);\\n }\\n\\n .mat-chip-remove:hover {\\n opacity: 0.54;\\n }\\n }\\n\\n &.mat-chip-disabled {\\n opacity: 0.4;\\n }\\n\\n &::after {\\n background: map_get($foreground, base);\\n }\\n }\\n\\n .mat-chip.mat-standard-chip.mat-chip-selected {\\n &.mat-primary {\\n @include mat-chips-theme-color($primary);\\n }\\n\\n &.mat-warn {\\n @include mat-chips-theme-color($warn);\\n }\\n\\n &.mat-accent {\\n @include mat-chips-theme-color($accent);\\n }\\n }\\n}\\n\\n@mixin mat-chips-typography($config) {\\n .mat-chip {\\n font-size: mat-font-size($config, body-2);\\n font-weight: mat-font-weight($config, body-2);\\n\\n .mat-chip-trailing-icon.mat-icon,\\n .mat-chip-remove.mat-icon {\\n font-size: $mat-chip-remove-font-size;\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-table-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-table {\\n background: mat-color($background, 'card');\\n }\\n\\n .mat-table thead, .mat-table tbody, .mat-table tfoot,\\n mat-header-row, mat-row, mat-footer-row,\\n [mat-header-row], [mat-row], [mat-footer-row],\\n .mat-table-sticky {\\n background: inherit;\\n }\\n\\n mat-row, mat-header-row, mat-footer-row,\\n th.mat-header-cell, td.mat-cell, td.mat-footer-cell {\\n border-bottom-color: mat-color($foreground, divider);\\n }\\n\\n .mat-header-cell {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-cell, .mat-footer-cell {\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-table-typography($config) {\\n .mat-table {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-header-cell {\\n font-size: mat-font-size($config, caption);\\n font-weight: mat-font-weight($config, body-2);\\n }\\n\\n .mat-cell, .mat-footer-cell {\\n font-size: mat-font-size($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n$mat-datepicker-selected-today-box-shadow-width: 1px;\\n$mat-datepicker-selected-fade-amount: 0.6;\\n$mat-datepicker-today-fade-amount: 0.2;\\n$mat-calendar-body-font-size: 13px !default;\\n$mat-calendar-weekday-table-font-size: 11px !default;\\n\\n@mixin _mat-datepicker-color($palette) {\\n .mat-calendar-body-selected {\\n background-color: mat-color($palette);\\n color: mat-color($palette, default-contrast);\\n }\\n\\n .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n $background: mat-color($palette);\\n\\n @if (type-of($background) == color) {\\n background-color: fade-out($background, $mat-datepicker-selected-fade-amount);\\n }\\n @else {\\n // If we couldn't resolve to background to a color (e.g. it's a CSS variable),\\n // fall back to fading the content out via `opacity`.\\n opacity: $mat-datepicker-today-fade-amount;\\n }\\n }\\n\\n .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 $mat-datepicker-selected-today-box-shadow-width\\n mat-color($palette, default-contrast);\\n }\\n}\\n\\n@mixin mat-datepicker-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n\\n .mat-calendar-arrow {\\n border-top-color: mat-color($foreground, icon);\\n }\\n\\n // The prev/next buttons need a bit more specificity to\\n // avoid being overwritten by the .mat-icon-button.\\n .mat-datepicker-toggle,\\n .mat-datepicker-content .mat-calendar-next-button,\\n .mat-datepicker-content .mat-calendar-previous-button {\\n color: mat-color($foreground, icon);\\n }\\n\\n .mat-calendar-table-header {\\n color: mat-color($foreground, hint-text);\\n }\\n\\n .mat-calendar-table-header-divider::after {\\n background: mat-color($foreground, divider);\\n }\\n\\n .mat-calendar-body-label {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-calendar-body-cell-content {\\n color: mat-color($foreground, text);\\n border-color: transparent;\\n }\\n\\n .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n color: mat-color($foreground, disabled-text);\\n }\\n\\n .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover,\\n .cdk-keyboard-focused .mat-calendar-body-active,\\n .cdk-program-focused .mat-calendar-body-active {\\n & > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n background-color: mat-color($background, hover);\\n }\\n }\\n\\n .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n // Note: though it's not text, the border is a hint about the fact that this is today's date,\\n // so we use the hint color.\\n border-color: mat-color($foreground, hint-text);\\n }\\n\\n .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n $color: mat-color($foreground, hint-text);\\n\\n @if (type-of($color) == color) {\\n border-color: fade-out($color, $mat-datepicker-today-fade-amount);\\n }\\n @else {\\n // If the color didn't resolve to a color value, but something like a CSS variable, we can't\\n // fade it out so we fall back to reducing the element opacity. Note that we don't use the\\n // $mat-datepicker-today-fade-amount, because hint text usually has some opacity applied\\n // to it already and we don't want them to stack on top of each other.\\n opacity: 0.5;\\n }\\n }\\n\\n @include _mat-datepicker-color(map-get($theme, primary));\\n\\n .mat-datepicker-content {\\n @include _mat-theme-elevation(4, $theme);\\n background-color: mat-color($background, card);\\n color: mat-color($foreground, text);\\n\\n &.mat-accent {\\n @include _mat-datepicker-color(map-get($theme, accent));\\n }\\n\\n &.mat-warn {\\n @include _mat-datepicker-color(map-get($theme, warn));\\n }\\n }\\n\\n .mat-datepicker-content-touch {\\n @include _mat-theme-elevation(0, $theme);\\n }\\n\\n .mat-datepicker-toggle-active {\\n color: mat-color(map-get($theme, primary), text);\\n\\n &.mat-accent {\\n color: mat-color(map-get($theme, accent), text);\\n }\\n\\n &.mat-warn {\\n color: mat-color(map-get($theme, warn), text);\\n }\\n }\\n}\\n\\n@mixin mat-datepicker-typography($config) {\\n .mat-calendar {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-calendar-body {\\n font-size: $mat-calendar-body-font-size;\\n }\\n\\n .mat-calendar-body-label,\\n .mat-calendar-period-button {\\n font: {\\n size: mat-font-size($config, button);\\n weight: mat-font-weight($config, button);\\n }\\n }\\n\\n .mat-calendar-table-header th {\\n font: {\\n size: $mat-calendar-weekday-table-font-size;\\n weight: mat-font-weight($config, body-1);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-dialog-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-dialog-container {\\n @include _mat-theme-elevation(24, $theme);\\n background: mat-color($background, dialog);\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-dialog-typography($config) {\\n .mat-dialog-title {\\n @include mat-typography-level-to-styles($config, title);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-expansion-panel-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-expansion-panel {\\n @include _mat-theme-overridable-elevation(2, $theme);\\n background: mat-color($background, card);\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-action-row {\\n border-top-color: mat-color($foreground, divider);\\n }\\n\\n .mat-expansion-panel {\\n & .mat-expansion-panel-header.cdk-keyboard-focused,\\n & .mat-expansion-panel-header.cdk-program-focused,\\n &:not(.mat-expanded) .mat-expansion-panel-header:hover {\\n &:not([aria-disabled='true']) {\\n background: mat-color($background, hover);\\n }\\n }\\n }\\n\\n // Disable the hover on touch devices since it can appear like it is stuck. We can't use\\n // `@media (hover)` above, because the desktop support browser support isn't great.\\n @media (hover: none) {\\n .mat-expansion-panel:not(.mat-expanded):not([aria-disabled='true'])\\n .mat-expansion-panel-header:hover {\\n background: mat-color($background, card);\\n }\\n }\\n\\n .mat-expansion-panel-header-title {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-expansion-panel-header-description,\\n .mat-expansion-indicator::after {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-expansion-panel-header[aria-disabled='true'] {\\n color: mat-color($foreground, disabled-button);\\n\\n .mat-expansion-panel-header-title,\\n .mat-expansion-panel-header-description {\\n color: inherit;\\n }\\n }\\n}\\n\\n@mixin mat-expansion-panel-typography($config) {\\n .mat-expansion-panel-header {\\n font: {\\n family: mat-font-family($config, subheading-1);\\n size: mat-font-size($config, subheading-1);\\n weight: mat-font-weight($config, subheading-1);\\n }\\n }\\n\\n .mat-expansion-panel-content {\\n @include mat-typography-level-to-styles($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n// This mixin will ensure that lines that overflow the container will hide the overflow and\\n// truncate neatly with an ellipsis.\\n@mixin mat-truncate-line() {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n}\\n\\n// Mixin to provide all mat-line styles, changing secondary font size based on whether the list\\n// is in dense mode.\\n@mixin mat-line-base($secondary-font-size) {\\n .mat-line {\\n @include mat-truncate-line();\\n display: block;\\n box-sizing: border-box;\\n\\n // all lines but the top line should have smaller text\\n &:nth-child(n+2) {\\n font-size: $secondary-font-size;\\n }\\n }\\n}\\n\\n// This mixin normalizes default element styles, e.g. font weight for heading text.\\n@mixin mat-normalize-text() {\\n & > * {\\n margin: 0;\\n padding: 0;\\n font-weight: normal;\\n font-size: inherit;\\n }\\n}\\n\\n// This mixin provides base styles for the wrapper around mat-line elements in a list.\\n@mixin mat-line-wrapper-base() {\\n @include mat-normalize-text();\\n\\n display: flex;\\n flex-direction: column;\\n width: 100%;\\n box-sizing: border-box;\\n overflow: hidden;\\n\\n // Must remove wrapper when lines are empty or it takes up horizontal\\n // space and pushes other elements to the right.\\n &:empty {\\n display: none;\\n }\\n}\\n\\n\\n\\n// Include this empty mixin for consistency with the other components.\\n@mixin mat-grid-list-theme($theme) { }\\n\\n@mixin mat-grid-list-typography($config) {\\n .mat-grid-tile-header,\\n .mat-grid-tile-footer {\\n @include mat-line-base(mat-font-size($config, caption));\\n font-size: mat-font-size($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n// Include this empty mixin for consistency with the other components.\\n@mixin mat-icon-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-icon {\\n &.mat-primary {\\n color: mat-color($primary, text);\\n }\\n\\n &.mat-accent {\\n color: mat-color($accent, text);\\n }\\n\\n &.mat-warn {\\n color: mat-color($warn, text);\\n }\\n }\\n}\\n\\n@mixin mat-icon-typography($config) { }\\n\\n\\n\\n\\n\\n// Renders a gradient for showing the dashed line when the input is disabled.\\n// Unlike using a border, a gradient allows us to adjust the spacing of the dotted line\\n// to match the Material Design spec.\\n@mixin mat-control-disabled-underline($color) {\\n background-image: linear-gradient(to right, $color 0%, $color 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n\\n// Figures out the color of the placeholder for a form control.\\n// Used primarily to prevent the various form controls from\\n// becoming out of sync since these colors aren't in a palette.\\n@function _mat-control-placeholder-color($theme) {\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n @return mat-color($foreground, secondary-text, if($is-dark-theme, 0.5, 0.42));\\n}\\n\\n\\n/* stylelint-disable material/no-prefixes */\\n@mixin user-select($value) {\\n -webkit-user-select: $value;\\n -moz-user-select: $value;\\n -ms-user-select: $value;\\n user-select: $value;\\n}\\n\\n@mixin input-placeholder {\\n &::placeholder {\\n @content;\\n }\\n\\n &::-moz-placeholder {\\n @content;\\n }\\n\\n &::-webkit-input-placeholder {\\n @content;\\n }\\n\\n &:-ms-input-placeholder {\\n @content;\\n }\\n}\\n\\n@mixin cursor-grab {\\n cursor: -webkit-grab;\\n cursor: grab;\\n}\\n\\n@mixin cursor-grabbing {\\n cursor: -webkit-grabbing;\\n cursor: grabbing;\\n}\\n\\n@mixin backface-visibility($value) {\\n -webkit-backface-visibility: $value;\\n backface-visibility: $value;\\n}\\n/* stylelint-enable */\\n\\n\\n\\n@mixin mat-input-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-form-field-type-mat-native-select .mat-form-field-infix::after {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-input-element:disabled,\\n .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {\\n color: mat-color($foreground, disabled-text);\\n }\\n\\n .mat-input-element {\\n caret-color: mat-color($primary, text);\\n\\n @include input-placeholder {\\n color: _mat-control-placeholder-color($theme);\\n }\\n\\n // On dark themes we set the native `select` color to some shade of white,\\n // however the color propagates to all of the `option` elements, which are\\n // always on a white background inside the dropdown, causing them to blend in.\\n // Since we can't change background of the dropdown, we need to explicitly\\n // reset the color of the options to something dark.\\n @if (map-get($theme, is-dark)) {\\n option {\\n color: $dark-primary-text;\\n }\\n\\n option:disabled {\\n color: $dark-disabled-text;\\n }\\n }\\n }\\n\\n .mat-accent .mat-input-element {\\n caret-color: mat-color($accent, text);\\n }\\n\\n .mat-warn .mat-input-element,\\n .mat-form-field-invalid .mat-input-element {\\n caret-color: mat-color($warn, text);\\n }\\n\\n .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {\\n color: mat-color($warn, text);\\n }\\n}\\n\\n@mixin mat-input-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n\\n // The amount of space between the top of the line and the top of the actual text\\n // (as a fraction of the font-size).\\n $line-spacing: ($line-height - 1) / 2;\\n\\n //
elements seem to have their height set slightly too large on Safari causing the text to\\n // be misaligned w.r.t. the placeholder. Adding this margin corrects it.\\n input.mat-input-element {\\n margin-top: -$line-spacing * 1em;\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-list-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-list-base {\\n .mat-list-item {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-list-option {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-subheader {\\n color: mat-color($foreground, secondary-text);\\n }\\n }\\n\\n .mat-list-item-disabled {\\n background-color: mat-color($background, disabled-list-option);\\n }\\n\\n .mat-list-option,\\n .mat-nav-list .mat-list-item,\\n .mat-action-list .mat-list-item {\\n &:hover, &:focus {\\n background: mat-color($background, 'hover');\\n }\\n }\\n\\n .mat-list-single-selected-option {\\n &, &:hover, &:focus {\\n background: mat-color($background, hover, 0.12);\\n }\\n }\\n}\\n\\n@mixin mat-list-typography($config) {\\n $font-family: mat-font-family($config);\\n\\n .mat-list-item {\\n font-family: $font-family;\\n }\\n\\n .mat-list-option {\\n font-family: $font-family;\\n }\\n\\n // Default list\\n .mat-list-base {\\n .mat-list-item {\\n font-size: mat-font-size($config, subheading-2);\\n @include mat-line-base(mat-font-size($config, body-1));\\n }\\n\\n .mat-list-option {\\n font-size: mat-font-size($config, subheading-2);\\n @include mat-line-base(mat-font-size($config, body-1));\\n }\\n\\n .mat-subheader {\\n font-family: mat-font-family($config, body-2);\\n font-size: mat-font-size($config, body-2);\\n font-weight: mat-font-weight($config, body-2);\\n }\\n }\\n\\n // Dense list\\n .mat-list-base[dense] {\\n .mat-list-item {\\n font-size: mat-font-size($config, caption);\\n @include mat-line-base(mat-font-size($config, caption));\\n }\\n\\n .mat-list-option {\\n font-size: mat-font-size($config, caption);\\n @include mat-line-base(mat-font-size($config, caption));\\n }\\n\\n .mat-subheader {\\n font-family: $font-family;\\n font-size: mat-font-size($config, caption);\\n font-weight: mat-font-weight($config, body-2);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-menu-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-menu-panel {\\n @include _mat-theme-overridable-elevation(4, $theme);\\n background: mat-color($background, 'card');\\n }\\n\\n .mat-menu-item {\\n background: transparent;\\n color: mat-color($foreground, 'text');\\n\\n &[disabled] {\\n &, &::after {\\n color: mat-color($foreground, 'disabled');\\n }\\n }\\n }\\n\\n .mat-menu-item .mat-icon-no-color,\\n .mat-menu-item-submenu-trigger::after {\\n color: mat-color($foreground, 'icon');\\n }\\n\\n .mat-menu-item:hover,\\n .mat-menu-item.cdk-program-focused,\\n .mat-menu-item.cdk-keyboard-focused,\\n .mat-menu-item-highlighted {\\n &:not([disabled]) {\\n background: mat-color($background, 'hover');\\n }\\n }\\n}\\n\\n@mixin mat-menu-typography($config) {\\n .mat-menu-item {\\n font: {\\n family: mat-font-family($config, body-1);\\n size: mat-font-size($config, body-1);\\n weight: mat-font-weight($config, body-1);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-paginator-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n\\n .mat-paginator {\\n background: mat-color($background, 'card');\\n }\\n\\n .mat-paginator,\\n .mat-paginator-page-size .mat-select-trigger {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-paginator-decrement,\\n .mat-paginator-increment {\\n border-top: 2px solid mat-color($foreground, 'icon');\\n border-right: 2px solid mat-color($foreground, 'icon');\\n }\\n\\n .mat-paginator-first,\\n .mat-paginator-last {\\n border-top: 2px solid mat-color($foreground, 'icon');\\n }\\n\\n .mat-icon-button[disabled] {\\n .mat-paginator-decrement,\\n .mat-paginator-increment,\\n .mat-paginator-first,\\n .mat-paginator-last {\\n border-color: mat-color($foreground, 'disabled');\\n }\\n }\\n}\\n\\n@mixin mat-paginator-typography($config) {\\n .mat-paginator,\\n .mat-paginator-page-size .mat-select-trigger {\\n font: {\\n family: mat-font-family($config, caption);\\n size: mat-font-size($config, caption);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-progress-bar-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n .mat-progress-bar-background {\\n fill: mat-color($primary, lighter);\\n }\\n\\n .mat-progress-bar-buffer {\\n background-color: mat-color($primary, lighter);\\n }\\n\\n .mat-progress-bar-fill::after {\\n background-color: mat-color($primary);\\n }\\n\\n .mat-progress-bar.mat-accent {\\n .mat-progress-bar-background {\\n fill: mat-color($accent, lighter);\\n }\\n\\n .mat-progress-bar-buffer {\\n background-color: mat-color($accent, lighter);\\n }\\n\\n .mat-progress-bar-fill::after {\\n background-color: mat-color($accent);\\n }\\n }\\n\\n .mat-progress-bar.mat-warn {\\n .mat-progress-bar-background {\\n fill: mat-color($warn, lighter);\\n }\\n\\n .mat-progress-bar-buffer {\\n background-color: mat-color($warn, lighter);\\n }\\n\\n .mat-progress-bar-fill::after {\\n background-color: mat-color($warn);\\n }\\n }\\n}\\n\\n@mixin mat-progress-bar-typography($config) { }\\n\\n\\n\\n\\n\\n\\n@mixin mat-progress-spinner-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n .mat-progress-spinner, .mat-spinner {\\n circle {\\n stroke: mat-color($primary);\\n }\\n\\n &.mat-accent circle {\\n stroke: mat-color($accent);\\n }\\n\\n &.mat-warn circle {\\n stroke: mat-color($warn);\\n }\\n }\\n}\\n\\n@mixin mat-progress-spinner-typography($config) { }\\n\\n\\n\\n\\n\\n@mixin _mat-radio-color($palette) {\\n &.mat-radio-checked .mat-radio-outer-circle {\\n border-color: mat-color($palette);\\n }\\n\\n .mat-radio-inner-circle,\\n .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),\\n &.mat-radio-checked .mat-radio-persistent-ripple,\\n &:active .mat-radio-persistent-ripple {\\n background-color: mat-color($palette);\\n }\\n}\\n\\n@mixin mat-radio-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-radio-outer-circle {\\n border-color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-radio-button {\\n &.mat-primary {\\n @include _mat-radio-color($primary);\\n }\\n\\n &.mat-accent {\\n @include _mat-radio-color($accent);\\n }\\n\\n &.mat-warn {\\n @include _mat-radio-color($warn);\\n }\\n\\n // This needs extra specificity, because the classes above are combined\\n // (e.g. `.mat-radio-button.mat-accent`) which increases their specificity a lot.\\n // TODO: consider making the selectors into descendants (`.mat-primary .mat-radio-button`).\\n &.mat-radio-disabled {\\n &.mat-radio-checked .mat-radio-outer-circle,\\n .mat-radio-outer-circle {\\n border-color: mat-color($foreground, disabled);\\n }\\n\\n .mat-radio-ripple .mat-ripple-element,\\n .mat-radio-inner-circle {\\n background-color: mat-color($foreground, disabled);\\n }\\n\\n .mat-radio-label-content {\\n color: mat-color($foreground, disabled);\\n }\\n }\\n\\n // Switch this to a solid color since we're using `opacity`\\n // to control how opaque the ripple should be.\\n .mat-ripple-element {\\n background-color: map_get($foreground, base);\\n }\\n }\\n}\\n\\n@mixin mat-radio-typography($config) {\\n .mat-radio-button {\\n font-family: mat-font-family($config);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-select-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n .mat-select-value {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-select-placeholder {\\n color: _mat-control-placeholder-color($theme);\\n }\\n\\n .mat-select-disabled .mat-select-value {\\n color: mat-color($foreground, disabled-text);\\n }\\n\\n .mat-select-arrow {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-select-panel {\\n background: mat-color($background, card);\\n @include _mat-theme-overridable-elevation(4, $theme);\\n\\n .mat-option.mat-selected:not(.mat-option-multiple) {\\n background: mat-color($background, hover, 0.12);\\n }\\n }\\n\\n .mat-form-field {\\n &.mat-focused {\\n &.mat-primary .mat-select-arrow {\\n color: mat-color($primary, text);\\n }\\n\\n &.mat-accent .mat-select-arrow {\\n color: mat-color($accent, text);\\n }\\n\\n &.mat-warn .mat-select-arrow {\\n color: mat-color($warn, text);\\n }\\n }\\n\\n .mat-select.mat-select-invalid .mat-select-arrow {\\n color: mat-color($warn, text);\\n }\\n\\n .mat-select.mat-select-disabled .mat-select-arrow {\\n color: mat-color($foreground, disabled-text);\\n }\\n }\\n}\\n\\n@mixin mat-select-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n\\n .mat-select {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-select-trigger {\\n height: $line-height * 1em;\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-sidenav-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n $drawer-background-color: mat-color($background, dialog);\\n $drawer-container-background-color: mat-color($background, background);\\n $drawer-push-background-color: mat-color($background, dialog);\\n $drawer-side-border: solid 1px mat-color($foreground, divider);\\n\\n .mat-drawer-container {\\n background-color: $drawer-container-background-color;\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-drawer {\\n background-color: $drawer-background-color;\\n color: mat-color($foreground, text);\\n\\n &.mat-drawer-push {\\n background-color: $drawer-push-background-color;\\n }\\n\\n &:not(.mat-drawer-side) {\\n // The elevation of z-16 is noted in the design specifications.\\n // See https://material.io/design/components/navigation-drawer.html\\n @include _mat-theme-elevation(16, $theme);\\n }\\n }\\n\\n .mat-drawer-side {\\n border-right: $drawer-side-border;\\n\\n &.mat-drawer-end {\\n border-left: $drawer-side-border;\\n border-right: none;\\n }\\n }\\n\\n [dir='rtl'] .mat-drawer-side {\\n border-left: $drawer-side-border;\\n border-right: none;\\n\\n &.mat-drawer-end {\\n border-left: none;\\n border-right: $drawer-side-border;\\n }\\n }\\n\\n .mat-drawer-backdrop.mat-drawer-shown {\\n $opacity: 0.6;\\n $backdrop-color: mat-color($background, card, $opacity);\\n\\n @if (type-of($backdrop-color) == color) {\\n // We use invert() here to have the darken the background color expected to be used. If the\\n // background is light, we use a dark backdrop. If the background is dark,\\n // we use a light backdrop.\\n background-color: invert($backdrop-color);\\n }\\n @else {\\n // If we couldn't resolve the backdrop color to a color value, fall back to using\\n // `opacity` to make it opaque since its end value could be a solid color.\\n background-color: $backdrop-color;\\n opacity: $opacity;\\n }\\n }\\n}\\n\\n@mixin mat-sidenav-typography($config) { }\\n\\n\\n\\n\\n\\n\\n@mixin _mat-slide-toggle-checked($palette, $thumb-checked-hue) {\\n &.mat-checked {\\n .mat-slide-toggle-thumb {\\n background-color: mat-color($palette, $thumb-checked-hue);\\n }\\n\\n .mat-slide-toggle-bar {\\n // Opacity is determined from the specs for the selection controls.\\n // See: https://material.io/design/components/selection-controls.html#specs\\n background-color: mat-color($palette, $thumb-checked-hue, 0.54);\\n }\\n\\n .mat-ripple-element {\\n // Set no opacity for the ripples because the ripple opacity will be adjusted dynamically\\n // based on the type of interaction with the slide-toggle (e.g. for hover, focus)\\n background-color: mat-color($palette, $thumb-checked-hue);\\n }\\n }\\n}\\n\\n@mixin mat-slide-toggle-theme($theme) {\\n $is-dark: map_get($theme, is-dark);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n // Color hues are based on the specs which briefly show the hues that are applied to a switch.\\n // The 2018 specs no longer describe how dark switches should look like. Due to the lack of\\n // information for dark themed switches, we partially keep the old behavior that is based on\\n // the previous specifications. For the checked color we always use the `default` hue because\\n // that follows MDC and also makes it easier for people to create a custom theme without needing\\n // to specify each hue individually.\\n $thumb-unchecked-hue: if($is-dark, 400, 50);\\n $thumb-checked-hue: default;\\n\\n $bar-unchecked-color: mat-color($foreground, disabled);\\n $ripple-unchecked-color: mat-color($foreground, base);\\n\\n .mat-slide-toggle {\\n @include _mat-slide-toggle-checked($accent, $thumb-checked-hue);\\n\\n &.mat-primary {\\n @include _mat-slide-toggle-checked($primary, $thumb-checked-hue);\\n }\\n\\n &.mat-warn {\\n @include _mat-slide-toggle-checked($warn, $thumb-checked-hue);\\n }\\n\\n &:not(.mat-checked) .mat-ripple-element {\\n // Set no opacity for the ripples because the ripple opacity will be adjusted dynamically\\n // based on the type of interaction with the slide-toggle (e.g. for hover, focus)\\n background-color: $ripple-unchecked-color;\\n }\\n }\\n\\n .mat-slide-toggle-thumb {\\n @include _mat-theme-elevation(1, $theme);\\n background-color: mat-color($mat-grey, $thumb-unchecked-hue);\\n }\\n\\n .mat-slide-toggle-bar {\\n background-color: $bar-unchecked-color;\\n }\\n}\\n\\n@mixin mat-slide-toggle-typography($config) {\\n .mat-slide-toggle-content {\\n font-family: mat-font-family($config);\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin _mat-slider-inner-content-theme($palette) {\\n .mat-slider-track-fill,\\n .mat-slider-thumb,\\n .mat-slider-thumb-label {\\n background-color: mat-color($palette);\\n }\\n\\n .mat-slider-thumb-label-text {\\n color: mat-color($palette, default-contrast);\\n }\\n}\\n\\n@mixin mat-slider-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n $mat-slider-off-color: mat-color($foreground, slider-off);\\n $mat-slider-off-focused-color: mat-color($foreground, slider-off-active);\\n $mat-slider-disabled-color: mat-color($foreground, slider-off);\\n $mat-slider-labeled-min-value-thumb-color: mat-color($foreground, slider-min);\\n $mat-slider-labeled-min-value-thumb-label-color: mat-color($foreground, slider-off);\\n $mat-slider-tick-opacity: 0.7;\\n $mat-slider-tick-color: mat-color($foreground, base, $mat-slider-tick-opacity);\\n $mat-slider-tick-size: 2px;\\n\\n .mat-slider-track-background {\\n background-color: $mat-slider-off-color;\\n }\\n\\n .mat-primary {\\n @include _mat-slider-inner-content-theme($primary);\\n }\\n\\n .mat-accent {\\n @include _mat-slider-inner-content-theme($accent);\\n }\\n\\n .mat-warn {\\n @include _mat-slider-inner-content-theme($warn);\\n }\\n\\n .mat-slider-focus-ring {\\n $opacity: 0.2;\\n $color: mat-color($accent, default, $opacity);\\n background-color: $color;\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($color) != color) {\\n opacity: $opacity;\\n }\\n }\\n\\n .mat-slider:hover,\\n .cdk-focused {\\n .mat-slider-track-background {\\n background-color: $mat-slider-off-focused-color;\\n }\\n }\\n\\n .mat-slider-disabled {\\n .mat-slider-track-background,\\n .mat-slider-track-fill,\\n .mat-slider-thumb {\\n background-color: $mat-slider-disabled-color;\\n }\\n\\n &:hover {\\n .mat-slider-track-background {\\n background-color: $mat-slider-disabled-color;\\n }\\n }\\n }\\n\\n .mat-slider-min-value {\\n .mat-slider-focus-ring {\\n $opacity: 0.12;\\n $color: mat-color($foreground, base, $opacity);\\n background-color: $color;\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($color) != color) {\\n opacity: $opacity;\\n }\\n }\\n\\n &.mat-slider-thumb-label-showing {\\n .mat-slider-thumb,\\n .mat-slider-thumb-label {\\n background-color: $mat-slider-labeled-min-value-thumb-color;\\n }\\n\\n &.cdk-focused {\\n .mat-slider-thumb,\\n .mat-slider-thumb-label {\\n background-color: $mat-slider-labeled-min-value-thumb-label-color;\\n }\\n }\\n }\\n\\n &:not(.mat-slider-thumb-label-showing) {\\n .mat-slider-thumb {\\n border-color: $mat-slider-off-color;\\n background-color: transparent;\\n }\\n\\n &:hover,\\n &.cdk-focused {\\n .mat-slider-thumb {\\n border-color: $mat-slider-off-focused-color;\\n }\\n\\n &.mat-slider-disabled .mat-slider-thumb {\\n border-color: $mat-slider-disabled-color;\\n }\\n }\\n }\\n }\\n\\n .mat-slider-has-ticks .mat-slider-wrapper::after {\\n border-color: $mat-slider-tick-color;\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($mat-slider-tick-color) != color) {\\n opacity: $mat-slider-tick-opacity;\\n }\\n }\\n\\n .mat-slider-horizontal .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to right, $mat-slider-tick-color,\\n $mat-slider-tick-color $mat-slider-tick-size, transparent 0, transparent);\\n // Firefox doesn't draw the gradient correctly with 'to right'\\n // (see https://bugzilla.mozilla.org/show_bug.cgi?id=1314319).\\n background-image: -moz-repeating-linear-gradient(0.0001deg, $mat-slider-tick-color,\\n $mat-slider-tick-color $mat-slider-tick-size, transparent 0, transparent);\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($mat-slider-tick-color) != color) {\\n opacity: $mat-slider-tick-opacity;\\n }\\n }\\n\\n .mat-slider-vertical .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to bottom, $mat-slider-tick-color,\\n $mat-slider-tick-color $mat-slider-tick-size, transparent 0, transparent);\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($mat-slider-tick-color) != color) {\\n opacity: $mat-slider-tick-opacity;\\n }\\n }\\n}\\n\\n@mixin mat-slider-typography($config) {\\n .mat-slider-thumb-label-text {\\n font: {\\n family: mat-font-family($config);\\n size: mat-font-size($config, caption);\\n weight: mat-font-weight($config, body-2);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-stepper-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n $primary: map-get($theme, primary);\\n $warn: map-get($theme, warn);\\n\\n .mat-step-header {\\n &.cdk-keyboard-focused,\\n &.cdk-program-focused,\\n &:hover {\\n background-color: mat-color($background, hover);\\n }\\n\\n // On touch devices the :hover state will linger on the element after a tap.\\n // Reset it via `@media` after the declaration, because the media query isn't\\n // supported by all browsers yet.\\n @media (hover: none) {\\n &:hover {\\n background: none;\\n }\\n }\\n\\n .mat-step-label,\\n .mat-step-optional {\\n // TODO(josephperrott): Update to using a corrected disabled-text contrast\\n // instead of secondary-text.\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-step-icon {\\n // TODO(josephperrott): Update to using a corrected disabled-text contrast\\n // instead of secondary-text.\\n background-color: mat-color($foreground, secondary-text);\\n color: mat-color($primary, default-contrast);\\n }\\n\\n .mat-step-icon-selected,\\n .mat-step-icon-state-done,\\n .mat-step-icon-state-edit {\\n background-color: mat-color($primary);\\n color: mat-color($primary, default-contrast);\\n }\\n\\n .mat-step-icon-state-error {\\n background-color: transparent;\\n color: mat-color($warn, text);\\n }\\n\\n .mat-step-label.mat-step-label-active {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-step-label.mat-step-label-error {\\n color: mat-color($warn, text);\\n }\\n }\\n\\n .mat-stepper-horizontal, .mat-stepper-vertical {\\n background-color: mat-color($background, card);\\n }\\n\\n .mat-stepper-vertical-line::before {\\n border-left-color: mat-color($foreground, divider);\\n }\\n\\n .mat-horizontal-stepper-header::before,\\n .mat-horizontal-stepper-header::after,\\n .mat-stepper-horizontal-line {\\n border-top-color: mat-color($foreground, divider);\\n }\\n}\\n\\n@mixin mat-stepper-typography($config) {\\n .mat-stepper-vertical, .mat-stepper-horizontal {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-step-label {\\n font: {\\n size: mat-font-size($config, body-1);\\n weight: mat-font-weight($config, body-1);\\n };\\n }\\n\\n .mat-step-sub-label-error {\\n font-weight: normal;\\n }\\n\\n .mat-step-label-error {\\n font-size: mat-font-size($config, body-2);\\n }\\n\\n .mat-step-label-selected {\\n font: {\\n size: mat-font-size($config, body-2);\\n weight: mat-font-weight($config, body-2);\\n };\\n }\\n}\\n\\n@mixin mat-sort-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-sort-header-arrow {\\n $table-background: mat-color($background, 'card');\\n $text-color: mat-color($foreground, secondary-text);\\n\\n // Because the arrow is made up of multiple elements that are stacked on top of each other,\\n // we can't use the semi-trasparent color from the theme directly. If the value is a color\\n // *type*, we convert it into a solid color by taking the opacity from the rgba value and\\n // using the value to determine the percentage of the background to put into foreground\\n // when mixing the colors together. Otherwise, if it resolves to something different\\n // (e.g. it resolves to a CSS variable), we use the color directly.\\n @if (type-of($table-background) == color and type-of($text-color) == color) {\\n $text-opacity: opacity($text-color);\\n color: mix($table-background, rgba($text-color, 1), (1 - $text-opacity) * 100%);\\n }\\n @else {\\n color: $text-color;\\n }\\n }\\n}\\n\\n@mixin mat-sort-typography($config) { }\\n\\n\\n\\n\\n\\n@mixin mat-tabs-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n $header-border: 1px solid mat-color($foreground, divider);\\n\\n .mat-tab-nav-bar,\\n .mat-tab-header {\\n border-bottom: $header-border;\\n }\\n\\n .mat-tab-group-inverted-header {\\n .mat-tab-nav-bar,\\n .mat-tab-header {\\n border-top: $header-border;\\n border-bottom: none;\\n }\\n }\\n\\n .mat-tab-label, .mat-tab-link {\\n color: mat-color($foreground, text);\\n\\n &.mat-tab-disabled {\\n color: mat-color($foreground, disabled-text);\\n }\\n }\\n\\n .mat-tab-header-pagination-chevron {\\n border-color: mat-color($foreground, text);\\n }\\n\\n .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: mat-color($foreground, disabled-text);\\n }\\n\\n // Remove header border when there is a background color\\n .mat-tab-group[class*='mat-background-'] .mat-tab-header,\\n .mat-tab-nav-bar[class*='mat-background-'] {\\n border-bottom: none;\\n border-top: none;\\n }\\n\\n .mat-tab-group, .mat-tab-nav-bar {\\n $theme-colors: (\\n primary: $primary,\\n accent: $accent,\\n warn: $warn\\n );\\n\\n @each $name, $color in $theme-colors {\\n // Set the foreground color of the tabs\\n &.mat-#{$name} {\\n @include _mat-tab-label-focus($color);\\n @include _mat-ink-bar($color);\\n\\n // Override ink bar when background color is the same\\n &.mat-background-#{$name} {\\n @include _mat-ink-bar($color, default-contrast);\\n }\\n }\\n }\\n\\n @each $name, $color in $theme-colors {\\n // Set background color of the tabs and override focus color\\n &.mat-background-#{$name} {\\n @include _mat-tab-label-focus($color);\\n @include _mat-tabs-background($color);\\n }\\n }\\n }\\n}\\n\\n@mixin _mat-ink-bar($color, $hue: default) {\\n .mat-ink-bar {\\n background-color: mat-color($color, $hue);\\n }\\n}\\n\\n@mixin _mat-tab-label-focus($tab-focus-color) {\\n .mat-tab-label,\\n .mat-tab-link {\\n &.cdk-keyboard-focused,\\n &.cdk-program-focused {\\n &:not(.mat-tab-disabled) {\\n background-color: mat-color($tab-focus-color, lighter, 0.3);\\n }\\n }\\n }\\n}\\n\\n@mixin _mat-tabs-background($background-color) {\\n // Set background color for the tab group\\n .mat-tab-header, .mat-tab-links, .mat-tab-header-pagination {\\n background-color: mat-color($background-color);\\n }\\n\\n // Set labels to contrast against background\\n .mat-tab-label, .mat-tab-link {\\n color: mat-color($background-color, default-contrast);\\n\\n &.mat-tab-disabled {\\n color: mat-color($background-color, default-contrast, 0.4);\\n }\\n }\\n\\n // Set pagination chevrons to contrast background\\n .mat-tab-header-pagination-chevron {\\n border-color: mat-color($background-color, default-contrast);\\n }\\n\\n .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: mat-color($background-color, default-contrast, 0.4);\\n }\\n\\n // Set ripples color to be the contrast color of the new background. Otherwise the ripple\\n // color will be based on the app background color.\\n .mat-ripple-element {\\n background-color: mat-color($background-color, default-contrast, 0.12);\\n }\\n}\\n\\n@mixin mat-tabs-typography($config) {\\n .mat-tab-group {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-tab-label, .mat-tab-link {\\n font: {\\n family: mat-font-family($config, button);\\n size: mat-font-size($config, button);\\n weight: mat-font-weight($config, button);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin _mat-toolbar-color($palette) {\\n background: mat-color($palette);\\n color: mat-color($palette, default-contrast);\\n}\\n\\n@mixin _mat-toolbar-form-field-overrides {\\n .mat-form-field-underline,\\n .mat-form-field-ripple,\\n .mat-focused .mat-form-field-ripple {\\n background-color: currentColor;\\n }\\n\\n .mat-form-field-label,\\n .mat-focused .mat-form-field-label,\\n .mat-select-value,\\n .mat-select-arrow,\\n .mat-form-field.mat-focused .mat-select-arrow {\\n color: inherit;\\n }\\n\\n .mat-input-element {\\n caret-color: currentColor;\\n }\\n}\\n\\n@mixin mat-toolbar-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-toolbar {\\n background: mat-color($background, app-bar);\\n color: mat-color($foreground, text);\\n\\n &.mat-primary {\\n @include _mat-toolbar-color($primary);\\n }\\n\\n &.mat-accent {\\n @include _mat-toolbar-color($accent);\\n }\\n\\n &.mat-warn {\\n @include _mat-toolbar-color($warn);\\n }\\n\\n @include _mat-toolbar-form-field-overrides;\\n }\\n}\\n\\n@mixin mat-toolbar-typography($config) {\\n .mat-toolbar,\\n .mat-toolbar h1,\\n .mat-toolbar h2,\\n .mat-toolbar h3,\\n .mat-toolbar h4,\\n .mat-toolbar h5,\\n .mat-toolbar h6 {\\n @include mat-typography-level-to-styles($config, title);\\n margin: 0;\\n }\\n}\\n\\n\\n\\n\\n\\n$mat-tooltip-target-height: 22px;\\n$mat-tooltip-font-size: 10px;\\n$mat-tooltip-vertical-padding: ($mat-tooltip-target-height - $mat-tooltip-font-size) / 2;\\n\\n$mat-tooltip-handset-target-height: 30px;\\n$mat-tooltip-handset-font-size: 14px;\\n$mat-tooltip-handset-vertical-padding:\\n ($mat-tooltip-handset-target-height - $mat-tooltip-handset-font-size) / 2;\\n\\n@mixin mat-tooltip-theme($theme) {\\n $background: map-get($theme, background);\\n\\n .mat-tooltip {\\n background: mat-color($background, tooltip, 0.9);\\n }\\n}\\n\\n@mixin mat-tooltip-typography($config) {\\n .mat-tooltip {\\n font-family: mat-font-family($config);\\n font-size: $mat-tooltip-font-size;\\n padding-top: $mat-tooltip-vertical-padding;\\n padding-bottom: $mat-tooltip-vertical-padding;\\n }\\n\\n .mat-tooltip-handset {\\n font-size: $mat-tooltip-handset-font-size;\\n padding-top: $mat-tooltip-handset-vertical-padding;\\n padding-bottom: $mat-tooltip-handset-vertical-padding;\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-snack-bar-theme($theme) {\\n $is-dark-theme: map-get($theme, is-dark);\\n $accent: map-get($theme, accent);\\n\\n .mat-snack-bar-container {\\n // Use the primary text on the dark theme, even though the lighter one uses\\n // a secondary, because the contrast on the light primary text is poor.\\n color: if($is-dark-theme, $dark-primary-text, $light-secondary-text);\\n background: if($is-dark-theme, map-get($mat-grey, 50), #323232);\\n\\n @include _mat-theme-elevation(6, $theme);\\n }\\n\\n .mat-simple-snackbar-action {\\n color: if($is-dark-theme, inherit, mat-color($accent, text));\\n }\\n}\\n\\n@mixin mat-snack-bar-typography($config) {\\n .mat-simple-snackbar {\\n font: {\\n family: mat-font-family($config, body-1);\\n size: mat-font-size($config, body-1);\\n }\\n }\\n\\n .mat-simple-snackbar-action {\\n line-height: 1;\\n font: {\\n family: inherit;\\n size: inherit;\\n weight: mat-font-weight($config, button);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n// Theme styles that only apply to the fill appearance of the form-field.\\n\\n@mixin mat-form-field-fill-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n $fill-background: mat-color($foreground, base, if($is-dark-theme, 0.1, 0.04));\\n $fill-disabled-background: mat-color($foreground, base, if($is-dark-theme, 0.05, 0.02));\\n $underline-color: mat-color($foreground, divider, if($is-dark-theme, 0.5, 0.42));\\n $label-disabled-color: mat-color($foreground, disabled-text);\\n\\n .mat-form-field-appearance-fill {\\n .mat-form-field-flex {\\n background-color: $fill-background;\\n }\\n\\n &.mat-form-field-disabled .mat-form-field-flex {\\n background-color: $fill-disabled-background;\\n }\\n\\n .mat-form-field-underline::before {\\n background-color: $underline-color;\\n }\\n\\n &.mat-form-field-disabled {\\n .mat-form-field-label {\\n color: $label-disabled-color;\\n }\\n\\n .mat-form-field-underline::before {\\n background-color: transparent;\\n }\\n }\\n }\\n}\\n\\n// Used to make instances of the _mat-form-field-label-floating mixin negligibly different,\\n// and prevent Google's CSS Optimizer from collapsing the declarations. This is needed because some\\n// of the selectors contain pseudo-classes not recognized in all browsers. If a browser encounters\\n// an unknown pseudo-class it will discard the entire rule set.\\n$mat-form-field-fill-dedupe: 0;\\n\\n// Applies a floating label above the form field control itself.\\n@mixin _mat-form-field-fill-label-floating($font-scale, $infix-padding, $infix-margin-top) {\\n transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-fill-dedupe)\\n scale($font-scale);\\n width: 100% / $font-scale + $mat-form-field-fill-dedupe;\\n\\n $mat-form-field-fill-dedupe: $mat-form-field-fill-dedupe + 0.00001 !global;\\n}\\n\\n@mixin mat-form-field-fill-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n // The amount to scale the font for the floating label and subscript.\\n $subscript-font-scale: 0.75;\\n // The padding on top of the infix.\\n $infix-padding-top: 0.25em;\\n // The padding below the infix.\\n $infix-padding-bottom: 0.75em;\\n // The margin applied to the form-field-infix to reserve space for the floating label.\\n $infix-margin-top: 1em * $line-height * $subscript-font-scale;\\n // The amount we offset the label from the input text in the fill appearance.\\n $fill-appearance-label-offset: -0.5em;\\n\\n .mat-form-field-appearance-fill {\\n .mat-form-field-infix {\\n padding: $infix-padding-top 0 $infix-padding-bottom 0;\\n }\\n\\n .mat-form-field-label {\\n top: $infix-margin-top + $infix-padding-top;\\n margin-top: $fill-appearance-label-offset;\\n }\\n\\n &.mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-fill-label-floating(\\n $subscript-font-scale, $infix-padding-top + $fill-appearance-label-offset,\\n $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-fill-label-floating(\\n $subscript-font-scale, $infix-padding-top + $fill-appearance-label-offset,\\n $infix-margin-top);\\n }\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n// Theme styles that only apply to the legacy appearance of the form-field.\\n\\n@mixin mat-form-field-legacy-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n $label-color: mat-color($foreground, secondary-text);\\n $underline-color: mat-color($foreground, divider, if($is-dark-theme, 0.7, 0.42));\\n\\n .mat-form-field-appearance-legacy {\\n .mat-form-field-label {\\n color: $label-color;\\n }\\n\\n .mat-hint {\\n color: $label-color;\\n }\\n\\n .mat-form-field-underline {\\n background-color: $underline-color;\\n }\\n\\n &.mat-form-field-disabled .mat-form-field-underline {\\n @include mat-control-disabled-underline($underline-color);\\n }\\n }\\n}\\n\\n// Used to make instances of the _mat-form-field-label-floating mixin negligibly different,\\n// and prevent Google's CSS Optimizer from collapsing the declarations. This is needed because some\\n// of the selectors contain pseudo-classes not recognized in all browsers. If a browser encounters\\n// an unknown pseudo-class it will discard the entire rule set.\\n$mat-form-field-legacy-dedupe: 0;\\n\\n// Applies a floating label above the form field control itself.\\n@mixin _mat-form-field-legacy-label-floating($font-scale, $infix-padding, $infix-margin-top) {\\n // We use perspective to fix the text blurriness as described here:\\n // http://www.useragentman.com/blog/2014/05/04/fixing-typography-inside-of-2-d-css-transforms/\\n // This results in a small jitter after the label floats on Firefox, which the\\n // translateZ fixes.\\n transform: translateY(-$infix-margin-top - $infix-padding) scale($font-scale) perspective(100px)\\n translateZ(0.001px + $mat-form-field-legacy-dedupe);\\n // The tricks above used to smooth out the animation on chrome and firefox actually make things\\n // worse on IE, so we don't include them in the IE version.\\n -ms-transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-legacy-dedupe)\\n scale($font-scale);\\n\\n width: 100% / $font-scale + $mat-form-field-legacy-dedupe;\\n\\n $mat-form-field-legacy-dedupe: $mat-form-field-legacy-dedupe + 0.00001 !global;\\n}\\n\\n// Same as mixin above, but omits the translateZ for printing purposes.\\n@mixin _mat-form-field-legacy-label-floating-print($font-scale, $infix-padding, $infix-margin-top) {\\n // This results in a small jitter after the label floats on Firefox, which the\\n // translateZ fixes.\\n transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-legacy-dedupe)\\n scale($font-scale);\\n // The tricks above used to smooth out the animation on chrome and firefox actually make things\\n // worse on IE, so we don't include them in the IE version.\\n $mat-form-field-legacy-dedupe: $mat-form-field-legacy-dedupe + 0.00001 !global;\\n}\\n\\n@mixin mat-form-field-legacy-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n // The amount to scale the font for the floating label and subscript.\\n $subscript-font-scale: 0.75;\\n // The amount of space between the top of the line and the top of the actual text\\n // (as a fraction of the font-size).\\n $line-spacing: ($line-height - 1) / 2;\\n // The padding on the infix. Mocks show half of the text size, but seem to measure from the edge\\n // of the text itself, not the edge of the line; therefore we subtract off the line spacing.\\n $infix-padding: 0.5em - $line-spacing;\\n // The margin applied to the form-field-infix to reserve space for the floating label.\\n $infix-margin-top: 1em * $line-height * $subscript-font-scale;\\n // The space between the bottom of the .mat-form-field-flex area and the subscript wrapper.\\n // Mocks show half of the text size, but this margin is applied to an element with the subscript\\n // text font size, so we need to divide by the scale factor to make it half of the original text\\n // size. We again need to subtract off the line spacing since the mocks measure to the edge of the\\n // text, not the edge of the line.\\n $subscript-margin-top: 0.5em / $subscript-font-scale - ($line-spacing * 2);\\n // The padding applied to the form-field-wrapper to reserve space for the subscript, since it's\\n // absolutely positioned. This is a combination of the subscript's margin and line-height, but we\\n // need to multiply by the subscript font scale factor since the wrapper has a larger font size.\\n $wrapper-padding-bottom: ($subscript-margin-top + $line-height) * $subscript-font-scale;\\n\\n .mat-form-field-appearance-legacy {\\n .mat-form-field-wrapper {\\n padding-bottom: $wrapper-padding-bottom;\\n }\\n\\n .mat-form-field-infix {\\n padding: $infix-padding 0;\\n }\\n\\n &.mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // @breaking-change 8.0.0 will rely on AutofillMonitor instead.\\n .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n }\\n\\n .mat-form-field-label {\\n top: $infix-margin-top + $infix-padding;\\n }\\n\\n .mat-form-field-underline {\\n // We want the underline to start at the end of the content box, not the padding box,\\n // so we move it up by the padding amount.\\n bottom: $wrapper-padding-bottom;\\n }\\n\\n .mat-form-field-subscript-wrapper {\\n margin-top: $subscript-margin-top;\\n\\n // We want the subscript to start at the end of the content box, not the padding box,\\n // so we move it up by the padding amount (adjusted for the smaller font size);\\n top: calc(100% - #{$wrapper-padding-bottom / $subscript-font-scale});\\n }\\n }\\n\\n // translateZ causes the label to not appear while printing, so we override it to not\\n // apply translateZ while printing\\n @media print {\\n .mat-form-field-appearance-legacy {\\n &.mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating-print(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // @breaking-change 8.0.0 will rely on AutofillMonitor instead.\\n .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating-print(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating-print(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n }\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n// Theme styles that only apply to the outline appearance of the form-field.\\n\\n@mixin mat-form-field-outline-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n $label-disabled-color: mat-color($foreground, disabled-text);\\n $outline-color: mat-color($foreground, divider, if($is-dark-theme, 0.3, 0.12));\\n $outline-color-hover: mat-color($foreground, divider, if($is-dark-theme, 1, 0.87));\\n $outline-color-primary: mat-color($primary);\\n $outline-color-accent: mat-color($accent);\\n $outline-color-warn: mat-color($warn);\\n $outline-color-disabled: mat-color($foreground, divider, if($is-dark-theme, 0.15, 0.06));\\n\\n .mat-form-field-appearance-outline {\\n .mat-form-field-outline {\\n color: $outline-color;\\n }\\n\\n .mat-form-field-outline-thick {\\n color: $outline-color-hover;\\n }\\n\\n &.mat-focused {\\n .mat-form-field-outline-thick {\\n color: $outline-color-primary;\\n }\\n\\n &.mat-accent .mat-form-field-outline-thick {\\n color: $outline-color-accent;\\n }\\n\\n &.mat-warn .mat-form-field-outline-thick {\\n color: $outline-color-warn;\\n }\\n }\\n\\n // Class repeated so that rule is specific enough to override focused accent color case.\\n &.mat-form-field-invalid.mat-form-field-invalid {\\n .mat-form-field-outline-thick {\\n color: $outline-color-warn;\\n }\\n }\\n\\n &.mat-form-field-disabled {\\n .mat-form-field-label {\\n color: $label-disabled-color;\\n }\\n\\n .mat-form-field-outline {\\n color: $outline-color-disabled;\\n }\\n }\\n }\\n}\\n\\n// Used to make instances of the _mat-form-field-label-floating mixin negligibly different,\\n// and prevent Google's CSS Optimizer from collapsing the declarations. This is needed because some\\n// of the selectors contain pseudo-classes not recognized in all browsers. If a browser encounters\\n// an unknown pseudo-class it will discard the entire rule set.\\n$mat-form-field-outline-dedupe: 0;\\n\\n// Applies a floating label above the form field control itself.\\n@mixin _mat-form-field-outline-label-floating($font-scale, $infix-padding, $infix-margin-top) {\\n transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-outline-dedupe)\\n scale($font-scale);\\n width: 100% / $font-scale + $mat-form-field-outline-dedupe;\\n\\n $mat-form-field-outline-dedupe: $mat-form-field-outline-dedupe + 0.00001 !global;\\n}\\n\\n@mixin mat-form-field-outline-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n // The amount to scale the font for the floating label and subscript.\\n $subscript-font-scale: 0.75;\\n // The padding above and below the infix.\\n $infix-padding: 1em;\\n // The margin applied to the form-field-infix to reserve space for the floating label.\\n $infix-margin-top: 1em * $line-height * $subscript-font-scale;\\n // The space between the bottom of the .mat-form-field-flex area and the subscript wrapper.\\n // Mocks show half of the text size, but this margin is applied to an element with the subscript\\n // text font size, so we need to divide by the scale factor to make it half of the original text\\n // size.\\n $subscript-margin-top: 0.5em / $subscript-font-scale;\\n // The padding applied to the form-field-wrapper to reserve space for the subscript, since it's\\n // absolutely positioned. This is a combination of the subscript's margin and line-height, but we\\n // need to multiply by the subscript font scale factor since the wrapper has a larger font size.\\n $wrapper-padding-bottom: ($subscript-margin-top + $line-height) * $subscript-font-scale;\\n // The amount we offset the label from the input text in the outline appearance.\\n $outline-appearance-label-offset: -0.25em;\\n\\n .mat-form-field-appearance-outline {\\n .mat-form-field-infix {\\n padding: $infix-padding 0 $infix-padding 0;\\n }\\n\\n .mat-form-field-label {\\n top: $infix-margin-top + $infix-padding;\\n margin-top: $outline-appearance-label-offset;\\n }\\n\\n &.mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-outline-label-floating(\\n $subscript-font-scale, $infix-padding + $outline-appearance-label-offset,\\n $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-outline-label-floating(\\n $subscript-font-scale, $infix-padding + $outline-appearance-label-offset,\\n $infix-margin-top);\\n }\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n// Theme styles that only apply to the standard appearance of the form-field.\\n\\n@mixin mat-form-field-standard-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n $underline-color: mat-color($foreground, divider, if($is-dark-theme, 0.7, 0.42));\\n\\n .mat-form-field-appearance-standard {\\n .mat-form-field-underline {\\n background-color: $underline-color;\\n }\\n\\n &.mat-form-field-disabled .mat-form-field-underline {\\n @include mat-control-disabled-underline($underline-color);\\n }\\n }\\n}\\n\\n@mixin mat-form-field-standard-typography($config) {}\\n\\n\\n// Theme styles that apply to all appearances of the form-field.\\n@mixin mat-form-field-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n // Label colors. Required is used for the `*` star shown in the label.\\n $label-color: mat-color($foreground, secondary-text, if($is-dark-theme, 0.7, 0.6));\\n $focused-label-color: mat-color($primary, text);\\n $required-label-color: mat-color($accent, text);\\n\\n // Underline colors.\\n $underline-color-base: mat-color($foreground, divider, if($is-dark-theme, 1, 0.87));\\n $underline-color-accent: mat-color($accent, text);\\n $underline-color-warn: mat-color($warn, text);\\n $underline-focused-color: mat-color($primary, text);\\n\\n .mat-form-field-label {\\n color: $label-color;\\n }\\n\\n .mat-hint {\\n color: $label-color;\\n }\\n\\n .mat-form-field.mat-focused .mat-form-field-label {\\n color: $focused-label-color;\\n\\n &.mat-accent {\\n color: $underline-color-accent;\\n }\\n\\n &.mat-warn {\\n color: $underline-color-warn;\\n }\\n }\\n\\n .mat-focused .mat-form-field-required-marker {\\n color: $required-label-color;\\n }\\n\\n .mat-form-field-ripple {\\n background-color: $underline-color-base;\\n }\\n\\n .mat-form-field.mat-focused {\\n .mat-form-field-ripple {\\n background-color: $underline-focused-color;\\n\\n &.mat-accent {\\n background-color: $underline-color-accent;\\n }\\n\\n &.mat-warn {\\n background-color: $underline-color-warn;\\n }\\n }\\n }\\n\\n .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) {\\n .mat-form-field-infix::after {\\n color: $underline-focused-color;\\n }\\n\\n &.mat-accent .mat-form-field-infix::after {\\n color: $underline-color-accent;\\n }\\n\\n &.mat-warn .mat-form-field-infix::after {\\n color: $underline-color-warn;\\n }\\n }\\n\\n // Styling for the error state of the form field. Note that while the same can be\\n // achieved with the ng-* classes, we use this approach in order to ensure that the same\\n // logic is used to style the error state and to show the error messages.\\n .mat-form-field.mat-form-field-invalid {\\n .mat-form-field-label {\\n color: $underline-color-warn;\\n\\n &.mat-accent,\\n .mat-form-field-required-marker {\\n color: $underline-color-warn;\\n }\\n }\\n\\n .mat-form-field-ripple,\\n .mat-form-field-ripple.mat-accent {\\n background-color: $underline-color-warn;\\n }\\n }\\n\\n .mat-error {\\n color: $underline-color-warn;\\n }\\n\\n @include mat-form-field-legacy-theme($theme);\\n @include mat-form-field-standard-theme($theme);\\n @include mat-form-field-fill-theme($theme);\\n @include mat-form-field-outline-theme($theme);\\n}\\n\\n// Used to make instances of the _mat-form-field-label-floating mixin negligibly different,\\n// and prevent Google's CSS Optimizer from collapsing the declarations. This is needed because some\\n// of the selectors contain pseudo-classes not recognized in all browsers. If a browser encounters\\n// an unknown pseudo-class it will discard the entire rule set.\\n$mat-form-field-dedupe: 0;\\n\\n// Applies a floating label above the form field control itself.\\n@mixin _mat-form-field-label-floating($font-scale, $infix-padding, $infix-margin-top) {\\n transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-dedupe)\\n scale($font-scale);\\n width: 100% / $font-scale + $mat-form-field-dedupe;\\n\\n $mat-form-field-dedupe: $mat-form-field-dedupe + 0.00001 !global;\\n}\\n\\n@mixin mat-form-field-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n\\n // The amount to scale the font for the floating label and subscript.\\n $subscript-font-scale: 0.75;\\n // The amount to scale the font for the prefix and suffix icons.\\n $prefix-suffix-icon-font-scale: 1.5;\\n\\n // The padding on the infix. Mocks show half of the text size.\\n $infix-padding: 0.5em;\\n // The margin applied to the form-field-infix to reserve space for the floating label.\\n $infix-margin-top: 1em * $line-height * $subscript-font-scale;\\n // Font size to use for the label and subscript text.\\n $subscript-font-size: $subscript-font-scale * 100%;\\n // Font size to use for the for the prefix and suffix icons.\\n $prefix-suffix-icon-font-size: $prefix-suffix-icon-font-scale * 100%;\\n // The space between the bottom of the .mat-form-field-flex area and the subscript wrapper.\\n // Mocks show half of the text size, but this margin is applied to an element with the subscript\\n // text font size, so we need to divide by the scale factor to make it half of the original text\\n // size.\\n $subscript-margin-top: 0.5em / $subscript-font-scale;\\n // The padding applied to the form-field-wrapper to reserve space for the subscript, since it's\\n // absolutely positioned. This is a combination of the subscript's margin and line-height, but we\\n // need to multiply by the subscript font scale factor since the wrapper has a larger font size.\\n $wrapper-padding-bottom: ($subscript-margin-top + $line-height) * $subscript-font-scale;\\n\\n .mat-form-field {\\n @include mat-typography-level-to-styles($config, input);\\n }\\n\\n .mat-form-field-wrapper {\\n padding-bottom: $wrapper-padding-bottom;\\n }\\n\\n .mat-form-field-prefix,\\n .mat-form-field-suffix {\\n // Allow icons in a prefix or suffix to adapt to the correct size.\\n .mat-icon {\\n font-size: $prefix-suffix-icon-font-size;\\n line-height: $line-height;\\n }\\n\\n // Allow icon buttons in a prefix or suffix to adapt to the correct size.\\n .mat-icon-button {\\n height: $prefix-suffix-icon-font-scale * 1em;\\n width: $prefix-suffix-icon-font-scale * 1em;\\n\\n .mat-icon {\\n height: $line-height * 1em;\\n line-height: $line-height;\\n }\\n }\\n }\\n\\n .mat-form-field-infix {\\n padding: $infix-padding 0;\\n // Throws off the baseline if we do it as a real margin, so we do it as a border instead.\\n border-top: $infix-margin-top solid transparent;\\n }\\n\\n .mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n }\\n\\n .mat-form-field-label-wrapper {\\n top: -$infix-margin-top;\\n padding-top: $infix-margin-top;\\n }\\n\\n .mat-form-field-label {\\n top: $infix-margin-top + $infix-padding;\\n }\\n\\n .mat-form-field-underline {\\n // We want the underline to start at the end of the content box, not the padding box,\\n // so we move it up by the padding amount.\\n bottom: $wrapper-padding-bottom;\\n }\\n\\n .mat-form-field-subscript-wrapper {\\n font-size: $subscript-font-size;\\n margin-top: $subscript-margin-top;\\n\\n // We want the subscript to start at the end of the content box, not the padding box,\\n // so we move it up by the padding amount (adjusted for the smaller font size);\\n top: calc(100% - #{$wrapper-padding-bottom / $subscript-font-scale});\\n }\\n\\n @include mat-form-field-legacy-typography($config);\\n @include mat-form-field-standard-typography($config);\\n @include mat-form-field-fill-typography($config);\\n @include mat-form-field-outline-typography($config);\\n}\\n\\n\\n\\n\\n\\n@mixin mat-tree-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-tree {\\n background: mat-color($background, 'card');\\n }\\n\\n .mat-tree-node,\\n .mat-nested-tree-node {\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-tree-typography($config) {\\n .mat-tree {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-tree-node,\\n .mat-nested-tree-node {\\n font-weight: mat-font-weight($config, body-1);\\n font-size: mat-font-size($config, body-1);\\n }\\n}\\n\\n\\n\\n// Includes all of the typographic styles.\\n@mixin angular-material-typography($config: null) {\\n @if $config == null {\\n $config: mat-typography-config();\\n }\\n\\n @include mat-badge-typography($config);\\n @include mat-base-typography($config);\\n @include mat-autocomplete-typography($config);\\n @include mat-bottom-sheet-typography($config);\\n @include mat-button-typography($config);\\n @include mat-button-toggle-typography($config);\\n @include mat-card-typography($config);\\n @include mat-checkbox-typography($config);\\n @include mat-chips-typography($config);\\n @include mat-table-typography($config);\\n @include mat-datepicker-typography($config);\\n @include mat-dialog-typography($config);\\n @include mat-expansion-panel-typography($config);\\n @include mat-form-field-typography($config);\\n @include mat-grid-list-typography($config);\\n @include mat-icon-typography($config);\\n @include mat-input-typography($config);\\n @include mat-menu-typography($config);\\n @include mat-paginator-typography($config);\\n @include mat-progress-bar-typography($config);\\n @include mat-progress-spinner-typography($config);\\n @include mat-radio-typography($config);\\n @include mat-select-typography($config);\\n @include mat-sidenav-typography($config);\\n @include mat-slide-toggle-typography($config);\\n @include mat-slider-typography($config);\\n @include mat-stepper-typography($config);\\n @include mat-sort-typography($config);\\n @include mat-tabs-typography($config);\\n @include mat-toolbar-typography($config);\\n @include mat-tooltip-typography($config);\\n @include mat-list-typography($config);\\n @include mat-option-typography($config);\\n @include mat-optgroup-typography($config);\\n @include mat-snack-bar-typography($config);\\n @include mat-tree-typography($config);\\n}\\n\\n\\n// Mixin that renders all of the core styles that are not theme-dependent.\\n@mixin mat-core($typography-config: null) {\\n @include angular-material-typography($typography-config);\\n @include mat-ripple();\\n @include cdk-a11y();\\n @include cdk-overlay();\\n @include cdk-text-field();\\n}\\n\\n// Mixin that renders all of the core styles that depend on the theme.\\n@mixin mat-core-theme($theme) {\\n @include mat-ripple-theme($theme);\\n @include mat-option-theme($theme);\\n @include mat-optgroup-theme($theme);\\n @include mat-pseudo-checkbox-theme($theme);\\n\\n // Provides external CSS classes for each elevation value. Each CSS class is formatted as\\n // `mat-elevation-z$zValue` where `$zValue` corresponds to the z-space to which the element is\\n // elevated.\\n @for $zValue from 0 through 24 {\\n .#{$_mat-elevation-prefix}#{$zValue} {\\n @include _mat-theme-elevation($zValue, $theme);\\n }\\n }\\n\\n // Wrapper element that provides the theme background when the user's content isn't\\n // inside of a `mat-sidenav-container`. Note that we need to exclude the ampersand\\n // selector in case the mixin is included at the top level.\\n .mat-app-background#{if(&, ', &.mat-app-background', '')} {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n background-color: mat-color($background, background);\\n color: mat-color($foreground, text);\\n }\\n\\n // Marker that is used to determine whether the user has added a theme to their page.\\n @at-root {\\n .mat-theme-loaded-marker {\\n display: none;\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-divider-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n\\n .mat-divider {\\n border-top-color: mat-color($foreground, divider);\\n }\\n\\n .mat-divider-vertical {\\n border-right-color: mat-color($foreground, divider);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n// Create a theme.\\n@mixin angular-material-theme($theme) {\\n @include mat-core-theme($theme);\\n @include mat-autocomplete-theme($theme);\\n @include mat-badge-theme($theme);\\n @include mat-bottom-sheet-theme($theme);\\n @include mat-button-theme($theme);\\n @include mat-button-toggle-theme($theme);\\n @include mat-card-theme($theme);\\n @include mat-checkbox-theme($theme);\\n @include mat-chips-theme($theme);\\n @include mat-table-theme($theme);\\n @include mat-datepicker-theme($theme);\\n @include mat-dialog-theme($theme);\\n @include mat-divider-theme($theme);\\n @include mat-expansion-panel-theme($theme);\\n @include mat-form-field-theme($theme);\\n @include mat-grid-list-theme($theme);\\n @include mat-icon-theme($theme);\\n @include mat-input-theme($theme);\\n @include mat-list-theme($theme);\\n @include mat-menu-theme($theme);\\n @include mat-paginator-theme($theme);\\n @include mat-progress-bar-theme($theme);\\n @include mat-progress-spinner-theme($theme);\\n @include mat-radio-theme($theme);\\n @include mat-select-theme($theme);\\n @include mat-sidenav-theme($theme);\\n @include mat-slide-toggle-theme($theme);\\n @include mat-slider-theme($theme);\\n @include mat-stepper-theme($theme);\\n @include mat-sort-theme($theme);\\n @include mat-tabs-theme($theme);\\n @include mat-toolbar-theme($theme);\\n @include mat-tooltip-theme($theme);\\n @include mat-tree-theme($theme);\\n @include mat-snack-bar-theme($theme);\\n}\\n\",\"/* Theme for the ripple elements.*/\\n/* stylelint-disable material/no-prefixes */\\n/* stylelint-enable */\\n.mat-badge-content {\\n font-weight: 600;\\n font-size: 12px;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-badge-small .mat-badge-content {\\n font-size: 9px;\\n}\\n\\n.mat-badge-large .mat-badge-content {\\n font-size: 24px;\\n}\\n\\n.mat-h1, .mat-headline, .mat-typography h1 {\\n font: 400 24px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h2, .mat-title, .mat-typography h2 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h3, .mat-subheading-2, .mat-typography h3 {\\n font: 400 16px/28px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h4, .mat-subheading-1, .mat-typography h4 {\\n font: 400 15px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h5, .mat-typography h5 {\\n font: 400 calc(14px * 0.83)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n\\n.mat-h6, .mat-typography h6 {\\n font: 400 calc(14px * 0.67)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n\\n.mat-body-strong, .mat-body-2 {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-body, .mat-body-1, .mat-typography {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-body p, .mat-body-1 p, .mat-typography p {\\n margin: 0 0 12px;\\n}\\n\\n.mat-small, .mat-caption {\\n font: 400 12px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-display-4, .mat-typography .mat-display-4 {\\n font: 300 112px/112px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.05em;\\n margin: 0 0 56px;\\n}\\n\\n.mat-display-3, .mat-typography .mat-display-3 {\\n font: 400 56px/56px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.02em;\\n margin: 0 0 64px;\\n}\\n\\n.mat-display-2, .mat-typography .mat-display-2 {\\n font: 400 45px/48px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.005em;\\n margin: 0 0 64px;\\n}\\n\\n.mat-display-1, .mat-typography .mat-display-1 {\\n font: 400 34px/40px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 64px;\\n}\\n\\n.mat-bottom-sheet-container {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,\\n.mat-flat-button, .mat-fab, .mat-mini-fab {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-button-toggle {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-card {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-card-title {\\n font-size: 24px;\\n font-weight: 500;\\n}\\n\\n.mat-card-header .mat-card-title {\\n font-size: 20px;\\n}\\n\\n.mat-card-subtitle,\\n.mat-card-content {\\n font-size: 14px;\\n}\\n\\n.mat-checkbox {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-checkbox-layout .mat-checkbox-label {\\n line-height: 24px;\\n}\\n\\n.mat-chip {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-chip .mat-chip-trailing-icon.mat-icon,\\n.mat-chip .mat-chip-remove.mat-icon {\\n font-size: 18px;\\n}\\n\\n.mat-table {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-header-cell {\\n font-size: 12px;\\n font-weight: 500;\\n}\\n\\n.mat-cell, .mat-footer-cell {\\n font-size: 14px;\\n}\\n\\n.mat-calendar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-calendar-body {\\n font-size: 13px;\\n}\\n\\n.mat-calendar-body-label,\\n.mat-calendar-period-button {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-calendar-table-header th {\\n font-size: 11px;\\n font-weight: 400;\\n}\\n\\n.mat-dialog-title {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-expansion-panel-header {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 15px;\\n font-weight: 400;\\n}\\n\\n.mat-expansion-panel-content {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-form-field {\\n font-size: inherit;\\n font-weight: 400;\\n line-height: 1.125;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-form-field-wrapper {\\n padding-bottom: 1.34375em;\\n}\\n\\n.mat-form-field-prefix .mat-icon,\\n.mat-form-field-suffix .mat-icon {\\n font-size: 150%;\\n line-height: 1.125;\\n}\\n.mat-form-field-prefix .mat-icon-button,\\n.mat-form-field-suffix .mat-icon-button {\\n height: 1.5em;\\n width: 1.5em;\\n}\\n.mat-form-field-prefix .mat-icon-button .mat-icon,\\n.mat-form-field-suffix .mat-icon-button .mat-icon {\\n height: 1.125em;\\n line-height: 1.125;\\n}\\n\\n.mat-form-field-infix {\\n padding: 0.5em 0;\\n border-top: 0.84375em solid transparent;\\n}\\n\\n.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n\\n.mat-form-field-label-wrapper {\\n top: -0.84375em;\\n padding-top: 0.84375em;\\n}\\n\\n.mat-form-field-label {\\n top: 1.34375em;\\n}\\n\\n.mat-form-field-underline {\\n bottom: 1.34375em;\\n}\\n\\n.mat-form-field-subscript-wrapper {\\n font-size: 75%;\\n margin-top: 0.6666666667em;\\n top: calc(100% - 1.7916666667em);\\n}\\n\\n.mat-form-field-appearance-legacy .mat-form-field-wrapper {\\n padding-bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-infix {\\n padding: 0.4375em 0;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);\\n -ms-transform: translateY(-1.28125em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);\\n -ms-transform: translateY(-1.28124em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);\\n -ms-transform: translateY(-1.28123em) scale(0.75);\\n width: 133.3333533333%;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-label {\\n top: 1.28125em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-underline {\\n bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {\\n margin-top: 0.5416666667em;\\n top: calc(100% - 1.6666666667em);\\n}\\n\\n@media print {\\n .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28122em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28121em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.2812em) scale(0.75);\\n }\\n}\\n.mat-form-field-appearance-fill .mat-form-field-infix {\\n padding: 0.25em 0 0.75em 0;\\n}\\n.mat-form-field-appearance-fill .mat-form-field-label {\\n top: 1.09375em;\\n margin-top: -0.5em;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n\\n.mat-form-field-appearance-outline .mat-form-field-infix {\\n padding: 1em 0 1em 0;\\n}\\n.mat-form-field-appearance-outline .mat-form-field-label {\\n top: 1.84375em;\\n margin-top: -0.25em;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n\\n.mat-grid-tile-header,\\n.mat-grid-tile-footer {\\n font-size: 14px;\\n}\\n.mat-grid-tile-header .mat-line,\\n.mat-grid-tile-footer .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-grid-tile-header .mat-line:nth-child(n+2),\\n.mat-grid-tile-footer .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n\\ninput.mat-input-element {\\n margin-top: -0.0625em;\\n}\\n\\n.mat-menu-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 400;\\n}\\n\\n.mat-paginator,\\n.mat-paginator-page-size .mat-select-trigger {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n}\\n\\n.mat-radio-button {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-select {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-select-trigger {\\n height: 1.125em;\\n}\\n\\n.mat-slide-toggle-content {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-slider-thumb-label-text {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n\\n.mat-stepper-vertical, .mat-stepper-horizontal {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-step-label {\\n font-size: 14px;\\n font-weight: 400;\\n}\\n\\n.mat-step-sub-label-error {\\n font-weight: normal;\\n}\\n\\n.mat-step-label-error {\\n font-size: 14px;\\n}\\n\\n.mat-step-label-selected {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-tab-group {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-tab-label, .mat-tab-link {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-toolbar,\\n.mat-toolbar h1,\\n.mat-toolbar h2,\\n.mat-toolbar h3,\\n.mat-toolbar h4,\\n.mat-toolbar h5,\\n.mat-toolbar h6 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0;\\n}\\n\\n.mat-tooltip {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 10px;\\n padding-top: 6px;\\n padding-bottom: 6px;\\n}\\n\\n.mat-tooltip-handset {\\n font-size: 14px;\\n padding-top: 8px;\\n padding-bottom: 8px;\\n}\\n\\n.mat-list-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-list-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-list-base .mat-list-item {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-list-option {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-list-base[dense] .mat-list-item {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n\\n.mat-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 16px;\\n}\\n\\n.mat-optgroup-label {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-simple-snackbar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n}\\n\\n.mat-simple-snackbar-action {\\n line-height: 1;\\n font-family: inherit;\\n font-size: inherit;\\n font-weight: 500;\\n}\\n\\n.mat-tree {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-tree-node,\\n.mat-nested-tree-node {\\n font-weight: 400;\\n font-size: 14px;\\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: scale(0);\\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 outline: 0;\\n -webkit-appearance: none;\\n -moz-appearance: none;\\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@media screen and (-ms-high-contrast: active) {\\n .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {\\n opacity: 0.6;\\n }\\n}\\n\\n.cdk-overlay-dark-backdrop {\\n background: rgba(0, 0, 0, 0.32);\\n}\\n\\n.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {\\n opacity: 0;\\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\\n@keyframes cdk-text-field-autofill-start {\\n /*!*/\\n}\\n@keyframes cdk-text-field-autofill-end {\\n /*!*/\\n}\\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\\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.teal-light-theme-css .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-option:hover:not(.mat-option-disabled), .teal-light-theme-css .mat-option:focus:not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-option.mat-active {\\n background: rgba(0, 0, 0, 0.04);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-option.mat-option-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-optgroup-disabled .mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox::after {\\n color: #fafafa;\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox-disabled {\\n color: #b0b0b0;\\n}\\n.teal-light-theme-css .mat-primary .mat-pseudo-checkbox-checked,\\n.teal-light-theme-css .mat-primary .mat-pseudo-checkbox-indeterminate {\\n background: #ef5350;\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox-checked,\\n.teal-light-theme-css .mat-pseudo-checkbox-indeterminate,\\n.teal-light-theme-css .mat-accent .mat-pseudo-checkbox-checked,\\n.teal-light-theme-css .mat-accent .mat-pseudo-checkbox-indeterminate {\\n background: #ffd740;\\n}\\n.teal-light-theme-css .mat-warn .mat-pseudo-checkbox-checked,\\n.teal-light-theme-css .mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: #ff5722;\\n}\\n.teal-light-theme-css .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,\\n.teal-light-theme-css .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {\\n background: #b0b0b0;\\n}\\n.teal-light-theme-css .mat-elevation-z0 {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z1 {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z2 {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z3 {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z4 {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z5 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z6 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z7 {\\n box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z8 {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z9 {\\n box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z10 {\\n box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z11 {\\n box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z12 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z13 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z14 {\\n box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z15 {\\n box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z16 {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z17 {\\n box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z18 {\\n box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z19 {\\n box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z20 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z21 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z22 {\\n box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z23 {\\n box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-elevation-z24 {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-app-background, .teal-light-theme-css.mat-app-background {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-theme-loaded-marker {\\n display: none;\\n}\\n\\n.teal-light-theme-css .mat-autocomplete-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-autocomplete-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {\\n background: white;\\n}\\n.teal-light-theme-css .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-badge-content {\\n color: rgba(0, 0, 0, 0.87);\\n background: #ef5350;\\n}\\n.cdk-high-contrast-active .teal-light-theme-css .mat-badge-content {\\n outline: solid 1px;\\n border-radius: 0;\\n}\\n\\n.teal-light-theme-css .mat-badge-accent .mat-badge-content {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-badge-warn .mat-badge-content {\\n color: white;\\n background: #ff5722;\\n}\\n.teal-light-theme-css .mat-badge {\\n position: relative;\\n}\\n.teal-light-theme-css .mat-badge-hidden .mat-badge-content {\\n display: none;\\n}\\n.teal-light-theme-css .mat-badge-disabled .mat-badge-content {\\n background: #b9b9b9;\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-badge-content {\\n position: absolute;\\n text-align: center;\\n display: inline-block;\\n border-radius: 50%;\\n transition: transform 200ms ease-in-out;\\n transform: scale(0.6);\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n pointer-events: none;\\n}\\n.teal-light-theme-css .ng-animate-disabled .mat-badge-content,\\n.teal-light-theme-css .mat-badge-content._mat-animation-noopable {\\n transition: none;\\n}\\n.teal-light-theme-css .mat-badge-content.mat-badge-active {\\n transform: none;\\n}\\n.teal-light-theme-css .mat-badge-small .mat-badge-content {\\n width: 16px;\\n height: 16px;\\n line-height: 16px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-above .mat-badge-content {\\n top: -8px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-below .mat-badge-content {\\n bottom: -8px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-before .mat-badge-content {\\n left: -16px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-small.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -16px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-after .mat-badge-content {\\n right: -16px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-small.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -16px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -8px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -8px;\\n}\\n.teal-light-theme-css .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -8px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -8px;\\n}\\n.teal-light-theme-css .mat-badge-medium .mat-badge-content {\\n width: 22px;\\n height: 22px;\\n line-height: 22px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-above .mat-badge-content {\\n top: -11px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-below .mat-badge-content {\\n bottom: -11px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: -22px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -22px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: -22px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -22px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -11px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -11px;\\n}\\n.teal-light-theme-css .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -11px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -11px;\\n}\\n.teal-light-theme-css .mat-badge-large .mat-badge-content {\\n width: 28px;\\n height: 28px;\\n line-height: 28px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-above .mat-badge-content {\\n top: -14px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-below .mat-badge-content {\\n bottom: -14px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-before .mat-badge-content {\\n left: -28px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-large.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -28px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-after .mat-badge-content {\\n right: -28px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-large.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -28px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -14px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -14px;\\n}\\n.teal-light-theme-css .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -14px;\\n}\\n[dir=rtl] .teal-light-theme-css .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -14px;\\n}\\n.teal-light-theme-css .mat-bottom-sheet-container {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-button, .teal-light-theme-css .mat-icon-button, .teal-light-theme-css .mat-stroked-button {\\n color: inherit;\\n background: transparent;\\n}\\n.teal-light-theme-css .mat-button.mat-primary, .teal-light-theme-css .mat-icon-button.mat-primary, .teal-light-theme-css .mat-stroked-button.mat-primary {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-button.mat-accent, .teal-light-theme-css .mat-icon-button.mat-accent, .teal-light-theme-css .mat-stroked-button.mat-accent {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-button.mat-warn, .teal-light-theme-css .mat-icon-button.mat-warn, .teal-light-theme-css .mat-stroked-button.mat-warn {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-button.mat-primary[disabled], .teal-light-theme-css .mat-button.mat-accent[disabled], .teal-light-theme-css .mat-button.mat-warn[disabled], .teal-light-theme-css .mat-button[disabled][disabled], .teal-light-theme-css .mat-icon-button.mat-primary[disabled], .teal-light-theme-css .mat-icon-button.mat-accent[disabled], .teal-light-theme-css .mat-icon-button.mat-warn[disabled], .teal-light-theme-css .mat-icon-button[disabled][disabled], .teal-light-theme-css .mat-stroked-button.mat-primary[disabled], .teal-light-theme-css .mat-stroked-button.mat-accent[disabled], .teal-light-theme-css .mat-stroked-button.mat-warn[disabled], .teal-light-theme-css .mat-stroked-button[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-button.mat-primary .mat-button-focus-overlay, .teal-light-theme-css .mat-icon-button.mat-primary .mat-button-focus-overlay, .teal-light-theme-css .mat-stroked-button.mat-primary .mat-button-focus-overlay {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-button.mat-accent .mat-button-focus-overlay, .teal-light-theme-css .mat-icon-button.mat-accent .mat-button-focus-overlay, .teal-light-theme-css .mat-stroked-button.mat-accent .mat-button-focus-overlay {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-button.mat-warn .mat-button-focus-overlay, .teal-light-theme-css .mat-icon-button.mat-warn .mat-button-focus-overlay, .teal-light-theme-css .mat-stroked-button.mat-warn .mat-button-focus-overlay {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-button[disabled] .mat-button-focus-overlay, .teal-light-theme-css .mat-icon-button[disabled] .mat-button-focus-overlay, .teal-light-theme-css .mat-stroked-button[disabled] .mat-button-focus-overlay {\\n background-color: transparent;\\n}\\n.teal-light-theme-css .mat-button .mat-ripple-element, .teal-light-theme-css .mat-icon-button .mat-ripple-element, .teal-light-theme-css .mat-stroked-button .mat-ripple-element {\\n opacity: 0.1;\\n background-color: currentColor;\\n}\\n.teal-light-theme-css .mat-button-focus-overlay {\\n background: black;\\n}\\n.teal-light-theme-css .mat-stroked-button:not([disabled]) {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-flat-button, .teal-light-theme-css .mat-raised-button, .teal-light-theme-css .mat-fab, .teal-light-theme-css .mat-mini-fab {\\n color: rgba(0, 0, 0, 0.87);\\n background-color: white;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary, .teal-light-theme-css .mat-raised-button.mat-primary, .teal-light-theme-css .mat-fab.mat-primary, .teal-light-theme-css .mat-mini-fab.mat-primary {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-accent, .teal-light-theme-css .mat-raised-button.mat-accent, .teal-light-theme-css .mat-fab.mat-accent, .teal-light-theme-css .mat-mini-fab.mat-accent {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-warn, .teal-light-theme-css .mat-raised-button.mat-warn, .teal-light-theme-css .mat-fab.mat-warn, .teal-light-theme-css .mat-mini-fab.mat-warn {\\n color: white;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary[disabled], .teal-light-theme-css .mat-flat-button.mat-accent[disabled], .teal-light-theme-css .mat-flat-button.mat-warn[disabled], .teal-light-theme-css .mat-flat-button[disabled][disabled], .teal-light-theme-css .mat-raised-button.mat-primary[disabled], .teal-light-theme-css .mat-raised-button.mat-accent[disabled], .teal-light-theme-css .mat-raised-button.mat-warn[disabled], .teal-light-theme-css .mat-raised-button[disabled][disabled], .teal-light-theme-css .mat-fab.mat-primary[disabled], .teal-light-theme-css .mat-fab.mat-accent[disabled], .teal-light-theme-css .mat-fab.mat-warn[disabled], .teal-light-theme-css .mat-fab[disabled][disabled], .teal-light-theme-css .mat-mini-fab.mat-primary[disabled], .teal-light-theme-css .mat-mini-fab.mat-accent[disabled], .teal-light-theme-css .mat-mini-fab.mat-warn[disabled], .teal-light-theme-css .mat-mini-fab[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary, .teal-light-theme-css .mat-raised-button.mat-primary, .teal-light-theme-css .mat-fab.mat-primary, .teal-light-theme-css .mat-mini-fab.mat-primary {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-accent, .teal-light-theme-css .mat-raised-button.mat-accent, .teal-light-theme-css .mat-fab.mat-accent, .teal-light-theme-css .mat-mini-fab.mat-accent {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-warn, .teal-light-theme-css .mat-raised-button.mat-warn, .teal-light-theme-css .mat-fab.mat-warn, .teal-light-theme-css .mat-mini-fab.mat-warn {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary[disabled], .teal-light-theme-css .mat-flat-button.mat-accent[disabled], .teal-light-theme-css .mat-flat-button.mat-warn[disabled], .teal-light-theme-css .mat-flat-button[disabled][disabled], .teal-light-theme-css .mat-raised-button.mat-primary[disabled], .teal-light-theme-css .mat-raised-button.mat-accent[disabled], .teal-light-theme-css .mat-raised-button.mat-warn[disabled], .teal-light-theme-css .mat-raised-button[disabled][disabled], .teal-light-theme-css .mat-fab.mat-primary[disabled], .teal-light-theme-css .mat-fab.mat-accent[disabled], .teal-light-theme-css .mat-fab.mat-warn[disabled], .teal-light-theme-css .mat-fab[disabled][disabled], .teal-light-theme-css .mat-mini-fab.mat-primary[disabled], .teal-light-theme-css .mat-mini-fab.mat-accent[disabled], .teal-light-theme-css .mat-mini-fab.mat-warn[disabled], .teal-light-theme-css .mat-mini-fab[disabled][disabled] {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-primary .mat-ripple-element, .teal-light-theme-css .mat-raised-button.mat-primary .mat-ripple-element, .teal-light-theme-css .mat-fab.mat-primary .mat-ripple-element, .teal-light-theme-css .mat-mini-fab.mat-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-accent .mat-ripple-element, .teal-light-theme-css .mat-raised-button.mat-accent .mat-ripple-element, .teal-light-theme-css .mat-fab.mat-accent .mat-ripple-element, .teal-light-theme-css .mat-mini-fab.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-flat-button.mat-warn .mat-ripple-element, .teal-light-theme-css .mat-raised-button.mat-warn .mat-ripple-element, .teal-light-theme-css .mat-fab.mat-warn .mat-ripple-element, .teal-light-theme-css .mat-mini-fab.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.teal-light-theme-css .mat-stroked-button:not([class*=mat-elevation-z]), .teal-light-theme-css .mat-flat-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-raised-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-raised-button:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-raised-button[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-fab:not([class*=mat-elevation-z]), .teal-light-theme-css .mat-mini-fab:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-fab:not([disabled]):active:not([class*=mat-elevation-z]), .teal-light-theme-css .mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-fab[disabled]:not([class*=mat-elevation-z]), .teal-light-theme-css .mat-mini-fab[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-standalone,\\n.teal-light-theme-css .mat-button-toggle-group {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.teal-light-theme-css .mat-button-toggle-group-appearance-standard {\\n box-shadow: none;\\n}\\n.teal-light-theme-css .mat-button-toggle {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-button-toggle .mat-button-toggle-focus-overlay {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n background: white;\\n}\\n.teal-light-theme-css .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {\\n background-color: black;\\n}\\n.teal-light-theme-css .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: none;\\n border-top: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-button-toggle-checked {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-button-toggle-checked.mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-button-toggle-disabled {\\n color: rgba(0, 0, 0, 0.26);\\n background-color: #eeeeee;\\n}\\n.teal-light-theme-css .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {\\n background: white;\\n}\\n.teal-light-theme-css .mat-button-toggle-disabled.mat-button-toggle-checked {\\n background-color: #bdbdbd;\\n}\\n.teal-light-theme-css .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.teal-light-theme-css .mat-button-toggle-group-appearance-standard {\\n border: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-card {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-card:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-card.mat-card-flat:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-card-subtitle {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-checkbox-frame {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-checkbox-checkmark {\\n fill: #fafafa;\\n}\\n.teal-light-theme-css .mat-checkbox-checkmark-path {\\n stroke: #fafafa !important;\\n}\\n.teal-light-theme-css .mat-checkbox-mixedmark {\\n background-color: #fafafa;\\n}\\n.teal-light-theme-css .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .teal-light-theme-css .mat-checkbox-checked.mat-primary .mat-checkbox-background {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .teal-light-theme-css .mat-checkbox-checked.mat-accent .mat-checkbox-background {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .teal-light-theme-css .mat-checkbox-checked.mat-warn .mat-checkbox-background {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .teal-light-theme-css .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {\\n background-color: #b0b0b0;\\n}\\n.teal-light-theme-css .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {\\n border-color: #b0b0b0;\\n}\\n.teal-light-theme-css .mat-checkbox-disabled .mat-checkbox-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-checkbox .mat-ripple-element {\\n background-color: black;\\n}\\n.teal-light-theme-css .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,\\n.teal-light-theme-css .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {\\n background: #ef5350;\\n}\\n.teal-light-theme-css .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,\\n.teal-light-theme-css .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {\\n background: #ffd740;\\n}\\n.teal-light-theme-css .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,\\n.teal-light-theme-css .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {\\n background: #ff5722;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {\\n opacity: 0.54;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-disabled {\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip::after {\\n background: black;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {\\n background-color: #ff5722;\\n color: white;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {\\n color: white;\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.teal-light-theme-css .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.teal-light-theme-css .mat-table {\\n background: white;\\n}\\n.teal-light-theme-css .mat-table thead, .teal-light-theme-css .mat-table tbody, .teal-light-theme-css .mat-table tfoot,\\n.teal-light-theme-css mat-header-row, .teal-light-theme-css mat-row, .teal-light-theme-css mat-footer-row,\\n.teal-light-theme-css [mat-header-row], .teal-light-theme-css [mat-row], .teal-light-theme-css [mat-footer-row],\\n.teal-light-theme-css .mat-table-sticky {\\n background: inherit;\\n}\\n.teal-light-theme-css mat-row, .teal-light-theme-css mat-header-row, .teal-light-theme-css mat-footer-row,\\n.teal-light-theme-css th.mat-header-cell, .teal-light-theme-css td.mat-cell, .teal-light-theme-css td.mat-footer-cell {\\n border-bottom-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-header-cell {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-cell, .teal-light-theme-css .mat-footer-cell {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-calendar-arrow {\\n border-top-color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-datepicker-toggle,\\n.teal-light-theme-css .mat-datepicker-content .mat-calendar-next-button,\\n.teal-light-theme-css .mat-datepicker-content .mat-calendar-previous-button {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-calendar-table-header {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-calendar-table-header-divider::after {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-calendar-body-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-calendar-body-cell-content {\\n color: rgba(0, 0, 0, 0.87);\\n border-color: transparent;\\n}\\n.teal-light-theme-css .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.teal-light-theme-css .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.teal-light-theme-css .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.18);\\n}\\n.teal-light-theme-css .mat-calendar-body-selected {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(239, 83, 80, 0.4);\\n}\\n.teal-light-theme-css .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-datepicker-content {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-accent .mat-calendar-body-selected {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 215, 64, 0.4);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-warn .mat-calendar-body-selected {\\n background-color: #ff5722;\\n color: white;\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 87, 34, 0.4);\\n}\\n.teal-light-theme-css .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px white;\\n}\\n.teal-light-theme-css .mat-datepicker-content-touch {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-datepicker-toggle-active {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-datepicker-toggle-active.mat-accent {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-datepicker-toggle-active.mat-warn {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-dialog-container {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-divider {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-divider-vertical {\\n border-right-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-expansion-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-expansion-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-action-row {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .teal-light-theme-css .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .teal-light-theme-css .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n@media (hover: none) {\\n .teal-light-theme-css .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {\\n background: white;\\n }\\n}\\n.teal-light-theme-css .mat-expansion-panel-header-title {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-expansion-panel-header-description,\\n.teal-light-theme-css .mat-expansion-indicator::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-expansion-panel-header[aria-disabled=true] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,\\n.teal-light-theme-css .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {\\n color: inherit;\\n}\\n.teal-light-theme-css .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.teal-light-theme-css .mat-hint {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-label {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-label.mat-accent {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-label.mat-warn {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-focused .mat-form-field-required-marker {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field-ripple {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-ripple {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-label {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,\\n.teal-light-theme-css .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-error {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-legacy .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-legacy .mat-hint {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-legacy .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-standard .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.02);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill .mat-form-field-underline::before {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {\\n background-color: transparent;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline .mat-form-field-outline-thick {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.06);\\n}\\n.teal-light-theme-css .mat-icon.mat-primary {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-icon.mat-accent {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-icon.mat-warn {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-input-element:disabled,\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-input-element {\\n caret-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-input-element::placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-input-element::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-input-element::-webkit-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-input-element:-ms-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-accent .mat-input-element {\\n caret-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-warn .mat-input-element,\\n.teal-light-theme-css .mat-form-field-invalid .mat-input-element {\\n caret-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-list-base .mat-list-item {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-list-base .mat-list-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-list-base .mat-subheader {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-list-item-disabled {\\n background-color: #eeeeee;\\n}\\n.teal-light-theme-css .mat-list-option:hover, .teal-light-theme-css .mat-list-option:focus,\\n.teal-light-theme-css .mat-nav-list .mat-list-item:hover,\\n.teal-light-theme-css .mat-nav-list .mat-list-item:focus,\\n.teal-light-theme-css .mat-action-list .mat-list-item:hover,\\n.teal-light-theme-css .mat-action-list .mat-list-item:focus {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-list-single-selected-option, .teal-light-theme-css .mat-list-single-selected-option:hover, .teal-light-theme-css .mat-list-single-selected-option:focus {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-menu-panel {\\n background: white;\\n}\\n.teal-light-theme-css .mat-menu-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-menu-item {\\n background: transparent;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-menu-item[disabled], .teal-light-theme-css .mat-menu-item[disabled]::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-menu-item .mat-icon-no-color,\\n.teal-light-theme-css .mat-menu-item-submenu-trigger::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-menu-item:hover:not([disabled]),\\n.teal-light-theme-css .mat-menu-item.cdk-program-focused:not([disabled]),\\n.teal-light-theme-css .mat-menu-item.cdk-keyboard-focused:not([disabled]),\\n.teal-light-theme-css .mat-menu-item-highlighted:not([disabled]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.teal-light-theme-css .mat-paginator {\\n background: white;\\n}\\n.teal-light-theme-css .mat-paginator,\\n.teal-light-theme-css .mat-paginator-page-size .mat-select-trigger {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-paginator-decrement,\\n.teal-light-theme-css .mat-paginator-increment {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n border-right: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-paginator-first,\\n.teal-light-theme-css .mat-paginator-last {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-icon-button[disabled] .mat-paginator-decrement,\\n.teal-light-theme-css .mat-icon-button[disabled] .mat-paginator-increment,\\n.teal-light-theme-css .mat-icon-button[disabled] .mat-paginator-first,\\n.teal-light-theme-css .mat-icon-button[disabled] .mat-paginator-last {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-progress-bar-background {\\n fill: #ef9a9a;\\n}\\n.teal-light-theme-css .mat-progress-bar-buffer {\\n background-color: #ef9a9a;\\n}\\n.teal-light-theme-css .mat-progress-bar-fill::after {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-accent .mat-progress-bar-background {\\n fill: #ffe57f;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-accent .mat-progress-bar-buffer {\\n background-color: #ffe57f;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-warn .mat-progress-bar-background {\\n fill: #ffccbc;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-warn .mat-progress-bar-buffer {\\n background-color: #ffccbc;\\n}\\n.teal-light-theme-css .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-progress-spinner circle, .teal-light-theme-css .mat-spinner circle {\\n stroke: #ef5350;\\n}\\n.teal-light-theme-css .mat-progress-spinner.mat-accent circle, .teal-light-theme-css .mat-spinner.mat-accent circle {\\n stroke: #ffd740;\\n}\\n.teal-light-theme-css .mat-progress-spinner.mat-warn circle, .teal-light-theme-css .mat-spinner.mat-warn circle {\\n stroke: #ff5722;\\n}\\n.teal-light-theme-css .mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-primary .mat-radio-inner-circle,\\n.teal-light-theme-css .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .teal-light-theme-css .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .teal-light-theme-css .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-accent .mat-radio-inner-circle,\\n.teal-light-theme-css .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .teal-light-theme-css .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .teal-light-theme-css .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-warn .mat-radio-inner-circle,\\n.teal-light-theme-css .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .teal-light-theme-css .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .teal-light-theme-css .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-radio-button.mat-radio-disabled .mat-radio-label-content {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-radio-button .mat-ripple-element {\\n background-color: black;\\n}\\n.teal-light-theme-css .mat-select-value {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-select-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.teal-light-theme-css .mat-select-disabled .mat-select-value {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-select-arrow {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-select-panel {\\n background: white;\\n}\\n.teal-light-theme-css .mat-select-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused.mat-primary .mat-select-arrow {\\n color: #ef5350;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused.mat-accent .mat-select-arrow {\\n color: #ffd740;\\n}\\n.teal-light-theme-css .mat-form-field.mat-focused.mat-warn .mat-select-arrow {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-drawer-container {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-drawer {\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-drawer.mat-drawer-push {\\n background-color: white;\\n}\\n.teal-light-theme-css .mat-drawer:not(.mat-drawer-side) {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-drawer-side {\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-drawer-side.mat-drawer-end {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n.teal-light-theme-css [dir=rtl] .mat-drawer-side {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n.teal-light-theme-css [dir=rtl] .mat-drawer-side.mat-drawer-end {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-drawer-backdrop.mat-drawer-shown {\\n background-color: rgba(0, 0, 0, 0.6);\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 215, 64, 0.54);\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-checked .mat-ripple-element {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(239, 83, 80, 0.54);\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 87, 34, 0.54);\\n}\\n.teal-light-theme-css .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {\\n background-color: black;\\n}\\n.teal-light-theme-css .mat-slide-toggle-thumb {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n background-color: #fafafa;\\n}\\n.teal-light-theme-css .mat-slide-toggle-bar {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-primary .mat-slider-track-fill,\\n.teal-light-theme-css .mat-primary .mat-slider-thumb,\\n.teal-light-theme-css .mat-primary .mat-slider-thumb-label {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-primary .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-accent .mat-slider-track-fill,\\n.teal-light-theme-css .mat-accent .mat-slider-thumb,\\n.teal-light-theme-css .mat-accent .mat-slider-thumb-label {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-accent .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-warn .mat-slider-track-fill,\\n.teal-light-theme-css .mat-warn .mat-slider-thumb,\\n.teal-light-theme-css .mat-warn .mat-slider-thumb-label {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-warn .mat-slider-thumb-label-text {\\n color: white;\\n}\\n.teal-light-theme-css .mat-slider-focus-ring {\\n background-color: rgba(255, 215, 64, 0.2);\\n}\\n.teal-light-theme-css .mat-slider:hover .mat-slider-track-background,\\n.teal-light-theme-css .cdk-focused .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-slider-disabled .mat-slider-track-background,\\n.teal-light-theme-css .mat-slider-disabled .mat-slider-track-fill,\\n.teal-light-theme-css .mat-slider-disabled .mat-slider-thumb {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-slider-disabled:hover .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-slider-min-value .mat-slider-focus-ring {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,\\n.teal-light-theme-css .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,\\n.teal-light-theme-css .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n background-color: transparent;\\n}\\n.teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .teal-light-theme-css .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n}\\n.teal-light-theme-css .mat-slider-has-ticks .mat-slider-wrapper::after {\\n border-color: rgba(0, 0, 0, 0.7);\\n}\\n.teal-light-theme-css .mat-slider-horizontal .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n.teal-light-theme-css .mat-slider-vertical .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n.teal-light-theme-css .mat-step-header.cdk-keyboard-focused, .teal-light-theme-css .mat-step-header.cdk-program-focused, .teal-light-theme-css .mat-step-header:hover {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n@media (hover: none) {\\n .teal-light-theme-css .mat-step-header:hover {\\n background: none;\\n }\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-label,\\n.teal-light-theme-css .mat-step-header .mat-step-optional {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-icon {\\n background-color: rgba(0, 0, 0, 0.54);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-icon-selected,\\n.teal-light-theme-css .mat-step-header .mat-step-icon-state-done,\\n.teal-light-theme-css .mat-step-header .mat-step-icon-state-edit {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-icon-state-error {\\n background-color: transparent;\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-label.mat-step-label-active {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-step-header .mat-step-label.mat-step-label-error {\\n color: #ff5722;\\n}\\n.teal-light-theme-css .mat-stepper-horizontal, .teal-light-theme-css .mat-stepper-vertical {\\n background-color: white;\\n}\\n.teal-light-theme-css .mat-stepper-vertical-line::before {\\n border-left-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-horizontal-stepper-header::before,\\n.teal-light-theme-css .mat-horizontal-stepper-header::after,\\n.teal-light-theme-css .mat-stepper-horizontal-line {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-sort-header-arrow {\\n color: #757575;\\n}\\n.teal-light-theme-css .mat-tab-nav-bar,\\n.teal-light-theme-css .mat-tab-header {\\n border-bottom: 1px solid rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-tab-group-inverted-header .mat-tab-nav-bar,\\n.teal-light-theme-css .mat-tab-group-inverted-header .mat-tab-header {\\n border-top: 1px solid rgba(0, 0, 0, 0.12);\\n border-bottom: none;\\n}\\n.teal-light-theme-css .mat-tab-label, .teal-light-theme-css .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.teal-light-theme-css .mat-tab-group[class*=mat-background-] .mat-tab-header,\\n.teal-light-theme-css .mat-tab-nav-bar[class*=mat-background-] {\\n border-bottom: none;\\n border-top: none;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(239, 154, 154, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-primary .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-primary .mat-ink-bar {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-accent .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-accent .mat-ink-bar {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-warn .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-warn .mat-ink-bar {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .teal-light-theme-css .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {\\n background-color: white;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(239, 154, 154, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-header, .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-links, .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {\\n background-color: #ef5350;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-label, .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-link, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-primary .mat-ripple-element, .teal-light-theme-css .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-header, .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-links, .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {\\n background-color: #ffd740;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-label, .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-link, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-accent .mat-ripple-element, .teal-light-theme-css .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-header, .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-links, .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {\\n background-color: #ff5722;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-label, .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-link, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-link {\\n color: white;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {\\n color: rgba(255, 255, 255, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {\\n border-color: white;\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(255, 255, 255, 0.4);\\n}\\n.teal-light-theme-css .mat-tab-group.mat-background-warn .mat-ripple-element, .teal-light-theme-css .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.12);\\n}\\n.teal-light-theme-css .mat-toolbar {\\n background: whitesmoke;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-toolbar.mat-primary {\\n background: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-toolbar.mat-accent {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-toolbar.mat-warn {\\n background: #ff5722;\\n color: white;\\n}\\n.teal-light-theme-css .mat-toolbar .mat-form-field-underline,\\n.teal-light-theme-css .mat-toolbar .mat-form-field-ripple,\\n.teal-light-theme-css .mat-toolbar .mat-focused .mat-form-field-ripple {\\n background-color: currentColor;\\n}\\n.teal-light-theme-css .mat-toolbar .mat-form-field-label,\\n.teal-light-theme-css .mat-toolbar .mat-focused .mat-form-field-label,\\n.teal-light-theme-css .mat-toolbar .mat-select-value,\\n.teal-light-theme-css .mat-toolbar .mat-select-arrow,\\n.teal-light-theme-css .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {\\n color: inherit;\\n}\\n.teal-light-theme-css .mat-toolbar .mat-input-element {\\n caret-color: currentColor;\\n}\\n.teal-light-theme-css .mat-tooltip {\\n background: rgba(97, 97, 97, 0.9);\\n}\\n.teal-light-theme-css .mat-tree {\\n background: white;\\n}\\n.teal-light-theme-css .mat-tree-node,\\n.teal-light-theme-css .mat-nested-tree-node {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.teal-light-theme-css .mat-snack-bar-container {\\n color: rgba(255, 255, 255, 0.7);\\n background: #323232;\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.teal-light-theme-css .mat-simple-snackbar-action {\\n color: #ffd740;\\n}\"]}]);\n// Exports\nmodule.exports = exports;\n","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(true);\n// Module\nexports.push([module.id, \"/** Ionic CSS Variables **/\\n/* Theme for the ripple elements.*/\\n/* stylelint-disable material/no-prefixes */\\n/* stylelint-enable */\\n.mat-badge-content {\\n font-weight: 600;\\n font-size: 12px;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-badge-small .mat-badge-content {\\n font-size: 9px;\\n}\\n.mat-badge-large .mat-badge-content {\\n font-size: 24px;\\n}\\n.mat-h1, .mat-headline, .mat-typography h1 {\\n font: 400 24px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n.mat-h2, .mat-title, .mat-typography h2 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n.mat-h3, .mat-subheading-2, .mat-typography h3 {\\n font: 400 16px/28px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n.mat-h4, .mat-subheading-1, .mat-typography h4 {\\n font: 400 15px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n.mat-h5, .mat-typography h5 {\\n font: 400 calc(14px * 0.83)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n.mat-h6, .mat-typography h6 {\\n font: 400 calc(14px * 0.67)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n.mat-body-strong, .mat-body-2 {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-body, .mat-body-1, .mat-typography {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-body p, .mat-body-1 p, .mat-typography p {\\n margin: 0 0 12px;\\n}\\n.mat-small, .mat-caption {\\n font: 400 12px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-display-4, .mat-typography .mat-display-4 {\\n font: 300 112px/112px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.05em;\\n margin: 0 0 56px;\\n}\\n.mat-display-3, .mat-typography .mat-display-3 {\\n font: 400 56px/56px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.02em;\\n margin: 0 0 64px;\\n}\\n.mat-display-2, .mat-typography .mat-display-2 {\\n font: 400 45px/48px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.005em;\\n margin: 0 0 64px;\\n}\\n.mat-display-1, .mat-typography .mat-display-1 {\\n font: 400 34px/40px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 64px;\\n}\\n.mat-bottom-sheet-container {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,\\n.mat-flat-button, .mat-fab, .mat-mini-fab {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-button-toggle {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-card {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-card-title {\\n font-size: 24px;\\n font-weight: 500;\\n}\\n.mat-card-header .mat-card-title {\\n font-size: 20px;\\n}\\n.mat-card-subtitle,\\n.mat-card-content {\\n font-size: 14px;\\n}\\n.mat-checkbox {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-checkbox-layout .mat-checkbox-label {\\n line-height: 24px;\\n}\\n.mat-chip {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-chip .mat-chip-trailing-icon.mat-icon,\\n.mat-chip .mat-chip-remove.mat-icon {\\n font-size: 18px;\\n}\\n.mat-table {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-header-cell {\\n font-size: 12px;\\n font-weight: 500;\\n}\\n.mat-cell, .mat-footer-cell {\\n font-size: 14px;\\n}\\n.mat-calendar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-calendar-body {\\n font-size: 13px;\\n}\\n.mat-calendar-body-label,\\n.mat-calendar-period-button {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-calendar-table-header th {\\n font-size: 11px;\\n font-weight: 400;\\n}\\n.mat-dialog-title {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-expansion-panel-header {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 15px;\\n font-weight: 400;\\n}\\n.mat-expansion-panel-content {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-form-field {\\n font-size: inherit;\\n font-weight: 400;\\n line-height: 1.125;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-form-field-wrapper {\\n padding-bottom: 1.34375em;\\n}\\n.mat-form-field-prefix .mat-icon,\\n.mat-form-field-suffix .mat-icon {\\n font-size: 150%;\\n line-height: 1.125;\\n}\\n.mat-form-field-prefix .mat-icon-button,\\n.mat-form-field-suffix .mat-icon-button {\\n height: 1.5em;\\n width: 1.5em;\\n}\\n.mat-form-field-prefix .mat-icon-button .mat-icon,\\n.mat-form-field-suffix .mat-icon-button .mat-icon {\\n height: 1.125em;\\n line-height: 1.125;\\n}\\n.mat-form-field-infix {\\n padding: 0.5em 0;\\n border-top: 0.84375em solid transparent;\\n}\\n.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-form-field-label-wrapper {\\n top: -0.84375em;\\n padding-top: 0.84375em;\\n}\\n.mat-form-field-label {\\n top: 1.34375em;\\n}\\n.mat-form-field-underline {\\n bottom: 1.34375em;\\n}\\n.mat-form-field-subscript-wrapper {\\n font-size: 75%;\\n margin-top: 0.6666666667em;\\n top: calc(100% - 1.7916666667em);\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-wrapper {\\n padding-bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-infix {\\n padding: 0.4375em 0;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);\\n -ms-transform: translateY(-1.28125em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);\\n -ms-transform: translateY(-1.28124em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);\\n -ms-transform: translateY(-1.28123em) scale(0.75);\\n width: 133.3333533333%;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-label {\\n top: 1.28125em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-underline {\\n bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {\\n margin-top: 0.5416666667em;\\n top: calc(100% - 1.6666666667em);\\n}\\n@media print {\\n .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28122em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28121em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.2812em) scale(0.75);\\n }\\n}\\n.mat-form-field-appearance-fill .mat-form-field-infix {\\n padding: 0.25em 0 0.75em 0;\\n}\\n.mat-form-field-appearance-fill .mat-form-field-label {\\n top: 1.09375em;\\n margin-top: -0.5em;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-form-field-appearance-outline .mat-form-field-infix {\\n padding: 1em 0 1em 0;\\n}\\n.mat-form-field-appearance-outline .mat-form-field-label {\\n top: 1.84375em;\\n margin-top: -0.25em;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-grid-tile-header,\\n.mat-grid-tile-footer {\\n font-size: 14px;\\n}\\n.mat-grid-tile-header .mat-line,\\n.mat-grid-tile-footer .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-grid-tile-header .mat-line:nth-child(n+2),\\n.mat-grid-tile-footer .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\ninput.mat-input-element {\\n margin-top: -0.0625em;\\n}\\n.mat-menu-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 400;\\n}\\n.mat-paginator,\\n.mat-paginator-page-size .mat-select-trigger {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n}\\n.mat-radio-button {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-select {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-select-trigger {\\n height: 1.125em;\\n}\\n.mat-slide-toggle-content {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-slider-thumb-label-text {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n.mat-stepper-vertical, .mat-stepper-horizontal {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-step-label {\\n font-size: 14px;\\n font-weight: 400;\\n}\\n.mat-step-sub-label-error {\\n font-weight: normal;\\n}\\n.mat-step-label-error {\\n font-size: 14px;\\n}\\n.mat-step-label-selected {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-tab-group {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-tab-label, .mat-tab-link {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-toolbar,\\n.mat-toolbar h1,\\n.mat-toolbar h2,\\n.mat-toolbar h3,\\n.mat-toolbar h4,\\n.mat-toolbar h5,\\n.mat-toolbar h6 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0;\\n}\\n.mat-tooltip {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 10px;\\n padding-top: 6px;\\n padding-bottom: 6px;\\n}\\n.mat-tooltip-handset {\\n font-size: 14px;\\n padding-top: 8px;\\n padding-bottom: 8px;\\n}\\n.mat-list-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-list-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-list-base .mat-list-item {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-list-option {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-list-base[dense] .mat-list-item {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n.mat-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 16px;\\n}\\n.mat-optgroup-label {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-simple-snackbar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n}\\n.mat-simple-snackbar-action {\\n line-height: 1;\\n font-family: inherit;\\n font-size: inherit;\\n font-weight: 500;\\n}\\n.mat-tree {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n.mat-tree-node,\\n.mat-nested-tree-node {\\n font-weight: 400;\\n font-size: 14px;\\n}\\n.mat-ripple {\\n overflow: hidden;\\n position: relative;\\n}\\n.mat-ripple:not(:empty) {\\n transform: translateZ(0);\\n}\\n.mat-ripple.mat-ripple-unbounded {\\n overflow: visible;\\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: scale(0);\\n}\\n.cdk-high-contrast-active .mat-ripple-element {\\n display: none;\\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 outline: 0;\\n -webkit-appearance: none;\\n -moz-appearance: none;\\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.cdk-overlay-container {\\n position: fixed;\\n z-index: 1000;\\n}\\n.cdk-overlay-container:empty {\\n display: none;\\n}\\n.cdk-global-overlay-wrapper {\\n display: flex;\\n position: absolute;\\n z-index: 1000;\\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.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@media screen and (-ms-high-contrast: active) {\\n .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.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {\\n opacity: 0;\\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.cdk-global-scrollblock {\\n position: fixed;\\n width: 100%;\\n overflow-y: scroll;\\n}\\n@keyframes cdk-text-field-autofill-start {\\n /*!*/\\n}\\n@keyframes cdk-text-field-autofill-end {\\n /*!*/\\n}\\n.cdk-text-field-autofill-monitored:-webkit-autofill {\\n animation: cdk-text-field-autofill-start 0s 1ms;\\n}\\n.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {\\n animation: cdk-text-field-autofill-end 0s 1ms;\\n}\\ntextarea.cdk-textarea-autosize {\\n resize: none;\\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}\\ntextarea.cdk-textarea-autosize-measuring-firefox {\\n padding: 2px 0 !important;\\n box-sizing: content-box !important;\\n height: 0 !important;\\n}\\n.mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.mat-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.mat-option.mat-active {\\n background: rgba(0, 0, 0, 0.04);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-option.mat-option-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ef5350;\\n}\\n.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ffd740;\\n}\\n.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ff5722;\\n}\\n.mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-optgroup-disabled .mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-pseudo-checkbox {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-pseudo-checkbox::after {\\n color: #fafafa;\\n}\\n.mat-pseudo-checkbox-disabled {\\n color: #b0b0b0;\\n}\\n.mat-primary .mat-pseudo-checkbox-checked,\\n.mat-primary .mat-pseudo-checkbox-indeterminate {\\n background: #ef5350;\\n}\\n.mat-pseudo-checkbox-checked,\\n.mat-pseudo-checkbox-indeterminate,\\n.mat-accent .mat-pseudo-checkbox-checked,\\n.mat-accent .mat-pseudo-checkbox-indeterminate {\\n background: #ffd740;\\n}\\n.mat-warn .mat-pseudo-checkbox-checked,\\n.mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: #ff5722;\\n}\\n.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,\\n.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {\\n background: #b0b0b0;\\n}\\n.mat-elevation-z0 {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z1 {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z2 {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z3 {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z4 {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z5 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z6 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z7 {\\n box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z8 {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z9 {\\n box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z10 {\\n box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z11 {\\n box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z12 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z13 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z14 {\\n box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z15 {\\n box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z16 {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z17 {\\n box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z18 {\\n box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z19 {\\n box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z20 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z21 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z22 {\\n box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z23 {\\n box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);\\n}\\n.mat-elevation-z24 {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n}\\n.mat-app-background {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-theme-loaded-marker {\\n display: none;\\n}\\n.mat-autocomplete-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-autocomplete-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {\\n background: white;\\n}\\n.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-badge-content {\\n color: rgba(0, 0, 0, 0.87);\\n background: #ef5350;\\n}\\n.cdk-high-contrast-active .mat-badge-content {\\n outline: solid 1px;\\n border-radius: 0;\\n}\\n.mat-badge-accent .mat-badge-content {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-badge-warn .mat-badge-content {\\n color: white;\\n background: #ff5722;\\n}\\n.mat-badge {\\n position: relative;\\n}\\n.mat-badge-hidden .mat-badge-content {\\n display: none;\\n}\\n.mat-badge-disabled .mat-badge-content {\\n background: #b9b9b9;\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-badge-content {\\n position: absolute;\\n text-align: center;\\n display: inline-block;\\n border-radius: 50%;\\n transition: transform 200ms ease-in-out;\\n transform: scale(0.6);\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n pointer-events: none;\\n}\\n.ng-animate-disabled .mat-badge-content,\\n.mat-badge-content._mat-animation-noopable {\\n transition: none;\\n}\\n.mat-badge-content.mat-badge-active {\\n transform: none;\\n}\\n.mat-badge-small .mat-badge-content {\\n width: 16px;\\n height: 16px;\\n line-height: 16px;\\n}\\n.mat-badge-small.mat-badge-above .mat-badge-content {\\n top: -8px;\\n}\\n.mat-badge-small.mat-badge-below .mat-badge-content {\\n bottom: -8px;\\n}\\n.mat-badge-small.mat-badge-before .mat-badge-content {\\n left: -16px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -16px;\\n}\\n.mat-badge-small.mat-badge-after .mat-badge-content {\\n right: -16px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -16px;\\n}\\n.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -8px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -8px;\\n}\\n.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -8px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -8px;\\n}\\n.mat-badge-medium .mat-badge-content {\\n width: 22px;\\n height: 22px;\\n line-height: 22px;\\n}\\n.mat-badge-medium.mat-badge-above .mat-badge-content {\\n top: -11px;\\n}\\n.mat-badge-medium.mat-badge-below .mat-badge-content {\\n bottom: -11px;\\n}\\n.mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: -22px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -22px;\\n}\\n.mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: -22px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -22px;\\n}\\n.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -11px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -11px;\\n}\\n.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -11px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -11px;\\n}\\n.mat-badge-large .mat-badge-content {\\n width: 28px;\\n height: 28px;\\n line-height: 28px;\\n}\\n.mat-badge-large.mat-badge-above .mat-badge-content {\\n top: -14px;\\n}\\n.mat-badge-large.mat-badge-below .mat-badge-content {\\n bottom: -14px;\\n}\\n.mat-badge-large.mat-badge-before .mat-badge-content {\\n left: -28px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -28px;\\n}\\n.mat-badge-large.mat-badge-after .mat-badge-content {\\n right: -28px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -28px;\\n}\\n.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -14px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -14px;\\n}\\n.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -14px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -14px;\\n}\\n.mat-bottom-sheet-container {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-button, .mat-icon-button, .mat-stroked-button {\\n color: inherit;\\n background: transparent;\\n}\\n.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {\\n color: #ef5350;\\n}\\n.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {\\n color: #ffd740;\\n}\\n.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {\\n color: #ff5722;\\n}\\n.mat-button.mat-primary[disabled], .mat-button.mat-accent[disabled], .mat-button.mat-warn[disabled], .mat-button[disabled][disabled], .mat-icon-button.mat-primary[disabled], .mat-icon-button.mat-accent[disabled], .mat-icon-button.mat-warn[disabled], .mat-icon-button[disabled][disabled], .mat-stroked-button.mat-primary[disabled], .mat-stroked-button.mat-accent[disabled], .mat-stroked-button.mat-warn[disabled], .mat-stroked-button[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {\\n background-color: #ef5350;\\n}\\n.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {\\n background-color: #ffd740;\\n}\\n.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay, .mat-stroked-button.mat-warn .mat-button-focus-overlay {\\n background-color: #ff5722;\\n}\\n.mat-button[disabled] .mat-button-focus-overlay, .mat-icon-button[disabled] .mat-button-focus-overlay, .mat-stroked-button[disabled] .mat-button-focus-overlay {\\n background-color: transparent;\\n}\\n.mat-button .mat-ripple-element, .mat-icon-button .mat-ripple-element, .mat-stroked-button .mat-ripple-element {\\n opacity: 0.1;\\n background-color: currentColor;\\n}\\n.mat-button-focus-overlay {\\n background: black;\\n}\\n.mat-stroked-button:not([disabled]) {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {\\n color: rgba(0, 0, 0, 0.87);\\n background-color: white;\\n}\\n.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {\\n color: white;\\n}\\n.mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-accent[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {\\n background-color: #ef5350;\\n}\\n.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {\\n background-color: #ffd740;\\n}\\n.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {\\n background-color: #ff5722;\\n}\\n.mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-accent[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled] {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-flat-button.mat-primary .mat-ripple-element, .mat-raised-button.mat-primary .mat-ripple-element, .mat-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.mat-flat-button.mat-accent .mat-ripple-element, .mat-raised-button.mat-accent .mat-ripple-element, .mat-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.mat-flat-button.mat-warn .mat-ripple-element, .mat-raised-button.mat-warn .mat-ripple-element, .mat-fab.mat-warn .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.mat-stroked-button:not([class*=mat-elevation-z]), .mat-flat-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-raised-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-raised-button:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.mat-raised-button[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-fab:not([class*=mat-elevation-z]), .mat-mini-fab:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]), .mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n.mat-fab[disabled]:not([class*=mat-elevation-z]), .mat-mini-fab[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-button-toggle-standalone,\\n.mat-button-toggle-group {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.mat-button-toggle-group-appearance-standard {\\n box-shadow: none;\\n}\\n.mat-button-toggle {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-button-toggle .mat-button-toggle-focus-overlay {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n background: white;\\n}\\n.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {\\n background-color: black;\\n}\\n.mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: none;\\n border-top: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.mat-button-toggle-checked {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-button-toggle-checked.mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-button-toggle-disabled {\\n color: rgba(0, 0, 0, 0.26);\\n background-color: #eeeeee;\\n}\\n.mat-button-toggle-disabled.mat-button-toggle-appearance-standard {\\n background: white;\\n}\\n.mat-button-toggle-disabled.mat-button-toggle-checked {\\n background-color: #bdbdbd;\\n}\\n.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.mat-button-toggle-group-appearance-standard {\\n border: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.mat-card {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-card:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-card.mat-card-flat:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-card-subtitle {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-checkbox-frame {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-checkbox-checkmark {\\n fill: #fafafa;\\n}\\n.mat-checkbox-checkmark-path {\\n stroke: #fafafa !important;\\n}\\n.mat-checkbox-mixedmark {\\n background-color: #fafafa;\\n}\\n.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {\\n background-color: #ef5350;\\n}\\n.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {\\n background-color: #ffd740;\\n}\\n.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {\\n background-color: #ff5722;\\n}\\n.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {\\n background-color: #b0b0b0;\\n}\\n.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {\\n border-color: #b0b0b0;\\n}\\n.mat-checkbox-disabled .mat-checkbox-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-checkbox .mat-ripple-element {\\n background-color: black;\\n}\\n.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,\\n.mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {\\n background: #ef5350;\\n}\\n.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,\\n.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {\\n background: #ffd740;\\n}\\n.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,\\n.mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {\\n background: #ff5722;\\n}\\n.mat-chip.mat-standard-chip {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-chip.mat-standard-chip .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {\\n opacity: 0.54;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-disabled {\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip::after {\\n background: black;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {\\n background-color: #ff5722;\\n color: white;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {\\n color: white;\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.mat-table {\\n background: white;\\n}\\n.mat-table thead, .mat-table tbody, .mat-table tfoot,\\nmat-header-row, mat-row, mat-footer-row,\\n[mat-header-row], [mat-row], [mat-footer-row],\\n.mat-table-sticky {\\n background: inherit;\\n}\\nmat-row, mat-header-row, mat-footer-row,\\nth.mat-header-cell, td.mat-cell, td.mat-footer-cell {\\n border-bottom-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-header-cell {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-cell, .mat-footer-cell {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-calendar-arrow {\\n border-top-color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-datepicker-toggle,\\n.mat-datepicker-content .mat-calendar-next-button,\\n.mat-datepicker-content .mat-calendar-previous-button {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-calendar-table-header {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-calendar-table-header-divider::after {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.mat-calendar-body-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-calendar-body-cell-content {\\n color: rgba(0, 0, 0, 0.87);\\n border-color: transparent;\\n}\\n.mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n.mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.18);\\n}\\n.mat-calendar-body-selected {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(239, 83, 80, 0.4);\\n}\\n.mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-selected {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 215, 64, 0.4);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-selected {\\n background-color: #ff5722;\\n color: white;\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 87, 34, 0.4);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px white;\\n}\\n.mat-datepicker-content-touch {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-datepicker-toggle-active {\\n color: #ef5350;\\n}\\n.mat-datepicker-toggle-active.mat-accent {\\n color: #ffd740;\\n}\\n.mat-datepicker-toggle-active.mat-warn {\\n color: #ff5722;\\n}\\n.mat-dialog-container {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-divider {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-divider-vertical {\\n border-right-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-expansion-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-expansion-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-action-row {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n@media (hover: none) {\\n .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {\\n background: white;\\n }\\n}\\n.mat-expansion-panel-header-title {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-expansion-panel-header-description,\\n.mat-expansion-indicator::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-expansion-panel-header[aria-disabled=true] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,\\n.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {\\n color: inherit;\\n}\\n.mat-form-field-label {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.mat-hint {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n.mat-form-field.mat-focused .mat-form-field-label {\\n color: #ef5350;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-accent {\\n color: #ffd740;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-warn {\\n color: #ff5722;\\n}\\n.mat-focused .mat-form-field-required-marker {\\n color: #ffd740;\\n}\\n.mat-form-field-ripple {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple {\\n background-color: #ef5350;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {\\n background-color: #ffd740;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {\\n background-color: #ff5722;\\n}\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {\\n color: #ef5350;\\n}\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {\\n color: #ffd740;\\n}\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label {\\n color: #ff5722;\\n}\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {\\n color: #ff5722;\\n}\\n.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,\\n.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {\\n background-color: #ff5722;\\n}\\n.mat-error {\\n color: #ff5722;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-form-field-appearance-legacy .mat-hint {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n.mat-form-field-appearance-standard .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n.mat-form-field-appearance-fill .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.02);\\n}\\n.mat-form-field-appearance-fill .mat-form-field-underline::before {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {\\n background-color: transparent;\\n}\\n.mat-form-field-appearance-outline .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-form-field-appearance-outline .mat-form-field-outline-thick {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {\\n color: #ef5350;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {\\n color: #ffd740;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.06);\\n}\\n.mat-icon.mat-primary {\\n color: #ef5350;\\n}\\n.mat-icon.mat-accent {\\n color: #ffd740;\\n}\\n.mat-icon.mat-warn {\\n color: #ff5722;\\n}\\n.mat-form-field-type-mat-native-select .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-input-element:disabled,\\n.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-input-element {\\n caret-color: #ef5350;\\n}\\n.mat-input-element::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element::placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element::-webkit-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element:-ms-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-accent .mat-input-element {\\n caret-color: #ffd740;\\n}\\n.mat-warn .mat-input-element,\\n.mat-form-field-invalid .mat-input-element {\\n caret-color: #ff5722;\\n}\\n.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n.mat-list-base .mat-list-item {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-list-base .mat-list-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-list-base .mat-subheader {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-list-item-disabled {\\n background-color: #eeeeee;\\n}\\n.mat-list-option:hover, .mat-list-option:focus,\\n.mat-nav-list .mat-list-item:hover,\\n.mat-nav-list .mat-list-item:focus,\\n.mat-action-list .mat-list-item:hover,\\n.mat-action-list .mat-list-item:focus {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.mat-list-single-selected-option, .mat-list-single-selected-option:hover, .mat-list-single-selected-option:focus {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.mat-menu-panel {\\n background: white;\\n}\\n.mat-menu-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-menu-item {\\n background: transparent;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-menu-item[disabled], .mat-menu-item[disabled]::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-menu-item .mat-icon-no-color,\\n.mat-menu-item-submenu-trigger::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-menu-item:hover:not([disabled]),\\n.mat-menu-item.cdk-program-focused:not([disabled]),\\n.mat-menu-item.cdk-keyboard-focused:not([disabled]),\\n.mat-menu-item-highlighted:not([disabled]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.mat-paginator {\\n background: white;\\n}\\n.mat-paginator,\\n.mat-paginator-page-size .mat-select-trigger {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-paginator-decrement,\\n.mat-paginator-increment {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n border-right: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n.mat-paginator-first,\\n.mat-paginator-last {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n.mat-icon-button[disabled] .mat-paginator-decrement,\\n.mat-icon-button[disabled] .mat-paginator-increment,\\n.mat-icon-button[disabled] .mat-paginator-first,\\n.mat-icon-button[disabled] .mat-paginator-last {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-progress-bar-background {\\n fill: #ef9a9a;\\n}\\n.mat-progress-bar-buffer {\\n background-color: #ef9a9a;\\n}\\n.mat-progress-bar-fill::after {\\n background-color: #ef5350;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-background {\\n fill: #ffe57f;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-buffer {\\n background-color: #ffe57f;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {\\n background-color: #ffd740;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-background {\\n fill: #ffccbc;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-buffer {\\n background-color: #ffccbc;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {\\n background-color: #ff5722;\\n}\\n.mat-progress-spinner circle, .mat-spinner circle {\\n stroke: #ef5350;\\n}\\n.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {\\n stroke: #ffd740;\\n}\\n.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {\\n stroke: #ff5722;\\n}\\n.mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ef5350;\\n}\\n.mat-radio-button.mat-primary .mat-radio-inner-circle,\\n.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {\\n background-color: #ef5350;\\n}\\n.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ffd740;\\n}\\n.mat-radio-button.mat-accent .mat-radio-inner-circle,\\n.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {\\n background-color: #ffd740;\\n}\\n.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ff5722;\\n}\\n.mat-radio-button.mat-warn .mat-radio-inner-circle,\\n.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {\\n background-color: #ff5722;\\n}\\n.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,\\n.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,\\n.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-radio-button.mat-radio-disabled .mat-radio-label-content {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-radio-button .mat-ripple-element {\\n background-color: black;\\n}\\n.mat-select-value {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-select-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-select-disabled .mat-select-value {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-select-arrow {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-select-panel {\\n background: white;\\n}\\n.mat-select-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n.mat-form-field.mat-focused.mat-primary .mat-select-arrow {\\n color: #ef5350;\\n}\\n.mat-form-field.mat-focused.mat-accent .mat-select-arrow {\\n color: #ffd740;\\n}\\n.mat-form-field.mat-focused.mat-warn .mat-select-arrow {\\n color: #ff5722;\\n}\\n.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {\\n color: #ff5722;\\n}\\n.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-drawer-container {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-drawer {\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-drawer.mat-drawer-push {\\n background-color: white;\\n}\\n.mat-drawer:not(.mat-drawer-side) {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n.mat-drawer-side {\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.mat-drawer-side.mat-drawer-end {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n[dir=rtl] .mat-drawer-side {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n[dir=rtl] .mat-drawer-side.mat-drawer-end {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.mat-drawer-backdrop.mat-drawer-shown {\\n background-color: rgba(0, 0, 0, 0.6);\\n}\\n.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ffd740;\\n}\\n.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 215, 64, 0.54);\\n}\\n.mat-slide-toggle.mat-checked .mat-ripple-element {\\n background-color: #ffd740;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ef5350;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(239, 83, 80, 0.54);\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {\\n background-color: #ef5350;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ff5722;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 87, 34, 0.54);\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {\\n background-color: #ff5722;\\n}\\n.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {\\n background-color: black;\\n}\\n.mat-slide-toggle-thumb {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n background-color: #fafafa;\\n}\\n.mat-slide-toggle-bar {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-primary .mat-slider-track-fill,\\n.mat-primary .mat-slider-thumb,\\n.mat-primary .mat-slider-thumb-label {\\n background-color: #ef5350;\\n}\\n.mat-primary .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-accent .mat-slider-track-fill,\\n.mat-accent .mat-slider-thumb,\\n.mat-accent .mat-slider-thumb-label {\\n background-color: #ffd740;\\n}\\n.mat-accent .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-warn .mat-slider-track-fill,\\n.mat-warn .mat-slider-thumb,\\n.mat-warn .mat-slider-thumb-label {\\n background-color: #ff5722;\\n}\\n.mat-warn .mat-slider-thumb-label-text {\\n color: white;\\n}\\n.mat-slider-focus-ring {\\n background-color: rgba(255, 215, 64, 0.2);\\n}\\n.mat-slider:hover .mat-slider-track-background,\\n.cdk-focused .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-slider-disabled .mat-slider-track-background,\\n.mat-slider-disabled .mat-slider-track-fill,\\n.mat-slider-disabled .mat-slider-thumb {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-slider-disabled:hover .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-slider-min-value .mat-slider-focus-ring {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,\\n.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,\\n.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n background-color: transparent;\\n}\\n.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-slider-has-ticks .mat-slider-wrapper::after {\\n border-color: rgba(0, 0, 0, 0.7);\\n}\\n.mat-slider-horizontal .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n.mat-slider-vertical .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n@media (hover: none) {\\n .mat-step-header:hover {\\n background: none;\\n }\\n}\\n.mat-step-header .mat-step-label,\\n.mat-step-header .mat-step-optional {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-step-header .mat-step-icon {\\n background-color: rgba(0, 0, 0, 0.54);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-step-header .mat-step-icon-selected,\\n.mat-step-header .mat-step-icon-state-done,\\n.mat-step-header .mat-step-icon-state-edit {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-step-header .mat-step-icon-state-error {\\n background-color: transparent;\\n color: #ff5722;\\n}\\n.mat-step-header .mat-step-label.mat-step-label-active {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-step-header .mat-step-label.mat-step-label-error {\\n color: #ff5722;\\n}\\n.mat-stepper-horizontal, .mat-stepper-vertical {\\n background-color: white;\\n}\\n.mat-stepper-vertical-line::before {\\n border-left-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-horizontal-stepper-header::before,\\n.mat-horizontal-stepper-header::after,\\n.mat-stepper-horizontal-line {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-sort-header-arrow {\\n color: #757575;\\n}\\n.mat-tab-nav-bar,\\n.mat-tab-header {\\n border-bottom: 1px solid rgba(0, 0, 0, 0.12);\\n}\\n.mat-tab-group-inverted-header .mat-tab-nav-bar,\\n.mat-tab-group-inverted-header .mat-tab-header {\\n border-top: 1px solid rgba(0, 0, 0, 0.12);\\n border-bottom: none;\\n}\\n.mat-tab-label, .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-tab-group[class*=mat-background-] .mat-tab-header,\\n.mat-tab-nav-bar[class*=mat-background-] {\\n border-bottom: none;\\n border-top: none;\\n}\\n.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(239, 154, 154, 0.3);\\n}\\n.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {\\n background-color: #ef5350;\\n}\\n.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {\\n background-color: #ffd740;\\n}\\n.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {\\n background-color: #ff5722;\\n}\\n.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {\\n background-color: white;\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(239, 154, 154, 0.3);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-links, .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {\\n background-color: #ef5350;\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link, .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .mat-tab-nav-bar.mat-background-primary .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-primary .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-links, .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {\\n background-color: #ffd740;\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link, .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-accent .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-links, .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {\\n background-color: #ff5722;\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link, .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link {\\n color: white;\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {\\n color: rgba(255, 255, 255, 0.4);\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {\\n border-color: white;\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(255, 255, 255, 0.4);\\n}\\n.mat-tab-group.mat-background-warn .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.12);\\n}\\n.mat-toolbar {\\n background: whitesmoke;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-primary {\\n background: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-accent {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-warn {\\n background: #ff5722;\\n color: white;\\n}\\n.mat-toolbar .mat-form-field-underline,\\n.mat-toolbar .mat-form-field-ripple,\\n.mat-toolbar .mat-focused .mat-form-field-ripple {\\n background-color: currentColor;\\n}\\n.mat-toolbar .mat-form-field-label,\\n.mat-toolbar .mat-focused .mat-form-field-label,\\n.mat-toolbar .mat-select-value,\\n.mat-toolbar .mat-select-arrow,\\n.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {\\n color: inherit;\\n}\\n.mat-toolbar .mat-input-element {\\n caret-color: currentColor;\\n}\\n.mat-tooltip {\\n background: rgba(97, 97, 97, 0.9);\\n}\\n.mat-tree {\\n background: white;\\n}\\n.mat-tree-node,\\n.mat-nested-tree-node {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-snack-bar-container {\\n color: rgba(255, 255, 255, 0.7);\\n background: #323232;\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-simple-snackbar-action {\\n color: #ffd740;\\n}\\n:root {\\n --ion-color-spinner: #2f2a28;\\n --ion-color-spinner-rgb: 47,42,40;\\n --ion-color-spinner-contrast: #ffffff;\\n --ion-color-spinner-contrast-rgb: 255,255,255;\\n --ion-color-spinner-shade: #292523;\\n --ion-color-spinner-tint: #443f3e;\\n /** primary **/\\n --ion-color-primary: #E80510;\\n --ion-color-primary-rgb: 56, 128, 255;\\n --ion-color-primary-contrast: #ffffff;\\n --ion-color-primary-contrast-rgb: 255, 255, 255;\\n --ion-color-primary-shade: #3171e0;\\n --ion-color-primary-tint: #4c8dff;\\n /** secondary **/\\n --ion-color-secondary: white;\\n --ion-color-secondary-rgb: 61, 194, 255;\\n --ion-color-secondary-contrast: #E80510;\\n --ion-color-secondary-contrast-rgb: 255, 255, 255;\\n --ion-color-secondary-shade: #36abe0;\\n --ion-color-secondary-tint: #50c8ff;\\n /** tertiary **/\\n --ion-color-tertiary: #5260ff;\\n --ion-color-tertiary-rgb: 82, 96, 255;\\n --ion-color-tertiary-contrast: #ffffff;\\n --ion-color-tertiary-contrast-rgb: 255, 255, 255;\\n --ion-color-tertiary-shade: #4854e0;\\n --ion-color-tertiary-tint: #6370ff;\\n /** success **/\\n --ion-color-success: #2dd36f;\\n --ion-color-success-rgb: 45, 211, 111;\\n --ion-color-success-contrast: #ffffff;\\n --ion-color-success-contrast-rgb: 255, 255, 255;\\n --ion-color-success-shade: #28ba62;\\n --ion-color-success-tint: #42d77d;\\n /** warning **/\\n --ion-color-warning: #ffc409;\\n --ion-color-warning-rgb: 255, 196, 9;\\n --ion-color-warning-contrast: #000000;\\n --ion-color-warning-contrast-rgb: 0, 0, 0;\\n --ion-color-warning-shade: #e0ac08;\\n --ion-color-warning-tint: #ffca22;\\n /** danger **/\\n --ion-color-danger: #eb445a;\\n --ion-color-danger-rgb: 235, 68, 90;\\n --ion-color-danger-contrast: #ffffff;\\n --ion-color-danger-contrast-rgb: 255, 255, 255;\\n --ion-color-danger-shade: #cf3c4f;\\n --ion-color-danger-tint: #ed576b;\\n /** dark **/\\n --ion-color-dark: #222428;\\n --ion-color-dark-rgb: 34, 36, 40;\\n --ion-color-dark-contrast: #ffffff;\\n --ion-color-dark-contrast-rgb: 255, 255, 255;\\n --ion-color-dark-shade: #1e2023;\\n --ion-color-dark-tint: #383a3e;\\n /** medium **/\\n --ion-color-medium: #92949c;\\n --ion-color-medium-rgb: 146, 148, 156;\\n --ion-color-medium-contrast: #ffffff;\\n --ion-color-medium-contrast-rgb: 255, 255, 255;\\n --ion-color-medium-shade: #808289;\\n --ion-color-medium-tint: #9d9fa6;\\n /** light **/\\n --ion-color-light: #f4f5f8;\\n --ion-color-light-rgb: 244, 245, 248;\\n --ion-color-light-contrast: #000000;\\n --ion-color-light-contrast-rgb: 0, 0, 0;\\n --ion-color-light-shade: #d7d8da;\\n --ion-color-light-tint: #f5f6f9;\\n}\\n:root .add_item {\\n margin-right: auto;\\n font-family: \\\"Montserrat-Bold\\\";\\n}\\n.ion-color-spinner {\\n --ion-color-base: var(--ion-color-spinner);\\n --ion-color-base-rgb: var(--ion-color-spinner-rgb);\\n --ion-color-contrast: var(--ion-color-spinner-contrast);\\n --ion-color-contrast-rgb: var(--ion-color-spinner-contrast-rgb);\\n --ion-color-shade: var(--ion-color-spinner-shade);\\n --ion-color-tint: var(--ion-color-spinner-tint);\\n}\\n@media (prefers-color-scheme: dark) {\\n /*\\n * Dark Colors\\n * -------------------------------------------\\n */\\n body {\\n --ion-color-primary: #428cff;\\n --ion-color-primary-rgb: 66,140,255;\\n --ion-color-primary-contrast: #ffffff;\\n --ion-color-primary-contrast-rgb: 255,255,255;\\n --ion-color-primary-shade: #3a7be0;\\n --ion-color-primary-tint: #5598ff;\\n --ion-color-secondary: #50c8ff;\\n --ion-color-secondary-rgb: 80,200,255;\\n --ion-color-secondary-contrast: #ffffff;\\n --ion-color-secondary-contrast-rgb: 255,255,255;\\n --ion-color-secondary-shade: #46b0e0;\\n --ion-color-secondary-tint: #62ceff;\\n --ion-color-tertiary: #6a64ff;\\n --ion-color-tertiary-rgb: 106,100,255;\\n --ion-color-tertiary-contrast: #ffffff;\\n --ion-color-tertiary-contrast-rgb: 255,255,255;\\n --ion-color-tertiary-shade: #5d58e0;\\n --ion-color-tertiary-tint: #7974ff;\\n --ion-color-success: #2fdf75;\\n --ion-color-success-rgb: 47,223,117;\\n --ion-color-success-contrast: #000000;\\n --ion-color-success-contrast-rgb: 0,0,0;\\n --ion-color-success-shade: #29c467;\\n --ion-color-success-tint: #44e283;\\n --ion-color-warning: #ffd534;\\n --ion-color-warning-rgb: 255,213,52;\\n --ion-color-warning-contrast: #000000;\\n --ion-color-warning-contrast-rgb: 0,0,0;\\n --ion-color-warning-shade: #e0bb2e;\\n --ion-color-warning-tint: #ffd948;\\n --ion-color-danger: #ff4961;\\n --ion-color-danger-rgb: 255,73,97;\\n --ion-color-danger-contrast: #ffffff;\\n --ion-color-danger-contrast-rgb: 255,255,255;\\n --ion-color-danger-shade: #e04055;\\n --ion-color-danger-tint: #ff5b71;\\n --ion-color-dark: #f4f5f8;\\n --ion-color-dark-rgb: 244,245,248;\\n --ion-color-dark-contrast: #000000;\\n --ion-color-dark-contrast-rgb: 0,0,0;\\n --ion-color-dark-shade: #d7d8da;\\n --ion-color-dark-tint: #f5f6f9;\\n --ion-color-medium: #989aa2;\\n --ion-color-medium-rgb: 152,154,162;\\n --ion-color-medium-contrast: #000000;\\n --ion-color-medium-contrast-rgb: 0,0,0;\\n --ion-color-medium-shade: #86888f;\\n --ion-color-medium-tint: #a2a4ab;\\n --ion-color-light: #222428;\\n --ion-color-light-rgb: 34,36,40;\\n --ion-color-light-contrast: #ffffff;\\n --ion-color-light-contrast-rgb: 255,255,255;\\n --ion-color-light-shade: #1e2023;\\n --ion-color-light-tint: #383a3e;\\n }\\n\\n /*\\n * iOS Dark Theme\\n * -------------------------------------------\\n */\\n .ios body {\\n --ion-background-color: #000000;\\n --ion-background-color-rgb: 0,0,0;\\n --ion-text-color: #ffffff;\\n --ion-text-color-rgb: 255,255,255;\\n --ion-color-step-50: #0d0d0d;\\n --ion-color-step-100: #1a1a1a;\\n --ion-color-step-150: #262626;\\n --ion-color-step-200: #333333;\\n --ion-color-step-250: #404040;\\n --ion-color-step-300: #4d4d4d;\\n --ion-color-step-350: #595959;\\n --ion-color-step-400: #666666;\\n --ion-color-step-450: #737373;\\n --ion-color-step-500: #808080;\\n --ion-color-step-550: #8c8c8c;\\n --ion-color-step-600: #999999;\\n --ion-color-step-650: #a6a6a6;\\n --ion-color-step-700: #b3b3b3;\\n --ion-color-step-750: #bfbfbf;\\n --ion-color-step-800: #cccccc;\\n --ion-color-step-850: #d9d9d9;\\n --ion-color-step-900: #e6e6e6;\\n --ion-color-step-950: #f2f2f2;\\n --ion-toolbar-background: #0d0d0d;\\n --ion-item-background: #000000;\\n }\\n\\n /*\\n * Material Design Dark Theme\\n * -------------------------------------------\\n */\\n .md body {\\n --ion-background-color: #121212;\\n --ion-background-color-rgb: 18,18,18;\\n --ion-text-color: #ffffff;\\n --ion-text-color-rgb: 255,255,255;\\n --ion-border-color: #222222;\\n --ion-color-step-50: #1e1e1e;\\n --ion-color-step-100: #2a2a2a;\\n --ion-color-step-150: #363636;\\n --ion-color-step-200: #414141;\\n --ion-color-step-250: #4d4d4d;\\n --ion-color-step-300: #595959;\\n --ion-color-step-350: #656565;\\n --ion-color-step-400: #717171;\\n --ion-color-step-450: #7d7d7d;\\n --ion-color-step-500: #898989;\\n --ion-color-step-550: #949494;\\n --ion-color-step-600: #a0a0a0;\\n --ion-color-step-650: #acacac;\\n --ion-color-step-700: #b8b8b8;\\n --ion-color-step-750: #c4c4c4;\\n --ion-color-step-800: #d0d0d0;\\n --ion-color-step-850: #dbdbdb;\\n --ion-color-step-900: #e7e7e7;\\n --ion-color-step-950: #f3f3f3;\\n --ion-item-background: #1e1e1e;\\n --ion-toolbar-background: #1f1f1f;\\n --ion-tab-bar-background: #1f1f1f;\\n }\\n}\\n.button {\\n background-color: none !important;\\n}\\n.no-scrolls .mat-dialog-container {\\n overflow: hidden !important;\\n}\\n.waiting-loader {\\n --background: #ffffff;\\n --spinner-color: #E80510;\\n --backdrop-opacity: 0.6;\\n color: #fff;\\n}\\n.user-info-css {\\n --background:#ffff;\\n}\\n.user-info-css .popover-wrapper .popover-content {\\n width: 300px;\\n padding: 0px !important;\\n}\\n.sq-input {\\n height: 56px;\\n box-sizing: border-box;\\n border: 1px solid #E0E2E3;\\n background-color: white;\\n border-radius: 6px;\\n display: inline-block;\\n transition: border-color 0.2s ease-in-out;\\n}\", \"\",{\"version\":3,\"sources\":[\"C:\\\\Rohith_Work\\\\Citadel\\\\Citadel\\\\thnxgivingfrontendnew\\\\thanksgivingfrontend/src\\\\theme\\\\variables.scss\",\"C:\\\\Rohith_Work\\\\Citadel\\\\Citadel\\\\thnxgivingfrontendnew\\\\thanksgivingfrontend/node_modules\\\\@angular\\\\material\\\\_theming.scss\",\"variables.scss\"],\"names\":[],\"mappings\":\"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\",\"file\":\"variables.scss\",\"sourcesContent\":[\"// Ionic Variables and Theming. For more info, please see:\\r\\n// http://ionicframework.com/docs/theming/\\r\\n\\r\\n/** Ionic CSS Variables **/\\r\\n@import '~@angular/material/theming';\\r\\n@include mat-core();\\r\\n$teal-primary: mat-palette($mat-red,400,200);\\r\\n$teal-accent: mat-palette($mat-amber, A200, A100, A400);\\r\\n$teal-warn: mat-palette($mat-deep-orange);\\r\\n\\r\\n\\r\\n$teal-dark-theme: mat-dark-theme($teal-primary, $teal-accent, $teal-warn);\\r\\n$teal-light-theme: mat-light-theme($teal-primary, $teal-accent, $teal-warn);\\r\\n\\r\\n// .teal-theme-css{\\r\\n // color: mat-palette($mat-black);\\r\\n\\r\\n // Get a specific hue for a palette. \\r\\n // See https://material.io/archive/guidelines/style/color.html#color-color-palette for hues.\\r\\n // background-color: mat-color($teal-accent, 300);\\r\\n\\r\\n // Get a relative color for a hue ('lighter' or 'darker')\\r\\n // outline-color: mat-palette($mat-black, lighter);\\r\\n\\r\\n // Get a contrast color for a hue by adding `-contrast` to any other key.\\r\\n // border-color: mat-palette($mat-black, '100-contrast');\\r\\n @include angular-material-theme($teal-light-theme);\\r\\n:root {\\r\\n --ion-color-spinner: #2f2a28;\\r\\n --ion-color-spinner-rgb: 47,42,40;\\r\\n --ion-color-spinner-contrast: #ffffff;\\r\\n --ion-color-spinner-contrast-rgb: 255,255,255;\\r\\n --ion-color-spinner-shade: #292523;\\r\\n --ion-color-spinner-tint: #443f3e;\\r\\n /** primary **/\\r\\n --ion-color-primary: #E80510;\\r\\n --ion-color-primary-rgb: 56, 128, 255;\\r\\n --ion-color-primary-contrast: #ffffff;\\r\\n --ion-color-primary-contrast-rgb: 255, 255, 255;\\r\\n --ion-color-primary-shade: #3171e0;\\r\\n --ion-color-primary-tint: #4c8dff;\\r\\n\\r\\n\\r\\n \\r\\n .add_item{\\r\\n \\r\\n margin-right: auto;\\r\\n font-family: \\\"Montserrat-Bold\\\";\\r\\n\\r\\n }\\r\\n\\r\\n /** secondary **/\\r\\n --ion-color-secondary: white;\\r\\n --ion-color-secondary-rgb: 61, 194, 255;\\r\\n --ion-color-secondary-contrast: #E80510;\\r\\n --ion-color-secondary-contrast-rgb: 255, 255, 255;\\r\\n --ion-color-secondary-shade: #36abe0;\\r\\n --ion-color-secondary-tint: #50c8ff;\\r\\n\\r\\n /** tertiary **/\\r\\n --ion-color-tertiary: #5260ff;\\r\\n --ion-color-tertiary-rgb: 82, 96, 255;\\r\\n --ion-color-tertiary-contrast: #ffffff;\\r\\n --ion-color-tertiary-contrast-rgb: 255, 255, 255;\\r\\n --ion-color-tertiary-shade: #4854e0;\\r\\n --ion-color-tertiary-tint: #6370ff;\\r\\n\\r\\n /** success **/\\r\\n --ion-color-success: #2dd36f;\\r\\n --ion-color-success-rgb: 45, 211, 111;\\r\\n --ion-color-success-contrast: #ffffff;\\r\\n --ion-color-success-contrast-rgb: 255, 255, 255;\\r\\n --ion-color-success-shade: #28ba62;\\r\\n --ion-color-success-tint: #42d77d;\\r\\n\\r\\n /** warning **/\\r\\n --ion-color-warning: #ffc409;\\r\\n --ion-color-warning-rgb: 255, 196, 9;\\r\\n --ion-color-warning-contrast: #000000;\\r\\n --ion-color-warning-contrast-rgb: 0, 0, 0;\\r\\n --ion-color-warning-shade: #e0ac08;\\r\\n --ion-color-warning-tint: #ffca22;\\r\\n\\r\\n /** danger **/\\r\\n --ion-color-danger: #eb445a;\\r\\n --ion-color-danger-rgb: 235, 68, 90;\\r\\n --ion-color-danger-contrast: #ffffff;\\r\\n --ion-color-danger-contrast-rgb: 255, 255, 255;\\r\\n --ion-color-danger-shade: #cf3c4f;\\r\\n --ion-color-danger-tint: #ed576b;\\r\\n\\r\\n /** dark **/\\r\\n --ion-color-dark: #222428;\\r\\n --ion-color-dark-rgb: 34, 36, 40;\\r\\n --ion-color-dark-contrast: #ffffff;\\r\\n --ion-color-dark-contrast-rgb: 255, 255, 255;\\r\\n --ion-color-dark-shade: #1e2023;\\r\\n --ion-color-dark-tint: #383a3e;\\r\\n\\r\\n /** medium **/\\r\\n --ion-color-medium: #92949c;\\r\\n --ion-color-medium-rgb: 146, 148, 156;\\r\\n --ion-color-medium-contrast: #ffffff;\\r\\n --ion-color-medium-contrast-rgb: 255, 255, 255;\\r\\n --ion-color-medium-shade: #808289;\\r\\n --ion-color-medium-tint: #9d9fa6;\\r\\n\\r\\n /** light **/\\r\\n --ion-color-light: #f4f5f8;\\r\\n --ion-color-light-rgb: 244, 245, 248;\\r\\n --ion-color-light-contrast: #000000;\\r\\n --ion-color-light-contrast-rgb: 0, 0, 0;\\r\\n --ion-color-light-shade: #d7d8da;\\r\\n --ion-color-light-tint: #f5f6f9;\\r\\n}\\r\\n.ion-color-spinner {\\r\\n --ion-color-base: var(--ion-color-spinner);\\r\\n --ion-color-base-rgb: var(--ion-color-spinner-rgb);\\r\\n --ion-color-contrast: var(--ion-color-spinner-contrast);\\r\\n --ion-color-contrast-rgb: var(--ion-color-spinner-contrast-rgb);\\r\\n --ion-color-shade: var(--ion-color-spinner-shade);\\r\\n --ion-color-tint: var(--ion-color-spinner-tint);\\r\\n}\\r\\n\\r\\n@media (prefers-color-scheme: dark) {\\r\\n /*\\r\\n * Dark Colors\\r\\n * -------------------------------------------\\r\\n */\\r\\n\\r\\n body {\\r\\n --ion-color-primary: #428cff;\\r\\n --ion-color-primary-rgb: 66,140,255;\\r\\n --ion-color-primary-contrast: #ffffff;\\r\\n --ion-color-primary-contrast-rgb: 255,255,255;\\r\\n --ion-color-primary-shade: #3a7be0;\\r\\n --ion-color-primary-tint: #5598ff;\\r\\n\\r\\n --ion-color-secondary: #50c8ff;\\r\\n --ion-color-secondary-rgb: 80,200,255;\\r\\n --ion-color-secondary-contrast: #ffffff;\\r\\n --ion-color-secondary-contrast-rgb: 255,255,255;\\r\\n --ion-color-secondary-shade: #46b0e0;\\r\\n --ion-color-secondary-tint: #62ceff;\\r\\n\\r\\n --ion-color-tertiary: #6a64ff;\\r\\n --ion-color-tertiary-rgb: 106,100,255;\\r\\n --ion-color-tertiary-contrast: #ffffff;\\r\\n --ion-color-tertiary-contrast-rgb: 255,255,255;\\r\\n --ion-color-tertiary-shade: #5d58e0;\\r\\n --ion-color-tertiary-tint: #7974ff;\\r\\n\\r\\n --ion-color-success: #2fdf75;\\r\\n --ion-color-success-rgb: 47,223,117;\\r\\n --ion-color-success-contrast: #000000;\\r\\n --ion-color-success-contrast-rgb: 0,0,0;\\r\\n --ion-color-success-shade: #29c467;\\r\\n --ion-color-success-tint: #44e283;\\r\\n\\r\\n --ion-color-warning: #ffd534;\\r\\n --ion-color-warning-rgb: 255,213,52;\\r\\n --ion-color-warning-contrast: #000000;\\r\\n --ion-color-warning-contrast-rgb: 0,0,0;\\r\\n --ion-color-warning-shade: #e0bb2e;\\r\\n --ion-color-warning-tint: #ffd948;\\r\\n\\r\\n --ion-color-danger: #ff4961;\\r\\n --ion-color-danger-rgb: 255,73,97;\\r\\n --ion-color-danger-contrast: #ffffff;\\r\\n --ion-color-danger-contrast-rgb: 255,255,255;\\r\\n --ion-color-danger-shade: #e04055;\\r\\n --ion-color-danger-tint: #ff5b71;\\r\\n\\r\\n \\r\\n \\r\\n --ion-color-dark: #f4f5f8;\\r\\n --ion-color-dark-rgb: 244,245,248;\\r\\n --ion-color-dark-contrast: #000000;\\r\\n --ion-color-dark-contrast-rgb: 0,0,0;\\r\\n --ion-color-dark-shade: #d7d8da;\\r\\n --ion-color-dark-tint: #f5f6f9;\\r\\n\\r\\n --ion-color-medium: #989aa2;\\r\\n --ion-color-medium-rgb: 152,154,162;\\r\\n --ion-color-medium-contrast: #000000;\\r\\n --ion-color-medium-contrast-rgb: 0,0,0;\\r\\n --ion-color-medium-shade: #86888f;\\r\\n --ion-color-medium-tint: #a2a4ab;\\r\\n\\r\\n --ion-color-light: #222428;\\r\\n --ion-color-light-rgb: 34,36,40;\\r\\n --ion-color-light-contrast: #ffffff;\\r\\n --ion-color-light-contrast-rgb: 255,255,255;\\r\\n --ion-color-light-shade: #1e2023;\\r\\n --ion-color-light-tint: #383a3e;\\r\\n }\\r\\n\\r\\n /*\\r\\n * iOS Dark Theme\\r\\n * -------------------------------------------\\r\\n */\\r\\n\\r\\n .ios body {\\r\\n --ion-background-color: #000000;\\r\\n --ion-background-color-rgb: 0,0,0;\\r\\n\\r\\n --ion-text-color: #ffffff;\\r\\n --ion-text-color-rgb: 255,255,255;\\r\\n\\r\\n --ion-color-step-50: #0d0d0d;\\r\\n --ion-color-step-100: #1a1a1a;\\r\\n --ion-color-step-150: #262626;\\r\\n --ion-color-step-200: #333333;\\r\\n --ion-color-step-250: #404040;\\r\\n --ion-color-step-300: #4d4d4d;\\r\\n --ion-color-step-350: #595959;\\r\\n --ion-color-step-400: #666666;\\r\\n --ion-color-step-450: #737373;\\r\\n --ion-color-step-500: #808080;\\r\\n --ion-color-step-550: #8c8c8c;\\r\\n --ion-color-step-600: #999999;\\r\\n --ion-color-step-650: #a6a6a6;\\r\\n --ion-color-step-700: #b3b3b3;\\r\\n --ion-color-step-750: #bfbfbf;\\r\\n --ion-color-step-800: #cccccc;\\r\\n --ion-color-step-850: #d9d9d9;\\r\\n --ion-color-step-900: #e6e6e6;\\r\\n --ion-color-step-950: #f2f2f2;\\r\\n\\r\\n --ion-toolbar-background: #0d0d0d;\\r\\n\\r\\n --ion-item-background: #000000;\\r\\n }\\r\\n\\r\\n\\r\\n /*\\r\\n * Material Design Dark Theme\\r\\n * -------------------------------------------\\r\\n */\\r\\n\\r\\n .md body {\\r\\n --ion-background-color: #121212;\\r\\n --ion-background-color-rgb: 18,18,18;\\r\\n\\r\\n --ion-text-color: #ffffff;\\r\\n --ion-text-color-rgb: 255,255,255;\\r\\n\\r\\n --ion-border-color: #222222;\\r\\n\\r\\n --ion-color-step-50: #1e1e1e;\\r\\n --ion-color-step-100: #2a2a2a;\\r\\n --ion-color-step-150: #363636;\\r\\n --ion-color-step-200: #414141;\\r\\n --ion-color-step-250: #4d4d4d;\\r\\n --ion-color-step-300: #595959;\\r\\n --ion-color-step-350: #656565;\\r\\n --ion-color-step-400: #717171;\\r\\n --ion-color-step-450: #7d7d7d;\\r\\n --ion-color-step-500: #898989;\\r\\n --ion-color-step-550: #949494;\\r\\n --ion-color-step-600: #a0a0a0;\\r\\n --ion-color-step-650: #acacac;\\r\\n --ion-color-step-700: #b8b8b8;\\r\\n --ion-color-step-750: #c4c4c4;\\r\\n --ion-color-step-800: #d0d0d0;\\r\\n --ion-color-step-850: #dbdbdb;\\r\\n --ion-color-step-900: #e7e7e7;\\r\\n --ion-color-step-950: #f3f3f3;\\r\\n\\r\\n --ion-item-background: #1e1e1e;\\r\\n\\r\\n --ion-toolbar-background: #1f1f1f;\\r\\n\\r\\n --ion-tab-bar-background: #1f1f1f;\\r\\n }\\r\\n}\\r\\n// ion-input{\\r\\n// --color:var(--ion-color-danger) !important;\\r\\n// }\\r\\n.button{\\r\\n background-color: none !important;\\r\\n}\\r\\n// .mat-dialog-container {\\r\\n// padding-top: 2px !important;\\r\\n// padding-left: 6px !important;\\r\\n// /* padding-right: 0px !important; */\\r\\n// width: max-content;\\r\\n// width: 277px!important;\\r\\n\\r\\n// }\\r\\n// .myapp-no-padding-dialog .mat-dialog-container {\\r\\n// padding: 0;\\r\\n// }\\r\\n// .no-padding .mat-dialog-container {\\r\\n// padding: 0 !important;\\r\\n// }\\r\\n\\r\\n.no-scrolls .mat-dialog-container {\\r\\n overflow: hidden !important;\\r\\n}\\r\\n.registration-form{\\r\\n // color:magenta;\\r\\n // --height:100% !important;\\r\\n\\r\\n\\r\\n }\\r\\n .waiting-loader{\\r\\n --background: #ffffff;;\\r\\n --spinner-color: #E80510;\\r\\n --backdrop-opacity: 0.6;\\r\\n color: #fff;\\r\\n }\\r\\n .user-info-css{\\r\\n --background:#ffff;\\r\\n .popover-wrapper{\\r\\n .popover-content{\\r\\n width:300px;\\r\\n padding:0px !important;\\r\\n }\\r\\n }\\r\\n }\\r\\n .sq-input{\\r\\n // background-color: rgba(40, 179, 57, 0.37) !important;\\r\\n // color:white;\\r\\n // display:auto;\\r\\n \\r\\n // font-size:14px !important;\\r\\n height: 56px;\\r\\nbox-sizing: border-box;\\r\\nborder: 1px solid #E0E2E3;\\r\\nbackground-color: white;\\r\\nborder-radius: 6px;\\r\\ndisplay: inline-block;\\r\\n-webkit-transition: border-color .2s ease-in-out;\\r\\n -moz-transition: border-color .2s ease-in-out;\\r\\n -ms-transition: border-color .2s ease-in-out;\\r\\n transition: border-color .2s ease-in-out;\\r\\n }\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \",\"// Import all the theming functionality.\\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$cdk-z-index-overlay-container: 1000 !default;\\n$cdk-z-index-overlay: 1000 !default;\\n$cdk-z-index-overlay-backdrop: 1000 !default;\\n\\n// Background color for all of the backdrops\\n$cdk-overlay-dark-backdrop-background: 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\\n@mixin cdk-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: $cdk-z-index-overlay-container;\\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: $cdk-z-index-overlay;\\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: $cdk-z-index-overlay;\\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: $cdk-z-index-overlay-backdrop;\\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 // In high contrast mode the rgba background will become solid so we need to fall back\\n // to making it opaque using `opacity`. Note that we can't use the `cdk-high-contrast`\\n // mixin, because we can't normalize the import path to the _a11y.scss both for the\\n // source and when this file is distributed. See #10908.\\n @media screen and (-ms-high-contrast: active) {\\n opacity: 0.6;\\n }\\n }\\n }\\n\\n .cdk-overlay-dark-backdrop {\\n background: $cdk-overlay-dark-backdrop-background;\\n }\\n\\n .cdk-overlay-transparent-backdrop {\\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 }\\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: $cdk-z-index-overlay;\\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\\n@mixin cdk-a11y {\\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 // 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}\\n\\n/// Emits the mixin's content nested under `$selector-context` if `$selector-context`\\n/// is non-empty.\\n/// @param selector-context The selector under which to nest the mixin's content.\\n@mixin _cdk-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 target Which kind of high contrast setting to target. Defaults to `active`, can be\\n/// `white-on-black` or `black-on-white`.\\n/// @param 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 cdk-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 .cdk-high-contrast-#{$target} {\\n @include _cdk-optionally-nest-content($selector-context) {\\n @content;\\n }\\n }\\n }\\n\\n @if ($encapsulation != 'off') {\\n .cdk-high-contrast-#{$target} :host {\\n @include _cdk-optionally-nest-content($selector-context) {\\n @content;\\n }\\n }\\n }\\n }\\n}\\n\\n// Core styles that enable monitoring autofill state of text fields.\\n@mixin cdk-text-field {\\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 // 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 _cdk-textarea-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 _cdk-textarea-autosize-measuring-base;\\n height: 0 !important;\\n }\\n}\\n\\n@mixin _cdk-textarea-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$cdk-text-field-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 cdk-text-field-autofill-color($background, $foreground:'') {\\n @keyframes cdk-text-field-autofill-color-#{$cdk-text-field-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-#{$cdk-text-field-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-#{$cdk-text-field-autofill-color-frame-count} both;\\n }\\n\\n $cdk-text-field-autofill-color-frame-count:\\n $cdk-text-field-autofill-color-frame-count + 1 !global;\\n}\\n\\n\\n// Core styles that can be used to apply material design treatments to any element.\\n// Media queries\\n// TODO(josephperrott): Change $mat-xsmall and $mat-small usages to rely on BreakpointObserver,\\n$mat-xsmall: 'max-width: 599px';\\n$mat-small: 'max-width: 959px';\\n\\n// TODO: Revisit all z-indices before beta\\n// z-index master list\\n\\n$z-index-fab: 20 !default;\\n$z-index-drawer: 100 !default;\\n\\n// Global constants\\n$pi: 3.14159265;\\n\\n// Padding between input toggles and their labels\\n$mat-toggle-padding: 8px !default;\\n// Width and height of input toggles\\n$mat-toggle-size: 20px !default;\\n\\n// Easing Curves\\n// TODO(jelbourn): all of these need to be revisited\\n\\n// The default animation curves used by material design.\\n$mat-linear-out-slow-in-timing-function: cubic-bezier(0, 0, 0.2, 0.1) !default;\\n$mat-fast-out-slow-in-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !default;\\n$mat-fast-out-linear-in-timing-function: cubic-bezier(0.4, 0, 1, 1) !default;\\n\\n$ease-in-out-curve-function: cubic-bezier(0.35, 0, 0.25, 1) !default;\\n\\n$swift-ease-out-duration: 400ms !default;\\n$swift-ease-out-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;\\n$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-timing-function !default;\\n\\n$swift-ease-in-duration: 300ms !default;\\n$swift-ease-in-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2) !default;\\n$swift-ease-in: all $swift-ease-in-duration $swift-ease-in-timing-function !default;\\n\\n$swift-ease-in-out-duration: 500ms !default;\\n$swift-ease-in-out-timing-function: $ease-in-out-curve-function !default;\\n$swift-ease-in-out: all $swift-ease-in-out-duration $swift-ease-in-out-timing-function !default;\\n\\n$swift-linear-duration: 80ms !default;\\n$swift-linear-timing-function: linear !default;\\n$swift-linear: all $swift-linear-duration $swift-linear-timing-function !default;\\n\\n\\n\\n// A collection of mixins and CSS classes that can be used to apply elevation to a material\\n// element.\\n// See: https://material.io/design/environment/elevation.html\\n// Examples:\\n//\\n//\\n// .mat-foo {\\n// @include $mat-elevation(2);\\n//\\n// &:active {\\n// @include $mat-elevation(8);\\n// }\\n// }\\n//\\n//
\\n//\\n// For an explanation of the design behind how elevation is implemented, see the design doc at\\n// https://goo.gl/Kq0k9Z.\\n\\n// Colors for umbra, penumbra, and ambient shadows. As described in the design doc, each elevation\\n// level is created using a set of 3 shadow values, one for umbra (the shadow representing the\\n// space completely obscured by an object relative to its light source), one for penumbra (the\\n// space partially obscured by an object), and one for ambient (the space which contains the object\\n// itself). For a further explanation of these terms and their meanings, see\\n// https://en.wikipedia.org/wiki/Umbra,_penumbra_and_antumbra.\\n\\n// Maps for the different shadow sets and their values within each z-space. These values were\\n// created by taking a few reference shadow sets created by Google's Designers and interpolating\\n// all of the values between them.\\n\\n@function _get-umbra-map($color, $opacity) {\\n $shadow-color: if(type-of($color) == color, rgba($color, $opacity * 0.2), $color);\\n\\n @return (\\n 0: '0px 0px 0px 0px #{$shadow-color}',\\n 1: '0px 2px 1px -1px #{$shadow-color}',\\n 2: '0px 3px 1px -2px #{$shadow-color}',\\n 3: '0px 3px 3px -2px #{$shadow-color}',\\n 4: '0px 2px 4px -1px #{$shadow-color}',\\n 5: '0px 3px 5px -1px #{$shadow-color}',\\n 6: '0px 3px 5px -1px #{$shadow-color}',\\n 7: '0px 4px 5px -2px #{$shadow-color}',\\n 8: '0px 5px 5px -3px #{$shadow-color}',\\n 9: '0px 5px 6px -3px #{$shadow-color}',\\n 10: '0px 6px 6px -3px #{$shadow-color}',\\n 11: '0px 6px 7px -4px #{$shadow-color}',\\n 12: '0px 7px 8px -4px #{$shadow-color}',\\n 13: '0px 7px 8px -4px #{$shadow-color}',\\n 14: '0px 7px 9px -4px #{$shadow-color}',\\n 15: '0px 8px 9px -5px #{$shadow-color}',\\n 16: '0px 8px 10px -5px #{$shadow-color}',\\n 17: '0px 8px 11px -5px #{$shadow-color}',\\n 18: '0px 9px 11px -5px #{$shadow-color}',\\n 19: '0px 9px 12px -6px #{$shadow-color}',\\n 20: '0px 10px 13px -6px #{$shadow-color}',\\n 21: '0px 10px 13px -6px #{$shadow-color}',\\n 22: '0px 10px 14px -6px #{$shadow-color}',\\n 23: '0px 11px 14px -7px #{$shadow-color}',\\n 24: '0px 11px 15px -7px #{$shadow-color}'\\n );\\n}\\n\\n@function _get-penumbra-map($color, $opacity) {\\n $shadow-color: if(type-of($color) == color, rgba($color, $opacity * 0.14), $color);\\n\\n @return (\\n 0: '0px 0px 0px 0px #{$shadow-color}',\\n 1: '0px 1px 1px 0px #{$shadow-color}',\\n 2: '0px 2px 2px 0px #{$shadow-color}',\\n 3: '0px 3px 4px 0px #{$shadow-color}',\\n 4: '0px 4px 5px 0px #{$shadow-color}',\\n 5: '0px 5px 8px 0px #{$shadow-color}',\\n 6: '0px 6px 10px 0px #{$shadow-color}',\\n 7: '0px 7px 10px 1px #{$shadow-color}',\\n 8: '0px 8px 10px 1px #{$shadow-color}',\\n 9: '0px 9px 12px 1px #{$shadow-color}',\\n 10: '0px 10px 14px 1px #{$shadow-color}',\\n 11: '0px 11px 15px 1px #{$shadow-color}',\\n 12: '0px 12px 17px 2px #{$shadow-color}',\\n 13: '0px 13px 19px 2px #{$shadow-color}',\\n 14: '0px 14px 21px 2px #{$shadow-color}',\\n 15: '0px 15px 22px 2px #{$shadow-color}',\\n 16: '0px 16px 24px 2px #{$shadow-color}',\\n 17: '0px 17px 26px 2px #{$shadow-color}',\\n 18: '0px 18px 28px 2px #{$shadow-color}',\\n 19: '0px 19px 29px 2px #{$shadow-color}',\\n 20: '0px 20px 31px 3px #{$shadow-color}',\\n 21: '0px 21px 33px 3px #{$shadow-color}',\\n 22: '0px 22px 35px 3px #{$shadow-color}',\\n 23: '0px 23px 36px 3px #{$shadow-color}',\\n 24: '0px 24px 38px 3px #{$shadow-color}'\\n );\\n}\\n\\n@function _get-ambient-map($color, $opacity) {\\n $shadow-color: if(type-of($color) == color, rgba($color, $opacity * 0.12), $color);\\n\\n @return (\\n 0: '0px 0px 0px 0px #{$shadow-color}',\\n 1: '0px 1px 3px 0px #{$shadow-color}',\\n 2: '0px 1px 5px 0px #{$shadow-color}',\\n 3: '0px 1px 8px 0px #{$shadow-color}',\\n 4: '0px 1px 10px 0px #{$shadow-color}',\\n 5: '0px 1px 14px 0px #{$shadow-color}',\\n 6: '0px 1px 18px 0px #{$shadow-color}',\\n 7: '0px 2px 16px 1px #{$shadow-color}',\\n 8: '0px 3px 14px 2px #{$shadow-color}',\\n 9: '0px 3px 16px 2px #{$shadow-color}',\\n 10: '0px 4px 18px 3px #{$shadow-color}',\\n 11: '0px 4px 20px 3px #{$shadow-color}',\\n 12: '0px 5px 22px 4px #{$shadow-color}',\\n 13: '0px 5px 24px 4px #{$shadow-color}',\\n 14: '0px 5px 26px 4px #{$shadow-color}',\\n 15: '0px 6px 28px 5px #{$shadow-color}',\\n 16: '0px 6px 30px 5px #{$shadow-color}',\\n 17: '0px 6px 32px 5px #{$shadow-color}',\\n 18: '0px 7px 34px 6px #{$shadow-color}',\\n 19: '0px 7px 36px 6px #{$shadow-color}',\\n 20: '0px 8px 38px 7px #{$shadow-color}',\\n 21: '0px 8px 40px 7px #{$shadow-color}',\\n 22: '0px 8px 42px 7px #{$shadow-color}',\\n 23: '0px 9px 44px 8px #{$shadow-color}',\\n 24: '0px 9px 46px 8px #{$shadow-color}'\\n );\\n}\\n\\n// The default duration value for elevation transitions.\\n$mat-elevation-transition-duration: 280ms !default;\\n\\n// The default easing value for elevation transitions.\\n$mat-elevation-transition-timing-function: $mat-fast-out-slow-in-timing-function;\\n\\n// The default color for elevation shadows.\\n$mat-elevation-color: black !default;\\n\\n// The default opacity scaling value for elevation shadows.\\n$mat-elevation-opacity: 1 !default;\\n\\n// Prefix for elevation-related selectors.\\n$_mat-elevation-prefix: 'mat-elevation-z';\\n\\n// Applies the correct css rules to an element to give it the elevation specified by $zValue.\\n// The $zValue must be between 0 and 24.\\n@mixin mat-elevation($zValue, $color: $mat-elevation-color, $opacity: $mat-elevation-opacity) {\\n @if type-of($zValue) != number or not unitless($zValue) {\\n @error '$zValue must be a unitless number';\\n }\\n @if $zValue < 0 or $zValue > 24 {\\n @error '$zValue must be between 0 and 24';\\n }\\n\\n box-shadow: #{map-get(_get-umbra-map($color, $opacity), $zValue)},\\n #{map-get(_get-penumbra-map($color, $opacity), $zValue)},\\n #{map-get(_get-ambient-map($color, $opacity), $zValue)};\\n}\\n\\n@mixin _mat-theme-elevation($zValue, $theme, $opacity: $mat-elevation-opacity) {\\n $foreground: map-get($theme, foreground);\\n $elevation-color: map-get($foreground, elevation);\\n $elevation-color-or-default: if($elevation-color == null, $mat-elevation-color, $elevation-color);\\n\\n @include mat-elevation($zValue, $elevation-color-or-default, $opacity);\\n}\\n\\n// Applies the elevation to an element in a manner that allows\\n// consumers to override it via the Material elevation classes.\\n@mixin mat-overridable-elevation(\\n $zValue,\\n $color: $mat-elevation-color,\\n $opacity: $mat-elevation-opacity) {\\n &:not([class*='#{$_mat-elevation-prefix}']) {\\n @include mat-elevation($zValue, $color, $opacity);\\n }\\n}\\n\\n@mixin _mat-theme-overridable-elevation($zValue, $theme, $opacity: $mat-elevation-opacity) {\\n $foreground: map-get($theme, foreground);\\n $elevation-color: map-get($foreground, elevation);\\n $elevation-color-or-default: if($elevation-color == null, $mat-elevation-color, $elevation-color);\\n\\n @include mat-overridable-elevation($zValue, $elevation-color-or-default, $opacity);\\n}\\n\\n// Returns a string that can be used as the value for a transition property for elevation.\\n// Calling this function directly is useful in situations where a component needs to transition\\n// more than one property.\\n//\\n// .foo {\\n// transition: mat-elevation-transition-property-value(), opacity 100ms ease;\\n// }\\n@function mat-elevation-transition-property-value(\\n $duration: $mat-elevation-transition-duration,\\n $easing: $mat-elevation-transition-timing-function) {\\n @return box-shadow #{$duration} #{$easing};\\n}\\n\\n// Applies the correct css rules needed to have an element transition between elevations.\\n// This mixin should be applied to elements whose elevation values will change depending on their\\n// context (e.g. when active or disabled).\\n//\\n// NOTE(traviskaufman): Both this mixin and the above function use default parameters so they can\\n// be used in the same way by clients.\\n@mixin mat-elevation-transition(\\n $duration: $mat-elevation-transition-duration,\\n $easing: $mat-elevation-transition-timing-function) {\\n transition: mat-elevation-transition-property-value($duration, $easing);\\n}\\n\\n// Color palettes from the Material Design spec.\\n// See https://material.io/design/color/\\n//\\n// Contrast colors are hard-coded because it is too difficult (probably impossible) to\\n// calculate them. These contrast colors are pulled from the public Material Design spec swatches.\\n// While the contrast colors in the spec are not prescriptive, we use them for convenience.\\n\\n\\n// @deprecated renamed to $dark-primary-text.\\n// @breaking-change 8.0.0\\n$black-87-opacity: rgba(black, 0.87);\\n// @deprecated renamed to $light-primary-text.\\n// @breaking-change 8.0.0\\n$white-87-opacity: rgba(white, 0.87);\\n// @deprecated use $dark-[secondary-text,disabled-text,dividers,focused] instead.\\n// @breaking-change 8.0.0\\n$black-12-opacity: rgba(black, 0.12);\\n// @deprecated use $light-[secondary-text,disabled-text,dividers,focused] instead.\\n// @breaking-change 8.0.0\\n$white-12-opacity: rgba(white, 0.12);\\n// @deprecated use $dark-[secondary-text,disabled-text,dividers,focused] instead.\\n// @breaking-change 8.0.0\\n$black-6-opacity: rgba(black, 0.06);\\n// @deprecated use $light-[secondary-text,disabled-text,dividers,focused] instead.\\n// @breaking-change 8.0.0\\n$white-6-opacity: rgba(white, 0.06);\\n\\n$dark-primary-text: rgba(black, 0.87);\\n$dark-secondary-text: rgba(black, 0.54);\\n$dark-disabled-text: rgba(black, 0.38);\\n$dark-dividers: rgba(black, 0.12);\\n$dark-focused: rgba(black, 0.12);\\n$light-primary-text: white;\\n$light-secondary-text: rgba(white, 0.7);\\n$light-disabled-text: rgba(white, 0.5);\\n$light-dividers: rgba(white, 0.12);\\n$light-focused: rgba(white, 0.12);\\n\\n$mat-red: (\\n 50: #ffebee,\\n 100: #ffcdd2,\\n 200: #ef9a9a,\\n 300: #e57373,\\n 400: #ef5350,\\n 500: #f44336,\\n 600: #e53935,\\n 700: #d32f2f,\\n 800: #c62828,\\n 900: #b71c1c,\\n A100: #ff8a80,\\n A200: #ff5252,\\n A400: #ff1744,\\n A700: #d50000,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-pink: (\\n 50: #fce4ec,\\n 100: #f8bbd0,\\n 200: #f48fb1,\\n 300: #f06292,\\n 400: #ec407a,\\n 500: #e91e63,\\n 600: #d81b60,\\n 700: #c2185b,\\n 800: #ad1457,\\n 900: #880e4f,\\n A100: #ff80ab,\\n A200: #ff4081,\\n A400: #f50057,\\n A700: #c51162,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-purple: (\\n 50: #f3e5f5,\\n 100: #e1bee7,\\n 200: #ce93d8,\\n 300: #ba68c8,\\n 400: #ab47bc,\\n 500: #9c27b0,\\n 600: #8e24aa,\\n 700: #7b1fa2,\\n 800: #6a1b9a,\\n 900: #4a148c,\\n A100: #ea80fc,\\n A200: #e040fb,\\n A400: #d500f9,\\n A700: #aa00ff,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $light-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-deep-purple: (\\n 50: #ede7f6,\\n 100: #d1c4e9,\\n 200: #b39ddb,\\n 300: #9575cd,\\n 400: #7e57c2,\\n 500: #673ab7,\\n 600: #5e35b1,\\n 700: #512da8,\\n 800: #4527a0,\\n 900: #311b92,\\n A100: #b388ff,\\n A200: #7c4dff,\\n A400: #651fff,\\n A700: #6200ea,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $light-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-indigo: (\\n 50: #e8eaf6,\\n 100: #c5cae9,\\n 200: #9fa8da,\\n 300: #7986cb,\\n 400: #5c6bc0,\\n 500: #3f51b5,\\n 600: #3949ab,\\n 700: #303f9f,\\n 800: #283593,\\n 900: #1a237e,\\n A100: #8c9eff,\\n A200: #536dfe,\\n A400: #3d5afe,\\n A700: #304ffe,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $light-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-blue: (\\n 50: #e3f2fd,\\n 100: #bbdefb,\\n 200: #90caf9,\\n 300: #64b5f6,\\n 400: #42a5f5,\\n 500: #2196f3,\\n 600: #1e88e5,\\n 700: #1976d2,\\n 800: #1565c0,\\n 900: #0d47a1,\\n A100: #82b1ff,\\n A200: #448aff,\\n A400: #2979ff,\\n A700: #2962ff,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $light-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-light-blue: (\\n 50: #e1f5fe,\\n 100: #b3e5fc,\\n 200: #81d4fa,\\n 300: #4fc3f7,\\n 400: #29b6f6,\\n 500: #03a9f4,\\n 600: #039be5,\\n 700: #0288d1,\\n 800: #0277bd,\\n 900: #01579b,\\n A100: #80d8ff,\\n A200: #40c4ff,\\n A400: #00b0ff,\\n A700: #0091ea,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-cyan: (\\n 50: #e0f7fa,\\n 100: #b2ebf2,\\n 200: #80deea,\\n 300: #4dd0e1,\\n 400: #26c6da,\\n 500: #00bcd4,\\n 600: #00acc1,\\n 700: #0097a7,\\n 800: #00838f,\\n 900: #006064,\\n A100: #84ffff,\\n A200: #18ffff,\\n A400: #00e5ff,\\n A700: #00b8d4,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-teal: (\\n 50: #e0f2f1,\\n 100: #b2dfdb,\\n 200: #80cbc4,\\n 300: #4db6ac,\\n 400: #26a69a,\\n 500: #009688,\\n 600: #00897b,\\n 700: #00796b,\\n 800: #00695c,\\n 900: #004d40,\\n A100: #a7ffeb,\\n A200: #64ffda,\\n A400: #1de9b6,\\n A700: #00bfa5,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-green: (\\n 50: #e8f5e9,\\n 100: #c8e6c9,\\n 200: #a5d6a7,\\n 300: #81c784,\\n 400: #66bb6a,\\n 500: #4caf50,\\n 600: #43a047,\\n 700: #388e3c,\\n 800: #2e7d32,\\n 900: #1b5e20,\\n A100: #b9f6ca,\\n A200: #69f0ae,\\n A400: #00e676,\\n A700: #00c853,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-light-green: (\\n 50: #f1f8e9,\\n 100: #dcedc8,\\n 200: #c5e1a5,\\n 300: #aed581,\\n 400: #9ccc65,\\n 500: #8bc34a,\\n 600: #7cb342,\\n 700: #689f38,\\n 800: #558b2f,\\n 900: #33691e,\\n A100: #ccff90,\\n A200: #b2ff59,\\n A400: #76ff03,\\n A700: #64dd17,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-lime: (\\n 50: #f9fbe7,\\n 100: #f0f4c3,\\n 200: #e6ee9c,\\n 300: #dce775,\\n 400: #d4e157,\\n 500: #cddc39,\\n 600: #c0ca33,\\n 700: #afb42b,\\n 800: #9e9d24,\\n 900: #827717,\\n A100: #f4ff81,\\n A200: #eeff41,\\n A400: #c6ff00,\\n A700: #aeea00,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $dark-primary-text,\\n 800: $dark-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-yellow: (\\n 50: #fffde7,\\n 100: #fff9c4,\\n 200: #fff59d,\\n 300: #fff176,\\n 400: #ffee58,\\n 500: #ffeb3b,\\n 600: #fdd835,\\n 700: #fbc02d,\\n 800: #f9a825,\\n 900: #f57f17,\\n A100: #ffff8d,\\n A200: #ffff00,\\n A400: #ffea00,\\n A700: #ffd600,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $dark-primary-text,\\n 800: $dark-primary-text,\\n 900: $dark-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-amber: (\\n 50: #fff8e1,\\n 100: #ffecb3,\\n 200: #ffe082,\\n 300: #ffd54f,\\n 400: #ffca28,\\n 500: #ffc107,\\n 600: #ffb300,\\n 700: #ffa000,\\n 800: #ff8f00,\\n 900: #ff6f00,\\n A100: #ffe57f,\\n A200: #ffd740,\\n A400: #ffc400,\\n A700: #ffab00,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $dark-primary-text,\\n 800: $dark-primary-text,\\n 900: $dark-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $dark-primary-text,\\n )\\n);\\n\\n$mat-orange: (\\n 50: #fff3e0,\\n 100: #ffe0b2,\\n 200: #ffcc80,\\n 300: #ffb74d,\\n 400: #ffa726,\\n 500: #ff9800,\\n 600: #fb8c00,\\n 700: #f57c00,\\n 800: #ef6c00,\\n 900: #e65100,\\n A100: #ffd180,\\n A200: #ffab40,\\n A400: #ff9100,\\n A700: #ff6d00,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $dark-primary-text,\\n 700: $dark-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: black,\\n )\\n);\\n\\n$mat-deep-orange: (\\n 50: #fbe9e7,\\n 100: #ffccbc,\\n 200: #ffab91,\\n 300: #ff8a65,\\n 400: #ff7043,\\n 500: #ff5722,\\n 600: #f4511e,\\n 700: #e64a19,\\n 800: #d84315,\\n 900: #bf360c,\\n A100: #ff9e80,\\n A200: #ff6e40,\\n A400: #ff3d00,\\n A700: #dd2c00,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-brown: (\\n 50: #efebe9,\\n 100: #d7ccc8,\\n 200: #bcaaa4,\\n 300: #a1887f,\\n 400: #8d6e63,\\n 500: #795548,\\n 600: #6d4c41,\\n 700: #5d4037,\\n 800: #4e342e,\\n 900: #3e2723,\\n A100: #d7ccc8,\\n A200: #bcaaa4,\\n A400: #8d6e63,\\n A700: #5d4037,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $light-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n$mat-grey: (\\n 50: #fafafa,\\n 100: #f5f5f5,\\n 200: #eeeeee,\\n 300: #e0e0e0,\\n 400: #bdbdbd,\\n 500: #9e9e9e,\\n 600: #757575,\\n 700: #616161,\\n 800: #424242,\\n 900: #212121,\\n A100: #ffffff,\\n A200: #eeeeee,\\n A400: #bdbdbd,\\n A700: #616161,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $dark-primary-text,\\n 500: $dark-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $dark-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n// Alias for alternate spelling.\\n$mat-gray: $mat-grey;\\n\\n$mat-blue-grey: (\\n 50: #eceff1,\\n 100: #cfd8dc,\\n 200: #b0bec5,\\n 300: #90a4ae,\\n 400: #78909c,\\n 500: #607d8b,\\n 600: #546e7a,\\n 700: #455a64,\\n 800: #37474f,\\n 900: #263238,\\n A100: #cfd8dc,\\n A200: #b0bec5,\\n A400: #78909c,\\n A700: #455a64,\\n contrast: (\\n 50: $dark-primary-text,\\n 100: $dark-primary-text,\\n 200: $dark-primary-text,\\n 300: $dark-primary-text,\\n 400: $light-primary-text,\\n 500: $light-primary-text,\\n 600: $light-primary-text,\\n 700: $light-primary-text,\\n 800: $light-primary-text,\\n 900: $light-primary-text,\\n A100: $dark-primary-text,\\n A200: $dark-primary-text,\\n A400: $light-primary-text,\\n A700: $light-primary-text,\\n )\\n);\\n\\n// Alias for alternate spelling.\\n$mat-blue-gray: $mat-blue-grey;\\n\\n\\n// Background palette for light themes.\\n$mat-light-theme-background: (\\n status-bar: map_get($mat-grey, 300),\\n app-bar: map_get($mat-grey, 100),\\n background: map_get($mat-grey, 50),\\n hover: rgba(black, 0.04), // TODO(kara): check style with Material Design UX\\n card: white,\\n dialog: white,\\n disabled-button: rgba(black, 0.12),\\n raised-button: white,\\n focused-button: $dark-focused,\\n selected-button: map_get($mat-grey, 300),\\n selected-disabled-button: map_get($mat-grey, 400),\\n disabled-button-toggle: map_get($mat-grey, 200),\\n unselected-chip: map_get($mat-grey, 300),\\n disabled-list-option: map_get($mat-grey, 200),\\n tooltip: map_get($mat-grey, 700),\\n);\\n\\n// Background palette for dark themes.\\n$mat-dark-theme-background: (\\n status-bar: black,\\n app-bar: map_get($mat-grey, 900),\\n background: #303030,\\n hover: rgba(white, 0.04), // TODO(kara): check style with Material Design UX\\n card: map_get($mat-grey, 800),\\n dialog: map_get($mat-grey, 800),\\n disabled-button: rgba(white, 0.12),\\n raised-button: map-get($mat-grey, 800),\\n focused-button: $light-focused,\\n selected-button: map_get($mat-grey, 900),\\n selected-disabled-button: map_get($mat-grey, 800),\\n disabled-button-toggle: black,\\n unselected-chip: map_get($mat-grey, 700),\\n disabled-list-option: black,\\n tooltip: map_get($mat-grey, 700),\\n);\\n\\n// Foreground palette for light themes.\\n$mat-light-theme-foreground: (\\n base: black,\\n divider: $dark-dividers,\\n dividers: $dark-dividers,\\n disabled: $dark-disabled-text,\\n disabled-button: rgba(black, 0.26),\\n disabled-text: $dark-disabled-text,\\n elevation: black,\\n hint-text: $dark-disabled-text,\\n secondary-text: $dark-secondary-text,\\n icon: rgba(black, 0.54),\\n icons: rgba(black, 0.54),\\n text: rgba(black, 0.87),\\n slider-min: rgba(black, 0.87),\\n slider-off: rgba(black, 0.26),\\n slider-off-active: rgba(black, 0.38),\\n);\\n\\n// Foreground palette for dark themes.\\n$mat-dark-theme-foreground: (\\n base: white,\\n divider: $light-dividers,\\n dividers: $light-dividers,\\n disabled: $light-disabled-text,\\n disabled-button: rgba(white, 0.3),\\n disabled-text: $light-disabled-text,\\n elevation: black,\\n hint-text: $light-disabled-text,\\n secondary-text: $light-secondary-text,\\n icon: white,\\n icons: white,\\n text: white,\\n slider-min: white,\\n slider-off: rgba(white, 0.3),\\n slider-off-active: rgba(white, 0.3),\\n);\\n\\n\\n\\n// For a given hue in a palette, return the contrast color from the map of contrast palettes.\\n// @param $color-map\\n// @param $hue\\n@function mat-contrast($palette, $hue) {\\n @return map-get(map-get($palette, contrast), $hue);\\n}\\n\\n\\n// Creates a map of hues to colors for a theme. This is used to define a theme palette in terms\\n// of the Material Design hues.\\n// @param $color-map\\n// @param $primary\\n// @param $lighter\\n@function mat-palette($base-palette, $default: 500, $lighter: 100, $darker: 700, $text: $default) {\\n $result: map_merge($base-palette, (\\n default: map-get($base-palette, $default),\\n lighter: map-get($base-palette, $lighter),\\n darker: map-get($base-palette, $darker),\\n text: map-get($base-palette, $text),\\n\\n default-contrast: mat-contrast($base-palette, $default),\\n lighter-contrast: mat-contrast($base-palette, $lighter),\\n darker-contrast: mat-contrast($base-palette, $darker)\\n ));\\n\\n // For each hue in the palette, add a \\\"-contrast\\\" color to the map.\\n @each $hue, $color in $base-palette {\\n $result: map_merge($result, (\\n '#{$hue}-contrast': mat-contrast($base-palette, $hue)\\n ));\\n }\\n\\n @return $result;\\n}\\n\\n\\n// Gets a color from a theme palette (the output of mat-palette).\\n// The hue can be one of the standard values (500, A400, etc.), one of the three preconfigured\\n// hues (default, lighter, darker), or any of the aforementioned prefixed with \\\"-contrast\\\".\\n//\\n// @param $color-map The theme palette (output of mat-palette).\\n// @param $hue The hue from the palette to use. If this is a value between 0 and 1, it will\\n// be treated as opacity.\\n// @param $opacity The alpha channel value for the color.\\n@function mat-color($palette, $hue: default, $opacity: null) {\\n // If hueKey is a number between zero and one, then it actually contains an\\n // opacity value, so recall this function with the default hue and that given opacity.\\n @if type-of($hue) == number and $hue >= 0 and $hue <= 1 {\\n @return mat-color($palette, default, $hue);\\n }\\n\\n $color: map-get($palette, $hue);\\n\\n @if (type-of($color) != color) {\\n // If the $color resolved to something different from a color (e.g. a CSS variable),\\n // we can't apply the opacity anyway so we return the value as is, otherwise Sass can\\n // throw an error or output something invalid.\\n @return $color;\\n }\\n\\n @return rgba($color, if($opacity == null, opacity($color), $opacity));\\n}\\n\\n\\n// Creates a container object for a light theme to be given to individual component theme mixins.\\n@function mat-light-theme($primary, $accent, $warn: mat-palette($mat-red)) {\\n @return (\\n primary: $primary,\\n accent: $accent,\\n warn: $warn,\\n is-dark: false,\\n foreground: $mat-light-theme-foreground,\\n background: $mat-light-theme-background,\\n );\\n}\\n\\n\\n// Creates a container object for a dark theme to be given to individual component theme mixins.\\n@function mat-dark-theme($primary, $accent, $warn: mat-palette($mat-red)) {\\n @return (\\n primary: $primary,\\n accent: $accent,\\n warn: $warn,\\n is-dark: true,\\n foreground: $mat-dark-theme-foreground,\\n background: $mat-dark-theme-background,\\n );\\n}\\n\\n\\n\\n$mat-ripple-color-opacity: 0.1;\\n\\n@mixin mat-ripple() {\\n\\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 transform: scale(0);\\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\\n/* Theme for the ripple elements.*/\\n@mixin mat-ripple-theme($theme) {\\n $foreground: map_get($theme, foreground);\\n $foreground-base: map_get($foreground, base);\\n\\n .mat-ripple-element {\\n // If the ripple color is resolves to a color *type*, we can use it directly, otherwise\\n // (e.g. it resolves to a CSS variable) we fall back to using the color and setting an opacity.\\n @if (type-of($foreground-base) == color) {\\n background-color: rgba($foreground-base, $mat-ripple-color-opacity);\\n }\\n @else {\\n background-color: $foreground-base;\\n opacity: $mat-ripple-color-opacity;\\n }\\n }\\n}\\n\\n\\n\\n// Utility for fetching a nested value from a typography config.\\n@function _mat-get-type-value($config, $level, $name) {\\n @return map-get(map-get($config, $level), $name);\\n}\\n\\n// Gets the font size for a level inside a typography config.\\n@function mat-font-size($config, $level) {\\n @return _mat-get-type-value($config, $level, font-size);\\n}\\n\\n// Gets the line height for a level inside a typography config.\\n@function mat-line-height($config, $level) {\\n @return _mat-get-type-value($config, $level, line-height);\\n}\\n\\n// Gets the font weight for a level inside a typography config.\\n@function mat-font-weight($config, $level) {\\n @return _mat-get-type-value($config, $level, font-weight);\\n}\\n\\n// Gets the letter spacing for a level inside a typography config.\\n@function mat-letter-spacing($config, $level) {\\n @return _mat-get-type-value($config, $level, letter-spacing);\\n}\\n\\n// Gets the font-family from a typography config and removes the quotes around it.\\n@function mat-font-family($config, $level: null) {\\n $font-family: map-get($config, font-family);\\n\\n @if $level != null {\\n $font-family: _mat-get-type-value($config, $level, font-family);\\n }\\n\\n // Guard against unquoting non-string values, because it's deprecated.\\n @return if(type-of($font-family) == string, unquote($font-family), $font-family);\\n}\\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@mixin mat-typography-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. Note\\n // that we need to use interpolation for `font-size/line-height` in order to prevent\\n // Sass from dividing the two values.\\n font: $font-weight #{$font-size}/#{$line-height} $font-family;\\n }\\n}\\n\\n// Converts a typography level into CSS styles.\\n@mixin mat-typography-level-to-styles($config, $level) {\\n $font-size: mat-font-size($config, $level);\\n $font-weight: mat-font-weight($config, $level);\\n $line-height: mat-line-height($config, $level);\\n $font-family: mat-font-family($config, $level);\\n\\n @include mat-typography-font-shorthand($font-size, $font-weight, $line-height, $font-family);\\n letter-spacing: mat-letter-spacing($config, $level);\\n}\\n\\n\\n@mixin mat-option-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n .mat-option {\\n color: mat-color($foreground, text);\\n\\n &:hover:not(.mat-option-disabled),\\n &:focus:not(.mat-option-disabled) {\\n background: mat-color($background, hover);\\n }\\n\\n // In multiple mode there is a checkbox to show that the option is selected.\\n &.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {\\n background: mat-color($background, hover);\\n }\\n\\n &.mat-active {\\n background: mat-color($background, hover);\\n color: mat-color($foreground, text);\\n }\\n\\n &.mat-option-disabled {\\n color: mat-color($foreground, hint-text);\\n }\\n }\\n\\n .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: mat-color($primary, text);\\n }\\n\\n .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: mat-color($accent, text);\\n }\\n\\n .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: mat-color($warn, text);\\n }\\n}\\n\\n@mixin mat-option-typography($config) {\\n .mat-option {\\n font: {\\n family: mat-font-family($config);\\n size: mat-font-size($config, subheading-2);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-optgroup-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n\\n .mat-optgroup-label {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-optgroup-disabled .mat-optgroup-label {\\n color: mat-color($foreground, hint-text);\\n }\\n}\\n\\n@mixin mat-optgroup-typography($config) {\\n .mat-optgroup-label {\\n @include mat-typography-level-to-styles($config, body-2);\\n }\\n}\\n\\n\\n\\n@mixin mat-pseudo-checkbox-theme($theme) {\\n $is-dark-theme: map-get($theme, is-dark);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n\\n // NOTE(traviskaufman): While the spec calls for translucent blacks/whites for disabled colors,\\n // this does not work well with elements layered on top of one another. To get around this we\\n // blend the colors together based on the base color and the theme background.\\n $white-30pct-opacity-on-dark: #686868;\\n $black-26pct-opacity-on-light: #b0b0b0;\\n $disabled-color: if($is-dark-theme, $white-30pct-opacity-on-dark, $black-26pct-opacity-on-light);\\n $colored-box-selector: '.mat-pseudo-checkbox-checked, .mat-pseudo-checkbox-indeterminate';\\n\\n .mat-pseudo-checkbox {\\n color: mat-color(map-get($theme, foreground), secondary-text);\\n\\n &::after {\\n color: mat-color($background, background);\\n }\\n }\\n\\n .mat-pseudo-checkbox-disabled {\\n color: $disabled-color;\\n }\\n\\n .mat-primary .mat-pseudo-checkbox-checked,\\n .mat-primary .mat-pseudo-checkbox-indeterminate {\\n background: mat-color(map-get($theme, primary));\\n }\\n\\n // Default to the accent color. Note that the pseudo checkboxes are meant to inherit the\\n // theme from their parent, rather than implementing their own theming, which is why we\\n // don't attach to the `mat-*` classes. Also note that this needs to be below `.mat-primary`\\n // in order to allow for the color to be overwritten if the checkbox is inside a parent that\\n // has `mat-accent` and is placed inside another parent that has `mat-primary`.\\n .mat-pseudo-checkbox-checked,\\n .mat-pseudo-checkbox-indeterminate,\\n .mat-accent .mat-pseudo-checkbox-checked,\\n .mat-accent .mat-pseudo-checkbox-indeterminate {\\n background: mat-color(map-get($theme, accent));\\n }\\n\\n .mat-warn .mat-pseudo-checkbox-checked,\\n .mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: mat-color(map-get($theme, warn));\\n }\\n\\n .mat-pseudo-checkbox-checked,\\n .mat-pseudo-checkbox-indeterminate {\\n &.mat-pseudo-checkbox-disabled {\\n background: $disabled-color;\\n }\\n }\\n}\\n\\n\\n\\n// Represents a typography level from the Material design spec.\\n@function mat-typography-level(\\n $font-size,\\n $line-height: $font-size,\\n $font-weight: 400,\\n $font-family: null,\\n $letter-spacing: normal) {\\n\\n @return (\\n font-size: $font-size,\\n line-height: $line-height,\\n font-weight: $font-weight,\\n font-family: $font-family,\\n letter-spacing: $letter-spacing\\n );\\n}\\n\\n// Represents a collection of typography levels.\\n// Defaults come from https://material.io/guidelines/style/typography.html\\n// Note: The spec doesn't mention letter spacing. The values here come from\\n// eyeballing it until it looked exactly like the spec examples.\\n@function mat-typography-config(\\n $font-family: 'Roboto, \\\"Helvetica Neue\\\", sans-serif',\\n $display-4: mat-typography-level(112px, 112px, 300, $letter-spacing: -0.05em),\\n $display-3: mat-typography-level(56px, 56px, 400, $letter-spacing: -0.02em),\\n $display-2: mat-typography-level(45px, 48px, 400, $letter-spacing: -0.005em),\\n $display-1: mat-typography-level(34px, 40px, 400),\\n $headline: mat-typography-level(24px, 32px, 400),\\n $title: mat-typography-level(20px, 32px, 500),\\n $subheading-2: mat-typography-level(16px, 28px, 400),\\n $subheading-1: mat-typography-level(15px, 24px, 400),\\n $body-2: mat-typography-level(14px, 24px, 500),\\n $body-1: mat-typography-level(14px, 20px, 400),\\n $caption: mat-typography-level(12px, 20px, 400),\\n $button: mat-typography-level(14px, 14px, 500),\\n // Line-height must be unit-less fraction of the font-size.\\n $input: mat-typography-level(inherit, 1.125, 400)\\n) {\\n\\n // Declare an initial map with all of the levels.\\n $config: (\\n display-4: $display-4,\\n display-3: $display-3,\\n display-2: $display-2,\\n display-1: $display-1,\\n headline: $headline,\\n title: $title,\\n subheading-2: $subheading-2,\\n subheading-1: $subheading-1,\\n body-2: $body-2,\\n body-1: $body-1,\\n caption: $caption,\\n button: $button,\\n input: $input,\\n );\\n\\n // Loop through the levels and set the `font-family` of the ones that don't have one to the base.\\n // Note that Sass can't modify maps in place, which means that we need to merge and re-assign.\\n @each $key, $level in $config {\\n @if map-get($level, font-family) == null {\\n $new-level: map-merge($level, (font-family: $font-family));\\n $config: map-merge($config, ($key: $new-level));\\n }\\n }\\n\\n // Add the base font family to the config.\\n @return map-merge($config, (font-family: $font-family));\\n}\\n\\n// Adds the base typography styles, based on a config.\\n@mixin mat-base-typography($config, $selector: '.mat-typography') {\\n .mat-h1, .mat-headline, #{$selector} h1 {\\n @include mat-typography-level-to-styles($config, headline);\\n margin: 0 0 16px;\\n }\\n\\n .mat-h2, .mat-title, #{$selector} h2 {\\n @include mat-typography-level-to-styles($config, title);\\n margin: 0 0 16px;\\n }\\n\\n .mat-h3, .mat-subheading-2, #{$selector} h3 {\\n @include mat-typography-level-to-styles($config, subheading-2);\\n margin: 0 0 16px;\\n }\\n\\n .mat-h4, .mat-subheading-1, #{$selector} h4 {\\n @include mat-typography-level-to-styles($config, subheading-1);\\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, #{$selector} h5 {\\n @include mat-typography-font-shorthand(\\n // calc is used here to support css variables\\n calc(#{mat-font-size($config, body-1)} * 0.83),\\n mat-font-weight($config, body-1),\\n mat-line-height($config, body-1),\\n mat-font-family($config, body-1)\\n );\\n\\n margin: 0 0 12px;\\n }\\n\\n .mat-h6, #{$selector} h6 {\\n @include mat-typography-font-shorthand(\\n // calc is used here to support css variables\\n calc(#{mat-font-size($config, body-1)} * 0.67),\\n mat-font-weight($config, body-1),\\n mat-line-height($config, body-1),\\n mat-font-family($config, body-1)\\n );\\n\\n margin: 0 0 12px;\\n }\\n\\n .mat-body-strong, .mat-body-2 {\\n @include mat-typography-level-to-styles($config, body-2);\\n }\\n\\n .mat-body, .mat-body-1, #{$selector} {\\n @include mat-typography-level-to-styles($config, body-1);\\n\\n p {\\n margin: 0 0 12px;\\n }\\n }\\n\\n .mat-small, .mat-caption {\\n @include mat-typography-level-to-styles($config, caption);\\n }\\n\\n .mat-display-4, #{$selector} .mat-display-4 {\\n @include mat-typography-level-to-styles($config, display-4);\\n margin: 0 0 56px;\\n }\\n\\n .mat-display-3, #{$selector} .mat-display-3 {\\n @include mat-typography-level-to-styles($config, display-3);\\n margin: 0 0 64px;\\n }\\n\\n .mat-display-2, #{$selector} .mat-display-2 {\\n @include mat-typography-level-to-styles($config, display-2);\\n margin: 0 0 64px;\\n }\\n\\n .mat-display-1, #{$selector} .mat-display-1 {\\n @include mat-typography-level-to-styles($config, display-1);\\n margin: 0 0 64px;\\n }\\n}\\n\\n\\n\\n\\n@mixin mat-autocomplete-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n\\n .mat-autocomplete-panel {\\n @include _mat-theme-overridable-elevation(4, $theme);\\n background: mat-color($background, card);\\n color: mat-color($foreground, text);\\n\\n // Selected options in autocompletes should not be gray, but we\\n // only want to override the background for selected options if\\n // they are *not* in hover or focus state. This change has to be\\n // made here because base option styles are shared between the\\n // autocomplete and the select.\\n .mat-option.mat-selected:not(.mat-active):not(:hover) {\\n background: mat-color($background, card);\\n\\n &:not(.mat-option-disabled) {\\n color: mat-color($foreground, text);\\n }\\n }\\n }\\n\\n}\\n\\n@mixin mat-autocomplete-typography($config) { }\\n\\n// This contains all of the styles for the badge\\n// rather than just the color/theme because of\\n// no style sheet support for directives.\\n\\n\\n\\n\\n\\n$mat-badge-font-size: 12px;\\n$mat-badge-font-weight: 600;\\n$mat-badge-default-size: 22px !default;\\n$mat-badge-small-size: $mat-badge-default-size - 6;\\n$mat-badge-large-size: $mat-badge-default-size + 6;\\n\\n// Mixin for building offset given different sizes\\n@mixin _mat-badge-size($size) {\\n .mat-badge-content {\\n width: $size;\\n height: $size;\\n line-height: $size;\\n }\\n\\n &.mat-badge-above {\\n .mat-badge-content {\\n top: -$size / 2;\\n }\\n }\\n\\n &.mat-badge-below {\\n .mat-badge-content {\\n bottom: -$size / 2;\\n }\\n }\\n\\n &.mat-badge-before {\\n .mat-badge-content {\\n left: -$size;\\n }\\n }\\n\\n [dir='rtl'] &.mat-badge-before {\\n .mat-badge-content {\\n left: auto;\\n right: -$size;\\n }\\n }\\n\\n &.mat-badge-after {\\n .mat-badge-content {\\n right: -$size;\\n }\\n }\\n\\n [dir='rtl'] &.mat-badge-after {\\n .mat-badge-content {\\n right: auto;\\n left: -$size;\\n }\\n }\\n\\n &.mat-badge-overlap {\\n &.mat-badge-before {\\n .mat-badge-content {\\n left: -$size / 2;\\n }\\n }\\n\\n [dir='rtl'] &.mat-badge-before {\\n .mat-badge-content {\\n left: auto;\\n right: -$size / 2;\\n }\\n }\\n\\n &.mat-badge-after {\\n .mat-badge-content {\\n right: -$size / 2;\\n }\\n }\\n\\n [dir='rtl'] &.mat-badge-after {\\n .mat-badge-content {\\n right: auto;\\n left: -$size / 2;\\n }\\n }\\n }\\n}\\n\\n@mixin mat-badge-theme($theme) {\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $primary: map-get($theme, primary);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-badge-content {\\n color: mat-color($primary, default-contrast);\\n background: mat-color($primary);\\n\\n @include cdk-high-contrast(active, off) {\\n outline: solid 1px;\\n border-radius: 0;\\n }\\n }\\n\\n .mat-badge-accent {\\n .mat-badge-content {\\n background: mat-color($accent);\\n color: mat-color($accent, default-contrast);\\n }\\n }\\n\\n .mat-badge-warn {\\n .mat-badge-content {\\n color: mat-color($warn, default-contrast);\\n background: mat-color($warn);\\n }\\n }\\n\\n .mat-badge {\\n position: relative;\\n }\\n\\n .mat-badge-hidden {\\n .mat-badge-content {\\n display: none;\\n }\\n }\\n\\n .mat-badge-disabled {\\n .mat-badge-content {\\n $app-background: mat-color($background, 'background');\\n $badge-color: mat-color($foreground, disabled-button);\\n\\n // The disabled color usually has some kind of opacity, but because the badge is overlayed\\n // on top of something else, it won't look good if it's opaque. If it is a color *type*,\\n // we convert it into a solid color by taking the opacity from the rgba value and using\\n // the value to determine the percentage of the background to put into foreground when\\n // mixing the colors together.\\n @if (type-of($badge-color) == color and type-of($app-background) == color) {\\n $badge-opacity: opacity($badge-color);\\n background: mix($app-background, rgba($badge-color, 1), (1 - $badge-opacity) * 100%);\\n }\\n @else {\\n background: $badge-color;\\n }\\n\\n color: mat-color($foreground, disabled-text);\\n }\\n }\\n\\n .mat-badge-content {\\n position: absolute;\\n text-align: center;\\n display: inline-block;\\n border-radius: 50%;\\n transition: transform 200ms ease-in-out;\\n transform: scale(0.6);\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n pointer-events: none;\\n }\\n\\n .ng-animate-disabled .mat-badge-content,\\n .mat-badge-content._mat-animation-noopable {\\n transition: none;\\n }\\n\\n // The active class is added after the element is added\\n // so it can animate scale to default\\n .mat-badge-content.mat-badge-active {\\n // Scale to `none` instead of `1` to avoid blurry text in some browsers.\\n transform: none;\\n }\\n\\n .mat-badge-small {\\n @include _mat-badge-size($mat-badge-small-size);\\n }\\n .mat-badge-medium {\\n @include _mat-badge-size($mat-badge-default-size);\\n }\\n .mat-badge-large {\\n @include _mat-badge-size($mat-badge-large-size);\\n }\\n}\\n\\n@mixin mat-badge-typography($config) {\\n .mat-badge-content {\\n font-weight: $mat-badge-font-weight;\\n font-size: $mat-badge-font-size;\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-badge-small .mat-badge-content {\\n // Set the font size to 75% of the original.\\n font-size: $mat-badge-font-size * 0.75;\\n }\\n\\n .mat-badge-large .mat-badge-content {\\n font-size: $mat-badge-font-size * 2;\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-bottom-sheet-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-bottom-sheet-container {\\n @include _mat-theme-elevation(16, $theme);\\n background: mat-color($background, dialog);\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-bottom-sheet-typography($config) {\\n .mat-bottom-sheet-container {\\n @include mat-typography-level-to-styles($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n\\n$_mat-button-ripple-opacity: 0.1;\\n\\n// Applies a focus style to an mat-button element for each of the supported palettes.\\n@mixin _mat-button-focus-overlay-color($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n &.mat-primary .mat-button-focus-overlay {\\n background-color: mat-color($primary);\\n }\\n\\n &.mat-accent .mat-button-focus-overlay {\\n background-color: mat-color($accent);\\n }\\n\\n &.mat-warn .mat-button-focus-overlay {\\n background-color: mat-color($warn);\\n }\\n\\n &[disabled] .mat-button-focus-overlay {\\n background-color: transparent;\\n }\\n}\\n\\n// Applies the background color for a ripple. If the value provided is not a Sass color,\\n// we assume that we've been given a CSS variable. Since we can't perform alpha-blending\\n// on a CSS variable, we instead add the opacity directly to the ripple element.\\n@mixin _mat-button-ripple-background($palette, $hue, $opacity) {\\n $background-color: mat-color($palette, $hue, $opacity);\\n background-color: $background-color;\\n @if (type-of($background-color) != color) {\\n opacity: $opacity;\\n }\\n}\\n\\n@mixin _mat-button-ripple-color($theme, $hue, $opacity: $_mat-button-ripple-opacity) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n &.mat-primary .mat-ripple-element {\\n @include _mat-button-ripple-background($primary, $hue, $opacity);\\n }\\n\\n &.mat-accent .mat-ripple-element {\\n @include _mat-button-ripple-background($accent, $hue, $opacity);\\n }\\n\\n &.mat-warn .mat-ripple-element {\\n @include _mat-button-ripple-background($warn, $hue, $opacity);\\n }\\n}\\n\\n// Applies a property to an mat-button element for each of the supported palettes.\\n@mixin _mat-button-theme-property($theme, $property, $hue) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n &.mat-primary {\\n #{$property}: mat-color($primary, $hue);\\n }\\n &.mat-accent {\\n #{$property}: mat-color($accent, $hue);\\n }\\n &.mat-warn {\\n #{$property}: mat-color($warn, $hue);\\n }\\n\\n &.mat-primary, &.mat-accent, &.mat-warn, &[disabled] {\\n &[disabled] {\\n $palette: if($property == 'color', $foreground, $background);\\n #{$property}: mat-color($palette, disabled-button);\\n }\\n }\\n}\\n\\n@mixin mat-button-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-button, .mat-icon-button, .mat-stroked-button {\\n // Buttons without a background color should inherit the font color. This is necessary to\\n // ensure that the button is readable on custom background colors. It's wrong to always assume\\n // that those buttons are always placed inside of containers with the default background\\n // color of the theme (e.g. themed toolbars).\\n color: inherit;\\n background: transparent;\\n\\n @include _mat-button-theme-property($theme, 'color', text);\\n @include _mat-button-focus-overlay-color($theme);\\n\\n // Setup the ripple color to be based on the text color. This ensures that the ripples\\n // are matching with the current theme palette and are in contrast to the background color\\n // (e.g in themed toolbars).\\n .mat-ripple-element {\\n opacity: $_mat-button-ripple-opacity;\\n background-color: currentColor;\\n }\\n }\\n\\n .mat-button-focus-overlay {\\n background: map_get($foreground, base);\\n }\\n\\n // Note: this needs a bit extra specificity, because we're not guaranteed the inclusion\\n // order of the theme styles and the button reset may end up resetting this as well.\\n .mat-stroked-button:not([disabled]) {\\n border-color: mat-color($foreground, divider);\\n }\\n\\n .mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {\\n // Default font and background color when not using any color palette.\\n color: mat-color($foreground, text);\\n background-color: mat-color($background, raised-button);\\n\\n @include _mat-button-theme-property($theme, 'color', default-contrast);\\n @include _mat-button-theme-property($theme, 'background-color', default);\\n @include _mat-button-ripple-color($theme, default-contrast);\\n }\\n\\n .mat-stroked-button, .mat-flat-button {\\n @include _mat-theme-overridable-elevation(0, $theme);\\n }\\n\\n .mat-raised-button {\\n @include _mat-theme-overridable-elevation(2, $theme);\\n\\n &:not([disabled]):active {\\n @include _mat-theme-overridable-elevation(8, $theme);\\n }\\n\\n &[disabled] {\\n @include _mat-theme-overridable-elevation(0, $theme);\\n }\\n }\\n\\n .mat-fab, .mat-mini-fab {\\n @include _mat-theme-overridable-elevation(6, $theme);\\n\\n &:not([disabled]):active {\\n @include _mat-theme-overridable-elevation(12, $theme);\\n }\\n\\n &[disabled] {\\n @include _mat-theme-overridable-elevation(0, $theme);\\n }\\n }\\n}\\n\\n@mixin mat-button-typography($config) {\\n .mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,\\n .mat-flat-button, .mat-fab, .mat-mini-fab {\\n font: {\\n family: mat-font-family($config, button);\\n size: mat-font-size($config, button);\\n weight: mat-font-weight($config, button);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-button-toggle-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n $divider-color: mat-color($foreground, divider);\\n\\n .mat-button-toggle-standalone,\\n .mat-button-toggle-group {\\n @include _mat-theme-elevation(2, $theme);\\n }\\n\\n .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n .mat-button-toggle-group-appearance-standard {\\n box-shadow: none;\\n }\\n\\n .mat-button-toggle {\\n color: mat-color($foreground, hint-text);\\n\\n .mat-button-toggle-focus-overlay {\\n background-color: mat-color($background, focused-button);\\n }\\n }\\n\\n .mat-button-toggle-appearance-standard {\\n color: mat-color($foreground, text);\\n background: mat-color($background, card);\\n\\n .mat-button-toggle-focus-overlay {\\n background-color: mat-color($background, focused-button, 1);\\n }\\n }\\n\\n .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: solid 1px $divider-color;\\n }\\n\\n [dir='rtl'] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: solid 1px $divider-color;\\n }\\n\\n .mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical {\\n .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: none;\\n border-top: solid 1px $divider-color;\\n }\\n }\\n\\n .mat-button-toggle-checked {\\n background-color: mat-color($background, selected-button);\\n color: mat-color($foreground, secondary-text);\\n\\n &.mat-button-toggle-appearance-standard {\\n color: mat-color($foreground, text);\\n }\\n }\\n\\n .mat-button-toggle-disabled {\\n color: mat-color($foreground, disabled-button);\\n background-color: mat-color($background, disabled-button-toggle);\\n\\n &.mat-button-toggle-appearance-standard {\\n background: mat-color($background, card);\\n }\\n\\n &.mat-button-toggle-checked {\\n background-color: mat-color($background, selected-disabled-button);\\n }\\n }\\n\\n .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n .mat-button-toggle-group-appearance-standard {\\n border: solid 1px $divider-color;\\n }\\n}\\n\\n@mixin mat-button-toggle-typography($config) {\\n .mat-button-toggle {\\n font-family: mat-font-family($config);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-card-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-card {\\n @include _mat-theme-overridable-elevation(1, $theme);\\n background: mat-color($background, card);\\n color: mat-color($foreground, text);\\n\\n // Needs extra specificity to be able to override the elevation selectors.\\n &.mat-card-flat {\\n @include _mat-theme-overridable-elevation(0, $theme);\\n }\\n }\\n\\n .mat-card-subtitle {\\n color: mat-color($foreground, secondary-text);\\n }\\n}\\n\\n@mixin mat-card-typography($config) {\\n .mat-card {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-card-title {\\n font: {\\n size: mat-font-size($config, headline);\\n weight: mat-font-weight($config, title);\\n }\\n }\\n\\n .mat-card-header .mat-card-title {\\n font-size: mat-font-size($config, title);\\n }\\n\\n .mat-card-subtitle,\\n .mat-card-content {\\n font-size: mat-font-size($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-checkbox-theme($theme) {\\n $is-dark-theme: map-get($theme, is-dark);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n\\n // The color of the checkbox's checkmark / mixedmark.\\n $checkbox-mark-color: mat-color($background, background);\\n\\n // NOTE(traviskaufman): While the spec calls for translucent blacks/whites for disabled colors,\\n // this does not work well with elements layered on top of one another. To get around this we\\n // blend the colors together based on the base color and the theme background.\\n $white-30pct-opacity-on-dark: #686868;\\n $black-26pct-opacity-on-light: #b0b0b0;\\n $disabled-color: if($is-dark-theme, $white-30pct-opacity-on-dark, $black-26pct-opacity-on-light);\\n\\n .mat-checkbox-frame {\\n border-color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-checkbox-checkmark {\\n fill: $checkbox-mark-color;\\n }\\n\\n .mat-checkbox-checkmark-path {\\n // !important is needed here because a stroke must be set as an\\n // attribute on the SVG in order for line animation to work properly.\\n stroke: $checkbox-mark-color !important;\\n }\\n\\n .mat-checkbox-mixedmark {\\n background-color: $checkbox-mark-color;\\n }\\n\\n .mat-checkbox-indeterminate, .mat-checkbox-checked {\\n &.mat-primary .mat-checkbox-background {\\n background-color: mat-color($primary);\\n }\\n\\n &.mat-accent .mat-checkbox-background {\\n background-color: mat-color($accent);\\n }\\n\\n &.mat-warn .mat-checkbox-background {\\n background-color: mat-color($warn);\\n }\\n }\\n\\n .mat-checkbox-disabled {\\n &.mat-checkbox-checked,\\n &.mat-checkbox-indeterminate {\\n .mat-checkbox-background {\\n background-color: $disabled-color;\\n }\\n }\\n\\n &:not(.mat-checkbox-checked) {\\n .mat-checkbox-frame {\\n border-color: $disabled-color;\\n }\\n }\\n\\n .mat-checkbox-label {\\n color: mat-color($foreground, secondary-text);\\n }\\n }\\n\\n // Switch this to a solid color since we're using `opacity`\\n // to control how opaque the ripple should be.\\n .mat-checkbox .mat-ripple-element {\\n background-color: map_get(map-get($theme, foreground), base);\\n }\\n\\n .mat-checkbox-checked:not(.mat-checkbox-disabled),\\n .mat-checkbox:active:not(.mat-checkbox-disabled) {\\n &.mat-primary .mat-ripple-element {\\n background: mat-color($primary);\\n }\\n\\n &.mat-accent .mat-ripple-element {\\n background: mat-color($accent);\\n }\\n\\n &.mat-warn .mat-ripple-element {\\n background: mat-color($warn);\\n }\\n }\\n}\\n\\n@mixin mat-checkbox-typography($config) {\\n .mat-checkbox {\\n font-family: mat-font-family($config);\\n }\\n\\n // TODO(kara): Remove this style when fixing vertical baseline\\n .mat-checkbox-layout .mat-checkbox-label {\\n line-height: mat-line-height($config, body-2);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n$mat-chip-remove-font-size: 18px;\\n\\n@mixin mat-chips-color($foreground, $background) {\\n background-color: $background;\\n color: $foreground;\\n\\n .mat-chip-remove {\\n color: $foreground;\\n opacity: 0.4;\\n }\\n}\\n\\n\\n// Applies the background color for a ripple element.\\n// If the color value provided is not a Sass color,\\n// we assume that we've been given a CSS variable.\\n// Since we can't perform alpha-blending on a CSS variable,\\n// we instead add the opacity directly to the ripple element.\\n@mixin _mat-chips-ripple-background($palette, $default-contrast, $opacity) {\\n $background-color: mat-color($palette, $default-contrast, $opacity);\\n background-color: $background-color;\\n @if (type-of($background-color) != color) {\\n opacity: $opacity;\\n }\\n}\\n\\n@mixin mat-chips-theme-color($palette) {\\n @include mat-chips-color(mat-color($palette, default-contrast), mat-color($palette));\\n\\n .mat-ripple-element {\\n @include _mat-chips-ripple-background($palette, default-contrast, 0.1);\\n }\\n}\\n\\n@mixin mat-chips-theme($theme) {\\n $is-dark-theme: map-get($theme, is-dark);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n $unselected-background: mat-color($background, unselected-chip);\\n $unselected-foreground: mat-color($foreground, text);\\n\\n .mat-chip.mat-standard-chip {\\n @include mat-chips-color($unselected-foreground, $unselected-background);\\n\\n &:not(.mat-chip-disabled) {\\n &:active {\\n @include _mat-theme-elevation(3, $theme);\\n }\\n\\n .mat-chip-remove:hover {\\n opacity: 0.54;\\n }\\n }\\n\\n &.mat-chip-disabled {\\n opacity: 0.4;\\n }\\n\\n &::after {\\n background: map_get($foreground, base);\\n }\\n }\\n\\n .mat-chip.mat-standard-chip.mat-chip-selected {\\n &.mat-primary {\\n @include mat-chips-theme-color($primary);\\n }\\n\\n &.mat-warn {\\n @include mat-chips-theme-color($warn);\\n }\\n\\n &.mat-accent {\\n @include mat-chips-theme-color($accent);\\n }\\n }\\n}\\n\\n@mixin mat-chips-typography($config) {\\n .mat-chip {\\n font-size: mat-font-size($config, body-2);\\n font-weight: mat-font-weight($config, body-2);\\n\\n .mat-chip-trailing-icon.mat-icon,\\n .mat-chip-remove.mat-icon {\\n font-size: $mat-chip-remove-font-size;\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-table-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-table {\\n background: mat-color($background, 'card');\\n }\\n\\n .mat-table thead, .mat-table tbody, .mat-table tfoot,\\n mat-header-row, mat-row, mat-footer-row,\\n [mat-header-row], [mat-row], [mat-footer-row],\\n .mat-table-sticky {\\n background: inherit;\\n }\\n\\n mat-row, mat-header-row, mat-footer-row,\\n th.mat-header-cell, td.mat-cell, td.mat-footer-cell {\\n border-bottom-color: mat-color($foreground, divider);\\n }\\n\\n .mat-header-cell {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-cell, .mat-footer-cell {\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-table-typography($config) {\\n .mat-table {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-header-cell {\\n font-size: mat-font-size($config, caption);\\n font-weight: mat-font-weight($config, body-2);\\n }\\n\\n .mat-cell, .mat-footer-cell {\\n font-size: mat-font-size($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n$mat-datepicker-selected-today-box-shadow-width: 1px;\\n$mat-datepicker-selected-fade-amount: 0.6;\\n$mat-datepicker-today-fade-amount: 0.2;\\n$mat-calendar-body-font-size: 13px !default;\\n$mat-calendar-weekday-table-font-size: 11px !default;\\n\\n@mixin _mat-datepicker-color($palette) {\\n .mat-calendar-body-selected {\\n background-color: mat-color($palette);\\n color: mat-color($palette, default-contrast);\\n }\\n\\n .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n $background: mat-color($palette);\\n\\n @if (type-of($background) == color) {\\n background-color: fade-out($background, $mat-datepicker-selected-fade-amount);\\n }\\n @else {\\n // If we couldn't resolve to background to a color (e.g. it's a CSS variable),\\n // fall back to fading the content out via `opacity`.\\n opacity: $mat-datepicker-today-fade-amount;\\n }\\n }\\n\\n .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 $mat-datepicker-selected-today-box-shadow-width\\n mat-color($palette, default-contrast);\\n }\\n}\\n\\n@mixin mat-datepicker-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n\\n .mat-calendar-arrow {\\n border-top-color: mat-color($foreground, icon);\\n }\\n\\n // The prev/next buttons need a bit more specificity to\\n // avoid being overwritten by the .mat-icon-button.\\n .mat-datepicker-toggle,\\n .mat-datepicker-content .mat-calendar-next-button,\\n .mat-datepicker-content .mat-calendar-previous-button {\\n color: mat-color($foreground, icon);\\n }\\n\\n .mat-calendar-table-header {\\n color: mat-color($foreground, hint-text);\\n }\\n\\n .mat-calendar-table-header-divider::after {\\n background: mat-color($foreground, divider);\\n }\\n\\n .mat-calendar-body-label {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-calendar-body-cell-content {\\n color: mat-color($foreground, text);\\n border-color: transparent;\\n }\\n\\n .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n color: mat-color($foreground, disabled-text);\\n }\\n\\n .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover,\\n .cdk-keyboard-focused .mat-calendar-body-active,\\n .cdk-program-focused .mat-calendar-body-active {\\n & > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n background-color: mat-color($background, hover);\\n }\\n }\\n\\n .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n // Note: though it's not text, the border is a hint about the fact that this is today's date,\\n // so we use the hint color.\\n border-color: mat-color($foreground, hint-text);\\n }\\n\\n .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n $color: mat-color($foreground, hint-text);\\n\\n @if (type-of($color) == color) {\\n border-color: fade-out($color, $mat-datepicker-today-fade-amount);\\n }\\n @else {\\n // If the color didn't resolve to a color value, but something like a CSS variable, we can't\\n // fade it out so we fall back to reducing the element opacity. Note that we don't use the\\n // $mat-datepicker-today-fade-amount, because hint text usually has some opacity applied\\n // to it already and we don't want them to stack on top of each other.\\n opacity: 0.5;\\n }\\n }\\n\\n @include _mat-datepicker-color(map-get($theme, primary));\\n\\n .mat-datepicker-content {\\n @include _mat-theme-elevation(4, $theme);\\n background-color: mat-color($background, card);\\n color: mat-color($foreground, text);\\n\\n &.mat-accent {\\n @include _mat-datepicker-color(map-get($theme, accent));\\n }\\n\\n &.mat-warn {\\n @include _mat-datepicker-color(map-get($theme, warn));\\n }\\n }\\n\\n .mat-datepicker-content-touch {\\n @include _mat-theme-elevation(0, $theme);\\n }\\n\\n .mat-datepicker-toggle-active {\\n color: mat-color(map-get($theme, primary), text);\\n\\n &.mat-accent {\\n color: mat-color(map-get($theme, accent), text);\\n }\\n\\n &.mat-warn {\\n color: mat-color(map-get($theme, warn), text);\\n }\\n }\\n}\\n\\n@mixin mat-datepicker-typography($config) {\\n .mat-calendar {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-calendar-body {\\n font-size: $mat-calendar-body-font-size;\\n }\\n\\n .mat-calendar-body-label,\\n .mat-calendar-period-button {\\n font: {\\n size: mat-font-size($config, button);\\n weight: mat-font-weight($config, button);\\n }\\n }\\n\\n .mat-calendar-table-header th {\\n font: {\\n size: $mat-calendar-weekday-table-font-size;\\n weight: mat-font-weight($config, body-1);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-dialog-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-dialog-container {\\n @include _mat-theme-elevation(24, $theme);\\n background: mat-color($background, dialog);\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-dialog-typography($config) {\\n .mat-dialog-title {\\n @include mat-typography-level-to-styles($config, title);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-expansion-panel-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-expansion-panel {\\n @include _mat-theme-overridable-elevation(2, $theme);\\n background: mat-color($background, card);\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-action-row {\\n border-top-color: mat-color($foreground, divider);\\n }\\n\\n .mat-expansion-panel {\\n & .mat-expansion-panel-header.cdk-keyboard-focused,\\n & .mat-expansion-panel-header.cdk-program-focused,\\n &:not(.mat-expanded) .mat-expansion-panel-header:hover {\\n &:not([aria-disabled='true']) {\\n background: mat-color($background, hover);\\n }\\n }\\n }\\n\\n // Disable the hover on touch devices since it can appear like it is stuck. We can't use\\n // `@media (hover)` above, because the desktop support browser support isn't great.\\n @media (hover: none) {\\n .mat-expansion-panel:not(.mat-expanded):not([aria-disabled='true'])\\n .mat-expansion-panel-header:hover {\\n background: mat-color($background, card);\\n }\\n }\\n\\n .mat-expansion-panel-header-title {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-expansion-panel-header-description,\\n .mat-expansion-indicator::after {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-expansion-panel-header[aria-disabled='true'] {\\n color: mat-color($foreground, disabled-button);\\n\\n .mat-expansion-panel-header-title,\\n .mat-expansion-panel-header-description {\\n color: inherit;\\n }\\n }\\n}\\n\\n@mixin mat-expansion-panel-typography($config) {\\n .mat-expansion-panel-header {\\n font: {\\n family: mat-font-family($config, subheading-1);\\n size: mat-font-size($config, subheading-1);\\n weight: mat-font-weight($config, subheading-1);\\n }\\n }\\n\\n .mat-expansion-panel-content {\\n @include mat-typography-level-to-styles($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n// This mixin will ensure that lines that overflow the container will hide the overflow and\\n// truncate neatly with an ellipsis.\\n@mixin mat-truncate-line() {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n}\\n\\n// Mixin to provide all mat-line styles, changing secondary font size based on whether the list\\n// is in dense mode.\\n@mixin mat-line-base($secondary-font-size) {\\n .mat-line {\\n @include mat-truncate-line();\\n display: block;\\n box-sizing: border-box;\\n\\n // all lines but the top line should have smaller text\\n &:nth-child(n+2) {\\n font-size: $secondary-font-size;\\n }\\n }\\n}\\n\\n// This mixin normalizes default element styles, e.g. font weight for heading text.\\n@mixin mat-normalize-text() {\\n & > * {\\n margin: 0;\\n padding: 0;\\n font-weight: normal;\\n font-size: inherit;\\n }\\n}\\n\\n// This mixin provides base styles for the wrapper around mat-line elements in a list.\\n@mixin mat-line-wrapper-base() {\\n @include mat-normalize-text();\\n\\n display: flex;\\n flex-direction: column;\\n width: 100%;\\n box-sizing: border-box;\\n overflow: hidden;\\n\\n // Must remove wrapper when lines are empty or it takes up horizontal\\n // space and pushes other elements to the right.\\n &:empty {\\n display: none;\\n }\\n}\\n\\n\\n\\n// Include this empty mixin for consistency with the other components.\\n@mixin mat-grid-list-theme($theme) { }\\n\\n@mixin mat-grid-list-typography($config) {\\n .mat-grid-tile-header,\\n .mat-grid-tile-footer {\\n @include mat-line-base(mat-font-size($config, caption));\\n font-size: mat-font-size($config, body-1);\\n }\\n}\\n\\n\\n\\n\\n// Include this empty mixin for consistency with the other components.\\n@mixin mat-icon-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-icon {\\n &.mat-primary {\\n color: mat-color($primary, text);\\n }\\n\\n &.mat-accent {\\n color: mat-color($accent, text);\\n }\\n\\n &.mat-warn {\\n color: mat-color($warn, text);\\n }\\n }\\n}\\n\\n@mixin mat-icon-typography($config) { }\\n\\n\\n\\n\\n\\n// Renders a gradient for showing the dashed line when the input is disabled.\\n// Unlike using a border, a gradient allows us to adjust the spacing of the dotted line\\n// to match the Material Design spec.\\n@mixin mat-control-disabled-underline($color) {\\n background-image: linear-gradient(to right, $color 0%, $color 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n\\n// Figures out the color of the placeholder for a form control.\\n// Used primarily to prevent the various form controls from\\n// becoming out of sync since these colors aren't in a palette.\\n@function _mat-control-placeholder-color($theme) {\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n @return mat-color($foreground, secondary-text, if($is-dark-theme, 0.5, 0.42));\\n}\\n\\n\\n/* stylelint-disable material/no-prefixes */\\n@mixin user-select($value) {\\n -webkit-user-select: $value;\\n -moz-user-select: $value;\\n -ms-user-select: $value;\\n user-select: $value;\\n}\\n\\n@mixin input-placeholder {\\n &::placeholder {\\n @content;\\n }\\n\\n &::-moz-placeholder {\\n @content;\\n }\\n\\n &::-webkit-input-placeholder {\\n @content;\\n }\\n\\n &:-ms-input-placeholder {\\n @content;\\n }\\n}\\n\\n@mixin cursor-grab {\\n cursor: -webkit-grab;\\n cursor: grab;\\n}\\n\\n@mixin cursor-grabbing {\\n cursor: -webkit-grabbing;\\n cursor: grabbing;\\n}\\n\\n@mixin backface-visibility($value) {\\n -webkit-backface-visibility: $value;\\n backface-visibility: $value;\\n}\\n/* stylelint-enable */\\n\\n\\n\\n@mixin mat-input-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-form-field-type-mat-native-select .mat-form-field-infix::after {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-input-element:disabled,\\n .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {\\n color: mat-color($foreground, disabled-text);\\n }\\n\\n .mat-input-element {\\n caret-color: mat-color($primary, text);\\n\\n @include input-placeholder {\\n color: _mat-control-placeholder-color($theme);\\n }\\n\\n // On dark themes we set the native `select` color to some shade of white,\\n // however the color propagates to all of the `option` elements, which are\\n // always on a white background inside the dropdown, causing them to blend in.\\n // Since we can't change background of the dropdown, we need to explicitly\\n // reset the color of the options to something dark.\\n @if (map-get($theme, is-dark)) {\\n option {\\n color: $dark-primary-text;\\n }\\n\\n option:disabled {\\n color: $dark-disabled-text;\\n }\\n }\\n }\\n\\n .mat-accent .mat-input-element {\\n caret-color: mat-color($accent, text);\\n }\\n\\n .mat-warn .mat-input-element,\\n .mat-form-field-invalid .mat-input-element {\\n caret-color: mat-color($warn, text);\\n }\\n\\n .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {\\n color: mat-color($warn, text);\\n }\\n}\\n\\n@mixin mat-input-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n\\n // The amount of space between the top of the line and the top of the actual text\\n // (as a fraction of the font-size).\\n $line-spacing: ($line-height - 1) / 2;\\n\\n //
elements seem to have their height set slightly too large on Safari causing the text to\\n // be misaligned w.r.t. the placeholder. Adding this margin corrects it.\\n input.mat-input-element {\\n margin-top: -$line-spacing * 1em;\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-list-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-list-base {\\n .mat-list-item {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-list-option {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-subheader {\\n color: mat-color($foreground, secondary-text);\\n }\\n }\\n\\n .mat-list-item-disabled {\\n background-color: mat-color($background, disabled-list-option);\\n }\\n\\n .mat-list-option,\\n .mat-nav-list .mat-list-item,\\n .mat-action-list .mat-list-item {\\n &:hover, &:focus {\\n background: mat-color($background, 'hover');\\n }\\n }\\n\\n .mat-list-single-selected-option {\\n &, &:hover, &:focus {\\n background: mat-color($background, hover, 0.12);\\n }\\n }\\n}\\n\\n@mixin mat-list-typography($config) {\\n $font-family: mat-font-family($config);\\n\\n .mat-list-item {\\n font-family: $font-family;\\n }\\n\\n .mat-list-option {\\n font-family: $font-family;\\n }\\n\\n // Default list\\n .mat-list-base {\\n .mat-list-item {\\n font-size: mat-font-size($config, subheading-2);\\n @include mat-line-base(mat-font-size($config, body-1));\\n }\\n\\n .mat-list-option {\\n font-size: mat-font-size($config, subheading-2);\\n @include mat-line-base(mat-font-size($config, body-1));\\n }\\n\\n .mat-subheader {\\n font-family: mat-font-family($config, body-2);\\n font-size: mat-font-size($config, body-2);\\n font-weight: mat-font-weight($config, body-2);\\n }\\n }\\n\\n // Dense list\\n .mat-list-base[dense] {\\n .mat-list-item {\\n font-size: mat-font-size($config, caption);\\n @include mat-line-base(mat-font-size($config, caption));\\n }\\n\\n .mat-list-option {\\n font-size: mat-font-size($config, caption);\\n @include mat-line-base(mat-font-size($config, caption));\\n }\\n\\n .mat-subheader {\\n font-family: $font-family;\\n font-size: mat-font-size($config, caption);\\n font-weight: mat-font-weight($config, body-2);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-menu-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-menu-panel {\\n @include _mat-theme-overridable-elevation(4, $theme);\\n background: mat-color($background, 'card');\\n }\\n\\n .mat-menu-item {\\n background: transparent;\\n color: mat-color($foreground, 'text');\\n\\n &[disabled] {\\n &, &::after {\\n color: mat-color($foreground, 'disabled');\\n }\\n }\\n }\\n\\n .mat-menu-item .mat-icon-no-color,\\n .mat-menu-item-submenu-trigger::after {\\n color: mat-color($foreground, 'icon');\\n }\\n\\n .mat-menu-item:hover,\\n .mat-menu-item.cdk-program-focused,\\n .mat-menu-item.cdk-keyboard-focused,\\n .mat-menu-item-highlighted {\\n &:not([disabled]) {\\n background: mat-color($background, 'hover');\\n }\\n }\\n}\\n\\n@mixin mat-menu-typography($config) {\\n .mat-menu-item {\\n font: {\\n family: mat-font-family($config, body-1);\\n size: mat-font-size($config, body-1);\\n weight: mat-font-weight($config, body-1);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-paginator-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n\\n .mat-paginator {\\n background: mat-color($background, 'card');\\n }\\n\\n .mat-paginator,\\n .mat-paginator-page-size .mat-select-trigger {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-paginator-decrement,\\n .mat-paginator-increment {\\n border-top: 2px solid mat-color($foreground, 'icon');\\n border-right: 2px solid mat-color($foreground, 'icon');\\n }\\n\\n .mat-paginator-first,\\n .mat-paginator-last {\\n border-top: 2px solid mat-color($foreground, 'icon');\\n }\\n\\n .mat-icon-button[disabled] {\\n .mat-paginator-decrement,\\n .mat-paginator-increment,\\n .mat-paginator-first,\\n .mat-paginator-last {\\n border-color: mat-color($foreground, 'disabled');\\n }\\n }\\n}\\n\\n@mixin mat-paginator-typography($config) {\\n .mat-paginator,\\n .mat-paginator-page-size .mat-select-trigger {\\n font: {\\n family: mat-font-family($config, caption);\\n size: mat-font-size($config, caption);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-progress-bar-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n .mat-progress-bar-background {\\n fill: mat-color($primary, lighter);\\n }\\n\\n .mat-progress-bar-buffer {\\n background-color: mat-color($primary, lighter);\\n }\\n\\n .mat-progress-bar-fill::after {\\n background-color: mat-color($primary);\\n }\\n\\n .mat-progress-bar.mat-accent {\\n .mat-progress-bar-background {\\n fill: mat-color($accent, lighter);\\n }\\n\\n .mat-progress-bar-buffer {\\n background-color: mat-color($accent, lighter);\\n }\\n\\n .mat-progress-bar-fill::after {\\n background-color: mat-color($accent);\\n }\\n }\\n\\n .mat-progress-bar.mat-warn {\\n .mat-progress-bar-background {\\n fill: mat-color($warn, lighter);\\n }\\n\\n .mat-progress-bar-buffer {\\n background-color: mat-color($warn, lighter);\\n }\\n\\n .mat-progress-bar-fill::after {\\n background-color: mat-color($warn);\\n }\\n }\\n}\\n\\n@mixin mat-progress-bar-typography($config) { }\\n\\n\\n\\n\\n\\n\\n@mixin mat-progress-spinner-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n .mat-progress-spinner, .mat-spinner {\\n circle {\\n stroke: mat-color($primary);\\n }\\n\\n &.mat-accent circle {\\n stroke: mat-color($accent);\\n }\\n\\n &.mat-warn circle {\\n stroke: mat-color($warn);\\n }\\n }\\n}\\n\\n@mixin mat-progress-spinner-typography($config) { }\\n\\n\\n\\n\\n\\n@mixin _mat-radio-color($palette) {\\n &.mat-radio-checked .mat-radio-outer-circle {\\n border-color: mat-color($palette);\\n }\\n\\n .mat-radio-inner-circle,\\n .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),\\n &.mat-radio-checked .mat-radio-persistent-ripple,\\n &:active .mat-radio-persistent-ripple {\\n background-color: mat-color($palette);\\n }\\n}\\n\\n@mixin mat-radio-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-radio-outer-circle {\\n border-color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-radio-button {\\n &.mat-primary {\\n @include _mat-radio-color($primary);\\n }\\n\\n &.mat-accent {\\n @include _mat-radio-color($accent);\\n }\\n\\n &.mat-warn {\\n @include _mat-radio-color($warn);\\n }\\n\\n // This needs extra specificity, because the classes above are combined\\n // (e.g. `.mat-radio-button.mat-accent`) which increases their specificity a lot.\\n // TODO: consider making the selectors into descendants (`.mat-primary .mat-radio-button`).\\n &.mat-radio-disabled {\\n &.mat-radio-checked .mat-radio-outer-circle,\\n .mat-radio-outer-circle {\\n border-color: mat-color($foreground, disabled);\\n }\\n\\n .mat-radio-ripple .mat-ripple-element,\\n .mat-radio-inner-circle {\\n background-color: mat-color($foreground, disabled);\\n }\\n\\n .mat-radio-label-content {\\n color: mat-color($foreground, disabled);\\n }\\n }\\n\\n // Switch this to a solid color since we're using `opacity`\\n // to control how opaque the ripple should be.\\n .mat-ripple-element {\\n background-color: map_get($foreground, base);\\n }\\n }\\n}\\n\\n@mixin mat-radio-typography($config) {\\n .mat-radio-button {\\n font-family: mat-font-family($config);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-select-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n\\n .mat-select-value {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-select-placeholder {\\n color: _mat-control-placeholder-color($theme);\\n }\\n\\n .mat-select-disabled .mat-select-value {\\n color: mat-color($foreground, disabled-text);\\n }\\n\\n .mat-select-arrow {\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-select-panel {\\n background: mat-color($background, card);\\n @include _mat-theme-overridable-elevation(4, $theme);\\n\\n .mat-option.mat-selected:not(.mat-option-multiple) {\\n background: mat-color($background, hover, 0.12);\\n }\\n }\\n\\n .mat-form-field {\\n &.mat-focused {\\n &.mat-primary .mat-select-arrow {\\n color: mat-color($primary, text);\\n }\\n\\n &.mat-accent .mat-select-arrow {\\n color: mat-color($accent, text);\\n }\\n\\n &.mat-warn .mat-select-arrow {\\n color: mat-color($warn, text);\\n }\\n }\\n\\n .mat-select.mat-select-invalid .mat-select-arrow {\\n color: mat-color($warn, text);\\n }\\n\\n .mat-select.mat-select-disabled .mat-select-arrow {\\n color: mat-color($foreground, disabled-text);\\n }\\n }\\n}\\n\\n@mixin mat-select-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n\\n .mat-select {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-select-trigger {\\n height: $line-height * 1em;\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-sidenav-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n $drawer-background-color: mat-color($background, dialog);\\n $drawer-container-background-color: mat-color($background, background);\\n $drawer-push-background-color: mat-color($background, dialog);\\n $drawer-side-border: solid 1px mat-color($foreground, divider);\\n\\n .mat-drawer-container {\\n background-color: $drawer-container-background-color;\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-drawer {\\n background-color: $drawer-background-color;\\n color: mat-color($foreground, text);\\n\\n &.mat-drawer-push {\\n background-color: $drawer-push-background-color;\\n }\\n\\n &:not(.mat-drawer-side) {\\n // The elevation of z-16 is noted in the design specifications.\\n // See https://material.io/design/components/navigation-drawer.html\\n @include _mat-theme-elevation(16, $theme);\\n }\\n }\\n\\n .mat-drawer-side {\\n border-right: $drawer-side-border;\\n\\n &.mat-drawer-end {\\n border-left: $drawer-side-border;\\n border-right: none;\\n }\\n }\\n\\n [dir='rtl'] .mat-drawer-side {\\n border-left: $drawer-side-border;\\n border-right: none;\\n\\n &.mat-drawer-end {\\n border-left: none;\\n border-right: $drawer-side-border;\\n }\\n }\\n\\n .mat-drawer-backdrop.mat-drawer-shown {\\n $opacity: 0.6;\\n $backdrop-color: mat-color($background, card, $opacity);\\n\\n @if (type-of($backdrop-color) == color) {\\n // We use invert() here to have the darken the background color expected to be used. If the\\n // background is light, we use a dark backdrop. If the background is dark,\\n // we use a light backdrop.\\n background-color: invert($backdrop-color);\\n }\\n @else {\\n // If we couldn't resolve the backdrop color to a color value, fall back to using\\n // `opacity` to make it opaque since its end value could be a solid color.\\n background-color: $backdrop-color;\\n opacity: $opacity;\\n }\\n }\\n}\\n\\n@mixin mat-sidenav-typography($config) { }\\n\\n\\n\\n\\n\\n\\n@mixin _mat-slide-toggle-checked($palette, $thumb-checked-hue) {\\n &.mat-checked {\\n .mat-slide-toggle-thumb {\\n background-color: mat-color($palette, $thumb-checked-hue);\\n }\\n\\n .mat-slide-toggle-bar {\\n // Opacity is determined from the specs for the selection controls.\\n // See: https://material.io/design/components/selection-controls.html#specs\\n background-color: mat-color($palette, $thumb-checked-hue, 0.54);\\n }\\n\\n .mat-ripple-element {\\n // Set no opacity for the ripples because the ripple opacity will be adjusted dynamically\\n // based on the type of interaction with the slide-toggle (e.g. for hover, focus)\\n background-color: mat-color($palette, $thumb-checked-hue);\\n }\\n }\\n}\\n\\n@mixin mat-slide-toggle-theme($theme) {\\n $is-dark: map_get($theme, is-dark);\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n // Color hues are based on the specs which briefly show the hues that are applied to a switch.\\n // The 2018 specs no longer describe how dark switches should look like. Due to the lack of\\n // information for dark themed switches, we partially keep the old behavior that is based on\\n // the previous specifications. For the checked color we always use the `default` hue because\\n // that follows MDC and also makes it easier for people to create a custom theme without needing\\n // to specify each hue individually.\\n $thumb-unchecked-hue: if($is-dark, 400, 50);\\n $thumb-checked-hue: default;\\n\\n $bar-unchecked-color: mat-color($foreground, disabled);\\n $ripple-unchecked-color: mat-color($foreground, base);\\n\\n .mat-slide-toggle {\\n @include _mat-slide-toggle-checked($accent, $thumb-checked-hue);\\n\\n &.mat-primary {\\n @include _mat-slide-toggle-checked($primary, $thumb-checked-hue);\\n }\\n\\n &.mat-warn {\\n @include _mat-slide-toggle-checked($warn, $thumb-checked-hue);\\n }\\n\\n &:not(.mat-checked) .mat-ripple-element {\\n // Set no opacity for the ripples because the ripple opacity will be adjusted dynamically\\n // based on the type of interaction with the slide-toggle (e.g. for hover, focus)\\n background-color: $ripple-unchecked-color;\\n }\\n }\\n\\n .mat-slide-toggle-thumb {\\n @include _mat-theme-elevation(1, $theme);\\n background-color: mat-color($mat-grey, $thumb-unchecked-hue);\\n }\\n\\n .mat-slide-toggle-bar {\\n background-color: $bar-unchecked-color;\\n }\\n}\\n\\n@mixin mat-slide-toggle-typography($config) {\\n .mat-slide-toggle-content {\\n font-family: mat-font-family($config);\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin _mat-slider-inner-content-theme($palette) {\\n .mat-slider-track-fill,\\n .mat-slider-thumb,\\n .mat-slider-thumb-label {\\n background-color: mat-color($palette);\\n }\\n\\n .mat-slider-thumb-label-text {\\n color: mat-color($palette, default-contrast);\\n }\\n}\\n\\n@mixin mat-slider-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n $mat-slider-off-color: mat-color($foreground, slider-off);\\n $mat-slider-off-focused-color: mat-color($foreground, slider-off-active);\\n $mat-slider-disabled-color: mat-color($foreground, slider-off);\\n $mat-slider-labeled-min-value-thumb-color: mat-color($foreground, slider-min);\\n $mat-slider-labeled-min-value-thumb-label-color: mat-color($foreground, slider-off);\\n $mat-slider-tick-opacity: 0.7;\\n $mat-slider-tick-color: mat-color($foreground, base, $mat-slider-tick-opacity);\\n $mat-slider-tick-size: 2px;\\n\\n .mat-slider-track-background {\\n background-color: $mat-slider-off-color;\\n }\\n\\n .mat-primary {\\n @include _mat-slider-inner-content-theme($primary);\\n }\\n\\n .mat-accent {\\n @include _mat-slider-inner-content-theme($accent);\\n }\\n\\n .mat-warn {\\n @include _mat-slider-inner-content-theme($warn);\\n }\\n\\n .mat-slider-focus-ring {\\n $opacity: 0.2;\\n $color: mat-color($accent, default, $opacity);\\n background-color: $color;\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($color) != color) {\\n opacity: $opacity;\\n }\\n }\\n\\n .mat-slider:hover,\\n .cdk-focused {\\n .mat-slider-track-background {\\n background-color: $mat-slider-off-focused-color;\\n }\\n }\\n\\n .mat-slider-disabled {\\n .mat-slider-track-background,\\n .mat-slider-track-fill,\\n .mat-slider-thumb {\\n background-color: $mat-slider-disabled-color;\\n }\\n\\n &:hover {\\n .mat-slider-track-background {\\n background-color: $mat-slider-disabled-color;\\n }\\n }\\n }\\n\\n .mat-slider-min-value {\\n .mat-slider-focus-ring {\\n $opacity: 0.12;\\n $color: mat-color($foreground, base, $opacity);\\n background-color: $color;\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($color) != color) {\\n opacity: $opacity;\\n }\\n }\\n\\n &.mat-slider-thumb-label-showing {\\n .mat-slider-thumb,\\n .mat-slider-thumb-label {\\n background-color: $mat-slider-labeled-min-value-thumb-color;\\n }\\n\\n &.cdk-focused {\\n .mat-slider-thumb,\\n .mat-slider-thumb-label {\\n background-color: $mat-slider-labeled-min-value-thumb-label-color;\\n }\\n }\\n }\\n\\n &:not(.mat-slider-thumb-label-showing) {\\n .mat-slider-thumb {\\n border-color: $mat-slider-off-color;\\n background-color: transparent;\\n }\\n\\n &:hover,\\n &.cdk-focused {\\n .mat-slider-thumb {\\n border-color: $mat-slider-off-focused-color;\\n }\\n\\n &.mat-slider-disabled .mat-slider-thumb {\\n border-color: $mat-slider-disabled-color;\\n }\\n }\\n }\\n }\\n\\n .mat-slider-has-ticks .mat-slider-wrapper::after {\\n border-color: $mat-slider-tick-color;\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($mat-slider-tick-color) != color) {\\n opacity: $mat-slider-tick-opacity;\\n }\\n }\\n\\n .mat-slider-horizontal .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to right, $mat-slider-tick-color,\\n $mat-slider-tick-color $mat-slider-tick-size, transparent 0, transparent);\\n // Firefox doesn't draw the gradient correctly with 'to right'\\n // (see https://bugzilla.mozilla.org/show_bug.cgi?id=1314319).\\n background-image: -moz-repeating-linear-gradient(0.0001deg, $mat-slider-tick-color,\\n $mat-slider-tick-color $mat-slider-tick-size, transparent 0, transparent);\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($mat-slider-tick-color) != color) {\\n opacity: $mat-slider-tick-opacity;\\n }\\n }\\n\\n .mat-slider-vertical .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to bottom, $mat-slider-tick-color,\\n $mat-slider-tick-color $mat-slider-tick-size, transparent 0, transparent);\\n\\n // `mat-color` uses `rgba` for the opacity which won't work with\\n // CSS variables so we need to use `opacity` as a fallback.\\n @if (type-of($mat-slider-tick-color) != color) {\\n opacity: $mat-slider-tick-opacity;\\n }\\n }\\n}\\n\\n@mixin mat-slider-typography($config) {\\n .mat-slider-thumb-label-text {\\n font: {\\n family: mat-font-family($config);\\n size: mat-font-size($config, caption);\\n weight: mat-font-weight($config, body-2);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-stepper-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $background: map-get($theme, background);\\n $primary: map-get($theme, primary);\\n $warn: map-get($theme, warn);\\n\\n .mat-step-header {\\n &.cdk-keyboard-focused,\\n &.cdk-program-focused,\\n &:hover {\\n background-color: mat-color($background, hover);\\n }\\n\\n // On touch devices the :hover state will linger on the element after a tap.\\n // Reset it via `@media` after the declaration, because the media query isn't\\n // supported by all browsers yet.\\n @media (hover: none) {\\n &:hover {\\n background: none;\\n }\\n }\\n\\n .mat-step-label,\\n .mat-step-optional {\\n // TODO(josephperrott): Update to using a corrected disabled-text contrast\\n // instead of secondary-text.\\n color: mat-color($foreground, secondary-text);\\n }\\n\\n .mat-step-icon {\\n // TODO(josephperrott): Update to using a corrected disabled-text contrast\\n // instead of secondary-text.\\n background-color: mat-color($foreground, secondary-text);\\n color: mat-color($primary, default-contrast);\\n }\\n\\n .mat-step-icon-selected,\\n .mat-step-icon-state-done,\\n .mat-step-icon-state-edit {\\n background-color: mat-color($primary);\\n color: mat-color($primary, default-contrast);\\n }\\n\\n .mat-step-icon-state-error {\\n background-color: transparent;\\n color: mat-color($warn, text);\\n }\\n\\n .mat-step-label.mat-step-label-active {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-step-label.mat-step-label-error {\\n color: mat-color($warn, text);\\n }\\n }\\n\\n .mat-stepper-horizontal, .mat-stepper-vertical {\\n background-color: mat-color($background, card);\\n }\\n\\n .mat-stepper-vertical-line::before {\\n border-left-color: mat-color($foreground, divider);\\n }\\n\\n .mat-horizontal-stepper-header::before,\\n .mat-horizontal-stepper-header::after,\\n .mat-stepper-horizontal-line {\\n border-top-color: mat-color($foreground, divider);\\n }\\n}\\n\\n@mixin mat-stepper-typography($config) {\\n .mat-stepper-vertical, .mat-stepper-horizontal {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-step-label {\\n font: {\\n size: mat-font-size($config, body-1);\\n weight: mat-font-weight($config, body-1);\\n };\\n }\\n\\n .mat-step-sub-label-error {\\n font-weight: normal;\\n }\\n\\n .mat-step-label-error {\\n font-size: mat-font-size($config, body-2);\\n }\\n\\n .mat-step-label-selected {\\n font: {\\n size: mat-font-size($config, body-2);\\n weight: mat-font-weight($config, body-2);\\n };\\n }\\n}\\n\\n@mixin mat-sort-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-sort-header-arrow {\\n $table-background: mat-color($background, 'card');\\n $text-color: mat-color($foreground, secondary-text);\\n\\n // Because the arrow is made up of multiple elements that are stacked on top of each other,\\n // we can't use the semi-trasparent color from the theme directly. If the value is a color\\n // *type*, we convert it into a solid color by taking the opacity from the rgba value and\\n // using the value to determine the percentage of the background to put into foreground\\n // when mixing the colors together. Otherwise, if it resolves to something different\\n // (e.g. it resolves to a CSS variable), we use the color directly.\\n @if (type-of($table-background) == color and type-of($text-color) == color) {\\n $text-opacity: opacity($text-color);\\n color: mix($table-background, rgba($text-color, 1), (1 - $text-opacity) * 100%);\\n }\\n @else {\\n color: $text-color;\\n }\\n }\\n}\\n\\n@mixin mat-sort-typography($config) { }\\n\\n\\n\\n\\n\\n@mixin mat-tabs-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n $header-border: 1px solid mat-color($foreground, divider);\\n\\n .mat-tab-nav-bar,\\n .mat-tab-header {\\n border-bottom: $header-border;\\n }\\n\\n .mat-tab-group-inverted-header {\\n .mat-tab-nav-bar,\\n .mat-tab-header {\\n border-top: $header-border;\\n border-bottom: none;\\n }\\n }\\n\\n .mat-tab-label, .mat-tab-link {\\n color: mat-color($foreground, text);\\n\\n &.mat-tab-disabled {\\n color: mat-color($foreground, disabled-text);\\n }\\n }\\n\\n .mat-tab-header-pagination-chevron {\\n border-color: mat-color($foreground, text);\\n }\\n\\n .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: mat-color($foreground, disabled-text);\\n }\\n\\n // Remove header border when there is a background color\\n .mat-tab-group[class*='mat-background-'] .mat-tab-header,\\n .mat-tab-nav-bar[class*='mat-background-'] {\\n border-bottom: none;\\n border-top: none;\\n }\\n\\n .mat-tab-group, .mat-tab-nav-bar {\\n $theme-colors: (\\n primary: $primary,\\n accent: $accent,\\n warn: $warn\\n );\\n\\n @each $name, $color in $theme-colors {\\n // Set the foreground color of the tabs\\n &.mat-#{$name} {\\n @include _mat-tab-label-focus($color);\\n @include _mat-ink-bar($color);\\n\\n // Override ink bar when background color is the same\\n &.mat-background-#{$name} {\\n @include _mat-ink-bar($color, default-contrast);\\n }\\n }\\n }\\n\\n @each $name, $color in $theme-colors {\\n // Set background color of the tabs and override focus color\\n &.mat-background-#{$name} {\\n @include _mat-tab-label-focus($color);\\n @include _mat-tabs-background($color);\\n }\\n }\\n }\\n}\\n\\n@mixin _mat-ink-bar($color, $hue: default) {\\n .mat-ink-bar {\\n background-color: mat-color($color, $hue);\\n }\\n}\\n\\n@mixin _mat-tab-label-focus($tab-focus-color) {\\n .mat-tab-label,\\n .mat-tab-link {\\n &.cdk-keyboard-focused,\\n &.cdk-program-focused {\\n &:not(.mat-tab-disabled) {\\n background-color: mat-color($tab-focus-color, lighter, 0.3);\\n }\\n }\\n }\\n}\\n\\n@mixin _mat-tabs-background($background-color) {\\n // Set background color for the tab group\\n .mat-tab-header, .mat-tab-links, .mat-tab-header-pagination {\\n background-color: mat-color($background-color);\\n }\\n\\n // Set labels to contrast against background\\n .mat-tab-label, .mat-tab-link {\\n color: mat-color($background-color, default-contrast);\\n\\n &.mat-tab-disabled {\\n color: mat-color($background-color, default-contrast, 0.4);\\n }\\n }\\n\\n // Set pagination chevrons to contrast background\\n .mat-tab-header-pagination-chevron {\\n border-color: mat-color($background-color, default-contrast);\\n }\\n\\n .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: mat-color($background-color, default-contrast, 0.4);\\n }\\n\\n // Set ripples color to be the contrast color of the new background. Otherwise the ripple\\n // color will be based on the app background color.\\n .mat-ripple-element {\\n background-color: mat-color($background-color, default-contrast, 0.12);\\n }\\n}\\n\\n@mixin mat-tabs-typography($config) {\\n .mat-tab-group {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-tab-label, .mat-tab-link {\\n font: {\\n family: mat-font-family($config, button);\\n size: mat-font-size($config, button);\\n weight: mat-font-weight($config, button);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin _mat-toolbar-color($palette) {\\n background: mat-color($palette);\\n color: mat-color($palette, default-contrast);\\n}\\n\\n@mixin _mat-toolbar-form-field-overrides {\\n .mat-form-field-underline,\\n .mat-form-field-ripple,\\n .mat-focused .mat-form-field-ripple {\\n background-color: currentColor;\\n }\\n\\n .mat-form-field-label,\\n .mat-focused .mat-form-field-label,\\n .mat-select-value,\\n .mat-select-arrow,\\n .mat-form-field.mat-focused .mat-select-arrow {\\n color: inherit;\\n }\\n\\n .mat-input-element {\\n caret-color: currentColor;\\n }\\n}\\n\\n@mixin mat-toolbar-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-toolbar {\\n background: mat-color($background, app-bar);\\n color: mat-color($foreground, text);\\n\\n &.mat-primary {\\n @include _mat-toolbar-color($primary);\\n }\\n\\n &.mat-accent {\\n @include _mat-toolbar-color($accent);\\n }\\n\\n &.mat-warn {\\n @include _mat-toolbar-color($warn);\\n }\\n\\n @include _mat-toolbar-form-field-overrides;\\n }\\n}\\n\\n@mixin mat-toolbar-typography($config) {\\n .mat-toolbar,\\n .mat-toolbar h1,\\n .mat-toolbar h2,\\n .mat-toolbar h3,\\n .mat-toolbar h4,\\n .mat-toolbar h5,\\n .mat-toolbar h6 {\\n @include mat-typography-level-to-styles($config, title);\\n margin: 0;\\n }\\n}\\n\\n\\n\\n\\n\\n$mat-tooltip-target-height: 22px;\\n$mat-tooltip-font-size: 10px;\\n$mat-tooltip-vertical-padding: ($mat-tooltip-target-height - $mat-tooltip-font-size) / 2;\\n\\n$mat-tooltip-handset-target-height: 30px;\\n$mat-tooltip-handset-font-size: 14px;\\n$mat-tooltip-handset-vertical-padding:\\n ($mat-tooltip-handset-target-height - $mat-tooltip-handset-font-size) / 2;\\n\\n@mixin mat-tooltip-theme($theme) {\\n $background: map-get($theme, background);\\n\\n .mat-tooltip {\\n background: mat-color($background, tooltip, 0.9);\\n }\\n}\\n\\n@mixin mat-tooltip-typography($config) {\\n .mat-tooltip {\\n font-family: mat-font-family($config);\\n font-size: $mat-tooltip-font-size;\\n padding-top: $mat-tooltip-vertical-padding;\\n padding-bottom: $mat-tooltip-vertical-padding;\\n }\\n\\n .mat-tooltip-handset {\\n font-size: $mat-tooltip-handset-font-size;\\n padding-top: $mat-tooltip-handset-vertical-padding;\\n padding-bottom: $mat-tooltip-handset-vertical-padding;\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-snack-bar-theme($theme) {\\n $is-dark-theme: map-get($theme, is-dark);\\n $accent: map-get($theme, accent);\\n\\n .mat-snack-bar-container {\\n // Use the primary text on the dark theme, even though the lighter one uses\\n // a secondary, because the contrast on the light primary text is poor.\\n color: if($is-dark-theme, $dark-primary-text, $light-secondary-text);\\n background: if($is-dark-theme, map-get($mat-grey, 50), #323232);\\n\\n @include _mat-theme-elevation(6, $theme);\\n }\\n\\n .mat-simple-snackbar-action {\\n color: if($is-dark-theme, inherit, mat-color($accent, text));\\n }\\n}\\n\\n@mixin mat-snack-bar-typography($config) {\\n .mat-simple-snackbar {\\n font: {\\n family: mat-font-family($config, body-1);\\n size: mat-font-size($config, body-1);\\n }\\n }\\n\\n .mat-simple-snackbar-action {\\n line-height: 1;\\n font: {\\n family: inherit;\\n size: inherit;\\n weight: mat-font-weight($config, button);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n// Theme styles that only apply to the fill appearance of the form-field.\\n\\n@mixin mat-form-field-fill-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n $fill-background: mat-color($foreground, base, if($is-dark-theme, 0.1, 0.04));\\n $fill-disabled-background: mat-color($foreground, base, if($is-dark-theme, 0.05, 0.02));\\n $underline-color: mat-color($foreground, divider, if($is-dark-theme, 0.5, 0.42));\\n $label-disabled-color: mat-color($foreground, disabled-text);\\n\\n .mat-form-field-appearance-fill {\\n .mat-form-field-flex {\\n background-color: $fill-background;\\n }\\n\\n &.mat-form-field-disabled .mat-form-field-flex {\\n background-color: $fill-disabled-background;\\n }\\n\\n .mat-form-field-underline::before {\\n background-color: $underline-color;\\n }\\n\\n &.mat-form-field-disabled {\\n .mat-form-field-label {\\n color: $label-disabled-color;\\n }\\n\\n .mat-form-field-underline::before {\\n background-color: transparent;\\n }\\n }\\n }\\n}\\n\\n// Used to make instances of the _mat-form-field-label-floating mixin negligibly different,\\n// and prevent Google's CSS Optimizer from collapsing the declarations. This is needed because some\\n// of the selectors contain pseudo-classes not recognized in all browsers. If a browser encounters\\n// an unknown pseudo-class it will discard the entire rule set.\\n$mat-form-field-fill-dedupe: 0;\\n\\n// Applies a floating label above the form field control itself.\\n@mixin _mat-form-field-fill-label-floating($font-scale, $infix-padding, $infix-margin-top) {\\n transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-fill-dedupe)\\n scale($font-scale);\\n width: 100% / $font-scale + $mat-form-field-fill-dedupe;\\n\\n $mat-form-field-fill-dedupe: $mat-form-field-fill-dedupe + 0.00001 !global;\\n}\\n\\n@mixin mat-form-field-fill-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n // The amount to scale the font for the floating label and subscript.\\n $subscript-font-scale: 0.75;\\n // The padding on top of the infix.\\n $infix-padding-top: 0.25em;\\n // The padding below the infix.\\n $infix-padding-bottom: 0.75em;\\n // The margin applied to the form-field-infix to reserve space for the floating label.\\n $infix-margin-top: 1em * $line-height * $subscript-font-scale;\\n // The amount we offset the label from the input text in the fill appearance.\\n $fill-appearance-label-offset: -0.5em;\\n\\n .mat-form-field-appearance-fill {\\n .mat-form-field-infix {\\n padding: $infix-padding-top 0 $infix-padding-bottom 0;\\n }\\n\\n .mat-form-field-label {\\n top: $infix-margin-top + $infix-padding-top;\\n margin-top: $fill-appearance-label-offset;\\n }\\n\\n &.mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-fill-label-floating(\\n $subscript-font-scale, $infix-padding-top + $fill-appearance-label-offset,\\n $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-fill-label-floating(\\n $subscript-font-scale, $infix-padding-top + $fill-appearance-label-offset,\\n $infix-margin-top);\\n }\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n// Theme styles that only apply to the legacy appearance of the form-field.\\n\\n@mixin mat-form-field-legacy-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n $label-color: mat-color($foreground, secondary-text);\\n $underline-color: mat-color($foreground, divider, if($is-dark-theme, 0.7, 0.42));\\n\\n .mat-form-field-appearance-legacy {\\n .mat-form-field-label {\\n color: $label-color;\\n }\\n\\n .mat-hint {\\n color: $label-color;\\n }\\n\\n .mat-form-field-underline {\\n background-color: $underline-color;\\n }\\n\\n &.mat-form-field-disabled .mat-form-field-underline {\\n @include mat-control-disabled-underline($underline-color);\\n }\\n }\\n}\\n\\n// Used to make instances of the _mat-form-field-label-floating mixin negligibly different,\\n// and prevent Google's CSS Optimizer from collapsing the declarations. This is needed because some\\n// of the selectors contain pseudo-classes not recognized in all browsers. If a browser encounters\\n// an unknown pseudo-class it will discard the entire rule set.\\n$mat-form-field-legacy-dedupe: 0;\\n\\n// Applies a floating label above the form field control itself.\\n@mixin _mat-form-field-legacy-label-floating($font-scale, $infix-padding, $infix-margin-top) {\\n // We use perspective to fix the text blurriness as described here:\\n // http://www.useragentman.com/blog/2014/05/04/fixing-typography-inside-of-2-d-css-transforms/\\n // This results in a small jitter after the label floats on Firefox, which the\\n // translateZ fixes.\\n transform: translateY(-$infix-margin-top - $infix-padding) scale($font-scale) perspective(100px)\\n translateZ(0.001px + $mat-form-field-legacy-dedupe);\\n // The tricks above used to smooth out the animation on chrome and firefox actually make things\\n // worse on IE, so we don't include them in the IE version.\\n -ms-transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-legacy-dedupe)\\n scale($font-scale);\\n\\n width: 100% / $font-scale + $mat-form-field-legacy-dedupe;\\n\\n $mat-form-field-legacy-dedupe: $mat-form-field-legacy-dedupe + 0.00001 !global;\\n}\\n\\n// Same as mixin above, but omits the translateZ for printing purposes.\\n@mixin _mat-form-field-legacy-label-floating-print($font-scale, $infix-padding, $infix-margin-top) {\\n // This results in a small jitter after the label floats on Firefox, which the\\n // translateZ fixes.\\n transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-legacy-dedupe)\\n scale($font-scale);\\n // The tricks above used to smooth out the animation on chrome and firefox actually make things\\n // worse on IE, so we don't include them in the IE version.\\n $mat-form-field-legacy-dedupe: $mat-form-field-legacy-dedupe + 0.00001 !global;\\n}\\n\\n@mixin mat-form-field-legacy-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n // The amount to scale the font for the floating label and subscript.\\n $subscript-font-scale: 0.75;\\n // The amount of space between the top of the line and the top of the actual text\\n // (as a fraction of the font-size).\\n $line-spacing: ($line-height - 1) / 2;\\n // The padding on the infix. Mocks show half of the text size, but seem to measure from the edge\\n // of the text itself, not the edge of the line; therefore we subtract off the line spacing.\\n $infix-padding: 0.5em - $line-spacing;\\n // The margin applied to the form-field-infix to reserve space for the floating label.\\n $infix-margin-top: 1em * $line-height * $subscript-font-scale;\\n // The space between the bottom of the .mat-form-field-flex area and the subscript wrapper.\\n // Mocks show half of the text size, but this margin is applied to an element with the subscript\\n // text font size, so we need to divide by the scale factor to make it half of the original text\\n // size. We again need to subtract off the line spacing since the mocks measure to the edge of the\\n // text, not the edge of the line.\\n $subscript-margin-top: 0.5em / $subscript-font-scale - ($line-spacing * 2);\\n // The padding applied to the form-field-wrapper to reserve space for the subscript, since it's\\n // absolutely positioned. This is a combination of the subscript's margin and line-height, but we\\n // need to multiply by the subscript font scale factor since the wrapper has a larger font size.\\n $wrapper-padding-bottom: ($subscript-margin-top + $line-height) * $subscript-font-scale;\\n\\n .mat-form-field-appearance-legacy {\\n .mat-form-field-wrapper {\\n padding-bottom: $wrapper-padding-bottom;\\n }\\n\\n .mat-form-field-infix {\\n padding: $infix-padding 0;\\n }\\n\\n &.mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // @breaking-change 8.0.0 will rely on AutofillMonitor instead.\\n .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n }\\n\\n .mat-form-field-label {\\n top: $infix-margin-top + $infix-padding;\\n }\\n\\n .mat-form-field-underline {\\n // We want the underline to start at the end of the content box, not the padding box,\\n // so we move it up by the padding amount.\\n bottom: $wrapper-padding-bottom;\\n }\\n\\n .mat-form-field-subscript-wrapper {\\n margin-top: $subscript-margin-top;\\n\\n // We want the subscript to start at the end of the content box, not the padding box,\\n // so we move it up by the padding amount (adjusted for the smaller font size);\\n top: calc(100% - #{$wrapper-padding-bottom / $subscript-font-scale});\\n }\\n }\\n\\n // translateZ causes the label to not appear while printing, so we override it to not\\n // apply translateZ while printing\\n @media print {\\n .mat-form-field-appearance-legacy {\\n &.mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating-print(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // @breaking-change 8.0.0 will rely on AutofillMonitor instead.\\n .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating-print(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-legacy-label-floating-print(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n }\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n// Theme styles that only apply to the outline appearance of the form-field.\\n\\n@mixin mat-form-field-outline-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n $label-disabled-color: mat-color($foreground, disabled-text);\\n $outline-color: mat-color($foreground, divider, if($is-dark-theme, 0.3, 0.12));\\n $outline-color-hover: mat-color($foreground, divider, if($is-dark-theme, 1, 0.87));\\n $outline-color-primary: mat-color($primary);\\n $outline-color-accent: mat-color($accent);\\n $outline-color-warn: mat-color($warn);\\n $outline-color-disabled: mat-color($foreground, divider, if($is-dark-theme, 0.15, 0.06));\\n\\n .mat-form-field-appearance-outline {\\n .mat-form-field-outline {\\n color: $outline-color;\\n }\\n\\n .mat-form-field-outline-thick {\\n color: $outline-color-hover;\\n }\\n\\n &.mat-focused {\\n .mat-form-field-outline-thick {\\n color: $outline-color-primary;\\n }\\n\\n &.mat-accent .mat-form-field-outline-thick {\\n color: $outline-color-accent;\\n }\\n\\n &.mat-warn .mat-form-field-outline-thick {\\n color: $outline-color-warn;\\n }\\n }\\n\\n // Class repeated so that rule is specific enough to override focused accent color case.\\n &.mat-form-field-invalid.mat-form-field-invalid {\\n .mat-form-field-outline-thick {\\n color: $outline-color-warn;\\n }\\n }\\n\\n &.mat-form-field-disabled {\\n .mat-form-field-label {\\n color: $label-disabled-color;\\n }\\n\\n .mat-form-field-outline {\\n color: $outline-color-disabled;\\n }\\n }\\n }\\n}\\n\\n// Used to make instances of the _mat-form-field-label-floating mixin negligibly different,\\n// and prevent Google's CSS Optimizer from collapsing the declarations. This is needed because some\\n// of the selectors contain pseudo-classes not recognized in all browsers. If a browser encounters\\n// an unknown pseudo-class it will discard the entire rule set.\\n$mat-form-field-outline-dedupe: 0;\\n\\n// Applies a floating label above the form field control itself.\\n@mixin _mat-form-field-outline-label-floating($font-scale, $infix-padding, $infix-margin-top) {\\n transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-outline-dedupe)\\n scale($font-scale);\\n width: 100% / $font-scale + $mat-form-field-outline-dedupe;\\n\\n $mat-form-field-outline-dedupe: $mat-form-field-outline-dedupe + 0.00001 !global;\\n}\\n\\n@mixin mat-form-field-outline-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n // The amount to scale the font for the floating label and subscript.\\n $subscript-font-scale: 0.75;\\n // The padding above and below the infix.\\n $infix-padding: 1em;\\n // The margin applied to the form-field-infix to reserve space for the floating label.\\n $infix-margin-top: 1em * $line-height * $subscript-font-scale;\\n // The space between the bottom of the .mat-form-field-flex area and the subscript wrapper.\\n // Mocks show half of the text size, but this margin is applied to an element with the subscript\\n // text font size, so we need to divide by the scale factor to make it half of the original text\\n // size.\\n $subscript-margin-top: 0.5em / $subscript-font-scale;\\n // The padding applied to the form-field-wrapper to reserve space for the subscript, since it's\\n // absolutely positioned. This is a combination of the subscript's margin and line-height, but we\\n // need to multiply by the subscript font scale factor since the wrapper has a larger font size.\\n $wrapper-padding-bottom: ($subscript-margin-top + $line-height) * $subscript-font-scale;\\n // The amount we offset the label from the input text in the outline appearance.\\n $outline-appearance-label-offset: -0.25em;\\n\\n .mat-form-field-appearance-outline {\\n .mat-form-field-infix {\\n padding: $infix-padding 0 $infix-padding 0;\\n }\\n\\n .mat-form-field-label {\\n top: $infix-margin-top + $infix-padding;\\n margin-top: $outline-appearance-label-offset;\\n }\\n\\n &.mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-outline-label-floating(\\n $subscript-font-scale, $infix-padding + $outline-appearance-label-offset,\\n $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-outline-label-floating(\\n $subscript-font-scale, $infix-padding + $outline-appearance-label-offset,\\n $infix-margin-top);\\n }\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n// Theme styles that only apply to the standard appearance of the form-field.\\n\\n@mixin mat-form-field-standard-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n $underline-color: mat-color($foreground, divider, if($is-dark-theme, 0.7, 0.42));\\n\\n .mat-form-field-appearance-standard {\\n .mat-form-field-underline {\\n background-color: $underline-color;\\n }\\n\\n &.mat-form-field-disabled .mat-form-field-underline {\\n @include mat-control-disabled-underline($underline-color);\\n }\\n }\\n}\\n\\n@mixin mat-form-field-standard-typography($config) {}\\n\\n\\n// Theme styles that apply to all appearances of the form-field.\\n@mixin mat-form-field-theme($theme) {\\n $primary: map-get($theme, primary);\\n $accent: map-get($theme, accent);\\n $warn: map-get($theme, warn);\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n $is-dark-theme: map-get($theme, is-dark);\\n\\n // Label colors. Required is used for the `*` star shown in the label.\\n $label-color: mat-color($foreground, secondary-text, if($is-dark-theme, 0.7, 0.6));\\n $focused-label-color: mat-color($primary, text);\\n $required-label-color: mat-color($accent, text);\\n\\n // Underline colors.\\n $underline-color-base: mat-color($foreground, divider, if($is-dark-theme, 1, 0.87));\\n $underline-color-accent: mat-color($accent, text);\\n $underline-color-warn: mat-color($warn, text);\\n $underline-focused-color: mat-color($primary, text);\\n\\n .mat-form-field-label {\\n color: $label-color;\\n }\\n\\n .mat-hint {\\n color: $label-color;\\n }\\n\\n .mat-form-field.mat-focused .mat-form-field-label {\\n color: $focused-label-color;\\n\\n &.mat-accent {\\n color: $underline-color-accent;\\n }\\n\\n &.mat-warn {\\n color: $underline-color-warn;\\n }\\n }\\n\\n .mat-focused .mat-form-field-required-marker {\\n color: $required-label-color;\\n }\\n\\n .mat-form-field-ripple {\\n background-color: $underline-color-base;\\n }\\n\\n .mat-form-field.mat-focused {\\n .mat-form-field-ripple {\\n background-color: $underline-focused-color;\\n\\n &.mat-accent {\\n background-color: $underline-color-accent;\\n }\\n\\n &.mat-warn {\\n background-color: $underline-color-warn;\\n }\\n }\\n }\\n\\n .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) {\\n .mat-form-field-infix::after {\\n color: $underline-focused-color;\\n }\\n\\n &.mat-accent .mat-form-field-infix::after {\\n color: $underline-color-accent;\\n }\\n\\n &.mat-warn .mat-form-field-infix::after {\\n color: $underline-color-warn;\\n }\\n }\\n\\n // Styling for the error state of the form field. Note that while the same can be\\n // achieved with the ng-* classes, we use this approach in order to ensure that the same\\n // logic is used to style the error state and to show the error messages.\\n .mat-form-field.mat-form-field-invalid {\\n .mat-form-field-label {\\n color: $underline-color-warn;\\n\\n &.mat-accent,\\n .mat-form-field-required-marker {\\n color: $underline-color-warn;\\n }\\n }\\n\\n .mat-form-field-ripple,\\n .mat-form-field-ripple.mat-accent {\\n background-color: $underline-color-warn;\\n }\\n }\\n\\n .mat-error {\\n color: $underline-color-warn;\\n }\\n\\n @include mat-form-field-legacy-theme($theme);\\n @include mat-form-field-standard-theme($theme);\\n @include mat-form-field-fill-theme($theme);\\n @include mat-form-field-outline-theme($theme);\\n}\\n\\n// Used to make instances of the _mat-form-field-label-floating mixin negligibly different,\\n// and prevent Google's CSS Optimizer from collapsing the declarations. This is needed because some\\n// of the selectors contain pseudo-classes not recognized in all browsers. If a browser encounters\\n// an unknown pseudo-class it will discard the entire rule set.\\n$mat-form-field-dedupe: 0;\\n\\n// Applies a floating label above the form field control itself.\\n@mixin _mat-form-field-label-floating($font-scale, $infix-padding, $infix-margin-top) {\\n transform: translateY(-$infix-margin-top - $infix-padding + $mat-form-field-dedupe)\\n scale($font-scale);\\n width: 100% / $font-scale + $mat-form-field-dedupe;\\n\\n $mat-form-field-dedupe: $mat-form-field-dedupe + 0.00001 !global;\\n}\\n\\n@mixin mat-form-field-typography($config) {\\n // The unit-less line-height from the font config.\\n $line-height: mat-line-height($config, input);\\n\\n // The amount to scale the font for the floating label and subscript.\\n $subscript-font-scale: 0.75;\\n // The amount to scale the font for the prefix and suffix icons.\\n $prefix-suffix-icon-font-scale: 1.5;\\n\\n // The padding on the infix. Mocks show half of the text size.\\n $infix-padding: 0.5em;\\n // The margin applied to the form-field-infix to reserve space for the floating label.\\n $infix-margin-top: 1em * $line-height * $subscript-font-scale;\\n // Font size to use for the label and subscript text.\\n $subscript-font-size: $subscript-font-scale * 100%;\\n // Font size to use for the for the prefix and suffix icons.\\n $prefix-suffix-icon-font-size: $prefix-suffix-icon-font-scale * 100%;\\n // The space between the bottom of the .mat-form-field-flex area and the subscript wrapper.\\n // Mocks show half of the text size, but this margin is applied to an element with the subscript\\n // text font size, so we need to divide by the scale factor to make it half of the original text\\n // size.\\n $subscript-margin-top: 0.5em / $subscript-font-scale;\\n // The padding applied to the form-field-wrapper to reserve space for the subscript, since it's\\n // absolutely positioned. This is a combination of the subscript's margin and line-height, but we\\n // need to multiply by the subscript font scale factor since the wrapper has a larger font size.\\n $wrapper-padding-bottom: ($subscript-margin-top + $line-height) * $subscript-font-scale;\\n\\n .mat-form-field {\\n @include mat-typography-level-to-styles($config, input);\\n }\\n\\n .mat-form-field-wrapper {\\n padding-bottom: $wrapper-padding-bottom;\\n }\\n\\n .mat-form-field-prefix,\\n .mat-form-field-suffix {\\n // Allow icons in a prefix or suffix to adapt to the correct size.\\n .mat-icon {\\n font-size: $prefix-suffix-icon-font-size;\\n line-height: $line-height;\\n }\\n\\n // Allow icon buttons in a prefix or suffix to adapt to the correct size.\\n .mat-icon-button {\\n height: $prefix-suffix-icon-font-scale * 1em;\\n width: $prefix-suffix-icon-font-scale * 1em;\\n\\n .mat-icon {\\n height: $line-height * 1em;\\n line-height: $line-height;\\n }\\n }\\n }\\n\\n .mat-form-field-infix {\\n padding: $infix-padding 0;\\n // Throws off the baseline if we do it as a real margin, so we do it as a border instead.\\n border-top: $infix-margin-top solid transparent;\\n }\\n\\n .mat-form-field-can-float {\\n &.mat-form-field-should-float .mat-form-field-label,\\n .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n @include _mat-form-field-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n\\n // Server-side rendered matInput with a label attribute but label not shown\\n // (used as a pure CSS stand-in for mat-form-field-should-float).\\n .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper\\n .mat-form-field-label {\\n @include _mat-form-field-label-floating(\\n $subscript-font-scale, $infix-padding, $infix-margin-top);\\n }\\n }\\n\\n .mat-form-field-label-wrapper {\\n top: -$infix-margin-top;\\n padding-top: $infix-margin-top;\\n }\\n\\n .mat-form-field-label {\\n top: $infix-margin-top + $infix-padding;\\n }\\n\\n .mat-form-field-underline {\\n // We want the underline to start at the end of the content box, not the padding box,\\n // so we move it up by the padding amount.\\n bottom: $wrapper-padding-bottom;\\n }\\n\\n .mat-form-field-subscript-wrapper {\\n font-size: $subscript-font-size;\\n margin-top: $subscript-margin-top;\\n\\n // We want the subscript to start at the end of the content box, not the padding box,\\n // so we move it up by the padding amount (adjusted for the smaller font size);\\n top: calc(100% - #{$wrapper-padding-bottom / $subscript-font-scale});\\n }\\n\\n @include mat-form-field-legacy-typography($config);\\n @include mat-form-field-standard-typography($config);\\n @include mat-form-field-fill-typography($config);\\n @include mat-form-field-outline-typography($config);\\n}\\n\\n\\n\\n\\n\\n@mixin mat-tree-theme($theme) {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n .mat-tree {\\n background: mat-color($background, 'card');\\n }\\n\\n .mat-tree-node,\\n .mat-nested-tree-node {\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-tree-typography($config) {\\n .mat-tree {\\n font-family: mat-font-family($config);\\n }\\n\\n .mat-tree-node,\\n .mat-nested-tree-node {\\n font-weight: mat-font-weight($config, body-1);\\n font-size: mat-font-size($config, body-1);\\n }\\n}\\n\\n\\n\\n// Includes all of the typographic styles.\\n@mixin angular-material-typography($config: null) {\\n @if $config == null {\\n $config: mat-typography-config();\\n }\\n\\n @include mat-badge-typography($config);\\n @include mat-base-typography($config);\\n @include mat-autocomplete-typography($config);\\n @include mat-bottom-sheet-typography($config);\\n @include mat-button-typography($config);\\n @include mat-button-toggle-typography($config);\\n @include mat-card-typography($config);\\n @include mat-checkbox-typography($config);\\n @include mat-chips-typography($config);\\n @include mat-table-typography($config);\\n @include mat-datepicker-typography($config);\\n @include mat-dialog-typography($config);\\n @include mat-expansion-panel-typography($config);\\n @include mat-form-field-typography($config);\\n @include mat-grid-list-typography($config);\\n @include mat-icon-typography($config);\\n @include mat-input-typography($config);\\n @include mat-menu-typography($config);\\n @include mat-paginator-typography($config);\\n @include mat-progress-bar-typography($config);\\n @include mat-progress-spinner-typography($config);\\n @include mat-radio-typography($config);\\n @include mat-select-typography($config);\\n @include mat-sidenav-typography($config);\\n @include mat-slide-toggle-typography($config);\\n @include mat-slider-typography($config);\\n @include mat-stepper-typography($config);\\n @include mat-sort-typography($config);\\n @include mat-tabs-typography($config);\\n @include mat-toolbar-typography($config);\\n @include mat-tooltip-typography($config);\\n @include mat-list-typography($config);\\n @include mat-option-typography($config);\\n @include mat-optgroup-typography($config);\\n @include mat-snack-bar-typography($config);\\n @include mat-tree-typography($config);\\n}\\n\\n\\n// Mixin that renders all of the core styles that are not theme-dependent.\\n@mixin mat-core($typography-config: null) {\\n @include angular-material-typography($typography-config);\\n @include mat-ripple();\\n @include cdk-a11y();\\n @include cdk-overlay();\\n @include cdk-text-field();\\n}\\n\\n// Mixin that renders all of the core styles that depend on the theme.\\n@mixin mat-core-theme($theme) {\\n @include mat-ripple-theme($theme);\\n @include mat-option-theme($theme);\\n @include mat-optgroup-theme($theme);\\n @include mat-pseudo-checkbox-theme($theme);\\n\\n // Provides external CSS classes for each elevation value. Each CSS class is formatted as\\n // `mat-elevation-z$zValue` where `$zValue` corresponds to the z-space to which the element is\\n // elevated.\\n @for $zValue from 0 through 24 {\\n .#{$_mat-elevation-prefix}#{$zValue} {\\n @include _mat-theme-elevation($zValue, $theme);\\n }\\n }\\n\\n // Wrapper element that provides the theme background when the user's content isn't\\n // inside of a `mat-sidenav-container`. Note that we need to exclude the ampersand\\n // selector in case the mixin is included at the top level.\\n .mat-app-background#{if(&, ', &.mat-app-background', '')} {\\n $background: map-get($theme, background);\\n $foreground: map-get($theme, foreground);\\n\\n background-color: mat-color($background, background);\\n color: mat-color($foreground, text);\\n }\\n\\n // Marker that is used to determine whether the user has added a theme to their page.\\n @at-root {\\n .mat-theme-loaded-marker {\\n display: none;\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-divider-theme($theme) {\\n $foreground: map-get($theme, foreground);\\n\\n .mat-divider {\\n border-top-color: mat-color($foreground, divider);\\n }\\n\\n .mat-divider-vertical {\\n border-right-color: mat-color($foreground, divider);\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n// Create a theme.\\n@mixin angular-material-theme($theme) {\\n @include mat-core-theme($theme);\\n @include mat-autocomplete-theme($theme);\\n @include mat-badge-theme($theme);\\n @include mat-bottom-sheet-theme($theme);\\n @include mat-button-theme($theme);\\n @include mat-button-toggle-theme($theme);\\n @include mat-card-theme($theme);\\n @include mat-checkbox-theme($theme);\\n @include mat-chips-theme($theme);\\n @include mat-table-theme($theme);\\n @include mat-datepicker-theme($theme);\\n @include mat-dialog-theme($theme);\\n @include mat-divider-theme($theme);\\n @include mat-expansion-panel-theme($theme);\\n @include mat-form-field-theme($theme);\\n @include mat-grid-list-theme($theme);\\n @include mat-icon-theme($theme);\\n @include mat-input-theme($theme);\\n @include mat-list-theme($theme);\\n @include mat-menu-theme($theme);\\n @include mat-paginator-theme($theme);\\n @include mat-progress-bar-theme($theme);\\n @include mat-progress-spinner-theme($theme);\\n @include mat-radio-theme($theme);\\n @include mat-select-theme($theme);\\n @include mat-sidenav-theme($theme);\\n @include mat-slide-toggle-theme($theme);\\n @include mat-slider-theme($theme);\\n @include mat-stepper-theme($theme);\\n @include mat-sort-theme($theme);\\n @include mat-tabs-theme($theme);\\n @include mat-toolbar-theme($theme);\\n @include mat-tooltip-theme($theme);\\n @include mat-tree-theme($theme);\\n @include mat-snack-bar-theme($theme);\\n}\\n\",\"/** Ionic CSS Variables **/\\n/* Theme for the ripple elements.*/\\n/* stylelint-disable material/no-prefixes */\\n/* stylelint-enable */\\n.mat-badge-content {\\n font-weight: 600;\\n font-size: 12px;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-badge-small .mat-badge-content {\\n font-size: 9px;\\n}\\n\\n.mat-badge-large .mat-badge-content {\\n font-size: 24px;\\n}\\n\\n.mat-h1, .mat-headline, .mat-typography h1 {\\n font: 400 24px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h2, .mat-title, .mat-typography h2 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h3, .mat-subheading-2, .mat-typography h3 {\\n font: 400 16px/28px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h4, .mat-subheading-1, .mat-typography h4 {\\n font: 400 15px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 16px;\\n}\\n\\n.mat-h5, .mat-typography h5 {\\n font: 400 calc(14px * 0.83)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n\\n.mat-h6, .mat-typography h6 {\\n font: 400 calc(14px * 0.67)/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n margin: 0 0 12px;\\n}\\n\\n.mat-body-strong, .mat-body-2 {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-body, .mat-body-1, .mat-typography {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n.mat-body p, .mat-body-1 p, .mat-typography p {\\n margin: 0 0 12px;\\n}\\n\\n.mat-small, .mat-caption {\\n font: 400 12px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-display-4, .mat-typography .mat-display-4 {\\n font: 300 112px/112px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.05em;\\n margin: 0 0 56px;\\n}\\n\\n.mat-display-3, .mat-typography .mat-display-3 {\\n font: 400 56px/56px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.02em;\\n margin: 0 0 64px;\\n}\\n\\n.mat-display-2, .mat-typography .mat-display-2 {\\n font: 400 45px/48px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: -0.005em;\\n margin: 0 0 64px;\\n}\\n\\n.mat-display-1, .mat-typography .mat-display-1 {\\n font: 400 34px/40px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0 0 64px;\\n}\\n\\n.mat-bottom-sheet-container {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,\\n.mat-flat-button, .mat-fab, .mat-mini-fab {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-button-toggle {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-card {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-card-title {\\n font-size: 24px;\\n font-weight: 500;\\n}\\n\\n.mat-card-header .mat-card-title {\\n font-size: 20px;\\n}\\n\\n.mat-card-subtitle,\\n.mat-card-content {\\n font-size: 14px;\\n}\\n\\n.mat-checkbox {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-checkbox-layout .mat-checkbox-label {\\n line-height: 24px;\\n}\\n\\n.mat-chip {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n.mat-chip .mat-chip-trailing-icon.mat-icon,\\n.mat-chip .mat-chip-remove.mat-icon {\\n font-size: 18px;\\n}\\n\\n.mat-table {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-header-cell {\\n font-size: 12px;\\n font-weight: 500;\\n}\\n\\n.mat-cell, .mat-footer-cell {\\n font-size: 14px;\\n}\\n\\n.mat-calendar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-calendar-body {\\n font-size: 13px;\\n}\\n\\n.mat-calendar-body-label,\\n.mat-calendar-period-button {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-calendar-table-header th {\\n font-size: 11px;\\n font-weight: 400;\\n}\\n\\n.mat-dialog-title {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-expansion-panel-header {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 15px;\\n font-weight: 400;\\n}\\n\\n.mat-expansion-panel-content {\\n font: 400 14px/20px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-form-field {\\n font-size: inherit;\\n font-weight: 400;\\n line-height: 1.125;\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-form-field-wrapper {\\n padding-bottom: 1.34375em;\\n}\\n\\n.mat-form-field-prefix .mat-icon,\\n.mat-form-field-suffix .mat-icon {\\n font-size: 150%;\\n line-height: 1.125;\\n}\\n.mat-form-field-prefix .mat-icon-button,\\n.mat-form-field-suffix .mat-icon-button {\\n height: 1.5em;\\n width: 1.5em;\\n}\\n.mat-form-field-prefix .mat-icon-button .mat-icon,\\n.mat-form-field-suffix .mat-icon-button .mat-icon {\\n height: 1.125em;\\n line-height: 1.125;\\n}\\n\\n.mat-form-field-infix {\\n padding: 0.5em 0;\\n border-top: 0.84375em solid transparent;\\n}\\n\\n.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.34374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n\\n.mat-form-field-label-wrapper {\\n top: -0.84375em;\\n padding-top: 0.84375em;\\n}\\n\\n.mat-form-field-label {\\n top: 1.34375em;\\n}\\n\\n.mat-form-field-underline {\\n bottom: 1.34375em;\\n}\\n\\n.mat-form-field-subscript-wrapper {\\n font-size: 75%;\\n margin-top: 0.6666666667em;\\n top: calc(100% - 1.7916666667em);\\n}\\n\\n.mat-form-field-appearance-legacy .mat-form-field-wrapper {\\n padding-bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-infix {\\n padding: 0.4375em 0;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);\\n -ms-transform: translateY(-1.28125em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);\\n -ms-transform: translateY(-1.28124em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);\\n -ms-transform: translateY(-1.28123em) scale(0.75);\\n width: 133.3333533333%;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-label {\\n top: 1.28125em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-underline {\\n bottom: 1.25em;\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {\\n margin-top: 0.5416666667em;\\n top: calc(100% - 1.6666666667em);\\n}\\n\\n@media print {\\n .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28122em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.28121em) scale(0.75);\\n }\\n .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.2812em) scale(0.75);\\n }\\n}\\n.mat-form-field-appearance-fill .mat-form-field-infix {\\n padding: 0.25em 0 0.75em 0;\\n}\\n.mat-form-field-appearance-fill .mat-form-field-label {\\n top: 1.09375em;\\n margin-top: -0.5em;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-0.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n\\n.mat-form-field-appearance-outline .mat-form-field-infix {\\n padding: 1em 0 1em 0;\\n}\\n.mat-form-field-appearance-outline .mat-form-field-label {\\n top: 1.84375em;\\n margin-top: -0.25em;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59375em) scale(0.75);\\n width: 133.3333333333%;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {\\n transform: translateY(-1.59374em) scale(0.75);\\n width: 133.3333433333%;\\n}\\n\\n.mat-grid-tile-header,\\n.mat-grid-tile-footer {\\n font-size: 14px;\\n}\\n.mat-grid-tile-header .mat-line,\\n.mat-grid-tile-footer .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-grid-tile-header .mat-line:nth-child(n+2),\\n.mat-grid-tile-footer .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n\\ninput.mat-input-element {\\n margin-top: -0.0625em;\\n}\\n\\n.mat-menu-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 400;\\n}\\n\\n.mat-paginator,\\n.mat-paginator-page-size .mat-select-trigger {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n}\\n\\n.mat-radio-button {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-select {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-select-trigger {\\n height: 1.125em;\\n}\\n\\n.mat-slide-toggle-content {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-slider-thumb-label-text {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n\\n.mat-stepper-vertical, .mat-stepper-horizontal {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-step-label {\\n font-size: 14px;\\n font-weight: 400;\\n}\\n\\n.mat-step-sub-label-error {\\n font-weight: normal;\\n}\\n\\n.mat-step-label-error {\\n font-size: 14px;\\n}\\n\\n.mat-step-label-selected {\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-tab-group {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-tab-label, .mat-tab-link {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-toolbar,\\n.mat-toolbar h1,\\n.mat-toolbar h2,\\n.mat-toolbar h3,\\n.mat-toolbar h4,\\n.mat-toolbar h5,\\n.mat-toolbar h6 {\\n font: 500 20px/32px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n margin: 0;\\n}\\n\\n.mat-tooltip {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 10px;\\n padding-top: 6px;\\n padding-bottom: 6px;\\n}\\n\\n.mat-tooltip-handset {\\n font-size: 14px;\\n padding-top: 8px;\\n padding-bottom: 8px;\\n}\\n\\n.mat-list-item {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-list-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-list-base .mat-list-item {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-list-option {\\n font-size: 16px;\\n}\\n.mat-list-base .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 14px;\\n}\\n.mat-list-base .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n font-weight: 500;\\n}\\n\\n.mat-list-base[dense] .mat-list-item {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line {\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n display: block;\\n box-sizing: border-box;\\n}\\n.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {\\n font-size: 12px;\\n}\\n.mat-list-base[dense] .mat-subheader {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 12px;\\n font-weight: 500;\\n}\\n\\n.mat-option {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 16px;\\n}\\n\\n.mat-optgroup-label {\\n font: 500 14px/24px Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n letter-spacing: normal;\\n}\\n\\n.mat-simple-snackbar {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n font-size: 14px;\\n}\\n\\n.mat-simple-snackbar-action {\\n line-height: 1;\\n font-family: inherit;\\n font-size: inherit;\\n font-weight: 500;\\n}\\n\\n.mat-tree {\\n font-family: Roboto, \\\"Helvetica Neue\\\", sans-serif;\\n}\\n\\n.mat-tree-node,\\n.mat-nested-tree-node {\\n font-weight: 400;\\n font-size: 14px;\\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: scale(0);\\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 outline: 0;\\n -webkit-appearance: none;\\n -moz-appearance: none;\\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@media screen and (-ms-high-contrast: active) {\\n .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {\\n opacity: 0.6;\\n }\\n}\\n\\n.cdk-overlay-dark-backdrop {\\n background: rgba(0, 0, 0, 0.32);\\n}\\n\\n.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {\\n opacity: 0;\\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\\n@keyframes cdk-text-field-autofill-start {\\n /*!*/\\n}\\n@keyframes cdk-text-field-autofill-end {\\n /*!*/\\n}\\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\\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.mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n\\n.mat-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n.mat-option.mat-active {\\n background: rgba(0, 0, 0, 0.04);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-option.mat-option-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ef5350;\\n}\\n\\n.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ffd740;\\n}\\n\\n.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #ff5722;\\n}\\n\\n.mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-optgroup-disabled .mat-optgroup-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-pseudo-checkbox {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-pseudo-checkbox::after {\\n color: #fafafa;\\n}\\n\\n.mat-pseudo-checkbox-disabled {\\n color: #b0b0b0;\\n}\\n\\n.mat-primary .mat-pseudo-checkbox-checked,\\n.mat-primary .mat-pseudo-checkbox-indeterminate {\\n background: #ef5350;\\n}\\n\\n.mat-pseudo-checkbox-checked,\\n.mat-pseudo-checkbox-indeterminate,\\n.mat-accent .mat-pseudo-checkbox-checked,\\n.mat-accent .mat-pseudo-checkbox-indeterminate {\\n background: #ffd740;\\n}\\n\\n.mat-warn .mat-pseudo-checkbox-checked,\\n.mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: #ff5722;\\n}\\n\\n.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,\\n.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {\\n background: #b0b0b0;\\n}\\n\\n.mat-elevation-z0 {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z1 {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z2 {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z3 {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z4 {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z5 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z6 {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z7 {\\n box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z8 {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z9 {\\n box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z10 {\\n box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z11 {\\n box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z12 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z13 {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z14 {\\n box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z15 {\\n box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z16 {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z17 {\\n box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z18 {\\n box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z19 {\\n box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z20 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z21 {\\n box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z22 {\\n box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z23 {\\n box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-elevation-z24 {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-app-background {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-theme-loaded-marker {\\n display: none;\\n}\\n\\n.mat-autocomplete-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-autocomplete-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {\\n background: white;\\n}\\n.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-badge-content {\\n color: rgba(0, 0, 0, 0.87);\\n background: #ef5350;\\n}\\n.cdk-high-contrast-active .mat-badge-content {\\n outline: solid 1px;\\n border-radius: 0;\\n}\\n\\n.mat-badge-accent .mat-badge-content {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-badge-warn .mat-badge-content {\\n color: white;\\n background: #ff5722;\\n}\\n\\n.mat-badge {\\n position: relative;\\n}\\n\\n.mat-badge-hidden .mat-badge-content {\\n display: none;\\n}\\n\\n.mat-badge-disabled .mat-badge-content {\\n background: #b9b9b9;\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-badge-content {\\n position: absolute;\\n text-align: center;\\n display: inline-block;\\n border-radius: 50%;\\n transition: transform 200ms ease-in-out;\\n transform: scale(0.6);\\n overflow: hidden;\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n pointer-events: none;\\n}\\n\\n.ng-animate-disabled .mat-badge-content,\\n.mat-badge-content._mat-animation-noopable {\\n transition: none;\\n}\\n\\n.mat-badge-content.mat-badge-active {\\n transform: none;\\n}\\n\\n.mat-badge-small .mat-badge-content {\\n width: 16px;\\n height: 16px;\\n line-height: 16px;\\n}\\n.mat-badge-small.mat-badge-above .mat-badge-content {\\n top: -8px;\\n}\\n.mat-badge-small.mat-badge-below .mat-badge-content {\\n bottom: -8px;\\n}\\n.mat-badge-small.mat-badge-before .mat-badge-content {\\n left: -16px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -16px;\\n}\\n.mat-badge-small.mat-badge-after .mat-badge-content {\\n right: -16px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -16px;\\n}\\n.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -8px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -8px;\\n}\\n.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -8px;\\n}\\n[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -8px;\\n}\\n\\n.mat-badge-medium .mat-badge-content {\\n width: 22px;\\n height: 22px;\\n line-height: 22px;\\n}\\n.mat-badge-medium.mat-badge-above .mat-badge-content {\\n top: -11px;\\n}\\n.mat-badge-medium.mat-badge-below .mat-badge-content {\\n bottom: -11px;\\n}\\n.mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: -22px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -22px;\\n}\\n.mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: -22px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -22px;\\n}\\n.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -11px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -11px;\\n}\\n.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -11px;\\n}\\n[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -11px;\\n}\\n\\n.mat-badge-large .mat-badge-content {\\n width: 28px;\\n height: 28px;\\n line-height: 28px;\\n}\\n.mat-badge-large.mat-badge-above .mat-badge-content {\\n top: -14px;\\n}\\n.mat-badge-large.mat-badge-below .mat-badge-content {\\n bottom: -14px;\\n}\\n.mat-badge-large.mat-badge-before .mat-badge-content {\\n left: -28px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -28px;\\n}\\n.mat-badge-large.mat-badge-after .mat-badge-content {\\n right: -28px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -28px;\\n}\\n.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: -14px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {\\n left: auto;\\n right: -14px;\\n}\\n.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: -14px;\\n}\\n[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {\\n right: auto;\\n left: -14px;\\n}\\n\\n.mat-bottom-sheet-container {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-button, .mat-icon-button, .mat-stroked-button {\\n color: inherit;\\n background: transparent;\\n}\\n.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {\\n color: #ef5350;\\n}\\n.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {\\n color: #ffd740;\\n}\\n.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {\\n color: #ff5722;\\n}\\n.mat-button.mat-primary[disabled], .mat-button.mat-accent[disabled], .mat-button.mat-warn[disabled], .mat-button[disabled][disabled], .mat-icon-button.mat-primary[disabled], .mat-icon-button.mat-accent[disabled], .mat-icon-button.mat-warn[disabled], .mat-icon-button[disabled][disabled], .mat-stroked-button.mat-primary[disabled], .mat-stroked-button.mat-accent[disabled], .mat-stroked-button.mat-warn[disabled], .mat-stroked-button[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {\\n background-color: #ef5350;\\n}\\n.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {\\n background-color: #ffd740;\\n}\\n.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay, .mat-stroked-button.mat-warn .mat-button-focus-overlay {\\n background-color: #ff5722;\\n}\\n.mat-button[disabled] .mat-button-focus-overlay, .mat-icon-button[disabled] .mat-button-focus-overlay, .mat-stroked-button[disabled] .mat-button-focus-overlay {\\n background-color: transparent;\\n}\\n.mat-button .mat-ripple-element, .mat-icon-button .mat-ripple-element, .mat-stroked-button .mat-ripple-element {\\n opacity: 0.1;\\n background-color: currentColor;\\n}\\n\\n.mat-button-focus-overlay {\\n background: black;\\n}\\n\\n.mat-stroked-button:not([disabled]) {\\n border-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {\\n color: rgba(0, 0, 0, 0.87);\\n background-color: white;\\n}\\n.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {\\n color: white;\\n}\\n.mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-accent[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {\\n background-color: #ef5350;\\n}\\n.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {\\n background-color: #ffd740;\\n}\\n.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {\\n background-color: #ff5722;\\n}\\n.mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-accent[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled] {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-flat-button.mat-primary .mat-ripple-element, .mat-raised-button.mat-primary .mat-ripple-element, .mat-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.mat-flat-button.mat-accent .mat-ripple-element, .mat-raised-button.mat-accent .mat-ripple-element, .mat-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.mat-flat-button.mat-warn .mat-ripple-element, .mat-raised-button.mat-warn .mat-ripple-element, .mat-fab.mat-warn .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n\\n.mat-stroked-button:not([class*=mat-elevation-z]), .mat-flat-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-raised-button:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-raised-button:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);\\n}\\n.mat-raised-button[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-fab:not([class*=mat-elevation-z]), .mat-mini-fab:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-fab:not([disabled]):active:not([class*=mat-elevation-z]), .mat-mini-fab:not([disabled]):active:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);\\n}\\n.mat-fab[disabled]:not([class*=mat-elevation-z]), .mat-mini-fab[disabled]:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-standalone,\\n.mat-button-toggle-group {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.mat-button-toggle-group-appearance-standard {\\n box-shadow: none;\\n}\\n\\n.mat-button-toggle {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-button-toggle .mat-button-toggle-focus-overlay {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n background: white;\\n}\\n.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {\\n background-color: black;\\n}\\n\\n.mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {\\n border-left: none;\\n border-right: none;\\n border-top: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-button-toggle-checked {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-button-toggle-checked.mat-button-toggle-appearance-standard {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-button-toggle-disabled {\\n color: rgba(0, 0, 0, 0.26);\\n background-color: #eeeeee;\\n}\\n.mat-button-toggle-disabled.mat-button-toggle-appearance-standard {\\n background: white;\\n}\\n.mat-button-toggle-disabled.mat-button-toggle-checked {\\n background-color: #bdbdbd;\\n}\\n\\n.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,\\n.mat-button-toggle-group-appearance-standard {\\n border: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-card {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-card:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-card.mat-card-flat:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-card-subtitle {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-checkbox-frame {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-checkbox-checkmark {\\n fill: #fafafa;\\n}\\n\\n.mat-checkbox-checkmark-path {\\n stroke: #fafafa !important;\\n}\\n\\n.mat-checkbox-mixedmark {\\n background-color: #fafafa;\\n}\\n\\n.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {\\n background-color: #ef5350;\\n}\\n.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {\\n background-color: #ffd740;\\n}\\n.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {\\n background-color: #ff5722;\\n}\\n\\n.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {\\n background-color: #b0b0b0;\\n}\\n.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {\\n border-color: #b0b0b0;\\n}\\n.mat-checkbox-disabled .mat-checkbox-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-checkbox .mat-ripple-element {\\n background-color: black;\\n}\\n\\n.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,\\n.mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {\\n background: #ef5350;\\n}\\n.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,\\n.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {\\n background: #ffd740;\\n}\\n.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,\\n.mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {\\n background: #ff5722;\\n}\\n\\n.mat-chip.mat-standard-chip {\\n background-color: #e0e0e0;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-chip.mat-standard-chip .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {\\n box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {\\n opacity: 0.54;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-disabled {\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip::after {\\n background: black;\\n}\\n\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {\\n background-color: #ff5722;\\n color: white;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {\\n color: white;\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.1);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {\\n color: rgba(0, 0, 0, 0.87);\\n opacity: 0.4;\\n}\\n.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.1);\\n}\\n\\n.mat-table {\\n background: white;\\n}\\n\\n.mat-table thead, .mat-table tbody, .mat-table tfoot,\\nmat-header-row, mat-row, mat-footer-row,\\n[mat-header-row], [mat-row], [mat-footer-row],\\n.mat-table-sticky {\\n background: inherit;\\n}\\n\\nmat-row, mat-header-row, mat-footer-row,\\nth.mat-header-cell, td.mat-cell, td.mat-footer-cell {\\n border-bottom-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-header-cell {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-cell, .mat-footer-cell {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-calendar-arrow {\\n border-top-color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-datepicker-toggle,\\n.mat-datepicker-content .mat-calendar-next-button,\\n.mat-datepicker-content .mat-calendar-previous-button {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-calendar-table-header {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-calendar-table-header-divider::after {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-calendar-body-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-calendar-body-cell-content {\\n color: rgba(0, 0, 0, 0.87);\\n border-color: transparent;\\n}\\n\\n.mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),\\n.cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n\\n.mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {\\n border-color: rgba(0, 0, 0, 0.18);\\n}\\n\\n.mat-calendar-body-selected {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(239, 83, 80, 0.4);\\n}\\n\\n.mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-datepicker-content {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-selected {\\n background-color: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 215, 64, 0.4);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-selected {\\n background-color: #ff5722;\\n color: white;\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(255, 87, 34, 0.4);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {\\n box-shadow: inset 0 0 0 1px white;\\n}\\n\\n.mat-datepicker-content-touch {\\n box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-datepicker-toggle-active {\\n color: #ef5350;\\n}\\n.mat-datepicker-toggle-active.mat-accent {\\n color: #ffd740;\\n}\\n.mat-datepicker-toggle-active.mat-warn {\\n color: #ff5722;\\n}\\n\\n.mat-dialog-container {\\n box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-divider {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-divider-vertical {\\n border-right-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-expansion-panel {\\n background: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-expansion-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-action-row {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n\\n@media (hover: none) {\\n .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {\\n background: white;\\n }\\n}\\n.mat-expansion-panel-header-title {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-expansion-panel-header-description,\\n.mat-expansion-indicator::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-expansion-panel-header[aria-disabled=true] {\\n color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,\\n.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {\\n color: inherit;\\n}\\n\\n.mat-form-field-label {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.mat-hint {\\n color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.mat-form-field.mat-focused .mat-form-field-label {\\n color: #ef5350;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-accent {\\n color: #ffd740;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-warn {\\n color: #ff5722;\\n}\\n\\n.mat-focused .mat-form-field-required-marker {\\n color: #ffd740;\\n}\\n\\n.mat-form-field-ripple {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-form-field.mat-focused .mat-form-field-ripple {\\n background-color: #ef5350;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {\\n background-color: #ffd740;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {\\n background-color: #ff5722;\\n}\\n\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {\\n color: #ef5350;\\n}\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {\\n color: #ffd740;\\n}\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label {\\n color: #ff5722;\\n}\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {\\n color: #ff5722;\\n}\\n.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,\\n.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {\\n background-color: #ff5722;\\n}\\n\\n.mat-error {\\n color: #ff5722;\\n}\\n\\n.mat-form-field-appearance-legacy .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-form-field-appearance-legacy .mat-hint {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-form-field-appearance-legacy .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n\\n.mat-form-field-appearance-standard .mat-form-field-underline {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);\\n background-size: 4px 100%;\\n background-repeat: repeat-x;\\n}\\n\\n.mat-form-field-appearance-fill .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {\\n background-color: rgba(0, 0, 0, 0.02);\\n}\\n.mat-form-field-appearance-fill .mat-form-field-underline::before {\\n background-color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {\\n background-color: transparent;\\n}\\n\\n.mat-form-field-appearance-outline .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-form-field-appearance-outline .mat-form-field-outline-thick {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {\\n color: #ef5350;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {\\n color: #ffd740;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {\\n color: #ff5722;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {\\n color: rgba(0, 0, 0, 0.06);\\n}\\n\\n.mat-icon.mat-primary {\\n color: #ef5350;\\n}\\n.mat-icon.mat-accent {\\n color: #ffd740;\\n}\\n.mat-icon.mat-warn {\\n color: #ff5722;\\n}\\n\\n.mat-form-field-type-mat-native-select .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-input-element:disabled,\\n.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-input-element {\\n caret-color: #ef5350;\\n}\\n.mat-input-element::placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element::-moz-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element::-webkit-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n.mat-input-element:-ms-input-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n\\n.mat-accent .mat-input-element {\\n caret-color: #ffd740;\\n}\\n\\n.mat-warn .mat-input-element,\\n.mat-form-field-invalid .mat-input-element {\\n caret-color: #ff5722;\\n}\\n\\n.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {\\n color: #ff5722;\\n}\\n\\n.mat-list-base .mat-list-item {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-list-base .mat-list-option {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-list-base .mat-subheader {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-list-item-disabled {\\n background-color: #eeeeee;\\n}\\n\\n.mat-list-option:hover, .mat-list-option:focus,\\n.mat-nav-list .mat-list-item:hover,\\n.mat-nav-list .mat-list-item:focus,\\n.mat-action-list .mat-list-item:hover,\\n.mat-action-list .mat-list-item:focus {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n\\n.mat-list-single-selected-option, .mat-list-single-selected-option:hover, .mat-list-single-selected-option:focus {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-menu-panel {\\n background: white;\\n}\\n.mat-menu-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-menu-item {\\n background: transparent;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-menu-item[disabled], .mat-menu-item[disabled]::after {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-menu-item .mat-icon-no-color,\\n.mat-menu-item-submenu-trigger::after {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-menu-item:hover:not([disabled]),\\n.mat-menu-item.cdk-program-focused:not([disabled]),\\n.mat-menu-item.cdk-keyboard-focused:not([disabled]),\\n.mat-menu-item-highlighted:not([disabled]) {\\n background: rgba(0, 0, 0, 0.04);\\n}\\n\\n.mat-paginator {\\n background: white;\\n}\\n\\n.mat-paginator,\\n.mat-paginator-page-size .mat-select-trigger {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-paginator-decrement,\\n.mat-paginator-increment {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n border-right: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-paginator-first,\\n.mat-paginator-last {\\n border-top: 2px solid rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-icon-button[disabled] .mat-paginator-decrement,\\n.mat-icon-button[disabled] .mat-paginator-increment,\\n.mat-icon-button[disabled] .mat-paginator-first,\\n.mat-icon-button[disabled] .mat-paginator-last {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-progress-bar-background {\\n fill: #ef9a9a;\\n}\\n\\n.mat-progress-bar-buffer {\\n background-color: #ef9a9a;\\n}\\n\\n.mat-progress-bar-fill::after {\\n background-color: #ef5350;\\n}\\n\\n.mat-progress-bar.mat-accent .mat-progress-bar-background {\\n fill: #ffe57f;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-buffer {\\n background-color: #ffe57f;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {\\n background-color: #ffd740;\\n}\\n\\n.mat-progress-bar.mat-warn .mat-progress-bar-background {\\n fill: #ffccbc;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-buffer {\\n background-color: #ffccbc;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {\\n background-color: #ff5722;\\n}\\n\\n.mat-progress-spinner circle, .mat-spinner circle {\\n stroke: #ef5350;\\n}\\n.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {\\n stroke: #ffd740;\\n}\\n.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {\\n stroke: #ff5722;\\n}\\n\\n.mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ef5350;\\n}\\n.mat-radio-button.mat-primary .mat-radio-inner-circle,\\n.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {\\n background-color: #ef5350;\\n}\\n.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ffd740;\\n}\\n.mat-radio-button.mat-accent .mat-radio-inner-circle,\\n.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {\\n background-color: #ffd740;\\n}\\n.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #ff5722;\\n}\\n.mat-radio-button.mat-warn .mat-radio-inner-circle,\\n.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {\\n background-color: #ff5722;\\n}\\n.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,\\n.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,\\n.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-radio-button.mat-radio-disabled .mat-radio-label-content {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-radio-button .mat-ripple-element {\\n background-color: black;\\n}\\n\\n.mat-select-value {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-select-placeholder {\\n color: rgba(0, 0, 0, 0.42);\\n}\\n\\n.mat-select-disabled .mat-select-value {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-select-arrow {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n\\n.mat-select-panel {\\n background: white;\\n}\\n.mat-select-panel:not([class*=mat-elevation-z]) {\\n box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);\\n}\\n.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {\\n background: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-form-field.mat-focused.mat-primary .mat-select-arrow {\\n color: #ef5350;\\n}\\n.mat-form-field.mat-focused.mat-accent .mat-select-arrow {\\n color: #ffd740;\\n}\\n.mat-form-field.mat-focused.mat-warn .mat-select-arrow {\\n color: #ff5722;\\n}\\n.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {\\n color: #ff5722;\\n}\\n.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-drawer-container {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-drawer {\\n background-color: white;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-drawer.mat-drawer-push {\\n background-color: white;\\n}\\n.mat-drawer:not(.mat-drawer-side) {\\n box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-drawer-side {\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n.mat-drawer-side.mat-drawer-end {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n\\n[dir=rtl] .mat-drawer-side {\\n border-left: solid 1px rgba(0, 0, 0, 0.12);\\n border-right: none;\\n}\\n[dir=rtl] .mat-drawer-side.mat-drawer-end {\\n border-left: none;\\n border-right: solid 1px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-drawer-backdrop.mat-drawer-shown {\\n background-color: rgba(0, 0, 0, 0.6);\\n}\\n\\n.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ffd740;\\n}\\n.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 215, 64, 0.54);\\n}\\n.mat-slide-toggle.mat-checked .mat-ripple-element {\\n background-color: #ffd740;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ef5350;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(239, 83, 80, 0.54);\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {\\n background-color: #ef5350;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {\\n background-color: #ff5722;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(255, 87, 34, 0.54);\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {\\n background-color: #ff5722;\\n}\\n.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {\\n background-color: black;\\n}\\n\\n.mat-slide-toggle-thumb {\\n box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);\\n background-color: #fafafa;\\n}\\n\\n.mat-slide-toggle-bar {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n\\n.mat-primary .mat-slider-track-fill,\\n.mat-primary .mat-slider-thumb,\\n.mat-primary .mat-slider-thumb-label {\\n background-color: #ef5350;\\n}\\n.mat-primary .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-accent .mat-slider-track-fill,\\n.mat-accent .mat-slider-thumb,\\n.mat-accent .mat-slider-thumb-label {\\n background-color: #ffd740;\\n}\\n.mat-accent .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-warn .mat-slider-track-fill,\\n.mat-warn .mat-slider-thumb,\\n.mat-warn .mat-slider-thumb-label {\\n background-color: #ff5722;\\n}\\n.mat-warn .mat-slider-thumb-label-text {\\n color: white;\\n}\\n\\n.mat-slider-focus-ring {\\n background-color: rgba(255, 215, 64, 0.2);\\n}\\n\\n.mat-slider:hover .mat-slider-track-background,\\n.cdk-focused .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-slider-disabled .mat-slider-track-background,\\n.mat-slider-disabled .mat-slider-track-fill,\\n.mat-slider-disabled .mat-slider-thumb {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-slider-disabled:hover .mat-slider-track-background {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n\\n.mat-slider-min-value .mat-slider-focus-ring {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,\\n.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,\\n.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {\\n background-color: rgba(0, 0, 0, 0.26);\\n}\\n.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n background-color: transparent;\\n}\\n.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {\\n border-color: rgba(0, 0, 0, 0.26);\\n}\\n\\n.mat-slider-has-ticks .mat-slider-wrapper::after {\\n border-color: rgba(0, 0, 0, 0.7);\\n}\\n\\n.mat-slider-horizontal .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n\\n.mat-slider-vertical .mat-slider-ticks {\\n background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);\\n}\\n\\n.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n@media (hover: none) {\\n .mat-step-header:hover {\\n background: none;\\n }\\n}\\n.mat-step-header .mat-step-label,\\n.mat-step-header .mat-step-optional {\\n color: rgba(0, 0, 0, 0.54);\\n}\\n.mat-step-header .mat-step-icon {\\n background-color: rgba(0, 0, 0, 0.54);\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-step-header .mat-step-icon-selected,\\n.mat-step-header .mat-step-icon-state-done,\\n.mat-step-header .mat-step-icon-state-edit {\\n background-color: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-step-header .mat-step-icon-state-error {\\n background-color: transparent;\\n color: #ff5722;\\n}\\n.mat-step-header .mat-step-label.mat-step-label-active {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-step-header .mat-step-label.mat-step-label-error {\\n color: #ff5722;\\n}\\n\\n.mat-stepper-horizontal, .mat-stepper-vertical {\\n background-color: white;\\n}\\n\\n.mat-stepper-vertical-line::before {\\n border-left-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-horizontal-stepper-header::before,\\n.mat-horizontal-stepper-header::after,\\n.mat-stepper-horizontal-line {\\n border-top-color: rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-sort-header-arrow {\\n color: #757575;\\n}\\n\\n.mat-tab-nav-bar,\\n.mat-tab-header {\\n border-bottom: 1px solid rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-tab-group-inverted-header .mat-tab-nav-bar,\\n.mat-tab-group-inverted-header .mat-tab-header {\\n border-top: 1px solid rgba(0, 0, 0, 0.12);\\n border-bottom: none;\\n}\\n\\n.mat-tab-label, .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-tab-group[class*=mat-background-] .mat-tab-header,\\n.mat-tab-nav-bar[class*=mat-background-] {\\n border-bottom: none;\\n border-top: none;\\n}\\n\\n.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(239, 154, 154, 0.3);\\n}\\n.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {\\n background-color: #ef5350;\\n}\\n.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {\\n background-color: #ffd740;\\n}\\n.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {\\n background-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {\\n background-color: #ff5722;\\n}\\n.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {\\n background-color: white;\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(239, 154, 154, 0.3);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-links, .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {\\n background-color: #ef5350;\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link, .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .mat-tab-nav-bar.mat-background-primary .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-primary .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 229, 127, 0.3);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-links, .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {\\n background-color: #ffd740;\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link, .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {\\n color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(0, 0, 0, 0.4);\\n}\\n.mat-tab-group.mat-background-accent .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {\\n background-color: rgba(0, 0, 0, 0.12);\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),\\n.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {\\n background-color: rgba(255, 204, 188, 0.3);\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-links, .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {\\n background-color: #ff5722;\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link, .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link {\\n color: white;\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {\\n color: rgba(255, 255, 255, 0.4);\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {\\n border-color: white;\\n}\\n.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {\\n border-color: rgba(255, 255, 255, 0.4);\\n}\\n.mat-tab-group.mat-background-warn .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {\\n background-color: rgba(255, 255, 255, 0.12);\\n}\\n\\n.mat-toolbar {\\n background: whitesmoke;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-primary {\\n background: #ef5350;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-accent {\\n background: #ffd740;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-warn {\\n background: #ff5722;\\n color: white;\\n}\\n.mat-toolbar .mat-form-field-underline,\\n.mat-toolbar .mat-form-field-ripple,\\n.mat-toolbar .mat-focused .mat-form-field-ripple {\\n background-color: currentColor;\\n}\\n.mat-toolbar .mat-form-field-label,\\n.mat-toolbar .mat-focused .mat-form-field-label,\\n.mat-toolbar .mat-select-value,\\n.mat-toolbar .mat-select-arrow,\\n.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {\\n color: inherit;\\n}\\n.mat-toolbar .mat-input-element {\\n caret-color: currentColor;\\n}\\n\\n.mat-tooltip {\\n background: rgba(97, 97, 97, 0.9);\\n}\\n\\n.mat-tree {\\n background: white;\\n}\\n\\n.mat-tree-node,\\n.mat-nested-tree-node {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-snack-bar-container {\\n color: rgba(255, 255, 255, 0.7);\\n background: #323232;\\n box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);\\n}\\n\\n.mat-simple-snackbar-action {\\n color: #ffd740;\\n}\\n\\n:root {\\n --ion-color-spinner: #2f2a28;\\n --ion-color-spinner-rgb: 47,42,40;\\n --ion-color-spinner-contrast: #ffffff;\\n --ion-color-spinner-contrast-rgb: 255,255,255;\\n --ion-color-spinner-shade: #292523;\\n --ion-color-spinner-tint: #443f3e;\\n /** primary **/\\n --ion-color-primary: #E80510;\\n --ion-color-primary-rgb: 56, 128, 255;\\n --ion-color-primary-contrast: #ffffff;\\n --ion-color-primary-contrast-rgb: 255, 255, 255;\\n --ion-color-primary-shade: #3171e0;\\n --ion-color-primary-tint: #4c8dff;\\n /** secondary **/\\n --ion-color-secondary: white;\\n --ion-color-secondary-rgb: 61, 194, 255;\\n --ion-color-secondary-contrast: #E80510;\\n --ion-color-secondary-contrast-rgb: 255, 255, 255;\\n --ion-color-secondary-shade: #36abe0;\\n --ion-color-secondary-tint: #50c8ff;\\n /** tertiary **/\\n --ion-color-tertiary: #5260ff;\\n --ion-color-tertiary-rgb: 82, 96, 255;\\n --ion-color-tertiary-contrast: #ffffff;\\n --ion-color-tertiary-contrast-rgb: 255, 255, 255;\\n --ion-color-tertiary-shade: #4854e0;\\n --ion-color-tertiary-tint: #6370ff;\\n /** success **/\\n --ion-color-success: #2dd36f;\\n --ion-color-success-rgb: 45, 211, 111;\\n --ion-color-success-contrast: #ffffff;\\n --ion-color-success-contrast-rgb: 255, 255, 255;\\n --ion-color-success-shade: #28ba62;\\n --ion-color-success-tint: #42d77d;\\n /** warning **/\\n --ion-color-warning: #ffc409;\\n --ion-color-warning-rgb: 255, 196, 9;\\n --ion-color-warning-contrast: #000000;\\n --ion-color-warning-contrast-rgb: 0, 0, 0;\\n --ion-color-warning-shade: #e0ac08;\\n --ion-color-warning-tint: #ffca22;\\n /** danger **/\\n --ion-color-danger: #eb445a;\\n --ion-color-danger-rgb: 235, 68, 90;\\n --ion-color-danger-contrast: #ffffff;\\n --ion-color-danger-contrast-rgb: 255, 255, 255;\\n --ion-color-danger-shade: #cf3c4f;\\n --ion-color-danger-tint: #ed576b;\\n /** dark **/\\n --ion-color-dark: #222428;\\n --ion-color-dark-rgb: 34, 36, 40;\\n --ion-color-dark-contrast: #ffffff;\\n --ion-color-dark-contrast-rgb: 255, 255, 255;\\n --ion-color-dark-shade: #1e2023;\\n --ion-color-dark-tint: #383a3e;\\n /** medium **/\\n --ion-color-medium: #92949c;\\n --ion-color-medium-rgb: 146, 148, 156;\\n --ion-color-medium-contrast: #ffffff;\\n --ion-color-medium-contrast-rgb: 255, 255, 255;\\n --ion-color-medium-shade: #808289;\\n --ion-color-medium-tint: #9d9fa6;\\n /** light **/\\n --ion-color-light: #f4f5f8;\\n --ion-color-light-rgb: 244, 245, 248;\\n --ion-color-light-contrast: #000000;\\n --ion-color-light-contrast-rgb: 0, 0, 0;\\n --ion-color-light-shade: #d7d8da;\\n --ion-color-light-tint: #f5f6f9;\\n}\\n:root .add_item {\\n margin-right: auto;\\n font-family: \\\"Montserrat-Bold\\\";\\n}\\n\\n.ion-color-spinner {\\n --ion-color-base: var(--ion-color-spinner);\\n --ion-color-base-rgb: var(--ion-color-spinner-rgb);\\n --ion-color-contrast: var(--ion-color-spinner-contrast);\\n --ion-color-contrast-rgb: var(--ion-color-spinner-contrast-rgb);\\n --ion-color-shade: var(--ion-color-spinner-shade);\\n --ion-color-tint: var(--ion-color-spinner-tint);\\n}\\n\\n@media (prefers-color-scheme: dark) {\\n /*\\n * Dark Colors\\n * -------------------------------------------\\n */\\n body {\\n --ion-color-primary: #428cff;\\n --ion-color-primary-rgb: 66,140,255;\\n --ion-color-primary-contrast: #ffffff;\\n --ion-color-primary-contrast-rgb: 255,255,255;\\n --ion-color-primary-shade: #3a7be0;\\n --ion-color-primary-tint: #5598ff;\\n --ion-color-secondary: #50c8ff;\\n --ion-color-secondary-rgb: 80,200,255;\\n --ion-color-secondary-contrast: #ffffff;\\n --ion-color-secondary-contrast-rgb: 255,255,255;\\n --ion-color-secondary-shade: #46b0e0;\\n --ion-color-secondary-tint: #62ceff;\\n --ion-color-tertiary: #6a64ff;\\n --ion-color-tertiary-rgb: 106,100,255;\\n --ion-color-tertiary-contrast: #ffffff;\\n --ion-color-tertiary-contrast-rgb: 255,255,255;\\n --ion-color-tertiary-shade: #5d58e0;\\n --ion-color-tertiary-tint: #7974ff;\\n --ion-color-success: #2fdf75;\\n --ion-color-success-rgb: 47,223,117;\\n --ion-color-success-contrast: #000000;\\n --ion-color-success-contrast-rgb: 0,0,0;\\n --ion-color-success-shade: #29c467;\\n --ion-color-success-tint: #44e283;\\n --ion-color-warning: #ffd534;\\n --ion-color-warning-rgb: 255,213,52;\\n --ion-color-warning-contrast: #000000;\\n --ion-color-warning-contrast-rgb: 0,0,0;\\n --ion-color-warning-shade: #e0bb2e;\\n --ion-color-warning-tint: #ffd948;\\n --ion-color-danger: #ff4961;\\n --ion-color-danger-rgb: 255,73,97;\\n --ion-color-danger-contrast: #ffffff;\\n --ion-color-danger-contrast-rgb: 255,255,255;\\n --ion-color-danger-shade: #e04055;\\n --ion-color-danger-tint: #ff5b71;\\n --ion-color-dark: #f4f5f8;\\n --ion-color-dark-rgb: 244,245,248;\\n --ion-color-dark-contrast: #000000;\\n --ion-color-dark-contrast-rgb: 0,0,0;\\n --ion-color-dark-shade: #d7d8da;\\n --ion-color-dark-tint: #f5f6f9;\\n --ion-color-medium: #989aa2;\\n --ion-color-medium-rgb: 152,154,162;\\n --ion-color-medium-contrast: #000000;\\n --ion-color-medium-contrast-rgb: 0,0,0;\\n --ion-color-medium-shade: #86888f;\\n --ion-color-medium-tint: #a2a4ab;\\n --ion-color-light: #222428;\\n --ion-color-light-rgb: 34,36,40;\\n --ion-color-light-contrast: #ffffff;\\n --ion-color-light-contrast-rgb: 255,255,255;\\n --ion-color-light-shade: #1e2023;\\n --ion-color-light-tint: #383a3e;\\n }\\n\\n /*\\n * iOS Dark Theme\\n * -------------------------------------------\\n */\\n .ios body {\\n --ion-background-color: #000000;\\n --ion-background-color-rgb: 0,0,0;\\n --ion-text-color: #ffffff;\\n --ion-text-color-rgb: 255,255,255;\\n --ion-color-step-50: #0d0d0d;\\n --ion-color-step-100: #1a1a1a;\\n --ion-color-step-150: #262626;\\n --ion-color-step-200: #333333;\\n --ion-color-step-250: #404040;\\n --ion-color-step-300: #4d4d4d;\\n --ion-color-step-350: #595959;\\n --ion-color-step-400: #666666;\\n --ion-color-step-450: #737373;\\n --ion-color-step-500: #808080;\\n --ion-color-step-550: #8c8c8c;\\n --ion-color-step-600: #999999;\\n --ion-color-step-650: #a6a6a6;\\n --ion-color-step-700: #b3b3b3;\\n --ion-color-step-750: #bfbfbf;\\n --ion-color-step-800: #cccccc;\\n --ion-color-step-850: #d9d9d9;\\n --ion-color-step-900: #e6e6e6;\\n --ion-color-step-950: #f2f2f2;\\n --ion-toolbar-background: #0d0d0d;\\n --ion-item-background: #000000;\\n }\\n\\n /*\\n * Material Design Dark Theme\\n * -------------------------------------------\\n */\\n .md body {\\n --ion-background-color: #121212;\\n --ion-background-color-rgb: 18,18,18;\\n --ion-text-color: #ffffff;\\n --ion-text-color-rgb: 255,255,255;\\n --ion-border-color: #222222;\\n --ion-color-step-50: #1e1e1e;\\n --ion-color-step-100: #2a2a2a;\\n --ion-color-step-150: #363636;\\n --ion-color-step-200: #414141;\\n --ion-color-step-250: #4d4d4d;\\n --ion-color-step-300: #595959;\\n --ion-color-step-350: #656565;\\n --ion-color-step-400: #717171;\\n --ion-color-step-450: #7d7d7d;\\n --ion-color-step-500: #898989;\\n --ion-color-step-550: #949494;\\n --ion-color-step-600: #a0a0a0;\\n --ion-color-step-650: #acacac;\\n --ion-color-step-700: #b8b8b8;\\n --ion-color-step-750: #c4c4c4;\\n --ion-color-step-800: #d0d0d0;\\n --ion-color-step-850: #dbdbdb;\\n --ion-color-step-900: #e7e7e7;\\n --ion-color-step-950: #f3f3f3;\\n --ion-item-background: #1e1e1e;\\n --ion-toolbar-background: #1f1f1f;\\n --ion-tab-bar-background: #1f1f1f;\\n }\\n}\\n.button {\\n background-color: none !important;\\n}\\n\\n.no-scrolls .mat-dialog-container {\\n overflow: hidden !important;\\n}\\n\\n.waiting-loader {\\n --background: #ffffff;\\n --spinner-color: #E80510;\\n --backdrop-opacity: 0.6;\\n color: #fff;\\n}\\n\\n.user-info-css {\\n --background:#ffff;\\n}\\n.user-info-css .popover-wrapper .popover-content {\\n width: 300px;\\n padding: 0px !important;\\n}\\n\\n.sq-input {\\n height: 56px;\\n box-sizing: border-box;\\n border: 1px solid #E0E2E3;\\n background-color: white;\\n border-radius: 6px;\\n display: inline-block;\\n -webkit-transition: border-color 0.2s ease-in-out;\\n -moz-transition: border-color 0.2s ease-in-out;\\n -ms-transition: border-color 0.2s ease-in-out;\\n transition: border-color 0.2s ease-in-out;\\n}\"]}]);\n// Exports\nmodule.exports = exports;\n","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \" {\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery, dedupe) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n if (dedupe) {\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = [].concat(modules[_i]);\n\n if (dedupe && alreadyImportedModules[item[0]]) {\n // eslint-disable-next-line no-continue\n continue;\n }\n\n if (mediaQuery) {\n if (!item[2]) {\n item[2] = mediaQuery;\n } else {\n item[2] = \"\".concat(mediaQuery, \" and \").concat(item[2]);\n }\n }\n\n list.push(item);\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot || '').concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}","var api = require(\"!../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\");\n var content = require(\"!!../../../css-loader/dist/cjs.js??ref--12-1!../../../postcss-loader/src/index.js??embedded!./intlTelInput.css\");\n\n content = content.__esModule ? content.default : content;\n\n if (typeof content === 'string') {\n content = [[module.id, content, '']];\n }\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\nvar exported = content.locals ? content.locals : {};\n\n\n\nmodule.exports = exported;","var api = require(\"!../../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\");\n var content = require(\"!!../../../css-loader/dist/cjs.js??ref--12-1!../../../postcss-loader/src/index.js??embedded!./owl.carousel.min.css\");\n\n content = content.__esModule ? content.default : content;\n\n if (typeof content === 'string') {\n content = [[module.id, content, '']];\n }\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\nvar exported = content.locals ? content.locals : {};\n\n\n\nmodule.exports = exported;","var api = require(\"!../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\");\n var content = require(\"!!../../css-loader/dist/cjs.js??ref--13-1!../../postcss-loader/src/index.js??embedded!../../sass-loader/dist/cjs.js??ref--13-3!./slick-theme.scss\");\n\n content = content.__esModule ? content.default : content;\n\n if (typeof content === 'string') {\n content = [[module.id, content, '']];\n }\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\nvar exported = content.locals ? content.locals : {};\n\n\n\nmodule.exports = exported;","var api = require(\"!../../style-loader/dist/runtime/injectStylesIntoStyleTag.js\");\n var content = require(\"!!../../css-loader/dist/cjs.js??ref--13-1!../../postcss-loader/src/index.js??embedded!../../sass-loader/dist/cjs.js??ref--13-3!./slick.scss\");\n\n content = content.__esModule ? content.default : content;\n\n if (typeof content === 'string') {\n content = [[module.id, content, '']];\n }\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\nvar exported = content.locals ? content.locals : {};\n\n\n\nmodule.exports = exported;","\"use strict\";\n\nvar isOldIE = function isOldIE() {\n var memo;\n return function memorize() {\n if (typeof memo === 'undefined') {\n // Test for IE <= 9 as proposed by Browserhacks\n // @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805\n // Tests for existence of standard globals is to allow style-loader\n // to operate correctly into non-standard environments\n // @see https://github.com/webpack-contrib/style-loader/issues/177\n memo = Boolean(window && document && document.all && !window.atob);\n }\n\n return memo;\n };\n}();\n\nvar getTarget = function getTarget() {\n var memo = {};\n return function memorize(target) {\n if (typeof memo[target] === 'undefined') {\n var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself\n\n if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n try {\n // This will throw an exception if access to iframe is blocked\n // due to cross-origin restrictions\n styleTarget = styleTarget.contentDocument.head;\n } catch (e) {\n // istanbul ignore next\n styleTarget = null;\n }\n }\n\n memo[target] = styleTarget;\n }\n\n return memo[target];\n };\n}();\n\nvar stylesInDom = [];\n\nfunction getIndexByIdentifier(identifier) {\n var result = -1;\n\n for (var i = 0; i < stylesInDom.length; i++) {\n if (stylesInDom[i].identifier === identifier) {\n result = i;\n break;\n }\n }\n\n return result;\n}\n\nfunction modulesToDom(list, options) {\n var idCountMap = {};\n var identifiers = [];\n\n for (var i = 0; i < list.length; i++) {\n var item = list[i];\n var id = options.base ? item[0] + options.base : item[0];\n var count = idCountMap[id] || 0;\n var identifier = \"\".concat(id, \" \").concat(count);\n idCountMap[id] = count + 1;\n var index = getIndexByIdentifier(identifier);\n var obj = {\n css: item[1],\n media: item[2],\n sourceMap: item[3]\n };\n\n if (index !== -1) {\n stylesInDom[index].references++;\n stylesInDom[index].updater(obj);\n } else {\n stylesInDom.push({\n identifier: identifier,\n updater: addStyle(obj, options),\n references: 1\n });\n }\n\n identifiers.push(identifier);\n }\n\n return identifiers;\n}\n\nfunction insertStyleElement(options) {\n var style = document.createElement('style');\n var attributes = options.attributes || {};\n\n if (typeof attributes.nonce === 'undefined') {\n var nonce = typeof __webpack_nonce__ !== 'undefined' ? __webpack_nonce__ : null;\n\n if (nonce) {\n attributes.nonce = nonce;\n }\n }\n\n Object.keys(attributes).forEach(function (key) {\n style.setAttribute(key, attributes[key]);\n });\n\n if (typeof options.insert === 'function') {\n options.insert(style);\n } else {\n var target = getTarget(options.insert || 'head');\n\n if (!target) {\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n }\n\n target.appendChild(style);\n }\n\n return style;\n}\n\nfunction removeStyleElement(style) {\n // istanbul ignore if\n if (style.parentNode === null) {\n return false;\n }\n\n style.parentNode.removeChild(style);\n}\n/* istanbul ignore next */\n\n\nvar replaceText = function replaceText() {\n var textStore = [];\n return function replace(index, replacement) {\n textStore[index] = replacement;\n return textStore.filter(Boolean).join('\\n');\n };\n}();\n\nfunction applyToSingletonTag(style, index, remove, obj) {\n var css = remove ? '' : obj.media ? \"@media \".concat(obj.media, \" {\").concat(obj.css, \"}\") : obj.css; // For old IE\n\n /* istanbul ignore if */\n\n if (style.styleSheet) {\n style.styleSheet.cssText = replaceText(index, css);\n } else {\n var cssNode = document.createTextNode(css);\n var childNodes = style.childNodes;\n\n if (childNodes[index]) {\n style.removeChild(childNodes[index]);\n }\n\n if (childNodes.length) {\n style.insertBefore(cssNode, childNodes[index]);\n } else {\n style.appendChild(cssNode);\n }\n }\n}\n\nfunction applyToTag(style, options, obj) {\n var css = obj.css;\n var media = obj.media;\n var sourceMap = obj.sourceMap;\n\n if (media) {\n style.setAttribute('media', media);\n } else {\n style.removeAttribute('media');\n }\n\n if (sourceMap && btoa) {\n css += \"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), \" */\");\n } // For old IE\n\n /* istanbul ignore if */\n\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n while (style.firstChild) {\n style.removeChild(style.firstChild);\n }\n\n style.appendChild(document.createTextNode(css));\n }\n}\n\nvar singleton = null;\nvar singletonCounter = 0;\n\nfunction addStyle(obj, options) {\n var style;\n var update;\n var remove;\n\n if (options.singleton) {\n var styleIndex = singletonCounter++;\n style = singleton || (singleton = insertStyleElement(options));\n update = applyToSingletonTag.bind(null, style, styleIndex, false);\n remove = applyToSingletonTag.bind(null, style, styleIndex, true);\n } else {\n style = insertStyleElement(options);\n update = applyToTag.bind(null, style, options);\n\n remove = function remove() {\n removeStyleElement(style);\n };\n }\n\n update(obj);\n return function updateStyle(newObj) {\n if (newObj) {\n if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) {\n return;\n }\n\n update(obj = newObj);\n } else {\n remove();\n }\n };\n}\n\nmodule.exports = function (list, options) {\n options = options || {}; // Force single-tag solution on IE6-9, which has a hard limit on the # of