/**********************************************************************************
Sancus common components

Try to use a composition of common classes rather than
creating a separate class for a specific component here
unless it is impossible e.g. a wrapper was created by a script
or you need to style pseudo element such as ::after
**********************************************************************************/

* {
    font-family: 'Roboto', 'Helvetica', 'Arial', 'sans-serif';
}

h4 {
    padding-top: 0;
    margin-top: 0;
}


.mat-tooltip {
    border-radius: 1em !important;
    font-size: 16px !important;
    color: white !important;
    padding: 0.5em 1em !important;
    border: 2px solid #f9f7f9aa !important;
}


/* Layout */
.mdl-layout {
    height: initial;
    min-height: calc(100% + 1px);
}

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: 1;
}

/* Footer */
.mdl-mini-footer {
    background-color: #e0e0e0;
}

/* Main menu */
.mdl-layout__header-row .mdl-navigation .mdl-navigation__link:hover::after,
.mdl-layout__header-row .mdl-navigation .mdl-navigation__link.is-active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #f16522;
    width: 100%;
    height: 3px;
}

/* Header */
.mdl-layout__header-row {
    background: #555;
    color: white;
}

.mdl-layout__header-row .mdl-navigation__link {
    color: white;
}

/* Drawer */
san-drawer.mdl-layout__drawer .mdl-navigation__link:hover::after,
san-drawer.mdl-layout__drawer .mdl-navigation__link.is-active::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 1px;
    background-color: #f16522;
    width: 3px;
    height: 100%;
}

.mdl-layout__drawer-button {
    display: none;
}

.mdl-layout__header-row {
    padding-left: 40px;
}

/* Button */
.mdl-button--primary.mdl-button--primary {
    color: #f16522;
}

.mdl-button.mdl-button--colored {
    color: white;
    background-color: #f16522;
}

/* Sancus logo */
.san-logo {
    height: 90%;
}

.san-loading-logo-svg {
    width: 320px;
    height: 100px;
}

/* Card */
@media screen and (max-width: 1024px) {
    .san-card {
        min-height: 50px;
    }
}

.san-card .material-icons {
    font-size: 50px;
    padding: 8px;
}

/* Simple table */
.san-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.san-table tr td {
    border-top: 1px solid rgb(184, 184, 184);
    padding: 0.5em 1em;
}

/* Table */
.mdl-data-table th,
.mdl-data-table .san-mob-header {
    color: #f16522;
    font-size: 14px;
    white-space: normal;
}

.mdl-data-table .san-mob-header-first {
    margin-left: -6px;
}

/* Select */
select {
    /* styling */
    background-color: white;
    border: 1px solid #f16522;
    border-radius: 2px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0px 10px;
    padding-right: 30px;

    /* reset */

    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, white 50%),
        linear-gradient(135deg, white 50%, transparent 50%),
        linear-gradient(to right, #f16522, #f16522);
    background-position:
        calc(100% - 10px) center,
        calc(100% - 5px) center,
        calc(100% + 1px) 0;
    background-size:
        5px 5px,
        5px 5px,
        21px 105%;
    background-repeat: no-repeat;
}

select:focus {
    outline: 0;
}



/* Snackbar */
.mdl-snackbar {
    z-index: 6;
}

/* Chip */
.mat-chip {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

mat-cell {
    touch-action: initial !important;
    user-select: initial !important;
    -webkit-user-drag: initial !important;
    -webkit-tap-highlight-color: grey !important;
    border: solid transparent !important;
}

/**********************************************************************************
Sancus common styles

Use a composition of the styles below to get the desired looks of a component
**********************************************************************************/

/* Cursor */
.san-cursor--pointer {
    cursor: pointer;
}

/* Transform */
.san-transform--scale-half {
    transform: scale(1.5);
}

.san-transform--hover-scale-half:hover {
    transform: scale(1.5);
}

/* Position */
.san-position--relative {
    position: relative;
}

.san-position--absolute {
    position: absolute;
}

.san-position--fixed {
    position: fixed;
}

.san-top--0 {
    top: 0;
}

.san-bottom--0 {
    bottom: 0;
}

.san-left--0 {
    left: 0;
}

.san-right--0 {
    right: 0;
}

/* Display */
.san-display--none {
    display: none;
}

.san-display--flex {
    display: flex;
}

.san-display--block {
    display: block;
}

.san-display--inline {
    display: inline;
}

.san-display--inline-block {
    display: inline-block;
}

/* z-index */
.san-z-index--1000 {
    z-index: 1000;
}

.san-z-index--100 {
    z-index: 100;
}

/* Flexbox */
.san-box-sizing--border-box {
    box-sizing: border-box;
}

.san-flex-direction--column {
    flex-direction: column;
}

.san-flex-wrap--wrap {
    flex-wrap: wrap;
}

.san-flex-basis--2col {
    flex-basis: calc(100% / 2);
}

.san-flex-basis--3col {
    flex-basis: calc(100% / 3);
}

.san-flex-basis--4col {
    flex-basis: calc(100% / 4);
}

.san-flex-basis--5col {
    flex-basis: calc(100% / 5);
}

.san-flex-basis--6col {
    flex-basis: calc(100% / 6);
}

.san-flex-basis--7col {
    flex-basis: calc(100% / 7);
}

.san-flex-basis--1col-marg {
    flex-basis: calc(100%) !important;
}

.san-flex-basis--2col-marg {
    flex-basis: calc(100% / 2 - 32px);
}

.san-flex-basis--3col-marg {
    flex-basis: calc(100% / 3 - 32px);
}

.san-flex-basis--4col-marg {
    flex-basis: calc(100% / 4 - 32px);
}

.san-flex-basis--5col-marg {
    flex-basis: calc(100% / 5 - 32px);
}

.san-flex-basis--6col-marg {
    flex-basis: calc(100% / 6 - 32px);
}

.san-flex-basis--7col-marg {
    flex-basis: calc(100% / 7 - 32px);
}

.san-flex--1 {
    flex: 1;
}

.san-flex--2 {
    flex: 2;
}

.san-flex--3 {
    flex: 3;
}

.san-flex-grow--0 {
    flex-grow: 0;
}

.san-flex-grow--1 {
    flex-grow: 1;
}

.san-flex-shrink--0 {
    flex-shrink: 0;
}

.san-align-items--center {
    align-items: center;
    -webkit-align-items: center;
}

.san-align-items--flex-start {
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

.san-align-items--flex-end {
    align-items: flex-end;
    -webkit-align-items: flex-end;
}

.san-justify-content--center {
    justify-content: center;
    -webkit-justify-content: center;
}

.san-justify-content--end {
    justify-content: flex-end;
}

.san-justify-content--flex-end {
    justify-content: flex-end;
}

.san-justify-content--space-around {
    justify-content: space-around;
}

.san-justify-content--space-between {
    justify-content: space-between;
}

.san-vertical-align--middle {
    vertical-align: middle;
}

/* Width */
.san-width--full {
    width: 100%;
}

.san-width--fullmarg {
    width: calc(100% - 32px);
}

.san-width--half {
    width: 50%;
}

.san-width--100 {
    width: 100px;
}

.san-width--320 {
    width: 320px;
}

.san-min-width--100 {
    min-width: 100px;
}

.san-min-width--320 {
    min-width: 320px;
}

/* Smallest smartphone */
.san-min-width--half {
    min-width: 50%;
}

.san-min-width--full {
    min-width: 100%;
}

.san-max-width--full {
    max-width: 100%;
}

.san-max-width--320 {
    max-width: 300px;
}

/* max width for mdl textfield */
.san-max-width--800 {
    max-width: 800px;
}

.san-max-width--1200 {
    max-width: 1200px;
}

.san-max-width--1300 {
    max-width: 1300px;
}

.san-max-width--1400 {
    max-width: 1400px;
}

.san-max-width--1500 {
    max-width: 1500px;
}

/* Height */
.san-height--full {
    height: 100%;
}

.san-min-height--full {
    min-height: 100%;
}

.san-min-height--100 {
    min-height: 100px;
}

.san-min-height--0 {
    min-height: 0px;
}

/* Text */
.san-text--right {
    text-align: right;
}

.san-text--left {
    text-align: left;
}

.san-text--italic {
    font-style: italic;
}

.san-text--bold {
    font-weight: 700;
}

.san-text--normal {
    font-weight: normal;
}

.san-text--thin {
    font-weight: 100;
}

.san-text--white {
    color: white;
}

.san-text--center {
    text-align: center;
}

.san-text--center-important {
    text-align: center !important;
}

.san-text-decoration--none {
    text-decoration: none;
}

.san-white-space--normal {
    white-space: normal;
}

.san-white-space--nowrap {
    white-space: nowrap;
}

.san-white-space--pre-wrap {
    white-space: pre-wrap;
}

.san-text--uppercase {
    text-transform: uppercase;
}

.san-font-size--14 {
    font-size: 14px;
}

.san-font-size--16 {
    font-size: 16px;
}

.san-font-size--24 {
    font-size: 24px;
}

.san-font-size--40 {
    font-size: 40px;
}

.san-font-size--64 {
    font-size: 64px;
}

.san-font-size--125per {
    font-size: 125%;
}

.san-font-size--150per {
    font-size: 150%;
}

.san-font-size--200per {
    font-size: 200%;
}

.san-font-size--75per {
    font-size: 75%;
}

.san-text-unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Padding */
.san-padding--0 {
    padding: 0;
}

.san-padding--4 {
    padding: 4px;
}

.san-padding--8 {
    padding: 8px;
}

.san-padding--10 {
    padding: 10px;
}

.san-padding--16 {
    padding: 16px;
}

.san-padding--24 {
    padding: 24px;
}

.san-padding-left--0 {
    padding-left: 0;
}

.san-padding-right--0 {
    padding-right: 0;
}

.san-padding-top--0 {
    padding-top: 0;
}

.san-padding-bottom--0 {
    padding-bottom: 0;
}

.san-padding-left--5 {
    padding-left: 5px;
}

.san-padding-right--5 {
    padding-right: 5px;
}

.san-padding-top--5 {
    padding-top: 5px;
}

.san-padding-bottom--5 {
    padding-bottom: 5px;
}

.san-padding-left--8 {
    padding-left: 8px;
}

.san-padding-right--8 {
    padding-right: 8px;
}

.san-padding-top--8 {
    padding-top: 8px;
}

.san-padding-bottom--8 {
    padding-bottom: 8px;
}

.san-padding-left--10 {
    padding-left: 10px;
}

.san-padding-right--10 {
    padding-right: 10px;
}

.san-padding-top--10 {
    padding-top: 10px;
}

.san-padding-bottom--10 {
    padding-bottom: 10px;
}

.san-padding-left--16 {
    padding-left: 16px;
}

.san-padding-right--16 {
    padding-right: 16px;
}

.san-padding-top--16 {
    padding-top: 16px;
}

.san-padding-bottom--16 {
    padding-bottom: 16px;
}

.san-padding-left--20 {
    padding-left: 20px;
}

.san-padding-right--20 {
    padding-right: 20px;
}

.san-padding-top--20 {
    padding-top: 20px;
}

.san-padding-bottom--20 {
    padding-bottom: 20px;
}

.san-padding-left--24 {
    padding-left: 24px;
}

.san-padding-right--24 {
    padding-right: 24px;
}

.san-padding-top--24 {
    padding-top: 24px;
}

.san-padding-bottom--24 {
    padding-bottom: 24px;
}


/* Margin */
.san-margin--auto {
    margin: auto;
}

.san-margin-left--auto {
    margin-left: auto;
}

.san-margin-right--auto {
    margin-right: auto;
}

.san-margin--0 {
    margin: 0;
}

.san-margin--4 {
    margin: 4px;
}

.san-margin--8 {
    margin: 8px;
}

.san-margin--10 {
    margin: 10px;
}

.san-margin--16 {
    margin: 16px;
}

.san-margin--24 {
    margin: 24px;
}

.san-margin-left--0 {
    margin-left: 0;
}

.san-margin-right--0 {
    margin-right: 0;
}

.san-margin-top--0 {
    margin-top: 0;
}

.san-margin-bottom--0 {
    margin-bottom: 0;
}

.san-margin-left--5 {
    margin-left: 5px;
}

.san-margin-right--5 {
    margin-right: 5px;
}

.san-margin-top--5 {
    margin-top: 5px;
}

.san-margin-bottom--5 {
    margin-bottom: 5px;
}

.san-margin-left--8 {
    margin-left: 8px;
}

.san-margin-right--8 {
    margin-right: 8px;
}

.san-margin-top--8 {
    margin-top: 8px;
}

.san-margin-bottom--8 {
    margin-bottom: 8px;
}

.san-margin-left--10 {
    margin-left: 10px;
}

.san-margin-right--10 {
    margin-right: 10px;
}

.san-margin-top--10 {
    margin-top: 10px;
}

.san-margin-bottom--10 {
    margin-bottom: 10px;
}

.san-margin-left--16 {
    margin-left: 16px;
}

.san-margin-right--16 {
    margin-right: 16px;
}

.san-margin-top--16 {
    margin-top: 16px;
}

.san-margin-bottom--16 {
    margin-bottom: 16px;
}

.san-margin-left--24 {
    margin-left: 24px;
}

.san-margin-right--24 {
    margin-right: 24px;
}

.san-margin-top--24 {
    margin-top: 24px;
}

.san-margin-bottom--24 {
    margin-bottom: 24px;
}

.san-margin-left--60 {
    margin-left: 60px;
}

.san-margin-right--60 {
    margin-right: 60px;
}

.san-margin-top--60 {
    margin-top: 60px;
}

.san-margin-bottom--60 {
    margin-bottom: 60px;
}

.san-margin-left--120 {
    margin-left: 120px;
}

.san-margin-right--120 {
    margin-right: 120px;
}

.san-margin-top--120 {
    margin-top: 120px;
}

.san-margin-bottom--120 {
    margin-bottom: 120px;
}

/* Border */
.san-border--1-solid-lightgrey {
    border: 1px solid lightgrey;
}

.san-border-top--1-solid-lightgrey {
    border-top: 1px solid lightgrey;
}

.san-border-bottom--1-solid-lightgrey {
    border-bottom: 1px solid lightgrey;
}

.san-border-top--0 {
    border-top: 0;
}

.san-border-bottom--0 {
    border-bottom: 0;
}

/* Border radius */
.san-border-radius--2px {
    border-radius: 2px;
}

.san-border-radius-top--2px {
    border-radius: 2px 2px 0 0;
}

.san-border-radius-bottom--2px {
    border-radius: 0 0 2px 2px;
}

.san-border-radius--50per {
    border-radius: 50%;
}

/* Background positioning */
.san-bg--norepeat {
    background-repeat: no-repeat;
}

.san-bg--center {
    background-position: center;
}

.san-bg--topright {
    background-position: top right;
}

/* Background images */
.san-bg--coins {
    background: url('images/fil-coins.jpg');
}

.san-bg--coins2 {
    background: url('images/fil-coins2.jpg');
}

.san-bg--coins3 {
    background: url('images/fil-coins3.jpg');
}

.san-bg--investment {
    background: url('images/fil-investment.jpg');
}

.san-bg--statement {
    background: url('images/fil-statement.jpg');
}

.san-bg--performance {
    background: url('images/fil-performance.jpg');
}

.san-bg--gradient1 {
    background: url('images/gradient1.jpg');
}

.san-bg--gradient2 {
    background: url('images/gradient2.jpg');
}

.san-bg--gradient3 {
    background: url('images/gradient3.jpg');
}

.san-bg--gradient4 {
    background: url('images/gradient4.jpg');
}

.san-bg--gradient5 {
    background: url('images/gradient5.jpg');
}

.san-bg--city {
    background: url('images/fil-city.jpg');
}

.san-bg--city2 {
    background: url('images/fil-city2.jpg');
}

.san-bg--city3 {
    background: url('images/fil-city3.jpg');
}

.san-bg--coins,
.san-bg--coins2,
.san-bg--coins3,
.san-bg--investment,
.san-bg--statement,
.san-bg--performance,
.san-bg--gradient1,
.san-bg--gradient2,
.san-bg--gradient3,
.san-bg--gradient4,
.san-bg--gradient5,
.san-bg--city,
.san-bg--city2,
.san-bg--city3 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
}

/* Backgound-color */
.san-bg-color--overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.san-bg-color--primary {
    background-color: #f16522;
    color: white;
}

.san-bg-color--secondary {
    background-color: #555555;
    color: white;
}

.san-bg-color--secondary-2 {
    background-color: #e0e0e0;
    color: #555555;
}

.san-bg-color--secondary-3 {
    background-color: #f0f0f0;
    color: #555555;
}

.san-bg-color--tertiary {
    background-color: #eaeaea;
    color: #555555;
}

.san-bg-color--accent {
    background-color: #6ca046;
    color: #555555;
}

.san-bg-color--white {
    background-color: #fff;
    color: #555555;
}

.san-bg-color--funder {
    background-color: #7263a8;
    color: white;
}

.san-bg-color--borrower {
    background-color: #26b5b2;
    color: white;
}

.san-bg-color-hover--primary:hover {
    background-color: #f16522;
    color: white;
}

.san-bg-color-hover--secondary:hover {
    background-color: #555555;
    color: white;
}

.san-bg-color-hover--secondary-2:hover {
    background-color: #e0e0e0;
    color: #555555;
}

.san-bg-color-hover--secondary-3:hover {
    background-color: #f0f0f0;
    color: #555555;
}

.san-bg-color-hover--tertiary:hover {
    background-color: #efefef;
    color: #555555;
}

.san-bg-color-hover--accent:hover {
    background-color: #6ca046;
    color: #555555;
}

.san-bg-color-hover--white:hover {
    background-color: #fff;
    color: #555555;
}

/* Color */
.san-color--primary {
    color: #f16522 !important;
}

.san-color--secondary {
    color: #555555;
}

.san-color--secondary-2 {
    color: #e0e0e0;
}

.san-color--secondary-3 {
    color: #f0f0f0;
}

.san-color--tertiary {
    color: #eaeaea;
}

.san-color--accent {
    color: #6ca046;
}

.san-color--white {
    color: #fff !important;
}

.san-color--black {
    color: #000 !important;
}

.san-color--funder {
    color: #7263a8;
}

.san-color--borrower {
    color: #26b5b2;
}

.san-color--red {
    color: red;
}

.san-color-hover--primary:hover {
    color: #f16522;
}

.san-color-hover--secondary:hover {
    color: #555555;
}

.san-color-hover--secondary-2:hover {
    color: #e0e0e0;
}

.san-color-hover--secondary-3:hover {
    color: #f0f0f0;
}

.san-color-hover--tertiary:hover {
    color: #eaeaea;
}

.san-color-hover--accent:hover {
    color: #6ca046;
}

.san-color-hover--white:hover {
    color: #fff;
}

.san-color-hover--funder:hover {
    color: #7263a8;
}

.san-color-hover--borrower:hover {
    color: #26b5b2;
}

/* overflow */
.san-overflow-x--scroll {
    overflow-x: scroll;
}

/* line-height */
.san-line-height--10 {
    line-height: 10px;
}

.san-line-height--20 {
    line-height: 20px;
}

.san-line-height--24 {
    line-height: 24px;
}

/**********************************************************************************
Mobile only styles and component adjustments for small screens
**********************************************************************************/
@media screen and (max-width: 1024px) {

    /* Show drawer on mobile */
    .mdl-layout__drawer-button {
        display: inline;
        background: #555;
        color: white;
    }

    .mdl-layout__header {
        display: flex;
    }

    .mdl-layout__header-row {
        padding-left: 60px;
    }

    /* Mobile only styles */
    .san-mob-width--full {
        width: 100%;
    }

    .san-mob-width--half {
        width: 50%;
    }

    .san-mob-display--initial {
        display: initial;
    }

    .san-mob-display--block {
        display: block;
    }

    .san-mob-display--inline {
        display: inline;
    }

    .san-mob-display--inline-block {
        display: inline-block;
    }

    .san-mob-display--flex {
        display: flex;
    }

    .san-mob-display--inline-table {
        display: inline-table;
    }

    .san-mob-display--none {
        display: none !important;
    }

    .san-mob-margin--nomargin {
        margin: 0;
    }

    .san-mob-flex-direction--column {
        flex-direction: column;
    }

    .san-mob-flex-grow--1 {
        flex-grow: 1;
    }

    .san-mob-text--right {
        text-align: right !important
    }

    .san-mob-flex-wrap {
        flex-wrap: wrap;
    }

    .san-mob-item-align--flex-start {
        align-items: flex-start;
    }

    /* Backgound-color */
    .san-mob-bg-color--overlay {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .san-mob-bg-color--primary {
        background-color: #f16522;
        color: white;
    }

    .san-mob-bg-color--secondary {
        background-color: #555555;
        color: white;
    }

    .san-mob-bg-color--secondary-2 {
        background-color: #e0e0e0;
        color: #555555;
    }

    .san-mob-bg-color--secondary-3 {
        background-color: #f0f0f0;
        color: #555555;
    }

    .san-mob-bg-color--tertiary {
        background-color: #eaeaea;
        color: #555555;
    }

    .san-mob-bg-color--accent {
        background-color: #6ca046;
        color: #555555;
    }

    .san-mob-bg-color--white {
        background-color: #fff;
        color: #555555;
    }

    .san-mob-bg-color--funder {
        background-color: #7263a8;
        color: white;
    }

    .san-mob-bg-color--borrower {
        background-color: #26b5b2;
        color: white;
    }

    .san-mob-bg-color-hover--primary:hover {
        background-color: #f16522;
        color: white;
    }

    .san-mob-bg-color-hover--secondary:hover {
        background-color: #555555;
        color: white;
    }

    .san-mob-bg-color-hover--secondary-2:hover {
        background-color: #e0e0e0;
        color: #555555;
    }

    .san-mob-bg-color-hover--secondary-3:hover {
        background-color: #f0f0f0;
        color: #555555;
    }

    .san-mob-bg-color-hover--tertiary:hover {
        background-color: #efefef;
        color: #555555;
    }

    .san-mob-bg-color-hover--accent:hover {
        background-color: #6ca046;
        color: #555555;
    }

    .san-mob-bg-color-hover--white:hover {
        background-color: #fff;
        color: #555555;
    }

    /* Color */
    .san-mob-color--primary {
        color: #f16522;
    }

    .san-mob-color--secondary {
        color: #555555;
    }

    .san-mob-color--secondary-2 {
        color: #e0e0e0;
    }

    .san-mob-color--secondary-3 {
        color: #f0f0f0;
    }

    .san-mob-color--tertiary {
        color: #eaeaea;
    }

    .san-mob-color--accent {
        color: #6ca046;
    }

    .san-mob-color--white {
        color: #fff;
    }

    .san-mob-color--funder {
        color: #7263a8;
    }

    .san-mob-color--borrower {
        color: #26b5b2;
    }

    .san-mob-color-hover--primary:hover {
        color: #f16522;
    }

    .san-mob-color-hover--secondary:hover {
        color: #555555;
    }

    .san-mob-color-hover--secondary-2:hover {
        color: #e0e0e0;
    }

    .san-mob-color-hover--secondary-3:hover {
        color: #f0f0f0;
    }

    .san-mob-color-hover--tertiary:hover {
        color: #eaeaea;
    }

    .san-mob-color-hover--accent:hover {
        color: #6ca046;
    }

    .san-mob-color-hover--white:hover {
        color: #fff;
    }

    .san-mob-color-hover--funder:hover {
        color: #7263a8;
    }

    .san-mob-color-hover--borrower:hover {
        color: #26b5b2;
    }

    /* Max width on mobile is always 100% */
    .san-max-width--1400 {
        max-width: 100%;
    }

    .san-max-width--1200 {
        max-width: 100%;
    }

}




/*************************************************************
IE 11 and below
*************************************************************/
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    select {
        border: 1px solid lightgrey;
        padding: 0;
        background: none;
    }

    .san-max-width--1400 {
        max-width: 100%;
        margin: 0 60px;
    }

    .san-max-width--1200 {
        max-width: 100%;
        margin: 0 60px;
    }

    .ie11-block {
        display: block;
        flex: none;
    }
}
.mat-elevation-z0{box-shadow:0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)}.mat-elevation-z1{box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)}.mat-elevation-z2{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mat-elevation-z3{box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)}.mat-elevation-z4{box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.mat-elevation-z5{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)}.mat-elevation-z6{box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mat-elevation-z7{box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)}.mat-elevation-z8{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mat-elevation-z9{box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)}.mat-elevation-z10{box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)}.mat-elevation-z11{box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)}.mat-elevation-z12{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mat-elevation-z13{box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)}.mat-elevation-z14{box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)}.mat-elevation-z15{box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)}.mat-elevation-z16{box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.mat-elevation-z17{box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)}.mat-elevation-z18{box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)}.mat-elevation-z19{box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)}.mat-elevation-z20{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)}.mat-elevation-z21{box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)}.mat-elevation-z22{box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)}.mat-elevation-z23{box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)}.mat-elevation-z24{box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)}.mat-h1,.mat-headline,.mat-typography h1{font:400 24px/32px Roboto,"Helvetica Neue",sans-serif;margin:0 0 16px}.mat-h2,.mat-title,.mat-typography h2{font:500 20px/32px Roboto,"Helvetica Neue",sans-serif;margin:0 0 16px}.mat-h3,.mat-subheading-2,.mat-typography h3{font:400 16px/28px Roboto,"Helvetica Neue",sans-serif;margin:0 0 16px}.mat-h4,.mat-subheading-1,.mat-typography h4{font:400 15px/24px Roboto,"Helvetica Neue",sans-serif;margin:0 0 16px}.mat-h5,.mat-typography h5{font-size:11.62px;font-weight:400;font-family:Roboto,"Helvetica Neue",sans-serif;line-height:20px;margin:0 0 12px}.mat-h6,.mat-typography h6{font-size:9.38px;font-weight:400;font-family:Roboto,"Helvetica Neue",sans-serif;line-height:20px;margin:0 0 12px}.mat-body-2,.mat-body-strong{font:500 14px/24px Roboto,"Helvetica Neue",sans-serif}.mat-body,.mat-body-1,.mat-typography{font:400 14px/20px Roboto,"Helvetica Neue",sans-serif}.mat-body p,.mat-body-1 p,.mat-typography p{margin:0 0 12px}.mat-caption,.mat-small{font:400 12px/20px Roboto,"Helvetica Neue",sans-serif}.mat-display-4,.mat-typography .mat-display-4{font:300 112px/112px Roboto,"Helvetica Neue",sans-serif;margin:0 0 56px;letter-spacing:-.05em}.mat-display-3,.mat-typography .mat-display-3{font:400 56px/56px Roboto,"Helvetica Neue",sans-serif;margin:0 0 64px;letter-spacing:-.02em}.mat-display-2,.mat-typography .mat-display-2{font:400 45px/48px Roboto,"Helvetica Neue",sans-serif;margin:0 0 64px;letter-spacing:-.005em}.mat-display-1,.mat-typography .mat-display-1{font:400 34px/40px Roboto,"Helvetica Neue",sans-serif;margin:0 0 64px}.mat-button,.mat-fab,.mat-icon-button,.mat-mini-fab,.mat-raised-button{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:14px;font-weight:500}.mat-button-toggle{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-card{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-card-title{font-size:24px;font-weight:400}.mat-card-content,.mat-card-header .mat-card-title,.mat-card-subtitle{font-size:14px}.mat-checkbox{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-checkbox-layout .mat-checkbox-label{line-height:24px}.mat-chip{font-size:13px;line-height:18px}.mat-chip .mat-chip-remove.mat-icon{font-size:18px}.mat-table{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-header-cell{font-size:12px;font-weight:500}.mat-cell{font-size:14px}.mat-calendar{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-calendar-body{font-size:13px}.mat-calendar-body-label,.mat-calendar-period-button{font-size:14px;font-weight:500}.mat-calendar-table-header th{font-size:11px;font-weight:400}.mat-dialog-title{font:500 20px/32px Roboto,"Helvetica Neue",sans-serif}.mat-expansion-panel-header{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:15px;font-weight:400}.mat-expansion-panel-content{font:400 14px/20px Roboto,"Helvetica Neue",sans-serif}.mat-form-field{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:inherit;font-weight:400;line-height:1.125}.mat-form-field-wrapper{padding-bottom:1.25em}.mat-form-field-prefix .mat-icon,.mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}.mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}.mat-form-field-infix{padding:.4375em 0;border-top:.84375em solid transparent}.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);-ms-transform:translateY(-1.28125em) scale(.75);width:133.33333%}.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00101px);-ms-transform:translateY(-1.28124em) scale(.75);width:133.33334%}.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.00102px);-ms-transform:translateY(-1.28123em) scale(.75);width:133.33335%}.mat-form-field-label-wrapper{top:-.84375em;padding-top:.84375em}.mat-form-field-label{top:1.28125em}.mat-form-field-underline{bottom:1.25em}.mat-form-field-subscript-wrapper{font-size:75%;margin-top:.54167em;top:calc(100% - 1.66667em)}.mat-grid-tile-footer,.mat-grid-tile-header{font-size:14px}.mat-grid-tile-footer .mat-line,.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2),.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:12px}input.mat-input-element{margin-top:-.0625em}.mat-menu-item{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:16px;font-weight:400}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:12px}.mat-radio-button{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-select{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-select-trigger{height:1.125em}.mat-slide-toggle-content{font:400 14px/20px Roboto,"Helvetica Neue",sans-serif}.mat-slider-thumb-label-text{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:12px;font-weight:500}.mat-stepper-horizontal,.mat-stepper-vertical{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-step-label{font-size:14px;font-weight:400}.mat-step-label-selected{font-size:14px;font-weight:500}.mat-tab-group{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-tab-label,.mat-tab-link{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:14px;font-weight:500}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font:500 20px/32px Roboto,"Helvetica Neue",sans-serif;margin:0}.mat-tooltip{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.mat-list-item{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-list-option{font-family:Roboto,"Helvetica Neue",sans-serif}.mat-list .mat-list-item,.mat-nav-list .mat-list-item,.mat-selection-list .mat-list-item{font-size:16px}.mat-list .mat-list-item .mat-line,.mat-nav-list .mat-list-item .mat-line,.mat-selection-list .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list .mat-list-item .mat-line:nth-child(n+2),.mat-nav-list .mat-list-item .mat-line:nth-child(n+2),.mat-selection-list .mat-list-item .mat-line:nth-child(n+2){font-size:14px}.mat-list .mat-list-option,.mat-nav-list .mat-list-option,.mat-selection-list .mat-list-option{font-size:16px}.mat-list .mat-list-option .mat-line,.mat-nav-list .mat-list-option .mat-line,.mat-selection-list .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list .mat-list-option .mat-line:nth-child(n+2),.mat-nav-list .mat-list-option .mat-line:nth-child(n+2),.mat-selection-list .mat-list-option .mat-line:nth-child(n+2){font-size:14px}.mat-list .mat-subheader,.mat-nav-list .mat-subheader,.mat-selection-list .mat-subheader{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:14px;font-weight:500}.mat-list[dense] .mat-list-item,.mat-nav-list[dense] .mat-list-item,.mat-selection-list[dense] .mat-list-item{font-size:12px}.mat-list[dense] .mat-list-item .mat-line,.mat-nav-list[dense] .mat-list-item .mat-line,.mat-selection-list[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list[dense] .mat-list-item .mat-line:nth-child(n+2),.mat-nav-list[dense] .mat-list-item .mat-line:nth-child(n+2),.mat-selection-list[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}.mat-list[dense] .mat-list-option,.mat-nav-list[dense] .mat-list-option,.mat-selection-list[dense] .mat-list-option{font-size:12px}.mat-list[dense] .mat-list-option .mat-line,.mat-nav-list[dense] .mat-list-option .mat-line,.mat-selection-list[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list[dense] .mat-list-option .mat-line:nth-child(n+2),.mat-nav-list[dense] .mat-list-option .mat-line:nth-child(n+2),.mat-selection-list[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}.mat-list[dense] .mat-subheader,.mat-nav-list[dense] .mat-subheader,.mat-selection-list[dense] .mat-subheader{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:12px;font-weight:500}.mat-option{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:16px}.mat-optgroup-label{font:500 14px/24px Roboto,"Helvetica Neue",sans-serif}.mat-simple-snackbar{font-family:Roboto,"Helvetica Neue",sans-serif;font-size:14px}.mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}.mat-ripple{overflow:hidden}@media screen and (-ms-high-contrast:active){.mat-ripple{display:none}}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0s cubic-bezier(0,0,.2,1);transform:scale(0)}.mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;position:relative;cursor:pointer;outline:0;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}@media screen and (-ms-high-contrast:active){.mat-option-ripple{opacity:.5}}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}.mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.cdk-global-overlay-wrapper,.cdk-overlay-container{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.48}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.6)}.cdk-overlay-transparent-backdrop{background:0 0}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-option{color:rgba(0,0,0,.87)}.mat-option:focus:not(.mat-option-disabled),.mat-option:hover:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#EA5B0C}.mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:rgb(161, 155, 155)}.mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#f44336}.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.mat-option.mat-active{background:rgba(0,0,0,.04);color:rgba(0,0,0,.87)}.mat-option.mat-option-disabled{color:rgba(0,0,0,.38)}.mat-optgroup-label{color:rgba(0,0,0,.54)}.mat-optgroup-disabled .mat-optgroup-label{color:rgba(0,0,0,.38)}.mat-pseudo-checkbox{color:rgba(0,0,0,.54)}.mat-pseudo-checkbox::after{color:#fafafa}.mat-accent .mat-pseudo-checkbox-checked,.mat-accent .mat-pseudo-checkbox-indeterminate,.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-indeterminate{background:rgb(161, 155, 155)}.mat-primary .mat-pseudo-checkbox-checked,.mat-primary .mat-pseudo-checkbox-indeterminate{background:#EA5B0C}.mat-warn .mat-pseudo-checkbox-checked,.mat-warn .mat-pseudo-checkbox-indeterminate{background:#f44336}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.mat-app-background{background-color:#fafafa}.mat-theme-loaded-marker{display:none}.mat-autocomplete-panel{background:#fff;color:rgba(0,0,0,.87)}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#fff}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:rgba(0,0,0,.87)}.mat-button,.mat-icon-button{background:0 0}.mat-button.mat-primary .mat-button-focus-overlay,.mat-icon-button.mat-primary .mat-button-focus-overlay{background-color:rgba(63,81,181,.12)}.mat-button.mat-accent .mat-button-focus-overlay,.mat-icon-button.mat-accent .mat-button-focus-overlay{background-color:rgba(255,64,129,.12)}.mat-button.mat-warn .mat-button-focus-overlay,.mat-icon-button.mat-warn .mat-button-focus-overlay{background-color:rgba(244,67,54,.12)}.mat-button[disabled] .mat-button-focus-overlay,.mat-icon-button[disabled] .mat-button-focus-overlay{background-color:transparent}.mat-button.mat-primary,.mat-icon-button.mat-primary{color:#EA5B0C}.mat-button.mat-accent,.mat-icon-button.mat-accent{color:rgb(161, 155, 155)}.mat-button.mat-warn,.mat-icon-button.mat-warn{color:#f44336}.mat-button.mat-accent[disabled],.mat-button.mat-primary[disabled],.mat-button.mat-warn[disabled],.mat-button[disabled][disabled],.mat-icon-button.mat-accent[disabled],.mat-icon-button.mat-primary[disabled],.mat-icon-button.mat-warn[disabled],.mat-icon-button[disabled][disabled]{color:rgba(0,0,0,.26)}.mat-fab,.mat-mini-fab,.mat-raised-button{color:rgba(0,0,0,.87);background-color:#fff}.mat-fab.mat-primary,.mat-mini-fab.mat-primary,.mat-raised-button.mat-primary{color:#fff}.mat-fab.mat-accent,.mat-mini-fab.mat-accent,.mat-raised-button.mat-accent{color:#fff}.mat-fab.mat-warn,.mat-mini-fab.mat-warn,.mat-raised-button.mat-warn{color:#fff}.mat-fab.mat-accent[disabled],.mat-fab.mat-primary[disabled],.mat-fab.mat-warn[disabled],.mat-fab[disabled][disabled],.mat-mini-fab.mat-accent[disabled],.mat-mini-fab.mat-primary[disabled],.mat-mini-fab.mat-warn[disabled],.mat-mini-fab[disabled][disabled],.mat-raised-button.mat-accent[disabled],.mat-raised-button.mat-primary[disabled],.mat-raised-button.mat-warn[disabled],.mat-raised-button[disabled][disabled]{color:rgba(0,0,0,.26)}.mat-fab.mat-primary,.mat-mini-fab.mat-primary,.mat-raised-button.mat-primary{background-color:#EA5B0C}.mat-fab.mat-accent,.mat-mini-fab.mat-accent,.mat-raised-button.mat-accent{background-color:rgb(161, 155, 155)}.mat-fab.mat-warn,.mat-mini-fab.mat-warn,.mat-raised-button.mat-warn{background-color:#f44336}.mat-fab.mat-accent[disabled],.mat-fab.mat-primary[disabled],.mat-fab.mat-warn[disabled],.mat-fab[disabled][disabled],.mat-mini-fab.mat-accent[disabled],.mat-mini-fab.mat-primary[disabled],.mat-mini-fab.mat-warn[disabled],.mat-mini-fab[disabled][disabled],.mat-raised-button.mat-accent[disabled],.mat-raised-button.mat-primary[disabled],.mat-raised-button.mat-warn[disabled],.mat-raised-button[disabled][disabled]{background-color:rgba(0,0,0,.12)}.mat-fab.mat-primary .mat-ripple-element,.mat-mini-fab.mat-primary .mat-ripple-element,.mat-raised-button.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.2)}.mat-fab.mat-accent .mat-ripple-element,.mat-mini-fab.mat-accent .mat-ripple-element,.mat-raised-button.mat-accent .mat-ripple-element{background-color:rgba(255,255,255,.2)}.mat-fab.mat-warn .mat-ripple-element,.mat-mini-fab.mat-warn .mat-ripple-element,.mat-raised-button.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.2)}.mat-button.mat-primary .mat-ripple-element{background-color:rgba(63,81,181,.1)}.mat-button.mat-accent .mat-ripple-element{background-color:rgba(255,64,129,.1)}.mat-button.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.1)}.mat-icon-button.mat-primary .mat-ripple-element{background-color:rgba(63,81,181,.2)}.mat-icon-button.mat-accent .mat-ripple-element{background-color:rgba(255,64,129,.2)}.mat-icon-button.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.2)}.mat-button-toggle{color:rgba(0,0,0,.38)}.mat-button-toggle.cdk-focused .mat-button-toggle-focus-overlay{background-color:rgba(0,0,0,.12)}.mat-button-toggle-checked{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.mat-button-toggle-disabled{background-color:#eee;color:rgba(0,0,0,.26)}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.mat-card{background:#fff;color:rgba(0,0,0,.87)}.mat-card-subtitle{color:rgba(0,0,0,.54)}.mat-checkbox-frame{border-color:rgba(0,0,0,.54)}.mat-checkbox-checkmark{fill:#fafafa}.mat-checkbox-checkmark-path{stroke:#fafafa!important}.mat-checkbox-mixedmark{background-color:#fafafa}.mat-checkbox-checked.mat-primary .mat-checkbox-background,.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background{background-color:#EA5B0C}.mat-checkbox-checked.mat-accent .mat-checkbox-background,.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background{background-color:rgb(161, 155, 155)}.mat-checkbox-checked.mat-warn .mat-checkbox-background,.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background{background-color:#f44336}.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.mat-checkbox-disabled .mat-checkbox-label{color:#b0b0b0}.mat-checkbox:not(.mat-checkbox-disabled).mat-primary .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(63,81,181,.26)}.mat-checkbox:not(.mat-checkbox-disabled).mat-accent .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(255,64,129,.26)}.mat-checkbox:not(.mat-checkbox-disabled).mat-warn .mat-checkbox-ripple .mat-ripple-element{background-color:rgba(244,67,54,.26)}.mat-chip:not(.mat-basic-chip){background-color:#e0e0e0;color:rgba(0,0,0,.87)}.mat-chip:not(.mat-basic-chip) .mat-chip-remove{color:rgba(0,0,0,.87);opacity:.4}.mat-chip:not(.mat-basic-chip) .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-primary{background-color:#EA5B0C;color:#fff}.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-chip-selected.mat-primary .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-warn{background-color:#f44336;color:#fff}.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-chip-selected.mat-warn .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-chip-selected.mat-accent{background-color:rgb(161, 155, 155);color:#fff}.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-chip-selected.mat-accent .mat-chip-remove:hover{opacity:.54}.mat-table{background:#fff}.mat-header-row,.mat-row{border-bottom-color:rgba(0,0,0,.12)}.mat-header-cell{color:rgba(0,0,0,.54)}.mat-cell{color:rgba(0,0,0,.87)}.mat-datepicker-content{background-color:#fff;color:rgba(0,0,0,.87)}.mat-calendar-arrow{border-top-color:rgba(0,0,0,.54)}.mat-calendar-next-button,.mat-calendar-previous-button{color:rgba(0,0,0,.54)}.mat-calendar-table-header{color:rgba(0,0,0,.38)}.mat-calendar-table-header-divider::after{background:rgba(0,0,0,.12)}.mat-calendar-body-label{color:rgba(0,0,0,.54)}.mat-calendar-body-cell-content{color:rgba(0,0,0,.87);border-color:transparent}.mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected){color:rgba(0,0,0,.38)}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected),:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected){background-color:rgba(0,0,0,.04)}.mat-calendar-body-selected{background-color:#EA5B0C;color:#fff}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(63,81,181,.4)}.mat-calendar-body-today:not(.mat-calendar-body-selected){border-color:rgba(0,0,0,.38)}.mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected){border-color:rgba(0,0,0,.18)}.mat-dialog-container{background:#fff;color:rgba(0,0,0,.87)}.mat-divider{border-top-color:rgba(0,0,0,.12)}.mat-divider-vertical{border-right-color:rgba(0,0,0,.12)}.mat-expansion-panel{background:#fff;color:rgba(0,0,0,.87)}.mat-action-row{border-top-color:rgba(0,0,0,.12)}.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused,.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:rgba(0,0,0,.04)}.mat-expansion-panel-header-title{color:rgba(0,0,0,.87)}.mat-expansion-indicator::after,.mat-expansion-panel-header-description{color:rgba(0,0,0,.54)}.mat-expansion-panel-header[aria-disabled=true]{color:rgba(0,0,0,.26)}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title{color:inherit}.mat-form-field-label{color:rgba(0,0,0,.54)}.mat-hint{color:rgba(0,0,0,.54)}.mat-focused .mat-form-field-label{color:#EA5B0C}.mat-focused .mat-form-field-label.mat-accent{color:rgb(161, 155, 155)}.mat-focused .mat-form-field-label.mat-warn{color:#f44336}.mat-focused .mat-form-field-required-marker{color:rgb(161, 155, 155)}.mat-form-field-underline{background-color:rgba(0,0,0,.42)}.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:4px 1px;background-repeat:repeat-x}.mat-form-field-ripple{background-color:#EA5B0C}.mat-form-field-ripple.mat-accent{background-color:rgb(161, 155, 155)}.mat-form-field-ripple.mat-warn{background-color:#f44336}.mat-form-field-invalid .mat-form-field-label{color:#f44336}.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker,.mat-form-field-invalid .mat-form-field-label.mat-accent{color:#f44336}.mat-form-field-invalid .mat-form-field-ripple{background-color:#f44336}.mat-error{color:#f44336}.mat-icon.mat-primary{color:#EA5B0C}.mat-icon.mat-accent{color:rgb(161, 155, 155)}.mat-icon.mat-warn{color:#f44336}.mat-input-element:disabled{color:rgba(0,0,0,.38)}.mat-input-element{caret-color:#EA5B0C}.mat-input-element::placeholder{color:rgba(0,0,0,.42)}.mat-input-element::-moz-placeholder{color:rgba(0,0,0,.42)}.mat-input-element::-webkit-input-placeholder{color:rgba(0,0,0,.42)}.mat-input-element:-ms-input-placeholder{color:rgba(0,0,0,.42)}.mat-accent .mat-input-element{caret-color:rgb(161, 155, 155)}.mat-form-field-invalid .mat-input-element,.mat-warn .mat-input-element{caret-color:#f44336}.mat-list .mat-list-item,.mat-nav-list .mat-list-item,.mat-selection-list .mat-list-item{color:rgba(0,0,0,.87)}.mat-list .mat-list-option,.mat-nav-list .mat-list-option,.mat-selection-list .mat-list-option{color:rgba(0,0,0,.87)}.mat-list .mat-subheader,.mat-nav-list .mat-subheader,.mat-selection-list .mat-subheader{color:rgba(0,0,0,.54)}.mat-list-item-disabled{background-color:#eee}.mat-nav-list .mat-list-item{outline:0}.mat-nav-list .mat-list-item.mat-list-item-focus,.mat-nav-list .mat-list-item:hover{background:rgba(0,0,0,.04)}.mat-list-option{outline:0}.mat-list-option.mat-list-item-focus,.mat-list-option:hover{background:rgba(0,0,0,.04)}.mat-menu-panel{background:#fff}.mat-menu-item{background:0 0;color:rgba(0,0,0,.87)}.mat-menu-item[disabled]{color:rgba(0,0,0,.38)}.mat-menu-item .mat-icon:not([color]),.mat-menu-item-submenu-trigger::after{color:rgba(0,0,0,.54)}.mat-menu-item-highlighted:not([disabled]),.mat-menu-item:focus:not([disabled]),.mat-menu-item:hover:not([disabled]){background:rgba(0,0,0,.04)}.mat-paginator{background:#fff}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{color:rgba(0,0,0,.54)}.mat-paginator-decrement,.mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.mat-icon-button[disabled] .mat-paginator-decrement,.mat-icon-button[disabled] .mat-paginator-increment{border-color:rgba(0,0,0,.38)}.mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23c5cae9%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar-buffer{background-color:#c5cae9}.mat-progress-bar-fill::after{background-color:#EA5B0C}.mat-progress-bar.mat-accent .mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ff80ab%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ff80ab}.mat-progress-bar.mat-accent .mat-progress-bar-fill::after{background-color:rgb(161, 155, 155)}.mat-progress-bar.mat-warn .mat-progress-bar-background{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23ffcdd2%27%2F%3E%3C%2Fsvg%3E")}.mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#ffcdd2}.mat-progress-bar.mat-warn .mat-progress-bar-fill::after{background-color:#f44336}.mat-progress-spinner circle,.mat-spinner circle{stroke:#EA5B0C}.mat-progress-spinner.mat-accent circle,.mat-spinner.mat-accent circle{stroke:rgb(161, 155, 155)}.mat-progress-spinner.mat-warn circle,.mat-spinner.mat-warn circle{stroke:#f44336}.mat-radio-outer-circle{border-color:rgba(0,0,0,.54)}.mat-radio-disabled .mat-radio-outer-circle{border-color:rgba(0,0,0,.38)}.mat-radio-disabled .mat-radio-inner-circle,.mat-radio-disabled .mat-radio-ripple .mat-ripple-element{background-color:rgba(0,0,0,.38)}.mat-radio-disabled .mat-radio-label-content{color:rgba(0,0,0,.38)}.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#EA5B0C}.mat-radio-button.mat-primary .mat-radio-inner-circle{background-color:#EA5B0C}.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element{background-color:rgba(63,81,181,.26)}.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:rgb(161, 155, 155)}.mat-radio-button.mat-accent .mat-radio-inner-circle{background-color:rgb(161, 155, 155)}.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element{background-color:rgba(255,64,129,.26)}.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#f44336}.mat-radio-button.mat-warn .mat-radio-inner-circle{background-color:#f44336}.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element{background-color:rgba(244,67,54,.26)}.mat-select-content,.mat-select-panel-done-animating{background:#fff}.mat-select-value{color:rgba(0,0,0,.87)}.mat-select-placeholder{color:rgba(0,0,0,.42)}.mat-select-disabled .mat-select-value{color:rgba(0,0,0,.38)}.mat-select-arrow{color:rgba(0,0,0,.54)}.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#EA5B0C}.mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:rgb(161, 155, 155)}.mat-form-field.mat-focused.mat-warn .mat-select-arrow{color:#f44336}.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#f44336}.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:rgba(0,0,0,.38)}.mat-drawer-container{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-drawer{background-color:#fff;color:rgba(0,0,0,.87)}.mat-drawer.mat-drawer-push{background-color:#fff}.mat-drawer-backdrop.mat-drawer-shown{background-color:rgba(0,0,0,.6)}.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#EA5B0C}.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(234, 90, 12, 0.507)}.mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:rgba(0,0,0,.06)}.mat-slide-toggle .mat-ripple-element{background-color:rgba(233,30,99,.12)}.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#EA5B0C}.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(63,81,181,.5)}.mat-slide-toggle.mat-primary:not(.mat-checked) .mat-ripple-element{background-color:rgba(0,0,0,.06)}.mat-slide-toggle.mat-primary .mat-ripple-element{background-color:rgba(63,81,181,.12)}.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb{background-color:#f44336}.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar{background-color:rgba(244,67,54,.5)}.mat-slide-toggle.mat-warn:not(.mat-checked) .mat-ripple-element{background-color:rgba(0,0,0,.06)}.mat-slide-toggle.mat-warn .mat-ripple-element{background-color:rgba(244,67,54,.12)}.mat-disabled .mat-slide-toggle-thumb{background-color:#bdbdbd}.mat-disabled .mat-slide-toggle-bar{background-color:rgba(0,0,0,.1)}.mat-slide-toggle-thumb{background-color:#fafafa}.mat-slide-toggle-bar{background-color:rgba(0,0,0,.38)}.mat-slider-track-background{background-color:rgba(0,0,0,.26)}.mat-primary .mat-slider-thumb,.mat-primary .mat-slider-thumb-label,.mat-primary .mat-slider-track-fill{background-color:#EA5B0C}.mat-primary .mat-slider-thumb-label-text{color:#fff}.mat-accent .mat-slider-thumb,.mat-accent .mat-slider-thumb-label,.mat-accent .mat-slider-track-fill{background-color:rgb(161, 155, 155)}.mat-accent .mat-slider-thumb-label-text{color:#fff}.mat-warn .mat-slider-thumb,.mat-warn .mat-slider-thumb-label,.mat-warn .mat-slider-track-fill{background-color:#f44336}.mat-warn .mat-slider-thumb-label-text{color:#fff}.mat-slider-focus-ring{background-color:rgba(255,64,129,.2)}.cdk-focused .mat-slider-track-background,.mat-slider:hover .mat-slider-track-background{background-color:rgba(0,0,0,.38)}.mat-slider-disabled .mat-slider-thumb,.mat-slider-disabled .mat-slider-track-background,.mat-slider-disabled .mat-slider-track-fill{background-color:rgba(0,0,0,.26)}.mat-slider-disabled:hover .mat-slider-track-background{background-color:rgba(0,0,0,.26)}.mat-slider-min-value .mat-slider-focus-ring{background-color:rgba(0,0,0,.12)}.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:rgba(0,0,0,.87)}.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:rgba(0,0,0,.26)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:rgba(0,0,0,.26);background-color:transparent}.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb{border-color:rgba(0,0,0,.38)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb{border-color:rgba(0,0,0,.26)}.mat-slider-has-ticks .mat-slider-wrapper::after{border-color:rgba(0,0,0,.7)}.mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent);background-image:-moz-repeating-linear-gradient(.0001deg,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.7) 2px,transparent 0,transparent)}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused,.mat-step-header:hover{background-color:rgba(0,0,0,.04)}.mat-step-header .mat-step-label,.mat-step-header .mat-step-optional{color:rgba(0,0,0,.38)}.mat-step-header .mat-step-icon{background-color:#EA5B0C;color:#fff}.mat-step-header .mat-step-icon-not-touched{background-color:rgba(0,0,0,.38);color:#fff}.mat-step-header .mat-step-label.mat-step-label-active{color:rgba(0,0,0,.87)}.mat-stepper-horizontal,.mat-stepper-vertical{background-color:#fff}.mat-stepper-vertical-line::before{border-left-color:rgba(0,0,0,.12)}.mat-stepper-horizontal-line{border-top-color:rgba(0,0,0,.12)}.mat-tab-header,.mat-tab-nav-bar{border-bottom:1px solid rgba(0,0,0,.12)}.mat-tab-group-inverted-header .mat-tab-header,.mat-tab-group-inverted-header .mat-tab-nav-bar{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.mat-tab-label,.mat-tab-link{color:rgba(0,0,0,.87)}.mat-tab-label.mat-tab-disabled,.mat-tab-link.mat-tab-disabled{color:rgba(0,0,0,.38)}.mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.87)}.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.38)}.mat-tab-group[class*=mat-background-] .mat-tab-header,.mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.mat-tab-group.mat-primary .mat-tab-label:focus,.mat-tab-group.mat-primary .mat-tab-link:focus,.mat-tab-nav-bar.mat-primary .mat-tab-label:focus,.mat-tab-nav-bar.mat-primary .mat-tab-link:focus{background-color:rgba(197,202,233,.3)}.mat-tab-group.mat-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#EA5B0C}.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-accent .mat-tab-label:focus,.mat-tab-group.mat-accent .mat-tab-link:focus,.mat-tab-nav-bar.mat-accent .mat-tab-label:focus,.mat-tab-nav-bar.mat-accent .mat-tab-link:focus{background-color:rgba(255,128,171,.3)}.mat-tab-group.mat-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:rgb(161, 155, 155)}.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-warn .mat-tab-label:focus,.mat-tab-group.mat-warn .mat-tab-link:focus,.mat-tab-nav-bar.mat-warn .mat-tab-label:focus,.mat-tab-nav-bar.mat-warn .mat-tab-link:focus{background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#f44336}.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-background-primary .mat-tab-label:focus,.mat-tab-group.mat-background-primary .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-primary .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-primary .mat-tab-link:focus{background-color:rgba(197,202,233,.3)}.mat-tab-group.mat-background-primary .mat-tab-header,.mat-tab-group.mat-background-primary .mat-tab-links,.mat-tab-nav-bar.mat-background-primary .mat-tab-header,.mat-tab-nav-bar.mat-background-primary .mat-tab-links{background-color:#EA5B0C}.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{color:#fff}.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{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron{border-color:#fff}.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{border-color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-primary .mat-ripple-element,.mat-tab-nav-bar.mat-background-primary .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-tab-group.mat-background-accent .mat-tab-label:focus,.mat-tab-group.mat-background-accent .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-accent .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-accent .mat-tab-link:focus{background-color:rgba(255,128,171,.3)}.mat-tab-group.mat-background-accent .mat-tab-header,.mat-tab-group.mat-background-accent .mat-tab-links,.mat-tab-nav-bar.mat-background-accent .mat-tab-header,.mat-tab-nav-bar.mat-background-accent .mat-tab-links{background-color:rgb(161, 155, 155)}.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{color:#fff}.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{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron{border-color:#fff}.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{border-color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-accent .mat-ripple-element,.mat-tab-nav-bar.mat-background-accent .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-tab-group.mat-background-warn .mat-tab-label:focus,.mat-tab-group.mat-background-warn .mat-tab-link:focus,.mat-tab-nav-bar.mat-background-warn .mat-tab-label:focus,.mat-tab-nav-bar.mat-background-warn .mat-tab-link:focus{background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-background-warn .mat-tab-header,.mat-tab-group.mat-background-warn .mat-tab-links,.mat-tab-nav-bar.mat-background-warn .mat-tab-header,.mat-tab-nav-bar.mat-background-warn .mat-tab-links{background-color:#f44336}.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{color:#fff}.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{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron{border-color:#fff}.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{border-color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-warn .mat-ripple-element,.mat-tab-nav-bar.mat-background-warn .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-toolbar{background:#f5f5f5;color:rgba(0,0,0,.87)}.mat-toolbar.mat-primary{background:#EA5B0C;color:#fff}.mat-toolbar.mat-accent{background:rgb(161, 155, 155);color:#fff}.mat-toolbar.mat-warn{background:#f44336;color:#fff}.mat-tooltip{background:rgba(97,97,97,.9)}.mat-snack-bar-container{background:#323232;color:#fff}.mat-simple-snackbar-action{color:rgb(161, 155, 155)}
