.\\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\",\"/*!\\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\\n * Copyright 2011-2019 Twitter, Inc.\\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\\n *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:\\\" (\\\" attr(href) \\\")\\\"}abbr[title]:after{content:\\\" (\\\" attr(title) \\\")\\\"}a[href^=\\\"#\\\"]:after,a[href^=\\\"javascript:\\\"]:after{content:\\\"\\\"}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:\\\"Glyphicons Halflings\\\";src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format(\\\"embedded-opentype\\\"),url(../fonts/glyphicons-halflings-regular.woff2) format(\\\"woff2\\\"),url(../fonts/glyphicons-halflings-regular.woff) format(\\\"woff\\\"),url(../fonts/glyphicons-halflings-regular.ttf) format(\\\"truetype\\\"),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format(\\\"svg\\\")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:\\\"Glyphicons Halflings\\\";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:\\\"\\\\002a\\\"}.glyphicon-plus:before{content:\\\"\\\\002b\\\"}.glyphicon-eur:before,.glyphicon-euro:before{content:\\\"\\\\20ac\\\"}.glyphicon-minus:before{content:\\\"\\\\2212\\\"}.glyphicon-cloud:before{content:\\\"\\\\2601\\\"}.glyphicon-envelope:before{content:\\\"\\\\2709\\\"}.glyphicon-pencil:before{content:\\\"\\\\270f\\\"}.glyphicon-glass:before{content:\\\"\\\\e001\\\"}.glyphicon-music:before{content:\\\"\\\\e002\\\"}.glyphicon-search:before{content:\\\"\\\\e003\\\"}.glyphicon-heart:before{content:\\\"\\\\e005\\\"}.glyphicon-star:before{content:\\\"\\\\e006\\\"}.glyphicon-star-empty:before{content:\\\"\\\\e007\\\"}.glyphicon-user:before{content:\\\"\\\\e008\\\"}.glyphicon-film:before{content:\\\"\\\\e009\\\"}.glyphicon-th-large:before{content:\\\"\\\\e010\\\"}.glyphicon-th:before{content:\\\"\\\\e011\\\"}.glyphicon-th-list:before{content:\\\"\\\\e012\\\"}.glyphicon-ok:before{content:\\\"\\\\e013\\\"}.glyphicon-remove:before{content:\\\"\\\\e014\\\"}.glyphicon-zoom-in:before{content:\\\"\\\\e015\\\"}.glyphicon-zoom-out:before{content:\\\"\\\\e016\\\"}.glyphicon-off:before{content:\\\"\\\\e017\\\"}.glyphicon-signal:before{content:\\\"\\\\e018\\\"}.glyphicon-cog:before{content:\\\"\\\\e019\\\"}.glyphicon-trash:before{content:\\\"\\\\e020\\\"}.glyphicon-home:before{content:\\\"\\\\e021\\\"}.glyphicon-file:before{content:\\\"\\\\e022\\\"}.glyphicon-time:before{content:\\\"\\\\e023\\\"}.glyphicon-road:before{content:\\\"\\\\e024\\\"}.glyphicon-download-alt:before{content:\\\"\\\\e025\\\"}.glyphicon-download:before{content:\\\"\\\\e026\\\"}.glyphicon-upload:before{content:\\\"\\\\e027\\\"}.glyphicon-inbox:before{content:\\\"\\\\e028\\\"}.glyphicon-play-circle:before{content:\\\"\\\\e029\\\"}.glyphicon-repeat:before{content:\\\"\\\\e030\\\"}.glyphicon-refresh:before{content:\\\"\\\\e031\\\"}.glyphicon-list-alt:before{content:\\\"\\\\e032\\\"}.glyphicon-lock:before{content:\\\"\\\\e033\\\"}.glyphicon-flag:before{content:\\\"\\\\e034\\\"}.glyphicon-headphones:before{content:\\\"\\\\e035\\\"}.glyphicon-volume-off:before{content:\\\"\\\\e036\\\"}.glyphicon-volume-down:before{content:\\\"\\\\e037\\\"}.glyphicon-volume-up:before{content:\\\"\\\\e038\\\"}.glyphicon-qrcode:before{content:\\\"\\\\e039\\\"}.glyphicon-barcode:before{content:\\\"\\\\e040\\\"}.glyphicon-tag:before{content:\\\"\\\\e041\\\"}.glyphicon-tags:before{content:\\\"\\\\e042\\\"}.glyphicon-book:before{content:\\\"\\\\e043\\\"}.glyphicon-bookmark:before{content:\\\"\\\\e044\\\"}.glyphicon-print:before{content:\\\"\\\\e045\\\"}.glyphicon-camera:before{content:\\\"\\\\e046\\\"}.glyphicon-font:before{content:\\\"\\\\e047\\\"}.glyphicon-bold:before{content:\\\"\\\\e048\\\"}.glyphicon-italic:before{content:\\\"\\\\e049\\\"}.glyphicon-text-height:before{content:\\\"\\\\e050\\\"}.glyphicon-text-width:before{content:\\\"\\\\e051\\\"}.glyphicon-align-left:before{content:\\\"\\\\e052\\\"}.glyphicon-align-center:before{content:\\\"\\\\e053\\\"}.glyphicon-align-right:before{content:\\\"\\\\e054\\\"}.glyphicon-align-justify:before{content:\\\"\\\\e055\\\"}.glyphicon-list:before{content:\\\"\\\\e056\\\"}.glyphicon-indent-left:before{content:\\\"\\\\e057\\\"}.glyphicon-indent-right:before{content:\\\"\\\\e058\\\"}.glyphicon-facetime-video:before{content:\\\"\\\\e059\\\"}.glyphicon-picture:before{content:\\\"\\\\e060\\\"}.glyphicon-map-marker:before{content:\\\"\\\\e062\\\"}.glyphicon-adjust:before{content:\\\"\\\\e063\\\"}.glyphicon-tint:before{content:\\\"\\\\e064\\\"}.glyphicon-edit:before{content:\\\"\\\\e065\\\"}.glyphicon-share:before{content:\\\"\\\\e066\\\"}.glyphicon-check:before{content:\\\"\\\\e067\\\"}.glyphicon-move:before{content:\\\"\\\\e068\\\"}.glyphicon-step-backward:before{content:\\\"\\\\e069\\\"}.glyphicon-fast-backward:before{content:\\\"\\\\e070\\\"}.glyphicon-backward:before{content:\\\"\\\\e071\\\"}.glyphicon-play:before{content:\\\"\\\\e072\\\"}.glyphicon-pause:before{content:\\\"\\\\e073\\\"}.glyphicon-stop:before{content:\\\"\\\\e074\\\"}.glyphicon-forward:before{content:\\\"\\\\e075\\\"}.glyphicon-fast-forward:before{content:\\\"\\\\e076\\\"}.glyphicon-step-forward:before{content:\\\"\\\\e077\\\"}.glyphicon-eject:before{content:\\\"\\\\e078\\\"}.glyphicon-chevron-left:before{content:\\\"\\\\e079\\\"}.glyphicon-chevron-right:before{content:\\\"\\\\e080\\\"}.glyphicon-plus-sign:before{content:\\\"\\\\e081\\\"}.glyphicon-minus-sign:before{content:\\\"\\\\e082\\\"}.glyphicon-remove-sign:before{content:\\\"\\\\e083\\\"}.glyphicon-ok-sign:before{content:\\\"\\\\e084\\\"}.glyphicon-question-sign:before{content:\\\"\\\\e085\\\"}.glyphicon-info-sign:before{content:\\\"\\\\e086\\\"}.glyphicon-screenshot:before{content:\\\"\\\\e087\\\"}.glyphicon-remove-circle:before{content:\\\"\\\\e088\\\"}.glyphicon-ok-circle:before{content:\\\"\\\\e089\\\"}.glyphicon-ban-circle:before{content:\\\"\\\\e090\\\"}.glyphicon-arrow-left:before{content:\\\"\\\\e091\\\"}.glyphicon-arrow-right:before{content:\\\"\\\\e092\\\"}.glyphicon-arrow-up:before{content:\\\"\\\\e093\\\"}.glyphicon-arrow-down:before{content:\\\"\\\\e094\\\"}.glyphicon-share-alt:before{content:\\\"\\\\e095\\\"}.glyphicon-resize-full:before{content:\\\"\\\\e096\\\"}.glyphicon-resize-small:before{content:\\\"\\\\e097\\\"}.glyphicon-exclamation-sign:before{content:\\\"\\\\e101\\\"}.glyphicon-gift:before{content:\\\"\\\\e102\\\"}.glyphicon-leaf:before{content:\\\"\\\\e103\\\"}.glyphicon-fire:before{content:\\\"\\\\e104\\\"}.glyphicon-eye-open:before{content:\\\"\\\\e105\\\"}.glyphicon-eye-close:before{content:\\\"\\\\e106\\\"}.glyphicon-warning-sign:before{content:\\\"\\\\e107\\\"}.glyphicon-plane:before{content:\\\"\\\\e108\\\"}.glyphicon-calendar:before{content:\\\"\\\\e109\\\"}.glyphicon-random:before{content:\\\"\\\\e110\\\"}.glyphicon-comment:before{content:\\\"\\\\e111\\\"}.glyphicon-magnet:before{content:\\\"\\\\e112\\\"}.glyphicon-chevron-up:before{content:\\\"\\\\e113\\\"}.glyphicon-chevron-down:before{content:\\\"\\\\e114\\\"}.glyphicon-retweet:before{content:\\\"\\\\e115\\\"}.glyphicon-shopping-cart:before{content:\\\"\\\\e116\\\"}.glyphicon-folder-close:before{content:\\\"\\\\e117\\\"}.glyphicon-folder-open:before{content:\\\"\\\\e118\\\"}.glyphicon-resize-vertical:before{content:\\\"\\\\e119\\\"}.glyphicon-resize-horizontal:before{content:\\\"\\\\e120\\\"}.glyphicon-hdd:before{content:\\\"\\\\e121\\\"}.glyphicon-bullhorn:before{content:\\\"\\\\e122\\\"}.glyphicon-bell:before{content:\\\"\\\\e123\\\"}.glyphicon-certificate:before{content:\\\"\\\\e124\\\"}.glyphicon-thumbs-up:before{content:\\\"\\\\e125\\\"}.glyphicon-thumbs-down:before{content:\\\"\\\\e126\\\"}.glyphicon-hand-right:before{content:\\\"\\\\e127\\\"}.glyphicon-hand-left:before{content:\\\"\\\\e128\\\"}.glyphicon-hand-up:before{content:\\\"\\\\e129\\\"}.glyphicon-hand-down:before{content:\\\"\\\\e130\\\"}.glyphicon-circle-arrow-right:before{content:\\\"\\\\e131\\\"}.glyphicon-circle-arrow-left:before{content:\\\"\\\\e132\\\"}.glyphicon-circle-arrow-up:before{content:\\\"\\\\e133\\\"}.glyphicon-circle-arrow-down:before{content:\\\"\\\\e134\\\"}.glyphicon-globe:before{content:\\\"\\\\e135\\\"}.glyphicon-wrench:before{content:\\\"\\\\e136\\\"}.glyphicon-tasks:before{content:\\\"\\\\e137\\\"}.glyphicon-filter:before{content:\\\"\\\\e138\\\"}.glyphicon-briefcase:before{content:\\\"\\\\e139\\\"}.glyphicon-fullscreen:before{content:\\\"\\\\e140\\\"}.glyphicon-dashboard:before{content:\\\"\\\\e141\\\"}.glyphicon-paperclip:before{content:\\\"\\\\e142\\\"}.glyphicon-heart-empty:before{content:\\\"\\\\e143\\\"}.glyphicon-link:before{content:\\\"\\\\e144\\\"}.glyphicon-phone:before{content:\\\"\\\\e145\\\"}.glyphicon-pushpin:before{content:\\\"\\\\e146\\\"}.glyphicon-usd:before{content:\\\"\\\\e148\\\"}.glyphicon-gbp:before{content:\\\"\\\\e149\\\"}.glyphicon-sort:before{content:\\\"\\\\e150\\\"}.glyphicon-sort-by-alphabet:before{content:\\\"\\\\e151\\\"}.glyphicon-sort-by-alphabet-alt:before{content:\\\"\\\\e152\\\"}.glyphicon-sort-by-order:before{content:\\\"\\\\e153\\\"}.glyphicon-sort-by-order-alt:before{content:\\\"\\\\e154\\\"}.glyphicon-sort-by-attributes:before{content:\\\"\\\\e155\\\"}.glyphicon-sort-by-attributes-alt:before{content:\\\"\\\\e156\\\"}.glyphicon-unchecked:before{content:\\\"\\\\e157\\\"}.glyphicon-expand:before{content:\\\"\\\\e158\\\"}.glyphicon-collapse-down:before{content:\\\"\\\\e159\\\"}.glyphicon-collapse-up:before{content:\\\"\\\\e160\\\"}.glyphicon-log-in:before{content:\\\"\\\\e161\\\"}.glyphicon-flash:before{content:\\\"\\\\e162\\\"}.glyphicon-log-out:before{content:\\\"\\\\e163\\\"}.glyphicon-new-window:before{content:\\\"\\\\e164\\\"}.glyphicon-record:before{content:\\\"\\\\e165\\\"}.glyphicon-save:before{content:\\\"\\\\e166\\\"}.glyphicon-open:before{content:\\\"\\\\e167\\\"}.glyphicon-saved:before{content:\\\"\\\\e168\\\"}.glyphicon-import:before{content:\\\"\\\\e169\\\"}.glyphicon-export:before{content:\\\"\\\\e170\\\"}.glyphicon-send:before{content:\\\"\\\\e171\\\"}.glyphicon-floppy-disk:before{content:\\\"\\\\e172\\\"}.glyphicon-floppy-saved:before{content:\\\"\\\\e173\\\"}.glyphicon-floppy-remove:before{content:\\\"\\\\e174\\\"}.glyphicon-floppy-save:before{content:\\\"\\\\e175\\\"}.glyphicon-floppy-open:before{content:\\\"\\\\e176\\\"}.glyphicon-credit-card:before{content:\\\"\\\\e177\\\"}.glyphicon-transfer:before{content:\\\"\\\\e178\\\"}.glyphicon-cutlery:before{content:\\\"\\\\e179\\\"}.glyphicon-header:before{content:\\\"\\\\e180\\\"}.glyphicon-compressed:before{content:\\\"\\\\e181\\\"}.glyphicon-earphone:before{content:\\\"\\\\e182\\\"}.glyphicon-phone-alt:before{content:\\\"\\\\e183\\\"}.glyphicon-tower:before{content:\\\"\\\\e184\\\"}.glyphicon-stats:before{content:\\\"\\\\e185\\\"}.glyphicon-sd-video:before{content:\\\"\\\\e186\\\"}.glyphicon-hd-video:before{content:\\\"\\\\e187\\\"}.glyphicon-subtitles:before{content:\\\"\\\\e188\\\"}.glyphicon-sound-stereo:before{content:\\\"\\\\e189\\\"}.glyphicon-sound-dolby:before{content:\\\"\\\\e190\\\"}.glyphicon-sound-5-1:before{content:\\\"\\\\e191\\\"}.glyphicon-sound-6-1:before{content:\\\"\\\\e192\\\"}.glyphicon-sound-7-1:before{content:\\\"\\\\e193\\\"}.glyphicon-copyright-mark:before{content:\\\"\\\\e194\\\"}.glyphicon-registration-mark:before{content:\\\"\\\\e195\\\"}.glyphicon-cloud-download:before{content:\\\"\\\\e197\\\"}.glyphicon-cloud-upload:before{content:\\\"\\\\e198\\\"}.glyphicon-tree-conifer:before{content:\\\"\\\\e199\\\"}.glyphicon-tree-deciduous:before{content:\\\"\\\\e200\\\"}.glyphicon-cd:before{content:\\\"\\\\e201\\\"}.glyphicon-save-file:before{content:\\\"\\\\e202\\\"}.glyphicon-open-file:before{content:\\\"\\\\e203\\\"}.glyphicon-level-up:before{content:\\\"\\\\e204\\\"}.glyphicon-copy:before{content:\\\"\\\\e205\\\"}.glyphicon-paste:before{content:\\\"\\\\e206\\\"}.glyphicon-alert:before{content:\\\"\\\\e209\\\"}.glyphicon-equalizer:before{content:\\\"\\\\e210\\\"}.glyphicon-king:before{content:\\\"\\\\e211\\\"}.glyphicon-queen:before{content:\\\"\\\\e212\\\"}.glyphicon-pawn:before{content:\\\"\\\\e213\\\"}.glyphicon-bishop:before{content:\\\"\\\\e214\\\"}.glyphicon-knight:before{content:\\\"\\\\e215\\\"}.glyphicon-baby-formula:before{content:\\\"\\\\e216\\\"}.glyphicon-tent:before{content:\\\"\\\\26fa\\\"}.glyphicon-blackboard:before{content:\\\"\\\\e218\\\"}.glyphicon-bed:before{content:\\\"\\\\e219\\\"}.glyphicon-apple:before{content:\\\"\\\\f8ff\\\"}.glyphicon-erase:before{content:\\\"\\\\e221\\\"}.glyphicon-hourglass:before{content:\\\"\\\\231b\\\"}.glyphicon-lamp:before{content:\\\"\\\\e223\\\"}.glyphicon-duplicate:before{content:\\\"\\\\e224\\\"}.glyphicon-piggy-bank:before{content:\\\"\\\\e225\\\"}.glyphicon-scissors:before{content:\\\"\\\\e226\\\"}.glyphicon-bitcoin:before{content:\\\"\\\\e227\\\"}.glyphicon-btc:before{content:\\\"\\\\e227\\\"}.glyphicon-xbt:before{content:\\\"\\\\e227\\\"}.glyphicon-yen:before{content:\\\"\\\\00a5\\\"}.glyphicon-jpy:before{content:\\\"\\\\00a5\\\"}.glyphicon-ruble:before{content:\\\"\\\\20bd\\\"}.glyphicon-rub:before{content:\\\"\\\\20bd\\\"}.glyphicon-scale:before{content:\\\"\\\\e230\\\"}.glyphicon-ice-lolly:before{content:\\\"\\\\e231\\\"}.glyphicon-ice-lolly-tasted:before{content:\\\"\\\\e232\\\"}.glyphicon-education:before{content:\\\"\\\\e233\\\"}.glyphicon-option-horizontal:before{content:\\\"\\\\e234\\\"}.glyphicon-option-vertical:before{content:\\\"\\\\e235\\\"}.glyphicon-menu-hamburger:before{content:\\\"\\\\e236\\\"}.glyphicon-modal-window:before{content:\\\"\\\\e237\\\"}.glyphicon-oil:before{content:\\\"\\\\e238\\\"}.glyphicon-grain:before{content:\\\"\\\\e239\\\"}.glyphicon-sunglasses:before{content:\\\"\\\\e240\\\"}.glyphicon-text-size:before{content:\\\"\\\\e241\\\"}.glyphicon-text-color:before{content:\\\"\\\\e242\\\"}.glyphicon-text-background:before{content:\\\"\\\\e243\\\"}.glyphicon-object-align-top:before{content:\\\"\\\\e244\\\"}.glyphicon-object-align-bottom:before{content:\\\"\\\\e245\\\"}.glyphicon-object-align-horizontal:before{content:\\\"\\\\e246\\\"}.glyphicon-object-align-left:before{content:\\\"\\\\e247\\\"}.glyphicon-object-align-vertical:before{content:\\\"\\\\e248\\\"}.glyphicon-object-align-right:before{content:\\\"\\\\e249\\\"}.glyphicon-triangle-right:before{content:\\\"\\\\e250\\\"}.glyphicon-triangle-left:before{content:\\\"\\\\e251\\\"}.glyphicon-triangle-bottom:before{content:\\\"\\\\e252\\\"}.glyphicon-triangle-top:before{content:\\\"\\\\e253\\\"}.glyphicon-console:before{content:\\\"\\\\e254\\\"}.glyphicon-superscript:before{content:\\\"\\\\e255\\\"}.glyphicon-subscript:before{content:\\\"\\\\e256\\\"}.glyphicon-menu-left:before{content:\\\"\\\\e257\\\"}.glyphicon-menu-right:before{content:\\\"\\\\e258\\\"}.glyphicon-menu-down:before{content:\\\"\\\\e259\\\"}.glyphicon-menu-up:before{content:\\\"\\\\e260\\\"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:\\\"\\\\2014 \\\\00A0\\\"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:\\\"\\\"}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:\\\"\\\\00A0 \\\\2014\\\"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,\\\"Courier New\\\",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.row-no-gutters{margin-right:0;margin-left:0}.row-no-gutters [class*=col-]{padding-right:0;padding-left:0}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\\\\9;line-height:normal}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\\\\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;background-image:none;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\\\\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:\\\"\\\";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\\\\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:\\\"/\\\\00a0\\\"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow:after{content:\\\"\\\";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:\\\" \\\";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:\\\" \\\";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:\\\" \\\";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:\\\" \\\";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;filter:alpha(opacity=90);opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:\\\"\\\\2039\\\"}.carousel-control .icon-next:before{content:\\\"\\\\203a\\\"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\\\\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:\\\" \\\"}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}\\n/*# sourceMappingURL=bootstrap.min.css.map */\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\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!./toastr.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\n\n\nmodule.exports = content.locals || {};","// Imports\nimport ___CSS_LOADER_API_IMPORT___ from \"../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(true);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"/* Colors for the ripple elements.*/\\n/* stylelint-disable-next-line material/theme-mixin-api */\\n/* stylelint-disable-next-line material/theme-mixin-api */\\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 -webkit-transform: translateY(-1.34375em) scale(0.75);\\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 -webkit-transform: translateY(-1.34374em) scale(0.75);\\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 -webkit-transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);\\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 -webkit-transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);\\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 -webkit-transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);\\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 -webkit-transform: translateY(-1.28122em) scale(0.75);\\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 -webkit-transform: translateY(-1.28121em) scale(0.75);\\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 -webkit-transform: translateY(-1.2812em) scale(0.75);\\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 -webkit-transform: translateY(-0.59375em) scale(0.75);\\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 -webkit-transform: translateY(-0.59374em) scale(0.75);\\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 -webkit-transform: translateY(-1.59375em) scale(0.75);\\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 -webkit-transform: translateY(-1.59374em) scale(0.75);\\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 -webkit-box-sizing: border-box;\\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 -webkit-box-sizing: border-box;\\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 -webkit-box-sizing: border-box;\\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 -webkit-box-sizing: border-box;\\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 -webkit-box-sizing: border-box;\\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 -webkit-transform: translateZ(0);\\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 -webkit-transition: opacity, -webkit-transform 0ms cubic-bezier(0, 0, 0.2, 1);\\n transition: opacity, -webkit-transform 0ms cubic-bezier(0, 0, 0.2, 1);\\n transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);\\n transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0ms cubic-bezier(0, 0, 0.2, 1);\\n -webkit-transform: scale(0);\\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: -webkit-box;\\n display: -ms-flexbox;\\n display: flex;\\n position: absolute;\\n z-index: 1000;\\n}\\n.cdk-overlay-pane {\\n position: absolute;\\n pointer-events: auto;\\n -webkit-box-sizing: border-box;\\n box-sizing: border-box;\\n z-index: 1000;\\n display: -webkit-box;\\n display: -ms-flexbox;\\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 -webkit-transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);\\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: -webkit-box;\\n display: -ms-flexbox;\\n display: flex;\\n -webkit-box-orient: vertical;\\n -webkit-box-direction: normal;\\n -ms-flex-direction: column;\\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@-webkit-keyframes cdk-text-field-autofill-start {\\n /*!*/\\n}\\n@keyframes cdk-text-field-autofill-start {\\n /*!*/\\n}\\n@-webkit-keyframes cdk-text-field-autofill-end {\\n /*!*/\\n}\\n@keyframes cdk-text-field-autofill-end {\\n /*!*/\\n}\\n.cdk-text-field-autofill-monitored:-webkit-autofill {\\n -webkit-animation: cdk-text-field-autofill-start 0s 1ms;\\n animation: cdk-text-field-autofill-start 0s 1ms;\\n}\\n.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {\\n -webkit-animation: cdk-text-field-autofill-end 0s 1ms;\\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 -webkit-box-sizing: content-box !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 -webkit-box-sizing: content-box !important;\\n box-sizing: content-box !important;\\n height: 0 !important;\\n}\\n.mat-focus-indicator {\\n position: relative;\\n}\\n.mat-mdc-focus-indicator {\\n position: relative;\\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: #3c434d;\\n}\\n.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #fdc628;\\n}\\n.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #f44336;\\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: #3c434d;\\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: #fdc628;\\n}\\n.mat-warn .mat-pseudo-checkbox-checked,\\n.mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: #f44336;\\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-app-background {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-elevation-z0 {\\n -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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 -webkit-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 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-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 -webkit-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 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: white;\\n background: #3c434d;\\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: #fdc628;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-badge-warn .mat-badge-content {\\n color: white;\\n background: #f44336;\\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 -webkit-transition: -webkit-transform 200ms ease-in-out;\\n transition: -webkit-transform 200ms ease-in-out;\\n transition: transform 200ms ease-in-out;\\n transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;\\n -webkit-transform: scale(0.6);\\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 -webkit-transition: none;\\n transition: none;\\n}\\n.mat-badge-content.mat-badge-active {\\n -webkit-transform: none;\\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 -webkit-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 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: #3c434d;\\n}\\n.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {\\n color: #fdc628;\\n}\\n.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {\\n color: #f44336;\\n}\\n.mat-button.mat-primary.mat-button-disabled, .mat-button.mat-accent.mat-button-disabled, .mat-button.mat-warn.mat-button-disabled, .mat-button.mat-button-disabled.mat-button-disabled, .mat-icon-button.mat-primary.mat-button-disabled, .mat-icon-button.mat-accent.mat-button-disabled, .mat-icon-button.mat-warn.mat-button-disabled, .mat-icon-button.mat-button-disabled.mat-button-disabled, .mat-stroked-button.mat-primary.mat-button-disabled, .mat-stroked-button.mat-accent.mat-button-disabled, .mat-stroked-button.mat-warn.mat-button-disabled, .mat-stroked-button.mat-button-disabled.mat-button-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: #3c434d;\\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: #fdc628;\\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: #f44336;\\n}\\n.mat-button.mat-button-disabled .mat-button-focus-overlay, .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .mat-stroked-button.mat-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(.mat-button-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: 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.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-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: #3c434d;\\n}\\n.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {\\n background-color: #fdc628;\\n}\\n.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {\\n background-color: #f44336;\\n}\\n.mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-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.mat-stroked-button:not([class*=mat-elevation-z]), .mat-flat-button:not([class*=mat-elevation-z]) {\\n -webkit-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 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 -webkit-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 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(.mat-button-disabled):active:not([class*=mat-elevation-z]) {\\n -webkit-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 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.mat-button-disabled:not([class*=mat-elevation-z]) {\\n -webkit-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 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 -webkit-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 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(.mat-button-disabled):active:not([class*=mat-elevation-z]), .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {\\n -webkit-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 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.mat-button-disabled:not([class*=mat-elevation-z]), .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]) {\\n -webkit-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 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 -webkit-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 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 -webkit-box-shadow: none;\\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-button-toggle-appearance-standard .mat-button-toggle-label-content {\\n line-height: 48px;\\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 -webkit-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 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 -webkit-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 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: #3c434d;\\n}\\n.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {\\n background-color: #fdc628;\\n}\\n.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {\\n background-color: #f44336;\\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: #3c434d;\\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: #fdc628;\\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: #f44336;\\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 -webkit-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 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: #3c434d;\\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: #f44336;\\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: #fdc628;\\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.mat-date-range-input-separator {\\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):not(.mat-calendar-body-comparison-identical) {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-form-field-disabled .mat-date-range-input-separator {\\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):not(.mat-calendar-body-comparison-identical),\\n.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),\\n.cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n.mat-calendar-body-in-preview {\\n color: rgba(0, 0, 0, 0.24);\\n}\\n.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {\\n border-color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {\\n border-color: rgba(0, 0, 0, 0.18);\\n}\\n.mat-calendar-body-in-range::before {\\n background: rgba(60, 67, 77, 0.2);\\n}\\n.mat-calendar-body-comparison-identical,\\n.mat-calendar-body-in-comparison-range::before {\\n background: rgba(249, 171, 0, 0.2);\\n}\\n.mat-calendar-body-comparison-bridge-start::before,\\n[dir=rtl] .mat-calendar-body-comparison-bridge-end::before {\\n background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(60, 67, 77, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));\\n background: linear-gradient(to right, rgba(60, 67, 77, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-calendar-body-comparison-bridge-end::before,\\n[dir=rtl] .mat-calendar-body-comparison-bridge-start::before {\\n background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(60, 67, 77, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));\\n background: linear-gradient(to left, rgba(60, 67, 77, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,\\n.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {\\n background: #a8dab5;\\n}\\n.mat-calendar-body-comparison-identical.mat-calendar-body-selected,\\n.mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {\\n background: #46a35e;\\n}\\n.mat-calendar-body-selected {\\n background-color: #3c434d;\\n color: white;\\n}\\n.mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(60, 67, 77, 0.4);\\n}\\n.mat-calendar-body-today.mat-calendar-body-selected {\\n -webkit-box-shadow: inset 0 0 0 1px white;\\n box-shadow: inset 0 0 0 1px white;\\n}\\n.mat-datepicker-content {\\n -webkit-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 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-in-range::before {\\n background: rgba(253, 198, 40, 0.2);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,\\n.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {\\n background: rgba(249, 171, 0, 0.2);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,\\n.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {\\n background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(253, 198, 40, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));\\n background: linear-gradient(to right, rgba(253, 198, 40, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,\\n.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {\\n background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(253, 198, 40, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));\\n background: linear-gradient(to left, rgba(253, 198, 40, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,\\n.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {\\n background: #a8dab5;\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,\\n.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {\\n background: #46a35e;\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-selected {\\n background-color: #fdc628;\\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(253, 198, 40, 0.4);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {\\n -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {\\n background: rgba(244, 67, 54, 0.2);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,\\n.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {\\n background: rgba(249, 171, 0, 0.2);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,\\n.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {\\n background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(244, 67, 54, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));\\n background: linear-gradient(to right, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,\\n.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {\\n background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(244, 67, 54, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));\\n background: linear-gradient(to left, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,\\n.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {\\n background: #a8dab5;\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,\\n.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {\\n background: #46a35e;\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-selected {\\n background-color: #f44336;\\n color: white;\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(244, 67, 54, 0.4);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {\\n -webkit-box-shadow: inset 0 0 0 1px white;\\n box-shadow: inset 0 0 0 1px white;\\n}\\n.mat-datepicker-content-touch {\\n -webkit-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 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: #3c434d;\\n}\\n.mat-datepicker-toggle-active.mat-accent {\\n color: #fdc628;\\n}\\n.mat-datepicker-toggle-active.mat-warn {\\n color: #f44336;\\n}\\n.mat-date-range-input-inner[disabled] {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n.mat-dialog-container {\\n -webkit-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 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 -webkit-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 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-expansion-panel-header {\\n height: 48px;\\n}\\n.mat-expansion-panel-header.mat-expanded {\\n height: 64px;\\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: #3c434d;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-accent {\\n color: #fdc628;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-warn {\\n color: #f44336;\\n}\\n.mat-focused .mat-form-field-required-marker {\\n color: #fdc628;\\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: #3c434d;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {\\n background-color: #fdc628;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {\\n background-color: #f44336;\\n}\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {\\n color: #3c434d;\\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: #fdc628;\\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: #f44336;\\n}\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label {\\n color: #f44336;\\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: #f44336;\\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: #f44336;\\n}\\n.mat-error {\\n color: #f44336;\\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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.42)), color-stop(33%, rgba(0, 0, 0, 0.42)), color-stop(0%, transparent));\\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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.42)), color-stop(33%, rgba(0, 0, 0, 0.42)), color-stop(0%, transparent));\\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: #3c434d;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {\\n color: #fdc628;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {\\n color: #f44336;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {\\n color: #f44336;\\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: #3c434d;\\n}\\n.mat-icon.mat-accent {\\n color: #fdc628;\\n}\\n.mat-icon.mat-warn {\\n color: #f44336;\\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: #3c434d;\\n}\\n.mat-input-element::-webkit-input-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:-ms-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-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-form-field.mat-accent .mat-input-element {\\n caret-color: #fdc628;\\n}\\n.mat-form-field.mat-warn .mat-input-element,\\n.mat-form-field-invalid .mat-input-element {\\n caret-color: #f44336;\\n}\\n.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {\\n color: #f44336;\\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 -webkit-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 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-paginator-container {\\n min-height: 56px;\\n}\\n.mat-progress-bar-background {\\n fill: #c5c7ca;\\n}\\n.mat-progress-bar-buffer {\\n background-color: #c5c7ca;\\n}\\n.mat-progress-bar-fill::after {\\n background-color: #3c434d;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-background {\\n fill: #feeebf;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-buffer {\\n background-color: #feeebf;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {\\n background-color: #fdc628;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-background {\\n fill: #ffcdd2;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-buffer {\\n background-color: #ffcdd2;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {\\n background-color: #f44336;\\n}\\n.mat-progress-spinner circle, .mat-spinner circle {\\n stroke: #3c434d;\\n}\\n.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {\\n stroke: #fdc628;\\n}\\n.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {\\n stroke: #f44336;\\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: #3c434d;\\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: #3c434d;\\n}\\n.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #fdc628;\\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: #fdc628;\\n}\\n.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #f44336;\\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: #f44336;\\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 -webkit-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 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: #3c434d;\\n}\\n.mat-form-field.mat-focused.mat-accent .mat-select-arrow {\\n color: #fdc628;\\n}\\n.mat-form-field.mat-focused.mat-warn .mat-select-arrow {\\n color: #f44336;\\n}\\n.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {\\n color: #f44336;\\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 -webkit-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 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: #fdc628;\\n}\\n.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(253, 198, 40, 0.54);\\n}\\n.mat-slide-toggle.mat-checked .mat-ripple-element {\\n background-color: #fdc628;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {\\n background-color: #3c434d;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(60, 67, 77, 0.54);\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {\\n background-color: #3c434d;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {\\n background-color: #f44336;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(244, 67, 54, 0.54);\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {\\n background-color: #f44336;\\n}\\n.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {\\n background-color: black;\\n}\\n.mat-slide-toggle-thumb {\\n -webkit-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 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: #3c434d;\\n}\\n.mat-primary .mat-slider-thumb-label-text {\\n color: white;\\n}\\n.mat-primary .mat-slider-focus-ring {\\n background-color: rgba(60, 67, 77, 0.2);\\n}\\n.mat-accent .mat-slider-track-fill,\\n.mat-accent .mat-slider-thumb,\\n.mat-accent .mat-slider-thumb-label {\\n background-color: #fdc628;\\n}\\n.mat-accent .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-accent .mat-slider-focus-ring {\\n background-color: rgba(253, 198, 40, 0.2);\\n}\\n.mat-warn .mat-slider-track-fill,\\n.mat-warn .mat-slider-thumb,\\n.mat-warn .mat-slider-thumb-label {\\n background-color: #f44336;\\n}\\n.mat-warn .mat-slider-thumb-label-text {\\n color: white;\\n}\\n.mat-warn .mat-slider-focus-ring {\\n background-color: rgba(244, 67, 54, 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: 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: #3c434d;\\n color: white;\\n}\\n.mat-step-header .mat-step-icon-state-error {\\n background-color: transparent;\\n color: #f44336;\\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: #f44336;\\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-horizontal-stepper-header {\\n height: 72px;\\n}\\n.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,\\n.mat-vertical-stepper-header {\\n padding: 24px 24px;\\n}\\n.mat-stepper-vertical-line::before {\\n top: -16px;\\n bottom: -16px;\\n}\\n.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after, .mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before {\\n top: 36px;\\n}\\n.mat-stepper-label-position-bottom .mat-stepper-horizontal-line {\\n top: 36px;\\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(197, 199, 202, 0.3);\\n}\\n.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {\\n background-color: #3c434d;\\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(254, 238, 191, 0.3);\\n}\\n.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {\\n background-color: #fdc628;\\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, 205, 210, 0.3);\\n}\\n.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {\\n background-color: #f44336;\\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(197, 199, 202, 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: #3c434d;\\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(254, 238, 191, 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: #fdc628;\\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, 205, 210, 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: #f44336;\\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: #3c434d;\\n color: white;\\n}\\n.mat-toolbar.mat-accent {\\n background: #fdc628;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-warn {\\n background: #f44336;\\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-toolbar-multiple-rows {\\n min-height: 64px;\\n}\\n.mat-toolbar-row, .mat-toolbar-single-row {\\n height: 64px;\\n}\\n@media (max-width: 599px) {\\n .mat-toolbar-multiple-rows {\\n min-height: 56px;\\n }\\n\\n .mat-toolbar-row, .mat-toolbar-single-row {\\n height: 56px;\\n }\\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-tree-node {\\n min-height: 48px;\\n}\\n.mat-snack-bar-container {\\n color: rgba(255, 255, 255, 0.7);\\n background: #323232;\\n -webkit-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 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: #fdc628;\\n}\", \"\",{\"version\":3,\"sources\":[\"webpack://node_modules/@angular/material/_theming.scss\",\"webpack://src/styles/main.scss\"],\"names\":[],\"mappings\":\"AA2tDA,mCAAA;AAgJA,yDAAA;AA6XA,yDAAA;AAi1DA,2CAAA;AA6CA,qBAAA;AApjDE;EACE,gBAvLoB;EAwLpB,eAzLkB;EA0LlB,iDAAA;AC5iFJ;AD+iFE;EAEE,cAAA;AC7iFJ;ADgjFE;EACE,eAAA;AC7iFJ;ADytEE;EAvSE,wDAAA;EAYF,sBAAA;EA6RE,gBAAA;ACrtEJ;ADwtEE;EA5SE,wDAAA;EAYF,sBAAA;EAkSE,gBAAA;ACptEJ;ADutEE;EAjTE,wDAAA;EAYF,sBAAA;EAuSE,gBAAA;ACntEJ;ADstEE;EAtTE,wDAAA;EAYF,sBAAA;EA4SE,gBAAA;ACltEJ;ADwtEE;EA9TE,qEAAA;EAuUA,gBAAA;AC5tEJ;AD+tEE;EA1UE,qEAAA;EAmVA,gBAAA;ACnuEJ;ADsuEE;EAtVE,wDAAA;EAYF,sBAAA;ACv5DF;ADquEE;EA1VE,wDAAA;EAYF,sBAAA;ACl5DF;ADmuEI;EACE,gBAAA;ACjuEN;ADquEE;EAlWE,wDAAA;EAYF,sBAAA;AC14DF;ADouEE;EAtWE,0DAAA;EAYF,uBAAA;EA4VE,gBAAA;AChuEJ;ADmuEE;EA3WE,wDAAA;EAYF,uBAAA;EAiWE,gBAAA;AC/tEJ;ADkuEE;EAhXE,wDAAA;EAYF,wBAAA;EAsWE,gBAAA;AC9tEJ;ADiuEE;EArXE,wDAAA;EAYF,sBAAA;EA2WE,gBAAA;AC7tEJ;AD8gFE;EAxqBE,wDAAA;EAYF,sBAAA;AC72DF;ADwsFE;;EAGI,iDAAA;EACA,eAAA;EACA,gBAAA;ACtsFN;AD24FE;EACE,iDAAA;ACx4FJ;ADy8FE;EACE,iDAAA;ACt8FJ;ADy8FE;EAEI,eAAA;EACA,gBAAA;ACv8FN;AD28FE;EACE,eAAA;ACx8FJ;AD28FE;;EAEE,eAAA;ACx8FJ;ADqkGE;EACE,iDAAA;AClkGJ;ADskGE;EACE,iBAAA;ACnkGJ;ADurGE;EACE,eAAA;EACA,gBAAA;ACprGJ;ADsrGI;;EAEE,eA3FsB;ACzlG5B;AD6xGE;EACE,iDAAA;AC1xGJ;AD6xGE;EACE,eAAA;EACA,gBAAA;AC1xGJ;AD6xGE;EACE,eAAA;AC1xGJ;AD0+GE;EACE,iDAAA;ACv+GJ;AD0+GE;EACE,eAjL0B;ACtzG9B;AD0+GE;;EAGI,eAAA;EACA,gBAAA;ACx+GN;AD4+GE;EAEI,eA7LiC;EA8LjC,gBAAA;AC1+GN;AD6jHE;EA1yDE,wDAAA;EAYF,sBAAA;AC1xDF;AD+qHE;EAEI,iDAAA;EACA,eAAA;EACA,gBAAA;AC7qHN;ADirHE;EAz6DE,wDAAA;EAYF,sBAAA;AC/wDF;ADq1ME;EA3lJE,kBAeU;EAdV,gBAeY;EAdZ,kBAeY;EAdZ,iDAeY;EAGd,sBAAA;ACvwDF;ADi1ME;EACE,yBAPuB;ACv0M3B;ADo1MI;;EACE,eAvB2B;EAwB3B,kBAtCU;AC1yMhB;ADo1MI;;EACE,aAAA;EACA,YAAA;ACj1MN;ADm1MM;;EACE,eAAA;EACA,kBAhDQ;AChyMhB;ADq1ME;EACE,gBAAA;EAEA,uCAAA;ACn1MJ;ADu1MI;;EAtEF,qDAAA;UAAA,6CAAA;EAEA,sBAAA;AC7wMF;ADy1MI;EA9EF,qDAAA;UAAA,6CAAA;EAEA,sBAAA;ACzwMF;AD41ME;EACE,eAAA;EACA,sBAnEiB;ACtxMrB;AD41ME;EACE,cAAA;ACz1MJ;AD41ME;EAGE,iBAhEuB;AC3xM3B;AD81ME;EACE,cA/EoB;EAgFpB,0BAzEqB;EA6ErB,gCAAA;AC91MJ;AD80LI;EACE,sBAJqB;ACv0L3B;AD80LI;EACE,mBAAA;AC50LN;ADg1LM;;EA1DJ,4FAAA;UAAA,oFAAA;EAIA,iDAAA;EAGA,sBAAA;ACvxLF;ADi1LM;EAjEJ,8FAAA;UAAA,sFAAA;EAIA,iDAAA;EAGA,sBAAA;AClxLF;ADo1LM;EAzEJ,8FAAA;UAAA,sFAAA;EAIA,iDAAA;EAGA,sBAAA;AC7wLF;ADs1LI;EACE,cAAA;ACp1LN;ADu1LI;EAGE,cAzCqB;AC9yL3B;AD01LI;EACE,0BAjDmB;EAqDnB,gCAAA;AC31LN;ADi2LE;EAGM;;IAxFN,qDAAA;YAAA,6CAAA;ECtwLA;EDq2LM;IA/FN,qDAAA;YAAA,6CAAA;ECnwLA;ED02LM;IAvGN,oDAAA;YAAA,4CAAA;EChwLA;AACF;AD6oLI;EACE,0BAAA;AC3oLN;AD8oLI;EACE,cAAA;EACA,kBAT2B;ACnoLjC;ADgpLM;;EAjCJ,qDAAA;UAAA,6CAAA;EAEA,sBAAA;AC5mLF;ADopLM;EA1CJ,qDAAA;UAAA,6CAAA;EAEA,sBAAA;ACxmLF;AD89LI;EACE,oBAAA;AC39LN;AD89LI;EACE,cAAA;EACA,mBAT8B;ACn9LpC;ADg+LM;;EAxCJ,qDAAA;UAAA,6CAAA;EAEA,sBAAA;ACr7LF;ADo+LM;EAjDJ,qDAAA;UAAA,6CAAA;EAEA,sBAAA;ACj7LF;ADsoHE;;EAGE,eAAA;ACpoHJ;ADmlHE;;EARA,mBAAA;EACA,gBAAA;EACA,uBAAA;EAQE,cAAA;EACA,8BAAA;UAAA,sBAAA;AC9kHJ;ADilHI;;EACE,eAyCqB;ACvnH3B;AD40HE;EACE,qBAAA;ACz0HJ;ADogIE;EAEI,iDAAA;EACA,eAAA;EACA,gBAAA;AClgIN;ADslIE;;EAGI,iDAAA;EACA,eAAA;ACplIN;AD0zIE;EACE,iDAAA;ACvzIJ;ADu5IE;EACE,iDAAA;ACp5IJ;ADu5IE;EACE,eAAA;ACp5IJ;AD6lJE;EACE,iDAAA;AC1lJJ;AD4xJE;EAEI,iDAAA;EACA,eAAA;EACA,gBAAA;AC1xJN;ADm6JE;EACE,iDAAA;ACh6JJ;ADm6JE;EAEI,eAAA;EACA,gBAAA;ACj6JN;ADq6JE;EACE,mBAAA;ACl6JJ;ADq6JE;EACE,eAAA;ACl6JJ;ADq6JE;EAEI,eAAA;EACA,gBAAA;ACn6JN;ADqpKE;EACE,iDAAA;AClpKJ;ADqpKE;EAEI,iDAAA;EACA,eAAA;EACA,gBAAA;ACnpKN;ADixKE;;;;;;;EAlvHE,wDAAA;EAYF,sBAAA;EA8uHE,SAAA;AC7wKJ;ADi1KE;EACE,iDAAA;EACA,eArBoB;EAsBpB,gBArB2B;EAsB3B,mBAtB2B;ACxzK/B;ADi1KE;EACE,eAvB4B;EAwB5B,gBAtBA;EAuBA,mBAvBA;ACvzKJ;ADwzHE;EACE,iDAHY;AClzHhB;ADwzHE;EACE,iDAPY;AC9yHhB;AD0zHI;EACE,eAAA;ACvzHN;AD49GE;EARA,mBAAA;EACA,gBAAA;EACA,uBAAA;EAQE,cAAA;EACA,8BAAA;UAAA,sBAAA;ACx9GJ;AD29GI;EACE,eAqVuB;AC9yH7B;ADizHI;EACE,eAAA;AC/yHN;AD+8GE;EARA,mBAAA;EACA,gBAAA;EACA,uBAAA;EAQE,cAAA;EACA,8BAAA;UAAA,sBAAA;AC38GJ;AD88GI;EACE,eA0VuB;ACtyH7B;ADyyHI;EACE,iDAAA;EACA,eAAA;EACA,gBAAA;ACvyHN;AD6yHI;EACE,eAAA;AC1yHN;AD47GE;EARA,mBAAA;EACA,gBAAA;EACA,uBAAA;EAQE,cAAA;EACA,8BAAA;UAAA,sBAAA;ACx7GJ;AD27GI;EACE,eAwWuB;ACjyH7B;ADoyHI;EACE,eAAA;AClyHN;AD+6GE;EARA,mBAAA;EACA,gBAAA;EACA,uBAAA;EAQE,cAAA;EACA,8BAAA;UAAA,sBAAA;AC36GJ;AD86GI;EACE,eA6WuB;ACzxH7B;AD4xHI;EACE,iDA1CU;EA2CV,eAAA;EACA,gBAAA;AC1xHN;AD4/CE;EAEI,iDAAA;EACA,eAAA;AC1/CN;ADwiDE;EA/GE,wDAAA;EAYF,sBAAA;ACh8CF;ADizKE;EAEI,iDAAA;EACA,eAAA;AC/yKN;ADmzKE;EACE,cAAA;EAEE,oBAAA;EACA,kBAAA;EACA,gBAAA;ACjzKN;AD2oME;EACE,iDAAA;ACxoMJ;AD2oME;;EAEE,gBAAA;EACA,eAAA;ACxoMJ;ADkpCE;EACE,gBAAA;EAIA,kBAAA;AClpCJ;ADypCI;EACE,gCAAA;UAAA,wBAAA;ACvpCN;AD2pCE;EACE,iBAAA;ACxpCJ;AD2pCE;EACE,kBAAA;EACA,kBAAA;EACA,oBAAA;EAEA,6EAAA;EAAA,qEAAA;EAAA,6DAAA;EAAA,+GAAA;EACA,2BAAA;UAAA,mBAAA;ACzpCJ;AD3YI;EAwiDE,aAAA;AC1pCN;ADzaE;EACE,SAAA;EACA,mBAAA;EACA,WAAA;EACA,YAAA;EACA,gBAAA;EACA,UAAA;EACA,kBAAA;EACA,UAAA;EAGA,UAAA;EAGA,wBAAA;EACA,qBAAA;ACwaJ;ADtjBE;EAEE,oBAAA;EAGA,MAAA;EACA,OAAA;EACA,YAAA;EACA,WAAA;ACsjBJ;ADljBE;EACE,eAAA;EACA,aA3B4B;ACglBhC;ADnjBI;EAGE,aAAA;ACmjBN;AD3iBE;EACE,oBAAA;EAAA,oBAAA;EAAA,aAAA;EACA,kBAAA;EACA,aA1CkB;ACwlBtB;AD1iBE;EAGE,kBAAA;EACA,oBAAA;EACA,8BAAA;UAAA,sBAAA;EACA,aApDkB;EAwDlB,oBAAA;EAAA,oBAAA;EAAA,aAAA;EACA,eAAA;EACA,gBAAA;ACwiBJ;ADriBE;EAEE,kBAAA;EACA,MAAA;EACA,SAAA;EACA,OAAA;EACA,QAAA;EAEA,aApE2B;EAqE3B,oBAAA;EACA,wCAAA;EACA,kEAAA;EAAA,0DAAA;EACA,UAAA;ACsiBJ;ADpiBI;EACE,UAAA;ACsiBN;ADhiBM;EAPF;IAQI,YAAA;ECmiBN;AACF;AD/hBE;EACE,+BArFmC;ACunBvC;AD1hBI;EACE,UAAA;AC6hBN;ADvhBE;EACE,kBAAA;EACA,aA1GkB;EA+GlB,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAIA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;EAGA,cAAA;EACA,eAAA;ACihBJ;AD7gBE;EACE,eAAA;EAKA,WAAA;EAKA,kBAAA;ACwgBJ;AD/aE;EAA0C,IAAA;ACmb5C;ADnbE;EAA0C,IAAA;ACmb5C;ADlbE;EAAwC,IAAA;ACqb1C;ADrbE;EAAwC,IAAA;ACqb1C;ADnbE;EAEE,uDAAA;UAAA,+CAAA;ACobJ;ADjbE;EAEE,qDAAA;UAAA,6CAAA;ACmbJ;AD9aE;EACE,YAAA;ACibJ;AD3aE;EAqBA,yBAAA;EACA,0CAAA;UAAA,kCAAA;EApBE,uBAAA;EACA,2BAAA;AC+aJ;ADtaE;EASA,yBAAA;EACA,0CAAA;UAAA,kCAAA;EARE,oBAAA;AC0aJ;AD0sCE;EACE,kBAAA;ACvsCJ;ADupME;EACE,kBAAA;ACppMJ;ADoiCE;EAII,oCAAA;ACpiCN;AD0xCE;EACE,0BAAA;ACvxCJ;ADyxCI;EAEE,+BAAA;ACxxCN;AD4xCI;EACE,+BAAA;AC1xCN;AD6xCI;EACE,+BAAA;EACA,0BAAA;AC3xCN;AD8xCI;EACE,0BAAA;AC5xCN;ADgyCE;EACE,cAAA;AC7xCJ;ADgyCE;EACE,cAAA;AC7xCJ;ADgyCE;EACE,cAAA;AC7xCJ;ADy0CE;EACE,0BAAA;ACt0CJ;ADy0CE;EACE,0BAAA;ACt0CJ;ADy3CE;EACE,0BAAA;ACt3CJ;ADw3CI;EACE,cAAA;ACt3CN;AD03CE;EACE,cAZe;AC32CnB;AD03CE;;EAEE,mBAAA;ACv3CJ;AD+3CE;;;;EAIE,mBAAA;AC53CJ;AD+3CE;;EAEE,mBAAA;AC53CJ;ADi4CI;;EACE,mBAxCa;ACr1CnB;ADohME;EAIE,yBAAA;EACA,0BAAA;ACphMJ;AD2hMI;EA5yMF,gIAAA;UAAA,wHAAA;ACqRF;ADuhMI;EA5yMF,iIAAA;UAAA,yHAAA;ACyRF;ADmhMI;EA5yMF,iIAAA;UAAA,yHAAA;AC6RF;AD+gMI;EA5yMF,iIAAA;UAAA,yHAAA;ACiSF;AD2gMI;EA5yMF,kIAAA;UAAA,0HAAA;ACqSF;ADugMI;EA5yMF,kIAAA;UAAA,0HAAA;ACySF;ADmgMI;EA5yMF,mIAAA;UAAA,2HAAA;AC6SF;AD+/LI;EA5yMF,mIAAA;UAAA,2HAAA;ACiTF;AD2/LI;EA5yMF,mIAAA;UAAA,2HAAA;ACqTF;ADu/LI;EA5yMF,mIAAA;UAAA,2HAAA;ACyTF;ADm/LI;EA5yMF,oIAAA;UAAA,4HAAA;AC6TF;AD++LI;EA5yMF,oIAAA;UAAA,4HAAA;ACiUF;AD2+LI;EA5yMF,oIAAA;UAAA,4HAAA;ACqUF;ADu+LI;EA5yMF,oIAAA;UAAA,4HAAA;ACyUF;ADm+LI;EA5yMF,oIAAA;UAAA,4HAAA;AC6UF;AD+9LI;EA5yMF,oIAAA;UAAA,4HAAA;ACiVF;AD29LI;EA5yMF,qIAAA;UAAA,6HAAA;ACqVF;ADu9LI;EA5yMF,qIAAA;UAAA,6HAAA;ACyVF;ADm9LI;EA5yMF,qIAAA;UAAA,6HAAA;AC6VF;AD+8LI;EA5yMF,qIAAA;UAAA,6HAAA;ACiWF;AD28LI;EA5yMF,sIAAA;UAAA,8HAAA;ACqWF;ADu8LI;EA5yMF,sIAAA;UAAA,8HAAA;ACyWF;ADm8LI;EA5yMF,sIAAA;UAAA,8HAAA;AC6WF;AD+7LI;EA5yMF,sIAAA;UAAA,8HAAA;ACiXF;AD27LI;EA5yMF,sIAAA;UAAA,8HAAA;ACqXF;AD87LI;EACE,aAAA;AC37LN;ADm9CE;EAEE,iBAAA;EACA,0BAAA;ACj9CJ;AD3WE;EAnBA,kIAAA;UAAA,0HAAA;ACiYF;ADq9CI;EACE,iBAAA;ACn9CN;ADq9CM;EACE,0BAAA;ACn9CR;ADklDE;EACE,YAAA;EACA,mBAAA;AC/kDJ;ADztBI;EA2yEE,kBAAA;EACA,gBAAA;AC/kDN;ADolDI;EACE,mBAAA;EACA,0BAAA;ACjlDN;ADslDI;EACE,YAAA;EACA,mBAAA;ACnlDN;ADulDE;EACE,kBAAA;ACplDJ;ADwlDI;EACE,aAAA;ACrlDN;AD0lDI;EAWI,mBAAA;EAMF,0BAAA;ACtmDN;AD0mDE;EACE,kBAAA;EACA,kBAAA;EACA,qBAAA;EACA,kBAAA;EACA,uDAAA;EAAA,+CAAA;EAAA,uCAAA;EAAA,4EAAA;EACA,6BAAA;UAAA,qBAAA;EACA,gBAAA;EACA,mBAAA;EACA,uBAAA;EACA,oBAAA;ACvmDJ;AD0mDE;;EAEE,wBAAA;EAAA,gBAAA;ACvmDJ;AD4mDE;EAEE,uBAAA;UAAA,eAAA;AC1mDJ;AD28CE;EACE,WANmB;EAOnB,YAPmB;EAQnB,iBARmB;ACh8CvB;AD48CI;EACE,SAAA;AC18CN;AD+8CI;EACE,YAAA;AC78CN;ADk9CI;EACE,WAAA;ACh9CN;ADq9CI;EACE,UAAA;EACA,YAAA;ACn9CN;ADw9CI;EACE,YAAA;ACt9CN;AD29CI;EACE,WAAA;EACA,WAAA;ACz9CN;AD+9CM;EACE,UAAA;AC79CR;ADk+CM;EACE,UAAA;EACA,WAAA;ACh+CR;ADq+CM;EACE,WAAA;ACn+CR;ADw+CM;EACE,WAAA;EACA,UAAA;ACt+CR;ADm6CE;EACE,WAPqB;EAQrB,YARqB;EASrB,iBATqB;ACv5CzB;ADo6CI;EACE,UAAA;ACl6CN;ADu6CI;EACE,aAAA;ACr6CN;AD06CI;EACE,WAAA;ACx6CN;AD66CI;EACE,UAAA;EACA,YAAA;AC36CN;ADg7CI;EACE,YAAA;AC96CN;ADm7CI;EACE,WAAA;EACA,WAAA;ACj7CN;ADu7CM;EACE,WAAA;ACr7CR;AD07CM;EACE,UAAA;EACA,YAAA;ACx7CR;AD67CM;EACE,YAAA;AC37CR;ADg8CM;EACE,WAAA;EACA,WAAA;AC97CR;AD23CE;EACE,WALmB;EAMnB,YANmB;EAOnB,iBAPmB;ACj3CvB;AD43CI;EACE,UAAA;AC13CN;AD+3CI;EACE,aAAA;AC73CN;ADk4CI;EACE,WAAA;ACh4CN;ADq4CI;EACE,UAAA;EACA,YAAA;ACn4CN;ADw4CI;EACE,YAAA;ACt4CN;AD24CI;EACE,WAAA;EACA,WAAA;ACz4CN;AD+4CM;EACE,WAAA;AC74CR;ADk5CM;EACE,UAAA;EACA,YAAA;ACh5CR;ADq5CM;EACE,YAAA;ACn5CR;ADw5CM;EACE,WAAA;EACA,WAAA;ACt5CR;ADkjDE;EAvmEA,qIAAA;UAAA,6HAAA;EAymEE,iBAAA;EACA,0BAAA;AC/iDJ;AD6qDE;EAKE,cAAA;EACA,uBAAA;AC9qDJ;AD8oDE;EACE,cAAA;AC5oDJ;AD8oDE;EACE,cAAA;AC5oDJ;AD8oDE;EACE,cAAA;AC5oDJ;ADgpDI;EAEE,0BAAA;AC/oDN;AD4kDE;EACE,yBAAA;AC1kDJ;AD6kDE;EACE,yBAAA;AC3kDJ;AD8kDE;EACE,yBAAA;AC5kDJ;AD+kDE;EACE,6BAAA;AC7kDJ;AD8pDI;EACE,YAxGuB;EAyGvB,8BAAA;AC5pDN;ADgqDE;EACE,iBAAA;AC7pDJ;ADkqDE;EACE,iCAAA;AC/pDJ;ADkqDE;EAEE,0BAAA;EACA,uBAAA;AChqDJ;ADqmDE;EACE,YAAA;ACnmDJ;ADqmDE;EACE,0BAAA;ACnmDJ;ADqmDE;EACE,YAAA;ACnmDJ;ADumDI;EAEE,0BAAA;ACtmDN;ADylDE;EACE,yBAAA;ACvlDJ;ADylDE;EACE,yBAAA;ACvlDJ;ADylDE;EACE,yBAAA;ACvlDJ;AD2lDI;EAEE,qCAAA;AC1lDN;ADwjDE;EAXA,0CADmB;ACziDrB;ADyjDE;EAfA,oCADmB;ACtiDrB;AD0jDE;EAnBA,0CADmB;ACniDrB;ADvnBE;EAnBA,gIAAA;UAAA,wHAAA;AC8oBF;AD3nBE;EAnBA,iIAAA;UAAA,yHAAA;ACkpBF;AD/nBE;EAnBA,mIAAA;UAAA,2HAAA;ACqpBF;ADloBE;EAnBA,gIAAA;UAAA,wHAAA;ACwpBF;ADroBE;EAnBA,mIAAA;UAAA,2HAAA;AC4pBF;ADzoBE;EAnBA,oIAAA;UAAA,4HAAA;AC+pBF;AD5oBE;EAnBA,gIAAA;UAAA,wHAAA;ACkqBF;AD6wDE;;EA/6EA,iIAAA;UAAA,yHAAA;ACuqBF;AD6wDE;;EAEE,wBAAA;UAAA,gBAAA;AC1wDJ;AD6wDE;EACE,0BAAA;AC1wDJ;AD4wDI;EACE,qCAAA;AC1wDN;AD8wDE;EACE,0BAAA;EACA,iBAAA;AC3wDJ;AD6wDI;EACE,uBAAA;AC3wDN;AD+wDE;EACE,0CAAA;AC5wDJ;AD+wDE;EACE,iBAAA;EACA,2CAAA;AC5wDJ;ADgxDI;EACE,iBAAA;EACA,kBAAA;EACA,yCAAA;AC7wDN;ADixDE;EACE,yBAAA;EACA,0BAAA;AC9wDJ;ADgxDI;EACE,0BAAA;AC9wDN;ADkxDE;EACE,0BAAA;EACA,yBAAA;AC/wDJ;ADixDI;EACE,iBAAA;AC/wDN;ADkxDI;EACE,yBAAA;AChxDN;ADoxDE;;EAEE,qCAAA;ACjxDJ;ADkyDI;EACE,iBALc;AC1xDpB;ADm0DE;EAEE,iBAAA;EACA,0BAAA;ACj0DJ;ADxtBE;EAnBA,iIAAA;UAAA,yHAAA;AC8uBF;AD3tBE;EAnBA,gIAAA;UAAA,wHAAA;ACivBF;ADm0DE;EACE,0BAAA;ACh0DJ;ADy4DE;EACE,iCAAA;ACt4DJ;ADy4DE;EACE,aAdoB;ACx3DxB;ADy4DE;EAGE,0BAAA;ACx4DJ;AD24DE;EACE,yBAxBoB;ACh3DxB;AD44DI;EACE,yBAAA;ACz4DN;AD44DI;EACE,yBAAA;AC14DN;AD64DI;EACE,yBAAA;AC34DN;ADk5DM;EACE,yBAtCW;ACz2DnB;ADo5DM;EACE,qBA5CW;ACt2DnB;ADs5DI;EACE,0BAAA;ACp5DN;AD05DE;EACE,uBAAA;ACv5DJ;AD45DI;;EACE,mBAAA;ACx5DN;AD25DI;;EACE,mBAAA;ACx5DN;AD25DI;;EACE,mBAAA;ACx5DN;ADk/DE;EA3CA,yBAwCwB;EAvCxB,0BAwCwB;AC3+D1B;ADq8DE;EACE,0BAqCsB;EApCtB,YAAA;ACn8DJ;AD6+DM;EAhyFJ,iIAAA;UAAA,yHAAA;ACszBF;AD8+DM;EACE,aAAA;AC5+DR;ADg/DI;EACE,YAAA;AC9+DN;ADi/DI;EACE,iBAAA;AC/+DN;ADo/DI;EAlEF,yBAwBwE;EAvBxE,YAuBiC;ACr8DnC;ADg7DE;EACE,YAoB+B;EAnB/B,YAAA;AC96DJ;ADm8DE;EATA,0CADmB;ACt7DrB;AD4+DI;EAtEF,yBAwBwE;EAvBxE,YAuBiC;AC17DnC;ADq6DE;EACE,YAoB+B;EAnB/B,YAAA;ACn6DJ;ADw7DE;EATA,0CADmB;AC36DrB;ADq+DI;EA1EF,yBAwBwE;EAvBxE,0BAuBiC;AC/6DnC;AD05DE;EACE,0BAoB+B;EAnB/B,YAAA;ACx5DJ;AD66DE;EATA,oCADmB;ACh6DrB;ADsjEE;EACE,iBAAA;ACnjEJ;ADsjEE;;;;EAIE,mBAAA;ACnjEJ;ADsjEE;;EAEE,wCAAA;ACnjEJ;ADsjEE;EACE,0BAAA;ACnjEJ;ADsjEE;EACE,0BAAA;ACnjEJ;ADmpEE;EACE,qCAAA;AChpEJ;ADqpEE;;;EAGE,0BAAA;AClpEJ;ADqpEE;EACE,0BAAA;AClpEJ;ADqpEE;EACE,+BAAA;AClpEJ;ADqpEE;EACE,0BAAA;AClpEJ;ADqpEE;;EAEE,0BAAA;EACA,yBAAA;AClpEJ;AD4mEE;EA2CI,0BAlCa;ACjnEnB;ADupEE;EACE,0BAvCe;AC7mEnB;ADomEE;;;EAwDM,qCAAA;ACtpER;AD2pEE;EAOI,0BAAA;AC9pEN;AD0lEE;EA+EI,iCAAA;ACrqEN;ADslEE;EAwFM,iCAAA;AC1qER;AD2vEE;EACE,iCAtMA;ACljEJ;AD2vEE;;EAEE,kCAViB;AC9uErB;AD2vEE;;EAEE,0IAAA;EAAA,4FAAA;ACxvEJ;AD2vEE;;EAEE,0IAAA;EAAA,2FAAA;ACxvEJ;AD2vEE;;EAEE,mBAxBc;AChuElB;AD2vEE;;EAEE,mBA5BuB;AC5tE3B;AD2hEE;EACE,yBAAA;EACA,YAAA;ACxhEJ;AD2hEE;EAII,uCAAA;AC3hEN;ADoiEE;EACE,yCAAA;UAAA,iCAAA;ACjiEJ;AD8oEE;EAvmGA,kIAAA;UAAA,0HAAA;EAymGE,uBAAA;EACA,0BAAA;AC3oEJ;AD2sEE;EACE,mCAtMA;ACngEJ;AD4sEE;;EAEE,kCAViB;AChsErB;AD6sEE;;EAEE,4IAAA;EAAA,8FAAA;AC3sEJ;AD8sEE;;EAEE,4IAAA;EAAA,6FAAA;AC5sEJ;AD+sEE;;EAEE,mBAxBc;ACrrElB;ADgtEE;;EAEE,mBA5BuB;AClrE3B;ADi/DE;EACE,yBAAA;EACA,0BAAA;AC/+DJ;ADk/DE;EAII,yCAAA;ACn/DN;AD4/DE;EACE,uDAAA;UAAA,+CAAA;AC1/DJ;AD0qEE;EACE,kCAtMA;ACl+DJ;AD2qEE;;EAEE,kCAViB;AC/pErB;AD4qEE;;EAEE,2IAAA;EAAA,6FAAA;AC1qEJ;AD6qEE;;EAEE,2IAAA;EAAA,4FAAA;AC3qEJ;AD8qEE;;EAEE,mBAxBc;ACppElB;AD+qEE;;EAEE,mBA5BuB;ACjpE3B;ADg9DE;EACE,yBAAA;EACA,YAAA;AC98DJ;ADi9DE;EAII,wCAAA;ACl9DN;AD29DE;EACE,yCAAA;UAAA,iCAAA;ACz9DJ;ADolEE;EArnGA,gIAAA;UAAA,wHAAA;ACqiCF;ADolEE;EACE,cAAA;ACjlEJ;ADmlEI;EACE,cAAA;ACjlEN;ADolEI;EACE,cAAA;ACllEN;ADslEE;EACE,0BAAA;ACnlEJ;ADsrEE;EAzuGA,sIAAA;UAAA,8HAAA;EA2uGE,iBAAA;EACA,0BAAA;ACnrEJ;ADozDE;EACE,qCAAA;ACjzDJ;ADozDE;EACE,uCAAA;ACjzDJ;ADsvEE;EAEE,iBAAA;EACA,0BAAA;ACpvEJ;ADnjCE;EAnBA,iIAAA;UAAA,yHAAA;ACykCF;ADovEE;EACE,qCAAA;ACjvEJ;ADwvEM;EACE,+BAAA;ACrvER;AD4vEE;EACE;IAEE,iBAAA;EC1vEJ;AACF;AD6vEE;EACE,0BAAA;AC3vEJ;AD8vEE;;EAEE,0BAAA;AC3vEJ;AD8vEE;EACE,0BAAA;AC3vEJ;AD6vEI;;EAEE,cAAA;AC3vEN;ADuxEI;EACE,YALe;AC/wErB;ADsxEM;EACE,YAVY;AC1wEpB;AD4yJE;EACE,yBAXY;AC9xJhB;AD4yJE;EACE,yBAfY;AC1xJhB;AD4yJE;EACE,cAlBoB;ACvxJxB;AD2yJI;EACE,cAhBqB;ACzxJ3B;AD4yJI;EACE,cAnBmB;ACvxJzB;AD8yJE;EACE,cA7BqB;AC9wJzB;AD8yJE;EACE,qCA9BqB;AC7wJzB;AD+yJI;EACE,yBAhCsB;AC5wJ5B;AD8yJM;EACE,yBArCmB;ACvwJ3B;AD+yJM;EACE,yBAxCiB;ACrwJzB;ADmzJI;EACE,cA9CsB;AClwJ5B;ADmzJI;EACE,cApDqB;AC7vJ3B;ADozJI;EACE,cAvDmB;AC3vJzB;AD0zJI;EACE,cAhEmB;ACvvJzB;ADyzJM;;EAEE,cApEiB;ACnvJzB;AD2zJI;;EAEE,yBA1EmB;AC/uJzB;AD6zJE;EACE,cA/EqB;AC3uJzB;ADs1II;EACE,0BALU;AC90IhB;ADs1II;EACE,0BATU;AC30IhB;ADu1II;EACE,qCAZc;ACz0IpB;ADw1II;EA/9DF,6JAAA;EAAA,4GAAA;EACA,yBAAA;EACA,2BAAA;ACt3EF;ADwqJI;EACE,qCAJc;ACjqJpB;ADwqJI;EAxzEF,6JAAA;EAAA,4GAAA;EACA,yBAAA;EACA,2BAAA;AC72EF;ADmsII;EACE,qCAPc;ACzrIpB;ADmsII;EACE,qCAVuB;ACvrI7B;ADosII;EACE,qCAbc;ACrrIpB;ADssIM;EACE,0BAjBiB;ACnrIzB;ADusIM;EACE,6BAAA;ACrsIR;AD4/II;EACE,0BATY;ACh/IlB;AD4/II;EACE,0BAZkB;AC9+IxB;AD8/IM;EACE,cAhBkB;AC5+I1B;AD+/IM;EACE,cAnBiB;AC1+IzB;ADggJM;EACE,cAtBe;ACx+IvB;ADogJM;EACE,cA7Be;ACr+IvB;ADugJM;EACE,0BAxCiB;AC79IzB;ADwgJM;EACE,0BAtCmB;ACh+I3B;ADmxEI;EACE,cAAA;AChxEN;ADmxEI;EACE,cAAA;ACjxEN;ADoxEI;EACE,cAAA;AClxEN;AD+3EE;EACE,0BAAA;AC53EJ;AD+3EE;;EAEE,0BAAA;AC53EJ;AD+3EE;EACE,oBAAA;AC53EJ;ADm0EE;EA4DI,0BAAA;AC53EN;ADg0EE;EA4DI,0BAAA;AC53EN;ADg0EE;EA4DI,0BAAA;AC53EN;ADg0EE;EA4DI,0BAAA;AC53EN;ADg0EE;EA4DI,0BAAA;AC53EN;ADo0EE;EAwDI,0BAAA;ACz3EN;ADq0EE;EAoDI,0BAAA;ACt3EN;ADs0EE;EAgDI,0BAAA;ACn3EN;ADs4EE;EACE,oBAAA;ACn4EJ;ADs4EE;;EAEE,oBAAA;ACn4EJ;ADs4EE;EACE,cAAA;ACn4EJ;ADy7EI;EACE,0BAAA;ACt7EN;ADy7EI;EACE,0BAAA;ACv7EN;AD07EI;EACE,0BAAA;ACx7EN;AD47EE;EACE,yBAAA;ACz7EJ;AD+7EI;;;;;EACE,+BAAA;ACx7EN;AD67EI;EACE,+BAAA;AC17EN;ADmhFE;EAEE,iBAAA;ACjhFJ;ADxyCE;EAnBA,kIAAA;UAAA,0HAAA;AC8zCF;ADihFE;EACE,uBAAA;EACA,0BAAA;AC9gFJ;ADihFM;EACE,0BAAA;AC/gFR;ADohFE;;EAEE,0BAAA;ACjhFJ;ADwhFI;;;;EACE,+BAAA;AClhFN;ADilFE;EACE,iBAAA;AC9kFJ;ADilFE;;EAEE,0BAAA;AC9kFJ;ADilFE;;EAEE,yCAAA;EACA,2CAAA;AC9kFJ;ADilFE;;EAEE,yCAAA;AC9kFJ;ADklFI;;;;EAIE,iCAAA;AC/kFN;ADomFI;EACE,gBAJK;AC7lFX;ADmoFE;EACE,aAAA;AChoFJ;ADmoFE;EACE,yBAAA;AChoFJ;ADmoFE;EACE,yBAAA;AChoFJ;ADooFI;EACE,aAAA;ACjoFN;ADooFI;EACE,yBAAA;ACloFN;ADqoFI;EACE,yBAAA;ACnoFN;ADwoFI;EACE,aAAA;ACroFN;ADwoFI;EACE,yBAAA;ACtoFN;ADyoFI;EACE,yBAAA;ACvoFN;AD+qFI;EACE,eAAA;AC5qFN;AD+qFI;EACE,eAAA;AC7qFN;ADgrFI;EACE,eAAA;AC9qFN;ADouFE;EACE,iCAAA;ACjuFJ;AD4sFE;EACE,qBAAA;ACzsFJ;AD4sFE;;EAIE,yBAAA;AC5sFJ;ADosFE;EACE,qBAAA;AClsFJ;ADqsFE;;EAIE,yBAAA;ACrsFJ;AD6rFE;EACE,qBAAA;AC3rFJ;AD8rFE;;EAIE,yBAAA;AC9rFJ;AD+tFM;;EAEE,iCAAA;AC7tFR;ADguFM;;EAEE,qCAAA;AC9tFR;ADiuFM;EACE,0BAAA;AC/tFR;ADquFI;EACE,uBAAA;ACnuFN;ADoxFE;EACE,0BAAA;ACjxFJ;ADoxFE;EACE,0BAAA;ACjxFJ;ADoxFE;EACE,0BAAA;ACjxFJ;ADoxFE;EACE,0BAAA;ACjxFJ;ADoxFE;EACE,iBAAA;ACjxFJ;ADp8CE;EAnBA,kIAAA;UAAA,0HAAA;AC09CF;ADixFI;EACE,+BAAA;AC/wFN;ADqxFM;EACE,cAAA;AClxFR;ADqxFM;EACE,cAAA;ACnxFR;ADsxFM;EACE,cAAA;ACpxFR;ADwxFI;EACE,cAAA;ACtxFN;ADyxFI;EACE,0BAAA;ACvxFN;ADi1FE;EACE,yBALmC;EAMnC,0BAAA;AC90FJ;ADi1FE;EACE,uBAXwB;EAYxB,0BAAA;AC90FJ;ADg1FI;EACE,uBAb2B;ACj0FjC;ADi1FI;EA30IF,qIAAA;UAAA,6HAAA;AC6/CF;ADq1FE;EACE,2CAvBmB;AC3zFvB;ADo1FI;EACE,0CA1BiB;EA2BjB,kBAAA;ACl1FN;ADs1FE;EACE,0CAhCmB;EAiCnB,kBAAA;ACn1FJ;ADq1FI;EACE,iBAAA;EACA,2CArCiB;AC9yFvB;ADu1FE;EAQI,oCAAA;AC31FN;ADq4FI;EACE,yBAAA;ACl4FN;ADq4FI;EAGE,0CAAA;ACr4FN;ADw4FI;EAGE,yBAAA;ACx4FN;AD23FI;EACE,yBAAA;ACz3FN;AD43FI;EAGE,wCAAA;AC53FN;AD+3FI;EAGE,yBAAA;AC/3FN;ADk3FI;EACE,yBAAA;ACh3FN;ADm3FI;EAGE,yCAAA;ACn3FN;ADs3FI;EAGE,yBAAA;ACt3FN;AD25FI;EAGE,uBAhBqB;AC34F3B;AD+5FE;EAh9IA,iIAAA;UAAA,yHAAA;EAk9IE,yBAAA;AC55FJ;AD+5FE;EACE,qCA3BoB;ACj4FxB;AD2+FE;EACE,qCAVqB;AC99FzB;AD+7FE;;;EAGE,yBAAA;AC57FJ;AD+7FE;EACE,YAAA;AC77FJ;ADg8FE;EAGE,uCADQ;AC/7FZ;ADm7FE;;;EAGE,yBAAA;ACh7FJ;ADm7FE;EACE,0BAAA;ACj7FJ;ADo7FE;EAGE,yCADQ;ACn7FZ;ADu6FE;;;EAGE,yBAAA;ACp6FJ;ADu6FE;EACE,YAAA;ACr6FJ;ADw6FE;EAGE,wCADQ;ACv6FZ;ADq9FI;;EACE,qCA3B2B;ACt7FjC;ADs9FI;;;EAGE,qCAlCwB;ACj7F9B;ADu9FM;EACE,qCAvCsB;AC96F9B;AD29FI;EAGE,qCADQ;ACz9Fd;ADo+FM;;EAEE,qCA3DqC;ACv6F7C;ADs+FQ;;EAEE,qCAhEyC;ACp6FnD;AD0+FM;EACE,iCA3EiB;EA4EjB,6BAAA;ACx+FR;AD6+FQ;EACE,iCAjFuB;AC15FjC;AD8+FQ;EACE,iCApFoB;ACx5F9B;ADk/FE;EACE,gCAvFsB;ACx5F1B;ADw/FE;EACE,6HAAA;EAIA,mIAAA;ACx/FJ;ADkgGE;EACE,8HAAA;AC//FJ;ADslGI;EAGE,qCAAA;ACrlGN;AD2lGI;EACE;IACE,gBAAA;ECzlGN;AACF;AD4lGI;;EAIE,0BAAA;AC5lGN;AD+lGI;EAGE,qCAAA;EACA,YAAA;AC/lGN;ADkmGI;;;EAGE,yBAAA;EACA,YAAA;AChmGN;ADmmGI;EACE,6BAAA;EACA,cAAA;ACjmGN;ADomGI;EACE,0BAAA;AClmGN;ADqmGI;EACE,cAAA;ACnmGN;ADumGE;EACE,uBAAA;ACpmGJ;ADumGE;EACE,sCAAA;ACpmGJ;ADumGE;;;EAGE,qCAAA;ACpmGJ;AD2oGI;EACE,YALK;ACnoGX;AD2oGI;;EAEE,kBAAA;ACxoGN;AD6oGI;EACE,UAAA;EACA,aAAA;AC1oGN;AD+oGM;EACE,SAAA;AC5oGR;ADipGI;EACE,SAAA;AC9oGN;AD8qGE;EAYI,cAAA;ACtrGN;ADmuGE;;EAEE,4CAJc;AC5tGlB;ADouGI;;EAEE,yCAVY;EAWZ,mBAAA;ACjuGN;ADquGE;EACE,0BAAA;ACluGJ;ADouGI;EACE,0BAAA;ACluGN;ADsuGE;EACE,iCAAA;ACnuGJ;ADsuGE;EACE,iCAAA;ACnuGJ;ADuuGE;;EAEE,mBAAA;EACA,gBAAA;ACpuGJ;ADgxGM;;;;;EACE,0CAAA;ACzwGR;AD8vGE;EACE,yBAAA;AC5vGJ;AD2vGE;EACE,uBAAA;ACzvGJ;ADkwGM;;;;;EACE,0CAAA;AC5vGR;ADivGE;EACE,yBAAA;AC/uGJ;AD8uGE;EACE,qCAAA;AC5uGJ;ADqvGM;;;;;EACE,0CAAA;AC/uGR;ADouGE;EACE,yBAAA;ACluGJ;ADiuGE;EACE,uBAAA;AC/tGJ;ADwuGM;;;;;EACE,0CAAA;ACluGR;AD0uGE;EACE,yBAAA;ACxuGJ;AD4uGE;EACE,YAAA;AC1uGJ;AD4uGI;EACE,+BAAA;AC1uGN;AD+uGE;EACE,mBAAA;AC7uGJ;ADgvGE;EACE,sCAAA;AC9uGJ;ADmvGE;EACE,2CAAA;ACjvGJ;AD+sGM;;;;;EACE,0CAAA;ACzsGR;ADitGE;EACE,yBAAA;AC/sGJ;ADmtGE;EACE,0BAAA;ACjtGJ;ADmtGI;EACE,yBAAA;ACjtGN;ADstGE;EACE,iCAAA;ACptGJ;ADutGE;EACE,gCAAA;ACrtGJ;AD0tGE;EACE,qCAAA;ACxtGJ;ADsrGM;;;;;EACE,0CAAA;AChrGR;ADwrGE;EACE,yBAAA;ACtrGJ;AD0rGE;EACE,YAAA;ACxrGJ;AD0rGI;EACE,+BAAA;ACxrGN;AD6rGE;EACE,mBAAA;AC3rGJ;AD8rGE;EACE,sCAAA;AC5rGJ;ADisGE;EACE,2CAAA;AC/rGJ;ADqzGE;EACE,sBAAA;EACA,0BAAA;AClzGJ;ADozGI;EApCF,mBAAA;EACA,YAAA;AC7wGF;ADozGI;EAxCF,mBAAA;EACA,0BAAA;ACzwGF;ADozGI;EA5CF,mBAAA;EACA,YAAA;ACrwGF;ADywGE;;;EAGE,8BAAA;ACvwGJ;AD0wGE;;;;;EAKE,cAAA;ACxwGJ;AD2wGE;EACE,yBAAA;ACzwGJ;AD4uGE;EACE,gBA4Ee;ACrzGnB;AD2uGE;EACE,YAyEe;ACjzGnB;AD6zGI;EAzFF;IACE,gBA8Ec;EC9yGhB;;EDkuGA;IACE,YA2Ec;EC1yGhB;AACF;AD81GE;EACE,iCAAA;AC51GJ;AD2vIE;EACE,iBAAA;ACxvIJ;AD2vIE;;EAEE,0BAAA;ACxvIJ;AD8wII;EACE,gBAJK;ACvwIX;ADo4GE;EAGE,+BAAA;EACA,mBAAA;EAzzKF,mIAAA;UAAA,2HAAA;ACu7DF;ADu4GE;EACE,cAAA;ACp4GJ\",\"sourcesContent\":[\"// File for which all imports are resolved and bundled. This is the entry-point for\\n// the `@angular/material` theming Sass bundle. See `//src/material:theming_bundle`.\\n\\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, $config, $opacity: $mat-elevation-opacity) {\\n $foreground: map-get($config, 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, $config, $opacity: $mat-elevation-opacity) {\\n $foreground: map-get($config, 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// Whether density should be generated by default.\\n$_mat-theme-generate-default-density: true !default;\\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// Validates the specified theme by ensuring that the optional color config defines\\n// a primary, accent and warn palette. Returns the theme if no failures were found.\\n@function _mat-validate-theme($theme) {\\n @if map_get($theme, color) {\\n $color: map_get($theme, color);\\n @if not map_get($color, primary) {\\n @error 'Theme does not define a valid \\\"primary\\\" palette.';\\n }\\n @else if not map_get($color, accent) {\\n @error 'Theme does not define a valid \\\"accent\\\" palette.';\\n }\\n @else if not map_get($color, warn) {\\n @error 'Theme does not define a valid \\\"warn\\\" palette.';\\n }\\n }\\n @return $theme;\\n}\\n\\n// Creates a backwards compatible theme. Previously in Angular Material, theme objects\\n// contained the color configuration directly. With the recent refactoring of the theming\\n// system to allow for density and typography configurations, this is no longer the case.\\n// To ensure that constructed themes which will be passed to custom theme mixins do not break,\\n// we copy the color configuration and put its properties at the top-level of the theme object.\\n// Here is an example of a pattern that should still work until it's officially marked as a\\n// breaking change:\\n//\\n// @mixin my-custom-component-theme($theme) {\\n// .my-comp {\\n// background-color: mat-color(map_get($theme, primary));\\n// }\\n// }\\n//\\n// Note that the `$theme.primary` key does usually not exist since the color configuration\\n// is stored in `$theme.color` which contains a property for `primary`. This method copies\\n// the map from `$theme.color` to `$theme` for backwards compatibility.\\n@function _mat-create-backwards-compatibility-theme($theme) {\\n @if not map_get($theme, color) {\\n @return $theme;\\n }\\n $color: map_get($theme, color);\\n @return map_merge($theme, $color);\\n}\\n\\n// Creates a light-themed color configuration from the specified\\n// primary, accent and warn palettes.\\n@function _mat-create-light-color-config($primary, $accent, $warn: null) {\\n @return (\\n primary: $primary,\\n accent: $accent,\\n warn: if($warn != null, $warn, mat-palette($mat-red)),\\n is-dark: false,\\n foreground: $mat-light-theme-foreground,\\n background: $mat-light-theme-background,\\n );\\n}\\n\\n// Creates a dark-themed color configuration from the specified\\n// primary, accent and warn palettes.\\n@function _mat-create-dark-color-config($primary, $accent, $warn: null) {\\n @return (\\n primary: $primary,\\n accent: $accent,\\n warn: if($warn != null, $warn, mat-palette($mat-red)),\\n is-dark: true,\\n foreground: $mat-dark-theme-foreground,\\n background: $mat-dark-theme-background,\\n );\\n}\\n\\n// Creates a container object for a light theme to be given to individual component theme mixins.\\n// TODO: Remove legacy API and rename `$primary` to `$config`. Currently it cannot be renamed\\n// as it would break existing apps that set the parameter by name.\\n@function mat-light-theme($primary, $accent: null, $warn: mat-palette($mat-red)) {\\n // This function creates a container object for the individual component theme mixins. Consumers\\n // can construct such an object by calling this function, or by building the object manually.\\n // There are two possible ways to invoke this function in order to create such an object:\\n //\\n // (1) Passing in a map that holds optional configurations for individual parts of the\\n // theming system. For `color` configurations, the function only expects the palettes\\n // for `primary` and `accent` (and optionally `warn`). The function will expand the\\n // shorthand into an actual configuration that can be consumed in `-color` mixins.\\n // (2) Legacy pattern: Passing in the palettes as parameters. This is not as flexible\\n // as passing in a configuration map because only the `color` system can be configured.\\n //\\n // If the legacy pattern is used, we generate a container object only with a light-themed\\n // configuration for the `color` theming part.\\n @if $accent != null {\\n @return _mat-create-backwards-compatibility-theme(_mat-validate-theme((\\n _is-legacy-theme: true,\\n color: _mat-create-light-color-config($primary, $accent, $warn),\\n )));\\n }\\n // If the map pattern is used (1), we just pass-through the configurations for individual\\n // parts of the theming system, but update the `color` configuration if set. As explained\\n // above, the color shorthand will be expanded to an actual light-themed color configuration.\\n $result: $primary;\\n @if map_get($primary, color) {\\n $color-settings: map_get($primary, color);\\n $primary: map_get($color-settings, primary);\\n $accent: map_get($color-settings, accent);\\n $warn: map_get($color-settings, warn);\\n $result: map_merge($result, (color: _mat-create-light-color-config($primary, $accent, $warn)));\\n }\\n @return _mat-create-backwards-compatibility-theme(_mat-validate-theme($result));\\n}\\n\\n// Creates a container object for a dark theme to be given to individual component theme mixins.\\n// TODO: Remove legacy API and rename `$primary` to `$config`. Currently it cannot be renamed\\n// as it would break existing apps that set the parameter by name.\\n@function mat-dark-theme($primary, $accent: null, $warn: mat-palette($mat-red)) {\\n // This function creates a container object for the individual component theme mixins. Consumers\\n // can construct such an object by calling this function, or by building the object manually.\\n // There are two possible ways to invoke this function in order to create such an object:\\n //\\n // (1) Passing in a map that holds optional configurations for individual parts of the\\n // theming system. For `color` configurations, the function only expects the palettes\\n // for `primary` and `accent` (and optionally `warn`). The function will expand the\\n // shorthand into an actual configuration that can be consumed in `-color` mixins.\\n // (2) Legacy pattern: Passing in the palettes as parameters. This is not as flexible\\n // as passing in a configuration map because only the `color` system can be configured.\\n //\\n // If the legacy pattern is used, we generate a container object only with a dark-themed\\n // configuration for the `color` theming part.\\n @if $accent != null {\\n @return _mat-create-backwards-compatibility-theme(_mat-validate-theme((\\n _is-legacy-theme: true,\\n color: _mat-create-dark-color-config($primary, $accent, $warn),\\n )));\\n }\\n // If the map pattern is used (1), we just pass-through the configurations for individual\\n // parts of the theming system, but update the `color` configuration if set. As explained\\n // above, the color shorthand will be expanded to an actual dark-themed color configuration.\\n $result: $primary;\\n @if map_get($primary, color) {\\n $color-settings: map_get($primary, color);\\n $primary: map_get($color-settings, primary);\\n $accent: map_get($color-settings, accent);\\n $warn: map_get($color-settings, warn);\\n $result: map_merge($result, (color: _mat-create-dark-color-config($primary, $accent, $warn)));\\n }\\n @return _mat-create-backwards-compatibility-theme(_mat-validate-theme($result));\\n}\\n\\n/// Gets the color configuration from the given theme or configuration.\\n@function mat-get-color-config($theme, $default: null) {\\n // If a configuration has been passed, return the config directly.\\n @if not _mat-is-theme-object($theme) {\\n @return $theme;\\n }\\n // If the theme has been constructed through the legacy theming API, we use the theme object\\n // as color configuration instead of the dedicated `color` property. We do this because for\\n // backwards compatibility, we copied the color configuration from `$theme.color` to `$theme`.\\n // Hence developers could customize the colors at top-level and want to respect these changes\\n // TODO: Remove when legacy theming API is removed.\\n @if _mat-is-legacy-constructed-theme($theme) {\\n @return $theme;\\n }\\n @if map_has_key($theme, color) {\\n @return map_get($theme, color);\\n }\\n @return $default;\\n}\\n\\n/// Gets the density configuration from the given theme or configuration.\\n@function mat-get-density-config($theme-or-config, $default: 0) {\\n // If a configuration has been passed, return the config directly.\\n @if not _mat-is-theme-object($theme-or-config) {\\n @return $theme-or-config;\\n }\\n // In case a theme has been passed, extract the configuration if present,\\n // or fall back to the default density config.\\n @if map_has_key($theme-or-config, density) {\\n @return map_get($theme-or-config, density);\\n }\\n @return $default;\\n}\\n\\n/// Gets the typography configuration from the given theme or configuration.\\n/// For backwards compatibility, typography is not included by default.\\n@function mat-get-typography-config($theme-or-config, $default: null) {\\n // If a configuration has been passed, return the config directly.\\n @if not _mat-is-theme-object($theme-or-config) {\\n @return $theme-or-config;\\n }\\n // In case a theme has been passed, extract the configuration if present,\\n // or fall back to the default typography config.\\n @if (map_has_key($theme-or-config, typography)) {\\n @return map_get($theme-or-config, typography);\\n }\\n @return $default;\\n}\\n\\n// Checks whether the given value resolves to a theme object. Theme objects are always\\n// of type `map` and can optionally only specify `color`, `density` or `typography`.\\n@function _mat-is-theme-object($value) {\\n @return type-of($value) == 'map' and (\\n map_has_key($value, color) or\\n map_has_key($value, density) or\\n map_has_key($value, typography) or\\n length($value) == 0\\n );\\n}\\n\\n// Checks whether a given value corresponds to a legacy constructed theme.\\n@function _mat-is-legacy-constructed-theme($value) {\\n @return type-of($value) == 'map' and map_get($value, '_is-legacy-theme');\\n}\\n\\n// Gets the theme from the given value that is either already a theme, or a color configuration.\\n// This handles the legacy case where developers pass a color configuration directly to the\\n// theme mixin. Before we introduced the new pattern for constructing a theme, developers passed\\n// the color configuration directly to the theme mixins. This can be still the case if developers\\n// construct a theme manually and pass it to a theme. We support this for backwards compatibility.\\n// TODO(devversion): remove this in the future. Constructing themes manually is rare,\\n// and the code can be easily updated to the new API.\\n@function _mat-legacy-get-theme($theme-or-color-config) {\\n @if _mat-is-theme-object($theme-or-color-config) {\\n @return $theme-or-color-config;\\n }\\n @return _mat-create-backwards-compatibility-theme((\\n _is-legacy-theme: true,\\n color: $theme-or-color-config\\n ));\\n}\\n\\n\\n\\n// Whether duplication warnings should be disabled. Warnings enabled by default.\\n$mat-theme-ignore-duplication-warnings: false !default;\\n\\n// Warning that will be printed if duplicated styles are generated by a theme.\\n$_mat-theme-duplicate-warning: 'Read more about how style duplication can be avoided in a ' +\\n 'dedicated guide. https://github.com/angular/components/blob/master/guides/duplicate-theming-styles.md';\\n\\n// These variable are not intended to be overridden externally. They use `!default` to\\n// avoid being reset every time this file is imported.\\n$_mat-theme-emitted-color: () !default;\\n$_mat-theme-emitted-typography: () !default;\\n$_mat-theme-emitted-density: () !default;\\n\\n// Checks if configurations that have been declared in the given theme have been generated\\n// before. If so, warnings will be reported. This should notify developers in case duplicate\\n// styles are accidentally generated due to wrong usage of the all-theme mixins.\\n//\\n// Additionally, this mixin controls the default value for the density configuration. By\\n// default, density styles are generated at scale zero. If the same density styles would be\\n// generated a second time though, the default value will change to avoid duplicate styles.\\n//\\n// The mixin keeps track of all configurations in a list that is scoped to the specified\\n// id. This is necessary because a given theme can be passed to multiple disjoint theme mixins\\n// (e.g. `angular-material-theme` and `angular-material-mdc-theme`) without causing any\\n// style duplication.\\n@mixin _mat-check-duplicate-theme-styles($theme-or-color-config, $id) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n $color-config: mat-get-color-config($theme);\\n $density-config: mat-get-density-config($theme);\\n $typography-config: mat-get-typography-config($theme);\\n // Lists of previous `color`, `density` and `typography` configurations.\\n $previous-color: map_get($_mat-theme-emitted-color, $id) or ();\\n $previous-typography: map_get($_mat-theme-emitted-typography, $id) or ();\\n $previous-density: map_get($_mat-theme-emitted-density, $id) or ();\\n // Whether duplicate legacy density styles would be generated.\\n $duplicate-legacy-density: false;\\n\\n // Check if the color configuration has been generated before.\\n @if $color-config != null {\\n @if index($previous-color, $color-config) != null and\\n not $mat-theme-ignore-duplication-warnings {\\n @warn 'The same color styles are generated multiple times. ' +\\n $_mat-theme-duplicate-warning;\\n }\\n $previous-color: append($previous-color, $color-config);\\n }\\n\\n // Check if the typography configuration has been generated before.\\n @if $typography-config != null {\\n @if index($previous-typography, $typography-config) != null and\\n not $mat-theme-ignore-duplication-warnings {\\n @warn 'The same typography styles are generated multiple times. ' +\\n $_mat-theme-duplicate-warning;\\n }\\n $previous-typography: append($previous-typography, $typography-config);\\n }\\n\\n // Check if the density configuration has been generated before.\\n @if $density-config != null {\\n @if index($previous-density, $density-config) != null {\\n // Only report a warning if density styles would be duplicated for non-legacy theme\\n // definitions. For legacy themes, we have compatibility logic that avoids duplication\\n // of default density styles. We don't want to report a warning in those cases.\\n @if _mat-is-legacy-constructed-theme($theme) {\\n $duplicate-legacy-density: true;\\n }\\n @else if not $mat-theme-ignore-duplication-warnings {\\n @warn 'The same density styles are generated multiple times. ' +\\n $_mat-theme-duplicate-warning;\\n }\\n }\\n $previous-density: append($previous-density, $density-config);\\n }\\n\\n $_mat-theme-emitted-color: map_merge(\\n $_mat-theme-emitted-color, ($id: $previous-color)) !global;\\n $_mat-theme-emitted-density: map_merge(\\n $_mat-theme-emitted-density, ($id: $previous-density)) !global;\\n $_mat-theme-emitted-typography: map_merge(\\n $_mat-theme-emitted-typography, ($id: $previous-typography)) !global;\\n\\n // Optionally, consumers of this mixin can wrap contents inside so that nested\\n // duplicate style checks do not report another warning. e.g. if developers include\\n // the `angular-material-theme` mixin twice, only the top-level duplicate styles check\\n // should report a warning. Not all individual components should report a warning too.\\n $orig-mat-theme-ignore-duplication-warnings: $mat-theme-ignore-duplication-warnings;\\n $mat-theme-ignore-duplication-warnings: true !global;\\n\\n // If duplicate default density styles would be generated for a legacy constructed theme,\\n // we adjust the density generation so that no density styles are generated by default.\\n // If no default density styles have been generated yet, we ensure that the styles\\n // are generated at root. For legacy themes our goal is to generate default density\\n // styles **once** and at root. This matches the old behavior where density styles were\\n // part of the base component styles (that did not use view encapsulation).\\n // TODO: Remove this compatibility logic when the legacy theming API is removed.\\n $_mat-density-generate-at-root: _mat-is-legacy-constructed-theme($theme) !global;\\n $_mat-density-generate-styles: not $duplicate-legacy-density !global;\\n\\n @content;\\n $mat-theme-ignore-duplication-warnings: $orig-mat-theme-ignore-duplication-warnings !global;\\n\\n $_mat-density-generate-at-root: false !global;\\n $_mat-density-generate-styles: true !global;\\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/* Colors for the ripple elements.*/\\n@mixin mat-ripple-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map_get($config, 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@mixin mat-ripple-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-ripple') {\\n $color: mat-get-color-config($theme);\\n @if $color != null {\\n @include mat-ripple-color($color);\\n }\\n }\\n}\\n\\n\\n\\n// This mixin ensures an element spans to fill the nearest ancestor with defined positioning.\\n@mixin mat-fill {\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n position: absolute;\\n}\\n\\n\\n/// Mixin that turns on strong focus indicators.\\n///\\n/// @example\\n/// .my-app {\\n/// @include mat-strong-focus-indicators($config);\\n/// }\\n@mixin mat-strong-focus-indicators($config: ()) {\\n // Default focus indicator config.\\n $default-config: (\\n border-style: solid,\\n border-width: 3px,\\n border-radius: 4px,\\n );\\n\\n // Merge default config with user config.\\n $config: map-merge($default-config, $config);\\n $border-style: map-get($config, border-style);\\n $border-width: map-get($config, border-width);\\n $border-radius: map-get($config, border-radius);\\n\\n // Base styles for focus indicators.\\n .mat-focus-indicator::before {\\n @include mat-fill();\\n box-sizing: border-box;\\n pointer-events: none;\\n border: $border-width $border-style transparent;\\n border-radius: $border-radius;\\n }\\n\\n // By default, all focus indicators are flush with the bounding box of their\\n // host element. For particular elements (listed below), default inset/offset\\n // values are necessary to ensure that the focus indicator is sufficiently\\n // contrastive and renders appropriately.\\n\\n .mat-focus-indicator.mat-flat-button::before,\\n .mat-focus-indicator.mat-raised-button::before,\\n .mat-focus-indicator.mat-fab::before,\\n .mat-focus-indicator.mat-mini-fab::before,\\n .mat-focus-indicator.mat-chip::before,\\n .mat-focus-indicator.mat-sort-header-container::before {\\n margin: -($border-width + 2px);\\n }\\n\\n .mat-focus-indicator.mat-stroked-button::before,\\n .mat-focus-indicator.mat-calendar-body-cell-content::before {\\n margin: -($border-width + 3px);\\n }\\n\\n .mat-focus-indicator.mat-tab-link::before,\\n .mat-focus-indicator.mat-tab-label::before {\\n margin: 5px;\\n }\\n\\n // Render the focus indicator on focus. Defining a pseudo element's\\n // content will cause it to render.\\n\\n // Checkboxes, radios, and slide toggles render focus indicators when the\\n // associated visually-hidden input is focused.\\n .mat-checkbox-input:focus ~ .mat-focus-indicator::before,\\n .mat-radio-input:focus ~ .mat-focus-indicator::before,\\n .mat-slide-toggle-input:focus ~ .mat-slide-toggle-thumb-container .mat-focus-indicator::before,\\n\\n // For options, render the focus indicator when the class .mat-active\\n // is present.\\n .mat-focus-indicator.mat-option.mat-active::before,\\n\\n // For calendar cells, render the focus indicator when the parent cell is\\n // focused.\\n .mat-calendar-body-cell:focus .mat-focus-indicator::before,\\n\\n // For all other components, render the focus indicator on focus.\\n .mat-focus-indicator:focus::before {\\n content: '';\\n }\\n}\\n\\n// Mixin that applies the border color for the focus indicators.\\n@mixin _mat-strong-focus-indicators-border-color($color) {\\n .mat-focus-indicator::before {\\n border-color: $color;\\n }\\n}\\n\\n@mixin mat-strong-focus-indicators-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n @include _mat-strong-focus-indicators-border-color(mat-color(map_get($config, primary)));\\n}\\n\\n/// Mixin that sets the color of the focus indicators.\\n///\\n/// @param {color|map} $theme-or-color\\n/// If theme, focus indicators are set to the primary color of the theme. If\\n/// color, focus indicators are set to that color.\\n///\\n/// @example\\n/// .demo-dark-theme {\\n/// @include mat-strong-focus-indicators-theme($dark-theme-map);\\n/// }\\n///\\n/// @example\\n/// .demo-red-theme {\\n/// @include mat-strong-focus-indicators-theme(#f00);\\n/// }\\n/* stylelint-disable-next-line material/theme-mixin-api */\\n@mixin mat-strong-focus-indicators-theme($theme-or-color) {\\n @if type-of($theme-or-color) != 'map' {\\n @include _mat-strong-focus-indicators-border-color($theme-or-color);\\n }\\n @else {\\n $theme: _mat-legacy-get-theme($theme-or-color);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-strong-focus-indicators') {\\n $color: mat-get-color-config($theme);\\n @if $color != null {\\n @include mat-strong-focus-indicators-color($color);\\n }\\n }\\n }\\n}\\n\\n// Mixin that ensures focus indicator host elements are positioned so that the focus indicator\\n// pseudo element within is positioned relative to the host. Private mixin included within\\n// `mat-core`.\\n@mixin _mat-strong-focus-indicators-positioning() {\\n .mat-focus-indicator {\\n position: relative;\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $background: map-get($config, background);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\n .mat-option {\\n font: {\\n family: mat-font-family($config);\\n size: mat-font-size($config, subheading-2);\\n }\\n }\\n}\\n\\n@mixin _mat-option-density($config-or-theme) {}\\n\\n@mixin mat-option-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-option') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-option-color($color);\\n }\\n @if $density != null {\\n @include _mat-option-density($density);\\n }\\n @if $typography != null {\\n @include mat-option-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-optgroup-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\n .mat-optgroup-label {\\n @include mat-typography-level-to-styles($config, body-2);\\n }\\n}\\n\\n@mixin _mat-optgroup-density($config-or-theme) {}\\n\\n@mixin mat-optgroup-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-optgroup') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-optgroup-color($color);\\n }\\n @if $density != null {\\n @include _mat-optgroup-density($density);\\n }\\n @if $typography != null {\\n @include mat-optgroup-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n@mixin mat-pseudo-checkbox-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $is-dark-theme: map-get($config, is-dark);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, 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($config, 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($config, 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($config, accent));\\n }\\n\\n .mat-warn .mat-pseudo-checkbox-checked,\\n .mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: mat-color(map-get($config, 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@mixin mat-pseudo-checkbox-typography($config-or-theme) {}\\n\\n@mixin _mat-pseudo-checkbox-density($config-or-theme) {}\\n\\n@mixin mat-pseudo-checkbox-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-pseudo-checkbox') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-pseudo-checkbox-color($color);\\n }\\n @if $density != null {\\n @include _mat-pseudo-checkbox-density($density);\\n }\\n @if $typography != null {\\n @include mat-pseudo-checkbox-typography($typography);\\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/* stylelint-disable-next-line material/theme-mixin-api */\\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\\n@mixin mat-autocomplete-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $background: map-get($config, background);\\n\\n .mat-autocomplete-panel {\\n @include _mat-theme-overridable-elevation(4, $config);\\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@mixin mat-autocomplete-typography($config-or-theme) {}\\n\\n@mixin _mat-autocomplete-density($config-or-theme) {}\\n\\n@mixin mat-autocomplete-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-autocomplete') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-autocomplete-color($color);\\n }\\n @if $density != null {\\n @include _mat-autocomplete-density($density);\\n }\\n @if $typography != null {\\n @include mat-autocomplete-typography($typography);\\n }\\n }\\n}\\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\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $primary: map-get($config, primary);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-badge-density($config-or-theme) {}\\n\\n@mixin mat-badge-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-badge') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-badge-color($color);\\n }\\n @if $density != null {\\n @include _mat-badge-density($density);\\n }\\n @if $typography != null {\\n @include mat-badge-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-bottom-sheet-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n $foreground: map-get($config, foreground);\\n\\n .mat-bottom-sheet-container {\\n @include _mat-theme-elevation(16, $config);\\n background: mat-color($background, dialog);\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-bottom-sheet-typography($config-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\n .mat-bottom-sheet-container {\\n @include mat-typography-level-to-styles($config, body-1);\\n }\\n}\\n\\n@mixin _mat-bottom-sheet-density($config-or-theme) {}\\n\\n@mixin mat-bottom-sheet-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-bottom-sheet') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-bottom-sheet-color($color);\\n }\\n @if $density != null {\\n @include _mat-bottom-sheet-density($density);\\n }\\n @if $typography != null {\\n @include mat-bottom-sheet-typography($typography);\\n }\\n }\\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($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, 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 &.mat-button-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, &.mat-button-disabled {\\n &.mat-button-disabled {\\n $palette: if($property == 'color', $foreground, $background);\\n #{$property}: mat-color($palette, disabled-button);\\n }\\n }\\n}\\n\\n@mixin mat-button-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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($config, 'color', text);\\n @include _mat-button-focus-overlay-color($config);\\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(.mat-button-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($config, 'color', default-contrast);\\n @include _mat-button-theme-property($config, 'background-color', default);\\n @include _mat-button-ripple-color($config, default-contrast);\\n }\\n\\n .mat-stroked-button, .mat-flat-button {\\n @include _mat-theme-overridable-elevation(0, $config);\\n }\\n\\n .mat-raised-button {\\n @include _mat-theme-overridable-elevation(2, $config);\\n\\n &:not(.mat-button-disabled):active {\\n @include _mat-theme-overridable-elevation(8, $config);\\n }\\n\\n &.mat-button-disabled {\\n @include _mat-theme-overridable-elevation(0, $config);\\n }\\n }\\n\\n .mat-fab, .mat-mini-fab {\\n @include _mat-theme-overridable-elevation(6, $config);\\n\\n &:not(.mat-button-disabled):active {\\n @include _mat-theme-overridable-elevation(12, $config);\\n }\\n\\n &.mat-button-disabled {\\n @include _mat-theme-overridable-elevation(0, $config);\\n }\\n }\\n}\\n\\n@mixin mat-button-typography($config-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-button-density($config-or-theme) {}\\n\\n@mixin mat-button-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-button') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-button-color($color);\\n }\\n @if $density != null {\\n @include _mat-button-density($density);\\n }\\n @if $typography != null {\\n @include mat-button-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n// Taken from mat-density with small modifications to not rely on the new Sass module\\n// system, and to support arbitrary properties in a density configuration.\\n// https://github.com/material-components/material-components-web/blob/master/packages/mdc-density\\n\\n$_mat-density-interval: 4px !default;\\n$_mat-density-minimum-scale: minimum !default;\\n$_mat-density-maximum-scale: maximum !default;\\n$_mat-density-supported-scales: (default, minimum, maximum) !default;\\n$_mat-density-default-scale: 0 !default;\\n\\n// Whether density should be generated at root. This will be temporarily set to `true`\\n// whenever density styles for legacy themes are generated.\\n$_mat-density-generate-at-root: false;\\n// Whether density styles should be generated. This will be temporarily set to `false` if\\n// duplicate density styles for a legacy theme would be generated. For legacy themes,\\n// we always generate the default density **only once** at root.\\n$_mat-density-generate-styles: true;\\n\\n// Mixin that can be used to wrap density styles of given components. The mixin will\\n// move the density styles to root if the `$_mat-density-generate-at-root` global variable\\n// is set. If `$_mat-density-generate-styles` is set to `false`, generation of density\\n// styles wrapped in this mixin is skipped. This mixin exists to improve backwards compatibility\\n// of the new theming API where density styles are included as part of themes. Previously,\\n// density styles of components were part of their base styles. With the new API, they are\\n// part of the theming system. The `<..>-theme` mixins generate density by default unless\\n// the density configuration is explicitly specified as per new API. This means, that projects\\n// using `<..>-theme` mixins for separate themes (like `.dark-theme`) will cause duplicate\\n// density styles. This is breaking as it increases specificity of density styles. This mixin\\n// provides an API to control generation of density styles so that we can ensure they are only\\n// created *once* and at root.\\n@mixin _mat-density-legacy-compatibility() {\\n @if $_mat-density-generate-styles and $_mat-density-generate-at-root {\\n @at-root {\\n @content;\\n }\\n }\\n @else if $_mat-density-generate-styles {\\n @content;\\n }\\n}\\n\\n@function _mat-density-prop-value($density-config, $density-scale, $property-name) {\\n @if (type-of($density-scale) == 'string' and\\n index($list: $_mat-density-supported-scales, $value: $density-scale) == null) {\\n @error 'mat-density: Supported density scales #{$_mat-density-supported-scales}, ' +\\n 'but received #{$density-scale}.';\\n }\\n\\n $value: null;\\n $property-scale-map: map_get($density-config, $property-name);\\n\\n @if map_has_key($property-scale-map, $density-scale) {\\n $value: map_get($property-scale-map, $density-scale);\\n }\\n @else {\\n $value: map_get($property-scale-map, default) + $density-scale * $_mat-density-interval;\\n }\\n\\n $min-value: map_get($property-scale-map, $_mat-density-minimum-scale);\\n $max-value: map_get($property-scale-map, $_mat-density-maximum-scale);\\n\\n @if ($value < $min-value or $value > $max-value) {\\n @error 'mat-density: #{$property-name} must be between #{$min-value} and ' +\\n '#{$max-value} (inclusive), but received #{$value}.';\\n }\\n\\n @return $value;\\n}\\n\\n$mat-button-toggle-standard-height: 48px !default;\\n// Minimum height for highest density can vary based on the content that developers\\n// project into button-toggle's. We use a minimum of `24px` though because commonly\\n// icons or text are displayed. Icons by default have a size of `24px`.\\n$mat-button-toggle-standard-minimum-height: 24px !default;\\n$mat-button-toggle-standard-maximum-height: $mat-button-toggle-standard-height !default;\\n\\n$mat-button-toggle-standard-density-config: (\\n height: (\\n default: $mat-button-toggle-standard-height,\\n maximum: $mat-button-toggle-standard-maximum-height,\\n minimum: $mat-button-toggle-standard-minimum-height,\\n )\\n) !default;\\n\\n\\n@mixin mat-button-toggle-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $background: map-get($config, 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, $config);\\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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\n .mat-button-toggle {\\n font-family: mat-font-family($config);\\n }\\n}\\n\\n@mixin _mat-button-toggle-density($config-or-theme) {\\n $density-scale: mat-get-density-config($config-or-theme);\\n $standard-height: _mat-density-prop-value(\\n $mat-button-toggle-standard-density-config, $density-scale, height);\\n\\n @include _mat-density-legacy-compatibility() {\\n .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {\\n line-height: $standard-height;\\n }\\n }\\n}\\n\\n@mixin mat-button-toggle-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-button-toggle') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-button-toggle-color($color);\\n }\\n @if $density != null {\\n @include _mat-button-toggle-density($density);\\n }\\n @if $typography != null {\\n @include mat-button-toggle-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-card-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n $foreground: map-get($config, foreground);\\n\\n .mat-card {\\n @include _mat-theme-overridable-elevation(1, $config);\\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, $config);\\n }\\n }\\n\\n .mat-card-subtitle {\\n color: mat-color($foreground, secondary-text);\\n }\\n}\\n\\n@mixin mat-card-typography($config-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-card-density($config-or-theme) {}\\n\\n@mixin mat-card-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-card') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-card-color($color);\\n }\\n @if $density != null {\\n @include _mat-card-density($density);\\n }\\n @if $typography != null {\\n @include mat-card-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-checkbox-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $is-dark-theme: map-get($config, is-dark);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-checkbox-density($config-or-theme) {}\\n\\n@mixin mat-checkbox-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-checkbox') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-checkbox-color($color);\\n }\\n @if $density != null {\\n @include _mat-checkbox-density($density);\\n }\\n @if $typography != null {\\n @include mat-checkbox-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n$mat-chip-remove-font-size: 18px;\\n\\n@mixin _mat-chip-element-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-chip-theme-color($palette) {\\n @include _mat-chip-element-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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $is-dark-theme: map-get($config, is-dark);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-chip-element-color($unselected-foreground, $unselected-background);\\n\\n &:not(.mat-chip-disabled) {\\n &:active {\\n @include _mat-theme-elevation(3, $config);\\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-chip-theme-color($primary);\\n }\\n\\n &.mat-warn {\\n @include _mat-chip-theme-color($warn);\\n }\\n\\n &.mat-accent {\\n @include _mat-chip-theme-color($accent);\\n }\\n }\\n}\\n\\n@mixin mat-chips-typography($config-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-chips-density($config-or-theme) {}\\n\\n@mixin mat-chips-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-chips') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-chips-color($color);\\n }\\n @if $density != null {\\n @include _mat-chips-density($density);\\n }\\n @if $typography != null {\\n @include mat-chips-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-divider-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, 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@mixin mat-divider-typography($config-or-theme) {}\\n\\n@mixin _mat-divider-density($config-or-theme) {}\\n\\n@mixin mat-divider-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-divider') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-divider-color($color);\\n }\\n @if $density != null {\\n @include _mat-divider-density($density);\\n }\\n @if $typography != null {\\n @include mat-divider-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-table-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-table-density($config-or-theme) {}\\n\\n@mixin mat-table-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-table') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-table-color($color);\\n }\\n @if $density != null {\\n @include _mat-table-density($density);\\n }\\n @if $typography != null {\\n @include mat-table-typography($typography);\\n }\\n }\\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-range-fade-amount: 0.2;\\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 @include mat-date-range-colors(\\n mat-color($palette, default, $mat-datepicker-range-fade-amount));\\n\\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// Utility mixin to target cells that aren't selected. Used to make selector easier to follow.\\n@mixin _mat-datepicker-unselected-cell {\\n &:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {\\n @content;\\n }\\n}\\n\\n@mixin mat-datepicker-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $background: map-get($config, background);\\n $disabled-color: mat-color($foreground, disabled-text);\\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 .mat-date-range-input-separator {\\n color: mat-color($foreground, text);\\n border-color: transparent;\\n }\\n\\n .mat-calendar-body-disabled > .mat-calendar-body-cell-content {\\n @include _mat-datepicker-unselected-cell {\\n color: $disabled-color;\\n }\\n }\\n\\n .mat-form-field-disabled .mat-date-range-input-separator {\\n color: $disabled-color;\\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 {\\n @include _mat-datepicker-unselected-cell {\\n background-color: mat-color($background, hover);\\n }\\n }\\n }\\n\\n .mat-calendar-body-in-preview {\\n $divider-color: mat-color($foreground, divider);\\n\\n @if type-of($divider-color) == color {\\n // The divider color is set under the assumption that it'll be used\\n // for a solid border, but because we're using a dashed border for the\\n // preview range, we need to bump its opacity to ensure that it's visible.\\n color: rgba($divider-color, min(opacity($divider-color) * 2, 1));\\n }\\n @else {\\n color: $divider-color;\\n }\\n }\\n\\n .mat-calendar-body-today {\\n @include _mat-datepicker-unselected-cell {\\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\\n .mat-calendar-body-disabled > .mat-calendar-body-today {\\n @include _mat-datepicker-unselected-cell {\\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\\n @include _mat-datepicker-color(map-get($config, primary));\\n\\n .mat-datepicker-content {\\n @include _mat-theme-elevation(4, $config);\\n background-color: mat-color($background, card);\\n color: mat-color($foreground, text);\\n\\n &.mat-accent {\\n @include _mat-datepicker-color(map-get($config, accent));\\n }\\n\\n &.mat-warn {\\n @include _mat-datepicker-color(map-get($config, warn));\\n }\\n }\\n\\n .mat-datepicker-content-touch {\\n @include _mat-theme-elevation(0, $config);\\n }\\n\\n .mat-datepicker-toggle-active {\\n color: mat-color(map-get($config, primary), text);\\n\\n &.mat-accent {\\n color: mat-color(map-get($config, accent), text);\\n }\\n\\n &.mat-warn {\\n color: mat-color(map-get($config, warn), text);\\n }\\n }\\n\\n .mat-date-range-input-inner[disabled] {\\n color: mat-color($foreground, disabled-text);\\n }\\n}\\n\\n@mixin mat-datepicker-typography($config-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin mat-date-range-colors(\\n $range-color,\\n $comparison-color: rgba(#f9ab00, $mat-datepicker-range-fade-amount),\\n $overlap-color: #a8dab5,\\n $overlap-selected-color: darken($overlap-color, 30%)) {\\n\\n .mat-calendar-body-in-range::before {\\n background: $range-color;\\n }\\n\\n .mat-calendar-body-comparison-identical,\\n .mat-calendar-body-in-comparison-range::before {\\n background: $comparison-color;\\n }\\n\\n .mat-calendar-body-comparison-bridge-start::before,\\n [dir='rtl'] .mat-calendar-body-comparison-bridge-end::before {\\n background: linear-gradient(to right, $range-color 50%, $comparison-color 50%);\\n }\\n\\n .mat-calendar-body-comparison-bridge-end::before,\\n [dir='rtl'] .mat-calendar-body-comparison-bridge-start::before {\\n background: linear-gradient(to left, $range-color 50%, $comparison-color 50%);\\n }\\n\\n .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,\\n .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {\\n background: $overlap-color;\\n }\\n\\n .mat-calendar-body-comparison-identical.mat-calendar-body-selected,\\n .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {\\n background: $overlap-selected-color;\\n }\\n}\\n\\n@mixin _mat-datepicker-density($config-or-theme) {}\\n\\n@mixin mat-datepicker-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-datepicker') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-datepicker-color($color);\\n }\\n @if $density != null {\\n @include _mat-datepicker-density($density);\\n }\\n @if $typography != null {\\n @include mat-datepicker-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-dialog-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n $foreground: map-get($config, foreground);\\n\\n .mat-dialog-container {\\n @include _mat-theme-elevation(24, $config);\\n background: mat-color($background, dialog);\\n color: mat-color($foreground, text);\\n }\\n}\\n\\n@mixin mat-dialog-typography($config-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\n .mat-dialog-title {\\n @include mat-typography-level-to-styles($config, title);\\n }\\n}\\n\\n@mixin _mat-dialog-density($config-or-theme) {}\\n\\n@mixin mat-dialog-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-dialog') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-dialog-color($color);\\n }\\n @if $density != null {\\n @include _mat-dialog-density($density);\\n }\\n @if $typography != null {\\n @include mat-dialog-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n// Default minimum and maximum height for collapsed panel headers.\\n$mat-expansion-panel-header-collapsed-height: 48px !default;\\n$mat-expansion-panel-header-collapsed-minimum-height: 36px !default;\\n$mat-expansion-panel-header-collapsed-maximum-height:\\n $mat-expansion-panel-header-collapsed-height !default;\\n\\n// Default minimum and maximum height for expanded panel headers.\\n$mat-expansion-panel-header-expanded-height: 64px !default;\\n$mat-expansion-panel-header-expanded-minimum-height: 48px !default;\\n$mat-expansion-panel-header-expanded-maximum-height:\\n $mat-expansion-panel-header-expanded-height !default;\\n\\n// Density configuration for the expansion panel. Captures the\\n// height for both expanded and collapsed panel headers.\\n$mat-expansion-panel-header-density-config: (\\n collapsed-height: (\\n default: $mat-expansion-panel-header-collapsed-height,\\n maximum: $mat-expansion-panel-header-collapsed-maximum-height,\\n minimum: $mat-expansion-panel-header-collapsed-minimum-height,\\n ),\\n expanded-height: (\\n default: $mat-expansion-panel-header-expanded-height,\\n maximum: $mat-expansion-panel-header-expanded-maximum-height,\\n minimum: $mat-expansion-panel-header-expanded-minimum-height,\\n )\\n) !default;\\n\\n// Note: Keep this in sync with the animation timing for the toggle indicator\\n// and body expansion. These are animated using Angular animations.\\n$mat-expansion-panel-header-transition: 225ms cubic-bezier(0.4, 0, 0.2, 1);\\n\\n\\n@mixin mat-expansion-panel-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n $foreground: map-get($config, foreground);\\n\\n .mat-expansion-panel {\\n @include _mat-theme-overridable-elevation(2, $config);\\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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-expansion-panel-density($config-or-theme) {\\n $density-scale: mat-get-density-config($config-or-theme);\\n $expanded-height: _mat-density-prop-value(\\n $mat-expansion-panel-header-density-config, $density-scale, expanded-height);\\n $collapsed-height: _mat-density-prop-value(\\n $mat-expansion-panel-header-density-config, $density-scale, collapsed-height);\\n\\n @include _mat-density-legacy-compatibility() {\\n .mat-expansion-panel-header {\\n height: $collapsed-height;\\n\\n &.mat-expanded {\\n height: $expanded-height;\\n }\\n }\\n }\\n}\\n\\n@mixin mat-expansion-panel-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-expansion-panel') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-expansion-panel-color($color);\\n }\\n @if $density != null {\\n @include _mat-expansion-panel-density($density);\\n }\\n @if $typography != null {\\n @include mat-expansion-panel-typography($typography);\\n }\\n }\\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 flex: auto;\\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-color($config-or-theme) {}\\n\\n@mixin mat-grid-list-typography($config-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-grid-list-density($config-or-theme) {}\\n\\n@mixin mat-grid-list-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-grid-list') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-grid-list-color($color);\\n }\\n @if $density != null {\\n @include _mat-grid-list-density($density);\\n }\\n @if $typography != null {\\n @include mat-grid-list-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n@mixin mat-icon-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-or-theme) {}\\n\\n@mixin _mat-icon-density($config-or-theme) {}\\n\\n@mixin mat-icon-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-icon') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-icon-color($color);\\n }\\n @if $density != null {\\n @include _mat-icon-density($density);\\n }\\n @if $typography != null {\\n @include mat-icon-typography($typography);\\n }\\n }\\n}\\n\\n\\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($config) {\\n $foreground: map-get($config, foreground);\\n $is-dark-theme: map-get($config, 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\\n@mixin position-sticky {\\n position: -webkit-sticky;\\n position: sticky;\\n}\\n/* stylelint-enable */\\n\\n\\n\\n@mixin mat-input-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $foreground: map-get($config, 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($config);\\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($config, 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-form-field.mat-accent .mat-input-element {\\n caret-color: mat-color($accent, text);\\n }\\n\\n .mat-form-field.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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-input-density($config-or-theme) {}\\n\\n@mixin mat-input-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-input') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-input-color($color);\\n }\\n @if $density != null {\\n @include _mat-input-density($density);\\n }\\n @if $typography != null {\\n @include mat-input-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-list-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-list-density($config-or-theme) {}\\n\\n@mixin mat-list-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-list') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-list-color($color);\\n }\\n @if $density != null {\\n @include _mat-list-density($density);\\n }\\n @if $typography != null {\\n @include mat-list-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-menu-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n $foreground: map-get($config, foreground);\\n\\n .mat-menu-panel {\\n @include _mat-theme-overridable-elevation(4, $config);\\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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-menu-density($config-or-theme) {}\\n\\n@mixin mat-menu-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-menu') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-menu-color($color);\\n }\\n @if $density != null {\\n @include _mat-menu-density($density);\\n }\\n @if $typography != null {\\n @include mat-menu-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n$mat-paginator-height: 56px !default;\\n// Minimum height for paginator's in the highest density is determined based on how\\n// much the paginator can shrink until the content exceeds (i.e. navigation buttons).\\n$mat-paginator-minimum-height: 40px !default;\\n$mat-paginator-maximum-height: $mat-paginator-height !default;\\n\\n$mat-paginator-density-config: (\\n height: (\\n default: $mat-paginator-height,\\n maximum: $mat-paginator-maximum-height,\\n minimum: $mat-paginator-minimum-height,\\n )\\n) !default;\\n\\n\\n@mixin mat-paginator-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $background: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-paginator-density($config-or-theme) {\\n $density-scale: mat-get-density-config($config-or-theme);\\n $height: _mat-density-prop-value($mat-paginator-density-config, $density-scale, height);\\n\\n @include _mat-density-legacy-compatibility() {\\n .mat-paginator-container {\\n min-height: $height;\\n }\\n }\\n}\\n\\n@mixin mat-paginator-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-paginator') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-paginator-color($color);\\n }\\n @if $density != null {\\n @include _mat-paginator-density($density);\\n }\\n @if $typography != null {\\n @include mat-paginator-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n@mixin mat-progress-bar-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, 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-or-theme) {}\\n\\n@mixin _mat-progress-bar-density($config-or-theme) {}\\n\\n@mixin mat-progress-bar-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-progress-bar') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-progress-bar-color($color);\\n }\\n @if $density != null {\\n @include _mat-progress-bar-density($density);\\n }\\n @if $typography != null {\\n @include mat-progress-bar-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-progress-spinner-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, 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-or-theme) {}\\n\\n@mixin _mat-progress-spinner-density($config-or-theme) {}\\n\\n@mixin mat-progress-spinner-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-progress-spinner') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-progress-spinner-color($color);\\n }\\n @if $density != null {\\n @include _mat-progress-spinner-density($density);\\n }\\n @if $typography != null {\\n @include mat-progress-spinner-typography($typography);\\n }\\n }\\n}\\n\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\n .mat-radio-button {\\n font-family: mat-font-family($config);\\n }\\n}\\n\\n@mixin _mat-radio-density($config-or-theme) {}\\n\\n@mixin mat-radio-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-radio') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-radio-color($color);\\n }\\n @if $density != null {\\n @include _mat-radio-density($density);\\n }\\n @if $typography != null {\\n @include mat-radio-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-select-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $background: map-get($config, background);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n\\n .mat-select-value {\\n color: mat-color($foreground, text);\\n }\\n\\n .mat-select-placeholder {\\n color: _mat-control-placeholder-color($config);\\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, $config);\\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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-select-density($config-or-theme) {}\\n\\n@mixin mat-select-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-select') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-select-color($color);\\n }\\n @if $density != null {\\n @include _mat-select-density($density);\\n }\\n @if $typography != null {\\n @include mat-select-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-sidenav-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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, $config);\\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-or-theme) {}\\n\\n@mixin _mat-sidenav-density($config-or-theme) {}\\n\\n@mixin mat-sidenav-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-sidenav') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-sidenav-color($color);\\n }\\n @if $density != null {\\n @include _mat-sidenav-density($density);\\n }\\n @if $typography != null {\\n @include mat-sidenav-typography($typography);\\n }\\n }\\n}\\n\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $is-dark: map_get($config, is-dark);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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, $config);\\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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\n .mat-slide-toggle-content {\\n font-family: mat-font-family($config);\\n }\\n}\\n\\n@mixin _mat-slide-toggle-density($config-or-theme) {}\\n\\n@mixin mat-slide-toggle-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-slide-toggle') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-slide-toggle-color($color);\\n }\\n @if $density != null {\\n @include _mat-slide-toggle-density($density);\\n }\\n @if $typography != null {\\n @include mat-slide-toggle-typography($typography);\\n }\\n }\\n}\\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 .mat-slider-focus-ring {\\n $opacity: 0.2;\\n $color: mat-color($palette, 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\\n@mixin mat-slider-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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: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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-slider-density($config-or-theme) {}\\n\\n@mixin mat-slider-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-slider') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-slider-color($color);\\n }\\n @if $density != null {\\n @include _mat-slider-density($density);\\n }\\n @if $typography != null {\\n @include mat-slider-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n$mat-stepper-header-height: 72px !default;\\n// Minimum height for highest density stepper's is determined based on how much\\n// stepper headers can shrink until the step icon or step label exceed. We can't use\\n// a value below `42px` because the optional label for steps would otherwise exceed.\\n$mat-stepper-header-minimum-height: 42px !default;\\n$mat-stepper-header-maximum-height: $mat-stepper-header-height !default;\\n\\n$mat-stepper-density-config: (\\n height: (\\n default: $mat-stepper-header-height,\\n maximum: $mat-stepper-header-maximum-height,\\n minimum: $mat-stepper-header-minimum-height,\\n )\\n) !default;\\n\\n// Note: These variables are not denoted with `!default` because they are used in the non-theme\\n// component styles. Modifying these variables does not have the desired effect for consumers.\\n$mat-stepper-label-header-height: 24px;\\n$mat-stepper-label-position-bottom-top-gap: 16px;\\n$mat-stepper-label-min-width: 50px;\\n\\n$mat-vertical-stepper-content-margin: 36px;\\n\\n$mat-stepper-side-gap: 24px;\\n$mat-stepper-line-width: 1px;\\n$mat-stepper-line-gap: 8px;\\n\\n$mat-step-sub-label-font-size: 12px;\\n$mat-step-header-icon-size: 16px;\\n\\n\\n@mixin mat-stepper-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $background: map-get($config, background);\\n $primary: map-get($config, primary);\\n $warn: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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-stepper-density($config-or-theme) {\\n $density-scale: mat-get-density-config($config-or-theme);\\n $height: _mat-density-prop-value($mat-stepper-density-config, $density-scale, height);\\n $vertical-padding: ($height - $mat-stepper-label-header-height) / 2;\\n\\n @include _mat-density-legacy-compatibility() {\\n .mat-horizontal-stepper-header {\\n height: $height;\\n }\\n\\n .mat-stepper-label-position-bottom .mat-horizontal-stepper-header,\\n .mat-vertical-stepper-header, {\\n padding: $vertical-padding $mat-stepper-side-gap;\\n }\\n\\n // Ensures that the vertical lines for the step content exceed into the step\\n // headers with a given distance (`$mat-stepper-line-gap`) to the step icon.\\n .mat-stepper-vertical-line::before {\\n top: $mat-stepper-line-gap - $vertical-padding;\\n bottom: $mat-stepper-line-gap - $vertical-padding;\\n }\\n\\n // Ensures that the horizontal lines for the step header are centered vertically.\\n .mat-stepper-label-position-bottom .mat-horizontal-stepper-header {\\n &::after, &::before {\\n top: $vertical-padding + $mat-stepper-label-header-height / 2;\\n }\\n }\\n\\n // Ensures that the horizontal line for the step content is aligned centered vertically.\\n .mat-stepper-label-position-bottom .mat-stepper-horizontal-line {\\n top: $vertical-padding + $mat-stepper-label-header-height / 2;\\n }\\n }\\n}\\n\\n@mixin mat-stepper-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-stepper') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-stepper-color($color);\\n }\\n @if $density != null {\\n @include _mat-stepper-density($density);\\n }\\n @if $typography != null {\\n @include mat-stepper-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n@mixin mat-sort-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-transparent 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-or-theme) {}\\n\\n@mixin _mat-sort-density($config-or-theme) {}\\n\\n@mixin mat-sort-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-sort') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-sort-color($color);\\n }\\n @if $density != null {\\n @include _mat-sort-density($density);\\n }\\n @if $typography != null {\\n @include mat-sort-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n@mixin mat-tabs-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-tabs-density($config-or-theme) {}\\n\\n@mixin mat-tabs-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-tabs') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-tabs-color($color);\\n }\\n @if $density != null {\\n @include _mat-tabs-density($density);\\n }\\n @if $typography != null {\\n @include mat-tabs-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n// Minimum height for toolbar's in the highest density is difficult to determine because\\n// developers can project arbitrary content. We use a minimum value that ensures that most\\n// common content (e.g. icon buttons) does not exceed the row boundaries in highest density.\\n$mat-toolbar-minimum-height: 44px !default;\\n\\n$mat-toolbar-height-desktop: 64px !default;\\n$mat-toolbar-maximum-height-desktop: $mat-toolbar-height-desktop !default;\\n$mat-toolbar-minimum-height-desktop: $mat-toolbar-minimum-height !default;\\n\\n$mat-toolbar-height-mobile: 56px !default;\\n$mat-toolbar-maximum-height-mobile: $mat-toolbar-height-mobile !default;\\n$mat-toolbar-minimum-height-mobile: $mat-toolbar-minimum-height !default;\\n\\n$mat-toolbar-desktop-density-config: (\\n height: (\\n default: $mat-toolbar-height-desktop,\\n maximum: $mat-toolbar-maximum-height-desktop,\\n minimum: $mat-toolbar-minimum-height-desktop,\\n )\\n) !default;\\n\\n$mat-toolbar-mobile-density-config: (\\n height: (\\n default: $mat-toolbar-height-mobile,\\n maximum: $mat-toolbar-maximum-height-mobile,\\n minimum: $mat-toolbar-minimum-height-mobile,\\n )\\n) !default;\\n\\n\\n@mixin _mat-toolbar-height($height) {\\n .mat-toolbar-multiple-rows {\\n min-height: $height;\\n }\\n .mat-toolbar-row, .mat-toolbar-single-row {\\n height: $height;\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-toolbar-density($config-or-theme) {\\n $density-scale: mat-get-density-config($config-or-theme);\\n $height-desktop: _mat-density-prop-value(\\n $mat-toolbar-desktop-density-config, $density-scale, height);\\n $height-mobile: _mat-density-prop-value(\\n $mat-toolbar-mobile-density-config, $density-scale, height);\\n\\n @include _mat-density-legacy-compatibility() {\\n // Set the default height for the toolbar.\\n @include _mat-toolbar-height($height-desktop);\\n\\n // As per specs, toolbars should have a different height in mobile devices. This has been\\n // specified in the old guidelines and is still observable in the new specifications by\\n // looking at the spec images. See: https://material.io/design/components/app-bars-top.html#anatomy\\n @media ($mat-xsmall) {\\n @include _mat-toolbar-height($height-mobile);\\n }\\n }\\n}\\n\\n@mixin mat-toolbar-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-toolbar') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-toolbar-color($color);\\n }\\n @if $density != null {\\n @include _mat-toolbar-density($density);\\n }\\n @if $typography != null {\\n @include mat-toolbar-typography($typography);\\n }\\n }\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n\\n .mat-tooltip {\\n background: mat-color($background, tooltip, 0.9);\\n }\\n}\\n\\n@mixin mat-tooltip-typography($config-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-tooltip-density($config-or-theme) {}\\n\\n@mixin mat-tooltip-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-tooltip') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-tooltip-color($color);\\n }\\n @if $density != null {\\n @include _mat-tooltip-density($density);\\n }\\n @if $typography != null {\\n @include mat-tooltip-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n\\n\\n@mixin mat-snack-bar-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $is-dark-theme: map-get($config, is-dark);\\n $accent: map-get($config, 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, $config);\\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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-snack-bar-density($config-or-theme) {}\\n\\n@mixin mat-snack-bar-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-snack-bar') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-snack-bar-color($color);\\n }\\n @if $density != null {\\n @include _mat-snack-bar-density($density);\\n }\\n @if $typography != null {\\n @include mat-snack-bar-typography($typography);\\n }\\n }\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $is-dark-theme: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-form-field-fill-density($config-or-theme) {}\\n\\n@mixin mat-form-field-fill-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-form-field-fill') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-form-field-fill-color($color);\\n }\\n @if $density != null {\\n @include _mat-form-field-fill-density($density);\\n }\\n @if $typography != null {\\n @include mat-form-field-fill-typography($typography);\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $is-dark-theme: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-form-field-legacy-density($config-or-theme) {}\\n\\n@mixin mat-form-field-legacy-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-form-field-legacy') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-form-field-legacy-color($color);\\n }\\n @if $density != null {\\n @include _mat-form-field-legacy-density($density);\\n }\\n @if $typography != null {\\n @include mat-form-field-legacy-typography($typography);\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $foreground: map-get($config, foreground);\\n $is-dark-theme: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-form-field-outline-density($config-or-theme) {}\\n\\n@mixin mat-form-field-outline-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-form-field-outline') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-form-field-outline-color($color);\\n }\\n @if $density != null {\\n @include _mat-form-field-outline-density($density);\\n }\\n @if $typography != null {\\n @include mat-form-field-outline-typography($typography);\\n }\\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-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $foreground: map-get($config, foreground);\\n $is-dark-theme: map-get($config, 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-or-theme) {}\\n\\n@mixin _mat-form-field-standard-density($config-or-theme) {}\\n\\n@mixin mat-form-field-standard-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-form-field-standard') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-form-field-standard-color($color);\\n }\\n @if $density != null {\\n @include _mat-form-field-standard-density($density);\\n }\\n @if $typography != null {\\n @include mat-form-field-standard-typography($typography);\\n }\\n }\\n}\\n\\n\\n// Color styles that apply to all appearances of the form-field.\\n@mixin mat-form-field-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $primary: map-get($config, primary);\\n $accent: map-get($config, accent);\\n $warn: map-get($config, warn);\\n $background: map-get($config, background);\\n $foreground: map-get($config, foreground);\\n $is-dark-theme: map-get($config, 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-color($config);\\n @include mat-form-field-standard-color($config);\\n @include mat-form-field-fill-color($config);\\n @include mat-form-field-outline-color($config);\\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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-form-field-density($config-or-theme) {\\n $density-scale: mat-get-density-config($config-or-theme);\\n @include _mat-form-field-legacy-density($density-scale);\\n @include _mat-form-field-standard-density($density-scale);\\n @include _mat-form-field-fill-density($density-scale);\\n @include _mat-form-field-outline-density($density-scale);\\n}\\n\\n@mixin mat-form-field-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-form-field') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-form-field-color($color);\\n }\\n @if $density != null {\\n @include _mat-form-field-density($density);\\n }\\n @if $typography != null {\\n @include mat-form-field-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n\\n\\n$mat-tree-node-height: 48px !default;\\n// Minimum height for tree nodes in highest density is difficult to determine as\\n// developers can display arbitrary content. We use a minimum height which ensures\\n// that common content placed in tree nodes does not exceed (e.g. icons, checkboxes).\\n$mat-tree-node-minimum-height: 24px !default;\\n$mat-tree-node-maximum-height: $mat-tree-node-height !default;\\n\\n$mat-tree-density-config: (\\n height: (\\n default: $mat-tree-node-height,\\n maximum: $mat-tree-node-maximum-height,\\n minimum: $mat-tree-node-minimum-height,\\n )\\n) !default;\\n\\n\\n@mixin mat-tree-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\n $background: map-get($config, background);\\n $foreground: map-get($config, 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-or-theme) {\\n $config: mat-get-typography-config($config-or-theme);\\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@mixin _mat-tree-density($config-or-theme) {\\n $density-scale: mat-get-density-config($config-or-theme);\\n $height: _mat-density-prop-value($mat-tree-density-config, $density-scale, height);\\n\\n @include _mat-density-legacy-compatibility() {\\n .mat-tree-node {\\n min-height: $height;\\n }\\n }\\n}\\n\\n@mixin mat-tree-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-tree') {\\n $color: mat-get-color-config($theme);\\n $density: mat-get-density-config($theme);\\n $typography: mat-get-typography-config($theme);\\n\\n @if $color != null {\\n @include mat-tree-color($color);\\n }\\n @if $density != null {\\n @include _mat-tree-density($density);\\n }\\n @if $typography != null {\\n @include mat-tree-typography($typography);\\n }\\n }\\n}\\n\\n\\n\\n\\n// Includes all of the typographic styles.\\n@mixin angular-material-typography($config-or-theme: null) {\\n $config: if(_mat-is-theme-object($config-or-theme),\\n mat-get-typography-config($config-or-theme), $config-or-theme);\\n\\n // If no actual color configuration has been specified, create a default one.\\n @if not $config {\\n $config: mat-typography-config();\\n }\\n\\n // TODO: COMP-309: Do not use individual mixins. Instead, use the all-theme mixin and only\\n // specify a `typography` config while setting `color` and `density` to `null`. This is currently\\n // not possible as it would introduce a circular dependency for typography because the `mat-core`\\n // mixin that is transitively loaded by the `all-theme` file, imports `all-typography` which\\n // would then load `all-theme` again. This ultimately results a circular dependency.\\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-divider-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 @include _mat-strong-focus-indicators-positioning();\\n @include _mat-mdc-core();\\n}\\n\\n@mixin mat-core-color($config-or-theme) {\\n $config: mat-get-color-config($config-or-theme);\\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($config, background);\\n $foreground: map-get($config, foreground);\\n\\n background-color: mat-color($background, background);\\n color: mat-color($foreground, text);\\n }\\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, $config);\\n }\\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// Mixin that renders all of the core styles that depend on the theme.\\n@mixin mat-core-theme($theme-or-color-config) {\\n $theme: _mat-legacy-get-theme($theme-or-color-config);\\n // Wrap the sub-theme includes in the duplicate theme styles mixin. This ensures that\\n // there won't be multiple warnings. e.g. if `mat-core-theme` reports a warning, then\\n // the imported themes (such as `mat-ripple-theme`) should not report again.\\n @include _mat-check-duplicate-theme-styles($theme, 'mat-core') {\\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 $color: mat-get-color-config($theme);\\n @if $color != null {\\n @include mat-core-color($color);\\n }\\n }\\n}\\n\\n// Mixin that renders all of the core MDC styles. Private mixin included with `mat-core`.\\n@mixin _mat-mdc-core() {\\n @include _mat-mdc-strong-focus-indicators-positioning();\\n}\\n\\n// Mixin that ensures focus indicator host elements are positioned so that the focus indicator\\n// pseudo element within is positioned relative to the host. Private mixin included within\\n// `_mat-mdc-core`.\\n@mixin _mat-mdc-strong-focus-indicators-positioning() {\\n .mat-mdc-focus-indicator {\\n position: relative;\\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\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n// Create a theme.\\n@mixin angular-material-theme($theme-or-color-config) {\\n @include _mat-check-duplicate-theme-styles($theme-or-color-config, 'angular-material-theme') {\\n @include mat-core-theme($theme-or-color-config);\\n @include mat-autocomplete-theme($theme-or-color-config);\\n @include mat-badge-theme($theme-or-color-config);\\n @include mat-bottom-sheet-theme($theme-or-color-config);\\n @include mat-button-theme($theme-or-color-config);\\n @include mat-button-toggle-theme($theme-or-color-config);\\n @include mat-card-theme($theme-or-color-config);\\n @include mat-checkbox-theme($theme-or-color-config);\\n @include mat-chips-theme($theme-or-color-config);\\n @include mat-table-theme($theme-or-color-config);\\n @include mat-datepicker-theme($theme-or-color-config);\\n @include mat-dialog-theme($theme-or-color-config);\\n @include mat-divider-theme($theme-or-color-config);\\n @include mat-expansion-panel-theme($theme-or-color-config);\\n @include mat-form-field-theme($theme-or-color-config);\\n @include mat-grid-list-theme($theme-or-color-config);\\n @include mat-icon-theme($theme-or-color-config);\\n @include mat-input-theme($theme-or-color-config);\\n @include mat-list-theme($theme-or-color-config);\\n @include mat-menu-theme($theme-or-color-config);\\n @include mat-paginator-theme($theme-or-color-config);\\n @include mat-progress-bar-theme($theme-or-color-config);\\n @include mat-progress-spinner-theme($theme-or-color-config);\\n @include mat-radio-theme($theme-or-color-config);\\n @include mat-select-theme($theme-or-color-config);\\n @include mat-sidenav-theme($theme-or-color-config);\\n @include mat-slide-toggle-theme($theme-or-color-config);\\n @include mat-slider-theme($theme-or-color-config);\\n @include mat-stepper-theme($theme-or-color-config);\\n @include mat-sort-theme($theme-or-color-config);\\n @include mat-tabs-theme($theme-or-color-config);\\n @include mat-toolbar-theme($theme-or-color-config);\\n @include mat-tooltip-theme($theme-or-color-config);\\n @include mat-tree-theme($theme-or-color-config);\\n @include mat-snack-bar-theme($theme-or-color-config);\\n }\\n}\\n\\n\\n// Includes all of the color styles.\\n@mixin angular-material-color($config-or-theme) {\\n // In case a theme object has been passed instead of a configuration for\\n // the color system, extract the color config from the theme object.\\n $config: if(_mat-is-theme-object($config-or-theme),\\n mat-get-color-config($config-or-theme), $config-or-theme);\\n\\n @if $config == null {\\n @error 'No color configuration specified.';\\n }\\n\\n @include angular-material-theme((\\n color: $config,\\n typography: null,\\n density: null,\\n ));\\n}\\n\\n\\n\\n// Includes all of the density styles.\\n@mixin _angular-material-density($config-or-theme) {\\n // In case a theme object has been passed instead of a configuration for\\n // the density system, extract the density config from the theme object.\\n $config: if(_mat-is-theme-object($config-or-theme),\\n mat-get-density-config($config-or-theme), $config-or-theme);\\n\\n @if $config == null {\\n @error 'No density configuration specified.';\\n }\\n\\n @include angular-material-theme((\\n color: null,\\n typography: null,\\n density: $config,\\n ));\\n}\\n\\n\\n\\n\",\"/* Colors for the ripple elements.*/\\n/* stylelint-disable-next-line material/theme-mixin-api */\\n/* stylelint-disable-next-line material/theme-mixin-api */\\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-focus-indicator {\\n position: relative;\\n}\\n\\n.mat-mdc-focus-indicator {\\n position: relative;\\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: #3c434d;\\n}\\n\\n.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #fdc628;\\n}\\n\\n.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {\\n color: #f44336;\\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: #3c434d;\\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: #fdc628;\\n}\\n\\n.mat-warn .mat-pseudo-checkbox-checked,\\n.mat-warn .mat-pseudo-checkbox-indeterminate {\\n background: #f44336;\\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-app-background {\\n background-color: #fafafa;\\n color: rgba(0, 0, 0, 0.87);\\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-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: #3c434d;\\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: #fdc628;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n\\n.mat-badge-warn .mat-badge-content {\\n color: white;\\n background: #f44336;\\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: #3c434d;\\n}\\n.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {\\n color: #fdc628;\\n}\\n.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {\\n color: #f44336;\\n}\\n.mat-button.mat-primary.mat-button-disabled, .mat-button.mat-accent.mat-button-disabled, .mat-button.mat-warn.mat-button-disabled, .mat-button.mat-button-disabled.mat-button-disabled, .mat-icon-button.mat-primary.mat-button-disabled, .mat-icon-button.mat-accent.mat-button-disabled, .mat-icon-button.mat-warn.mat-button-disabled, .mat-icon-button.mat-button-disabled.mat-button-disabled, .mat-stroked-button.mat-primary.mat-button-disabled, .mat-stroked-button.mat-accent.mat-button-disabled, .mat-stroked-button.mat-warn.mat-button-disabled, .mat-stroked-button.mat-button-disabled.mat-button-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: #3c434d;\\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: #fdc628;\\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: #f44336;\\n}\\n.mat-button.mat-button-disabled .mat-button-focus-overlay, .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .mat-stroked-button.mat-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(.mat-button-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.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-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: #3c434d;\\n}\\n.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {\\n background-color: #fdc628;\\n}\\n.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {\\n background-color: #f44336;\\n}\\n.mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-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(.mat-button-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.mat-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(.mat-button-disabled):active:not([class*=mat-elevation-z]), .mat-mini-fab:not(.mat-button-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.mat-button-disabled:not([class*=mat-elevation-z]), .mat-mini-fab.mat-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-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-button-toggle-appearance-standard .mat-button-toggle-label-content {\\n line-height: 48px;\\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: #3c434d;\\n}\\n.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {\\n background-color: #fdc628;\\n}\\n.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {\\n background-color: #f44336;\\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: #3c434d;\\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: #fdc628;\\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: #f44336;\\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: #3c434d;\\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: #f44336;\\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: #fdc628;\\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.mat-date-range-input-separator {\\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):not(.mat-calendar-body-comparison-identical) {\\n color: rgba(0, 0, 0, 0.38);\\n}\\n\\n.mat-form-field-disabled .mat-date-range-input-separator {\\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):not(.mat-calendar-body-comparison-identical),\\n.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),\\n.cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {\\n background-color: rgba(0, 0, 0, 0.04);\\n}\\n\\n.mat-calendar-body-in-preview {\\n color: rgba(0, 0, 0, 0.24);\\n}\\n\\n.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {\\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):not(.mat-calendar-body-comparison-identical) {\\n border-color: rgba(0, 0, 0, 0.18);\\n}\\n\\n.mat-calendar-body-in-range::before {\\n background: rgba(60, 67, 77, 0.2);\\n}\\n\\n.mat-calendar-body-comparison-identical,\\n.mat-calendar-body-in-comparison-range::before {\\n background: rgba(249, 171, 0, 0.2);\\n}\\n\\n.mat-calendar-body-comparison-bridge-start::before,\\n[dir=rtl] .mat-calendar-body-comparison-bridge-end::before {\\n background: linear-gradient(to right, rgba(60, 67, 77, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n\\n.mat-calendar-body-comparison-bridge-end::before,\\n[dir=rtl] .mat-calendar-body-comparison-bridge-start::before {\\n background: linear-gradient(to left, rgba(60, 67, 77, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n\\n.mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,\\n.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {\\n background: #a8dab5;\\n}\\n\\n.mat-calendar-body-comparison-identical.mat-calendar-body-selected,\\n.mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {\\n background: #46a35e;\\n}\\n\\n.mat-calendar-body-selected {\\n background-color: #3c434d;\\n color: white;\\n}\\n\\n.mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(60, 67, 77, 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-in-range::before {\\n background: rgba(253, 198, 40, 0.2);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,\\n.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {\\n background: rgba(249, 171, 0, 0.2);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,\\n.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {\\n background: linear-gradient(to right, rgba(253, 198, 40, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,\\n.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {\\n background: linear-gradient(to left, rgba(253, 198, 40, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,\\n.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {\\n background: #a8dab5;\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,\\n.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {\\n background: #46a35e;\\n}\\n.mat-datepicker-content.mat-accent .mat-calendar-body-selected {\\n background-color: #fdc628;\\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(253, 198, 40, 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-in-range::before {\\n background: rgba(244, 67, 54, 0.2);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,\\n.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {\\n background: rgba(249, 171, 0, 0.2);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,\\n.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {\\n background: linear-gradient(to right, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,\\n.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {\\n background: linear-gradient(to left, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,\\n.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {\\n background: #a8dab5;\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,\\n.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {\\n background: #46a35e;\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-selected {\\n background-color: #f44336;\\n color: white;\\n}\\n.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {\\n background-color: rgba(244, 67, 54, 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: #3c434d;\\n}\\n.mat-datepicker-toggle-active.mat-accent {\\n color: #fdc628;\\n}\\n.mat-datepicker-toggle-active.mat-warn {\\n color: #f44336;\\n}\\n\\n.mat-date-range-input-inner[disabled] {\\n color: rgba(0, 0, 0, 0.38);\\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-expansion-panel-header {\\n height: 48px;\\n}\\n.mat-expansion-panel-header.mat-expanded {\\n height: 64px;\\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: #3c434d;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-accent {\\n color: #fdc628;\\n}\\n.mat-form-field.mat-focused .mat-form-field-label.mat-warn {\\n color: #f44336;\\n}\\n\\n.mat-focused .mat-form-field-required-marker {\\n color: #fdc628;\\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: #3c434d;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {\\n background-color: #fdc628;\\n}\\n.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {\\n background-color: #f44336;\\n}\\n\\n.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {\\n color: #3c434d;\\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: #fdc628;\\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: #f44336;\\n}\\n\\n.mat-form-field.mat-form-field-invalid .mat-form-field-label {\\n color: #f44336;\\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: #f44336;\\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: #f44336;\\n}\\n\\n.mat-error {\\n color: #f44336;\\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: #3c434d;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {\\n color: #fdc628;\\n}\\n.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {\\n color: #f44336;\\n}\\n.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {\\n color: #f44336;\\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: #3c434d;\\n}\\n.mat-icon.mat-accent {\\n color: #fdc628;\\n}\\n.mat-icon.mat-warn {\\n color: #f44336;\\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: #3c434d;\\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-form-field.mat-accent .mat-input-element {\\n caret-color: #fdc628;\\n}\\n\\n.mat-form-field.mat-warn .mat-input-element,\\n.mat-form-field-invalid .mat-input-element {\\n caret-color: #f44336;\\n}\\n\\n.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {\\n color: #f44336;\\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-paginator-container {\\n min-height: 56px;\\n}\\n\\n.mat-progress-bar-background {\\n fill: #c5c7ca;\\n}\\n\\n.mat-progress-bar-buffer {\\n background-color: #c5c7ca;\\n}\\n\\n.mat-progress-bar-fill::after {\\n background-color: #3c434d;\\n}\\n\\n.mat-progress-bar.mat-accent .mat-progress-bar-background {\\n fill: #feeebf;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-buffer {\\n background-color: #feeebf;\\n}\\n.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {\\n background-color: #fdc628;\\n}\\n\\n.mat-progress-bar.mat-warn .mat-progress-bar-background {\\n fill: #ffcdd2;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-buffer {\\n background-color: #ffcdd2;\\n}\\n.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {\\n background-color: #f44336;\\n}\\n\\n.mat-progress-spinner circle, .mat-spinner circle {\\n stroke: #3c434d;\\n}\\n.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {\\n stroke: #fdc628;\\n}\\n.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {\\n stroke: #f44336;\\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: #3c434d;\\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: #3c434d;\\n}\\n.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #fdc628;\\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: #fdc628;\\n}\\n.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {\\n border-color: #f44336;\\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: #f44336;\\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: #3c434d;\\n}\\n.mat-form-field.mat-focused.mat-accent .mat-select-arrow {\\n color: #fdc628;\\n}\\n.mat-form-field.mat-focused.mat-warn .mat-select-arrow {\\n color: #f44336;\\n}\\n.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {\\n color: #f44336;\\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: #fdc628;\\n}\\n.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(253, 198, 40, 0.54);\\n}\\n.mat-slide-toggle.mat-checked .mat-ripple-element {\\n background-color: #fdc628;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {\\n background-color: #3c434d;\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(60, 67, 77, 0.54);\\n}\\n.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {\\n background-color: #3c434d;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {\\n background-color: #f44336;\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {\\n background-color: rgba(244, 67, 54, 0.54);\\n}\\n.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {\\n background-color: #f44336;\\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: #3c434d;\\n}\\n.mat-primary .mat-slider-thumb-label-text {\\n color: white;\\n}\\n.mat-primary .mat-slider-focus-ring {\\n background-color: rgba(60, 67, 77, 0.2);\\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: #fdc628;\\n}\\n.mat-accent .mat-slider-thumb-label-text {\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-accent .mat-slider-focus-ring {\\n background-color: rgba(253, 198, 40, 0.2);\\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: #f44336;\\n}\\n.mat-warn .mat-slider-thumb-label-text {\\n color: white;\\n}\\n.mat-warn .mat-slider-focus-ring {\\n background-color: rgba(244, 67, 54, 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: #3c434d;\\n color: white;\\n}\\n.mat-step-header .mat-step-icon-state-error {\\n background-color: transparent;\\n color: #f44336;\\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: #f44336;\\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-horizontal-stepper-header {\\n height: 72px;\\n}\\n\\n.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,\\n.mat-vertical-stepper-header {\\n padding: 24px 24px;\\n}\\n\\n.mat-stepper-vertical-line::before {\\n top: -16px;\\n bottom: -16px;\\n}\\n\\n.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after, .mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before {\\n top: 36px;\\n}\\n\\n.mat-stepper-label-position-bottom .mat-stepper-horizontal-line {\\n top: 36px;\\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(197, 199, 202, 0.3);\\n}\\n.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {\\n background-color: #3c434d;\\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(254, 238, 191, 0.3);\\n}\\n.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {\\n background-color: #fdc628;\\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, 205, 210, 0.3);\\n}\\n.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {\\n background-color: #f44336;\\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(197, 199, 202, 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: #3c434d;\\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(254, 238, 191, 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: #fdc628;\\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, 205, 210, 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: #f44336;\\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: #3c434d;\\n color: white;\\n}\\n.mat-toolbar.mat-accent {\\n background: #fdc628;\\n color: rgba(0, 0, 0, 0.87);\\n}\\n.mat-toolbar.mat-warn {\\n background: #f44336;\\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-toolbar-multiple-rows {\\n min-height: 64px;\\n}\\n\\n.mat-toolbar-row, .mat-toolbar-single-row {\\n height: 64px;\\n}\\n\\n@media (max-width: 599px) {\\n .mat-toolbar-multiple-rows {\\n min-height: 56px;\\n }\\n\\n .mat-toolbar-row, .mat-toolbar-single-row {\\n height: 56px;\\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-tree-node {\\n min-height: 48px;\\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: #fdc628;\\n}\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\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}","\"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