/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/assets/css/fullcalendar.css?ngGlobalStyle ***!
  \***************************************************************************************************************************************************************************************************************************************/
/*!
 * FullCalendar v3.6.1 Stylesheet
 * Docs & License: https://fullcalendar.io/
 * (c) 2017 Adam Shaw
 */


 .fc {
    direction: ltr;
    text-align: left;
}

.fc-rtl {
    text-align: right;
}

body .fc { /* extra precedence to overcome jqui */
    font-size: 1em;
}



/* Colors
--------------------------------------------------------------------------------------------------*/


.fc-highlight { /* when user is selecting cells */
    background: #bce8f1;
    opacity: .3;
}

.fc-bgevent { /* default look for background events */
    background: rgb(143, 223, 130);
    opacity: .3;
}

.fc-nonbusiness { /* default look for non-business-hours areas */
    /* will inherit .fc-bgevent's styles */
    background: #d7d7d7;
}


/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
    /* force height to include the border and padding */
    box-sizing: border-box;
    /* dimensions */
    margin: 0;
    height: 2.1em;
    padding: 0 .6em;
    /* text & cursor */
    font-size: 1em; /* normalize */
    white-space: nowrap;
    cursor: pointer;
}

    /* Firefox has an annoying inner border */
    .fc button::-moz-focus-inner {
        margin: 0;
        padding: 0;
    }

.fc-state-default { /* non-theme */
    border: 1px solid;
}

    .fc-state-default.fc-corner-left { /* non-theme */
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .fc-state-default.fc-corner-right { /* non-theme */
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

/* icons in buttons */

.fc button .fc-icon { /* non-theme */
    position: relative;
    top: -0.05em; /* seems to be a good adjustment across browsers */
    margin: 0 .2em;
    vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/

.fc-state-default {
    background-color: #f5f5f5;
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
    color: #333333;
    background-color: #e6e6e6;
}

.fc-state-hover {
    color: #333333;
    text-decoration: none;
    background-position: 0 -15px;
    transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
    background-color: #cccccc;
    background-image: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
    cursor: default;
    background-image: none;
    opacity: 0.65;
    box-shadow: none;
}


/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
    display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group > * { /* extra precedence b/c buttons have margin set to zero */
    float: left;
    margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child { /* same */
    margin-left: 0;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover {
    position: absolute;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

    .fc-popover .fc-header { /* TODO: be more consistent with fc-head/fc-body */
        padding: 2px 4px;
    }

        .fc-popover .fc-header .fc-title {
            margin: 0 2px;
        }

        .fc-popover .fc-header .fc-close {
            cursor: pointer;
        }

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
    float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
    float: right;
}


/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/

.fc-divider {
    border-style: solid;
    border-width: 1px;
}

hr.fc-divider {
    height: 1px;
    margin: 0;
    padding: 0;
    border-width: 0;
    background: #ddd;
}

.fc-clear {
    clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
    /* these element should always cling to top-left/right corners */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.fc-bg {
    bottom: 0; /* strech bg to bottom edge */
}

    .fc-bg table {
        height: 100%; /* strech bg to bottom edge */
    }


/* Tables
--------------------------------------------------------------------------------------------------*/

.fc table {
    width: 100%;
    box-sizing: border-box; /* fix scrollbar issue in firefox */
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 11px;
    color: rgba(0,0,0,0.6); /* normalize cross-browser */
}

.fc th,
.fc td {
    border-style: solid;
    border-width: 1px;
    padding: 0;
    vertical-align: top;
}

    .fc td.fc-today {
        border-style: double; /* overcome neighboring borders */
    }


/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/

a[data-goto] {
    cursor: pointer;
}

    a[data-goto]:hover {
        text-decoration: underline;
    }


/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/

.fc .fc-row { /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
    /* no visible border by default. but make available if need be (scrollbar width compensation) */
    border-style: solid;
    border-width: 0;
}

.fc-row table {
    /* don't put left/right border on anything within a fake row.
	   the outer tbody will worry about this */
    border-left: 0 hidden transparent;
    border-right: 0 hidden transparent;
    /* no bottom borders on rows */
    border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
    border-top: 0 hidden transparent; /* no top border on first row */
}


/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/

.fc-row {
    position: relative;
}

    .fc-row .fc-bg {
        z-index: 1;
    }

    /* highlighting cells & background event skeleton */

    .fc-row .fc-bgevent-skeleton,
    .fc-row .fc-highlight-skeleton {
        bottom: 0; /* stretch skeleton to bottom of row */
    }

        .fc-row .fc-bgevent-skeleton table,
        .fc-row .fc-highlight-skeleton table {
            height: 100%; /* stretch skeleton to bottom of row */
        }

        .fc-row .fc-highlight-skeleton td,
        .fc-row .fc-bgevent-skeleton td {
            border-color: transparent;
        }

    .fc-row .fc-bgevent-skeleton {
        z-index: 2;
    }

    .fc-row .fc-highlight-skeleton {
        z-index: 3;
    }

    /*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/

    .fc-row .fc-content-skeleton {
        position: relative;
        z-index: 4;
        padding-bottom: 2px; /* matches the space above the events */
    }

    .fc-row .fc-helper-skeleton {
        z-index: 5;
    }

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
    /* see-through to the background below */
    /* extra precedence to prevent theme-provided backgrounds */
    background: none; /* in case <td>s are globally styled */
    border-color: transparent;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
    /* don't put a border between events and/or the day number */
    border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the day number cell) */
.fc-row .fc-helper-skeleton tbody td {
    /* don't put a border between event cells */
    border-top: 0;
}


/* Scrolling Container
--------------------------------------------------------------------------------------------------*/

.fc-scroller {
    -webkit-overflow-scrolling: touch;
}

    /* TODO: move to agenda/basic */
    .fc-scroller > .fc-timeGridDay,
    .fc-scroller > .fc-timegrid {
        position: relative; /* re-scope all positions */
        width: 100%; /* hack to force re-sizing this inner element when scrollbars appear/disappear */
    }


/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.fc-event {
    position: relative; /* for resize handle and other inner positioning */
    display: block; /* make the <a> tag block */
    font-size: .85em;
    line-height: 1.3;
    border-radius: 3px;
    border: 1px solid #3a87ad; /* default BORDER color */
    border-left: 5px solid;
}

.fc-event,
.fc-event-dot {
    background-color: #3a87ad; /* default BACKGROUND color */
}

    .fc-event,
    .fc-event:hover {
        color: #fff; /* default TEXT color */
        text-decoration: none; /* if <a> has an href */
    }

        .fc-event[href],
        .fc-event.fc-draggable {
            cursor: pointer; /* give events with links and draggable events a hand mouse pointer */
        }

.fc-not-allowed, /* causes a "warning" cursor. applied on body */
.fc-not-allowed .fc-event { /* to override an event's custom cursor */
    cursor: not-allowed;
}

.fc-event .fc-bg { /* the generic .fc-bg already does position */
    z-index: 1;
    background: #fff;
    opacity: .25;
}

.fc-event .fc-content {
    position: relative;
    z-index: 2;
}

/* resizer (cursor AND touch devices) */

.fc-event .fc-resizer {
    position: absolute;
    z-index: 4;
}

/* resizer (touch devices) */

.fc-event .fc-resizer {
    display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
    /* only show when hovering or selected (with touch) */
    display: block;
}

    /* hit area */

    .fc-event.fc-selected .fc-resizer:before {
        /* 40x40 touch area */
        content: "";
        position: absolute;
        z-index: 9999; /* user of this util can scope within a lower z-index */
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        margin-left: -20px;
        margin-top: -20px;
    }


/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/

.fc-event.fc-selected {
    z-index: 9999 !important; /* overcomes inline z-index */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .fc-event.fc-selected.fc-dragging {
        box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    }


/* Horizontal Events
--------------------------------------------------------------------------------------------------*/

/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
    content: "";
    position: absolute;
    z-index: 3; /* below resizers */
    top: -10px;
    bottom: -10px;
    left: 0;
    right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
    /* margin-left: 0; */
    border-left-width: 0;
    padding-left: 1px; /* replace the border with padding */
    /* border-top-left-radius: 0;
    border-bottom-left-radius: 0; */
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
    margin-right: 0;
    border-right-width: 0;
    padding-right: 1px; /* replace the border with padding */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */

/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
    cursor: w-resize;
    left: -1px; /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
    cursor: e-resize;
    right: -1px; /* overcome border */
}

/* resizer (mouse devices) */

.fc-h-event.fc-allow-mouse-resize .fc-resizer {
    width: 7px;
    top: -1px; /* overcome top border */
    bottom: -1px; /* overcome bottom border */
}

/* resizer (touch devices) */

.fc-h-event.fc-selected .fc-resizer {
    /* 8x8 little dot */
    border-radius: 4px;
    border-width: 1px;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-color: inherit;
    background: #fff;
    /* vertically center */
    top: 50%;
    margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
    margin-left: -4px; /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
    margin-right: -4px; /* centers the 8x8 dot on the right edge */
}


/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-timeGridDay-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-timeGridDay-event {
    margin: 1px 2px 0; /* spacing between events and edges */
    padding: 0 1px;
}

tr:first-child > td > .fc-timeGridDay-event {
    margin-top: 2px; /* a little bit more space before the first event */
}

.fc-timeGridDay-event.fc-selected:after {
    content: "";
    position: absolute;
    z-index: 1; /* same z-index as fc-bg, behind text */
    /* overcome the borders */
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    /* darkening effect */
    background: #000;
    opacity: .25;
}

.fc-timeGridDay-event .fc-content { /* force events to be one-line tall */
    white-space: nowrap;
    overflow: hidden;
}

.fc-timeGridDay-event .fc-time {
    font-weight: bold;
}

/* resizer (cursor devices) */

/* left resizer  */
.fc-ltr .fc-timeGridDay-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-timeGridDay-event.fc-allow-mouse-resize .fc-end-resizer {
    margin-left: -2px; /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-timeGridDay-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-timeGridDay-event.fc-allow-mouse-resize .fc-start-resizer {
    margin-right: -2px; /* to the day cell's edge */
}


/* Event Limiting
--------------------------------------------------------------------------------------------------*/

/* "more" link that represents hidden events */

a.fc-more {
    margin: 1px 3px;
    font-size: .85em;
    cursor: pointer;
    text-decoration: none;
}

    a.fc-more:hover {
        text-decoration: underline;
    }

.fc-limited { /* rows and cells that are hidden because of a "more" link */
    display: none;
}

/* popover that appears when "more" link is clicked */

.fc-timeGridDay .fc-row {
    z-index: 1; /* make the "more" popover one higher than this */
}

.fc-more-popover {
    z-index: 2;
    width: 220px;
}

    .fc-more-popover .fc-event-container {
        padding: 10px;
    }


/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-now-indicator {
    position: absolute;
    border: 0 solid red;
}


/* Utilities
--------------------------------------------------------------------------------------------------*/

.fc-unselectable {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



/*
TODO: more distinction between this file and common.css
*/

/* Colors
--------------------------------------------------------------------------------------------------*/

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content, /* for gutter border */
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
    border-color: #ddd;
}

.fc-unthemed .fc-popover {
    background-color: #fff;
}

    /*.fc-unthemed .fc-divider,
    .fc-unthemed .fc-popover .fc-header,
    .fc-unthemed .fc-list-heading td {
        background: #eee;
    }*/

        .fc-unthemed .fc-popover .fc-header .fc-close {
            color: #666;
        }

.fc-unthemed td.fc-today {
    background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
    background: #d7d7d7;
    opacity: .3;
}


/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/

.fc-icon {
    display: inline-block;
    height: 1em;
    line-height: 1em;
    font-size: 1em;
    text-align: center;
    overflow: hidden;
    font-family: "Courier New", Courier, monospace;
    /* don't allow browser text-selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

    /*
Acceptable font-family overrides for individual icons:
	"Arial", sans-serif
	"Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/

    .fc-icon:after {
        position: relative;
    }

.fc-icon-left-single-arrow:after {
    content: "\02039";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-right-single-arrow:after {
    content: "\0203A";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-left-double-arrow:after {
    content: "\000AB";
    font-size: 160%;
    top: -7%;
}

.fc-icon-right-double-arrow:after {
    content: "\000BB";
    font-size: 160%;
    top: -7%;
}

.fc-icon-left-triangle:after {
    content: "\25C4";
    font-size: 125%;
    top: 3%;
}

.fc-icon-right-triangle:after {
    content: "\25BA";
    font-size: 125%;
    top: 3%;
}

.fc-icon-down-triangle:after {
    content: "\25BC";
    font-size: 125%;
    top: 2%;
}

.fc-icon-x:after {
    content: "\000D7";
    font-size: 200%;
    top: 6%;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-unthemed .fc-popover {
    border-width: 1px;
    border-style: solid;
}

    .fc-unthemed .fc-popover .fc-header .fc-close {
        font-size: .9em;
        margin-top: 2px;
    }


/* List View
--------------------------------------------------------------------------------------------------*/

.fc-unthemed .fc-list-item:hover td {
    background-color: #f5f5f5;
}



/* Colors
--------------------------------------------------------------------------------------------------*/

.ui-widget .fc-disabled-day {
    background-image: none;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-popover > .ui-widget-header + .ui-widget-content {
    border-top: 0; /* where they meet, let the header have the border */
}


/* Global Event Styles
--------------------------------------------------------------------------------------------------*/

.ui-widget .fc-event {
    /* overpower jqui's styles on <a> tags. TODO: more DRY */
    color: #fff; /* default TEXT color */
    text-decoration: none; /* if <a> has an href */
    /* undo ui-widget-header bold */
    font-weight: normal;
}


/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.ui-widget td.fc-axis {
    font-weight: normal; /* overcome bold */
}


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-timegrid .fc-slats .ui-widget-content {
    background: none; /* see through to fc-bg */
}



.fc.fc-bootstrap3 a {
    text-decoration: none;
}

    .fc.fc-bootstrap3 a[data-goto]:hover {
        text-decoration: underline;
    }

.fc-bootstrap3 hr.fc-divider {
    border-color: inherit;
}

.fc-bootstrap3 .fc-today.alert {
    border-radius: 0;
}


/* Popover
--------------------------------------------------------------------------------------------------*/

.fc-bootstrap3 .fc-popover .panel-body {
    padding: 0; /* undo built-in padding */
}


/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

.fc-bootstrap3 .fc-timegrid .fc-slats table {
    /* some themes have background color. see through tocursor: pointer; slats */
    background: none;
}



/* Toolbar
--------------------------------------------------------------------------------------------------*/

.fc-toolbar {
    text-align: center;
}

    .fc-toolbar.fc-header-toolbar {
        margin-bottom: 1em;
    }

    .fc-toolbar.fc-footer-toolbar {
        margin-top: 1em;
    }

    .fc-toolbar .fc-left {
        float: left;
    }

    .fc-toolbar .fc-right {
        float: right;
    }

    .fc-toolbar .fc-center {
        display: inline-block;
    }

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * { /* extra precedence to override button border margins */
    float: left;
    margin-left: .75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child { /* extra precedence to override button border margins */
    margin-left: 0;
}

/* title text */

.fc-toolbar h2 {
    margin: 0;
}

/* button layering (for border precedence) */

.fc-toolbar button {
    position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
    z-index: 2;
}

.fc-toolbar .fc-state-down {
    z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
    z-index: 4;
}

.fc-toolbar button:focus {
    z-index: 5;
}


/* View Structure
--------------------------------------------------------------------------------------------------*/

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
    box-sizing: content-box;
}

.fc-view, /* scope positioning and z-index's for everything within the view */
.fc-view > table { /* so dragged elements can be above the view's main element */
    position: relative;
    z-index: 1;
}



/* BasicView
--------------------------------------------------------------------------------------------------*/

/* day row structure */

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
    /* there may be week numbers in these views, so no padding-top */
    padding-bottom: 1em; /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
    min-height: 4em; /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */

.fc-row.fc-rigid {
    overflow: hidden;
}

    .fc-row.fc-rigid .fc-content-skeleton {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

/* week and day number styling */

.fc-day-top.fc-other-month {
    opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
    padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
    padding: 0 2px; /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
    float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
    float: left;
    border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
    float: right;
    border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
    min-width: 1.5em;
    text-align: center;
    background-color: #f2f2f2;
    color: #808080;
}

/* when week/day number have own column */

.fc-basic-view td.fc-week-number {
    text-align: center;
}

    .fc-basic-view td.fc-week-number > * {
        /* work around the way we do column resizing and ensure a minimum width */
        display: inline-block;
        min-width: 1.25em;
    }


/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/

.fc-agenda-view .fc-timeGridDay {
    position: relative;
    z-index: 2; /* so the "more.." popover will be over the time grid */
}

    .fc-agenda-view .fc-timeGridDay .fc-row {
        min-height: 3em; /* all-day section will never get shorter than this */
    }

        .fc-agenda-view .fc-timeGridDay .fc-row .fc-content-skeleton {
            padding-bottom: 1em; /* give space underneath events for clicking/selecting days */
        }


/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/

.fc .fc-axis { /* .fc to overcome default cell styles */
    vertical-align: middle;
    padding: 0 4px;
    white-space: nowrap;
}

.fc-ltr .fc-axis {
    text-align: right;
}

.fc-rtl .fc-axis {
    text-align: left;
}


/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/

.fc-timegrid-container, /* so scroll container's z-index is below all-day */
.fc-timegrid { /* so slats/bg/content/etc positions get scoped within here */
    position: relative;
    z-index: 1;
}

.fc-timegrid {
    min-height: 100%; /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

    .fc-timegrid table { /* don't put outer borders on slats/bg/content/etc */
        border: 0 hidden transparent;
    }

    .fc-timegrid > .fc-bg {
        z-index: 1;
    }

    .fc-timegrid .fc-slats,
    .fc-timegrid > hr { /* the <hr> AgendaView injects when grid is shorter than scroller */
        position: relative;
        z-index: 2;
    }

    .fc-timegrid .fc-content-col {
        position: relative; /* because now-indicator lives directly inside */
    }

    .fc-timegrid .fc-content-skeleton {
        position: absolute;
        z-index: 3;
        top: 0;
        left: 0;
        right: 0;
    }

    /* divs within a cell within the fc-content-skeleton */

    .fc-timegrid .fc-business-container {
        position: relative;
        z-index: 1;
    }

    .fc-timegrid .fc-bgevent-container {
        position: relative;
        z-index: 2;
    }

    .fc-timegrid .fc-highlight-container {
        position: relative;
        z-index: 3;
    }

    .fc-timegrid .fc-event-container {
        position: relative;
        z-index: 4;
    }

    .fc-timegrid .fc-now-indicator-line {
        z-index: 5;
    }

    .fc-timegrid .fc-helper-container { /* also is fc-event-container */
        position: relative;
        z-index: 6;
    }


    /* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/

    .fc-timegrid .fc-slats td {
        height: 2.6em;
        font-size: 12px;
        color: #666;
        border-bottom: 0; /* each cell is responsible for its top border */
    }

    .fc-timegrid .fc-slats .fc-minor td {
        border-top-style: dotted;
    }


    /* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/

    .fc-timegrid .fc-highlight-container { /* a div within a cell within the fc-highlight-skeleton */
        position: relative; /* scopes the left/right of the fc-highlight to be in the column */
    }

    .fc-timegrid .fc-highlight {
        position: absolute;
        left: 0;
        right: 0;
        /* top and bottom will be in by JS */
    }


/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/

.fc-ltr .fc-timegrid .fc-event-container { /* space on the sides of events for LTR (default) */
    margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-timegrid .fc-event-container { /* space on the sides of events for RTL */
    margin: 0 2px 0 2.5%;
}

.fc-timegrid .fc-event,
.fc-timegrid .fc-bgevent {
    position: absolute;
    z-index: 1; /* scope inner z-index's */
}

.fc-timegrid .fc-bgevent {
    /* background events always span full width */
    left: 0;
    right: 0;
}


/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/

.fc-v-event.fc-not-start { /* events that are continuing from another day */
    /* replace space made by the top border with padding */
    border-top-width: 0;
    padding-top: 1px;
    /* remove top rounded corners */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
    /* replace space made by the top border with padding */
    border-bottom-width: 0;
    padding-bottom: 1px;
    /* remove bottom rounded corners */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-timegrid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/

.fc-timegrid-event {
    overflow: hidden; /* don't let the bg flow over rounded corners */
}

    .fc-timegrid-event.fc-selected {
        /* need to allow touch resizers to extend outside event's bounding box */
        /* common fc-selected styles hide the fc-bg, so don't need this anyway */
        overflow: visible;
    }

        .fc-timegrid-event.fc-selected .fc-bg {
            display: none; /* hide semi-white background, to appear darker */
        }

    .fc-timegrid-event .fc-content {
        overflow: hidden; /* for when .fc-selected */
    }

    .fc-timegrid-event .fc-time,
    .fc-timegrid-event .fc-title {
        padding: 0 1px;
    }

    .fc-timegrid-event .fc-time {
        font-size: .85em;
        white-space: nowrap;
    }

    /* short mode, where time and title are on the same line */

    .fc-timegrid-event.fc-short .fc-content {
        /* don't wrap to second line (now that contents will be inline) */
        white-space: nowrap;
    }

    .fc-timegrid-event.fc-short .fc-time,
    .fc-timegrid-event.fc-short .fc-title {
        /* put the time and title on the same line */
        display: inline-block;
        vertical-align: top;
    }

        .fc-timegrid-event.fc-short .fc-time span {
            display: none; /* don't display the full time text... */
        }

        .fc-timegrid-event.fc-short .fc-time:before {
            content: attr(data-start); /* ...instead, display only the start time */
        }

        .fc-timegrid-event.fc-short .fc-time:after {
            content: "\000A0-\000A0"; /* seperate with a dash, wrapped in nbsp's */
        }

    .fc-timegrid-event.fc-short .fc-title {
        font-size: .85em; /* make the title text the same size as the time */
        padding: 0; /* undo padding from above */
    }

    /* resizer (cursor device) */

    .fc-timegrid-event.fc-allow-mouse-resize .fc-resizer {
        left: 0;
        right: 0;
        bottom: 0;
        height: 8px;
        overflow: hidden;
        line-height: 8px;
        font-size: 11px;
        font-family: monospace;
        text-align: center;
        cursor: s-resize;
    }

        .fc-timegrid-event.fc-allow-mouse-resize .fc-resizer:after {
            content: "=";
        }

    /* resizer (touch device) */

    .fc-timegrid-event.fc-selected .fc-resizer {
        /* 10x10 dot */
        border-radius: 5px;
        border-width: 1px;
        width: 8px;
        height: 8px;
        border-style: solid;
        border-color: inherit;
        background: #fff;
        /* horizontally center */
        left: 50%;
        margin-left: -5px;
        /* center on the bottom edge */
        bottom: -5px;
    }


/* Now Indicator
--------------------------------------------------------------------------------------------------*/

.fc-timegrid .fc-now-indicator-line {
    border-top-width: 1px;
    left: 0;
    right: 0;
}

/* arrow on axis */

.fc-timegrid .fc-now-indicator-arrow {
    margin-top: -5px; /* vertically center on top coordinate */
}

.fc-ltr .fc-timegrid .fc-now-indicator-arrow {
    left: 0;
    /* triangle pointing right... */
    border-width: 5px 0 5px 6px;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.fc-rtl .fc-timegrid .fc-now-indicator-arrow {
    right: 0;
    /* triangle pointing left... */
    border-width: 5px 6px 5px 0;
    border-top-color: transparent;
    border-bottom-color: transparent;
}



/* List View
--------------------------------------------------------------------------------------------------*/

/* possibly reusable */

.fc-event-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

/* view wrapper */

.fc-rtl .fc-list-view {
    direction: rtl; /* unlike core views, leverage browser RTL */
}

.fc-list-view {
    border-width: 1px;
    border-style: solid;
}

/* table resets */

.fc .fc-list-table {
    table-layout: auto; /* for shrinkwrapping cell content */
}

.fc-list-table td {
    border-width: 1px 0 0;
    padding: 8px 14px;
}


.fc-list-table tr:first-child td {
    border-top-width: 0;
}

/* day headings with the list */

.fc-list-heading {
    border-bottom-width: 1px;
}

    .fc-list-heading td {
        font-weight: bold;
    }

.fc-ltr .fc-list-heading-main {
    float: left;
}

.fc-ltr .fc-list-heading-alt {
    float: right;
}

.fc-rtl .fc-list-heading-main {
    float: right;
}

.fc-rtl .fc-list-heading-alt {
    float: left;
}

/* event list items */

.fc-list-item.fc-has-url {
    cursor: pointer; /* whole row will be clickable */
}

.fc-list-item-marker,
.fc-list-item-time {
    white-space: nowrap;
    width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
    padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
    padding-left: 0;
}

.fc-list-item-title a {
    /* every event title cell has an <a> tag */
    text-decoration: none;
    color: inherit;
}

    .fc-list-item-title a[href]:hover {
        /* hover effect only on titles with hrefs */
        text-decoration: underline;
    }

/* message when no events */

.fc-list-empty-wrap2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fc-list-empty-wrap1 {
    width: 100%;
    height: 100%;
    display: table;
}

.fc-list-empty {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.fc-unthemed .fc-list-empty { /* theme will provide own background */
    background-color: #eee;
}

/*-- // Custom // --*/
::-webkit-scrollbar-track {
    background-color: #d6d5d5;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #d6d5d5;
}

::-webkit-scrollbar-thumb {
    background-color: #979797;
}

.fc-list-item {
    background: #bbdefb;
    margin: 0 15px 15px 15px;
    display: block;
    border-radius: 5px;
    padding: 3px 10px;
    border-left: 5px #1f88e5 solid;
    cursor: pointer;
}

.fc-list-table .fc-list-item td {
    border-width: 1px 0 0;
    padding: 0;
    display: block;
    width: 100%;
    border: 0;
    margin: 5px 0;font-size:13px;
}

.fc-list-table .fc-list-heading td.fc-widget-header {
    border: 0;
    font-size: 14px;
    font-weight: 500;
}

.fc-list-table .fc-list-item td.fc-list-item-time {
    font-weight: 600;
    font-size: 14px;
}

.fc-unthemed .fc-list-item:hover td.fc-widget-content {
    background: none;
}
.fc-list-table .fc-list-item td.fc-list-item-marker {
    display: none;
}

/*-- // Custom // --*/
.eventContainer {
    position: relative;
    padding: 5px;
}
    .closeon

{
    position: absolute;
    right: 0;
    top: 5px;
}

.fc-timegrid-slots table tbody tr {
    height: 35px;
}

.fc-scrollgrid-section-header th[role='presentation'] {
    padding: 0px !important;
}
.fc-scrollgrid-section-header table[role='presentation'] {
    border: 1px;
    width: 100% !important;
}

.fc-timegrid-event .fc-event-time {
    display: none;
}

.fc-col-header-cell-cushion, .fc-daygrid-day-number {
    color: rgba(0,0,0,0.6)
}

.fc-timegrid-slots table,
.fc-timegrid-cols table[role='presentation'], .fc-timegrid-body,
.fc-daygrid-body, .fc-daygrid-body table[role='presentation']  {
    width: 100% !important;
}


/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/@angular-devkit/build-angular/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*-- // Common // --*/
html {
  height: 100%;
}

body {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  --forge-scrollbar-width: 10px;
}
body input {
  inset-block-start: calc(var(--_field-height) * -0.3);
}

.app-root {
  height: 100%;
  display: flex;
  flex-direction: column;
}

table {
  width: 100%;
  box-shadow: none;
}

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

.text-right {
  text-align: right !important;
}

.img-responsive {
  max-width: 100%;
}

.desc-small {
  color: rgba(0, 0, 0, 0.34);
  font-size: 12px;
}

.text-gray {
  color: rgba(0, 0, 0, 0.54);
}

/*-- // Custom Grid // --*/
.custom-grid {
  border: rgba(0, 0, 0, 0.12) 1px solid;
}

.custom-grid tbody tr {
  vertical-align: top;
}

.custom-grid tr th {
  color: rgba(0, 0, 0, 0.38);
}

.custom-grid tr th, .custom-grid tr td {
  padding: 10px;
  line-height: 22px;
}

/*-- // Agenda Tabs // --*/
.container {
  position: relative;
}
.container > .addMeetingButton {
  z-index: 1;
  font-size: 30px;
  color: white !important;
  font-weight: bold;
  position: absolute;
  bottom: 10%;
  right: -10px;
}

/*-- // Common // --*/
.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.clearfix:after {
  clear: both;
}

.no-record {
  background: #f9f9f9;
  border: 1px #eee solid;
  padding: 30px;
  text-align: center;
  color: rgba(0, 0, 0, 0.54);
}

.ml-10 {
  margin-left: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

/*-- Scrollbar -- */
::-webkit-scrollbar {
  width: 10px;
  background-color: #d6d5d5;
}

/*-- // App meeting // --*/
.app-meeting {
  height: 100%;
}

.app-meeting appc-meeting-manager {
  height: 100%;
  display: block;
}

.grey-button {
  border: 1px solid #303590;
  background-color: #FFFFFF;
  color: #303590;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 2px;
}

.btn-light {
  border-color: #e5e5e5 !important;
  color: #999 !important;
}

/*-- // Dashboard // --*/
.dashboard-left .related-information {
  height: calc(100% - 62px);
}

.dashboard-right appc-schedular-list-view {
  height: 100%;
}
.dashboard-right .fc-custom-list {
  height: 100% !important;
}
.dashboard-right .fc-custom-list .fc-list-view {
  height: 100% !important;
}

body .fc .fc-event {
  border-left-width: 5px !important;
  border-left-style: solid !important;
}

/*-- // Stepper // --*/
.custom-desc {
  margin: 12px 0;
}

.custom-label {
  color: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  margin-bottom: 3px;
  font-weight: 500;
  display: block;
}

.custom-alert {
  color: #f44336;
  font-size: 12px;
}

.ui-datatable .auditDataTable .ui-datatable-thead > tr > th, .ui-datatable .auditDataTable .ui-datatable-tfoot > tr > td, .ui-datatable .auditDataTable .ui-datatable-data > tr > td {
  display: flex;
  align-items: center;
  padding: 10px 35px 10px 10px;
  font-weight: 400;
  border: 0;
  border-bottom: 1px solid #D5D5D5;
}

.ui-datatable .auditDataTable .ui-datatable-thead > tr > th span b, .ui-datatable .auditDataTable .ui-datatable-tfoot > tr > td span b, .ui-datatable .auditDataTable .ui-datatable-data > tr > td span b {
  color: #3f51b5;
  margin: 0 5px;
}

.ui-datatable .auditDataTable thead th, .ui-datatable .auditDataTable tbody, .ui-datatable .auditDataTable tbody tr, .ui-datatable .auditDataTable tbody td {
  border-style: none;
}

.ui-datatable .ui-datatable-tablewrapper {
  max-height: 300px;
  overflow-y: auto;
}
.ui-datatable .auditDataTable tr > td {
  position: relative;
}
.ui-datatable .auditDataTable tr > td > a {
  position: absolute;
  right: 5px;
  top: 12px;
}
.ui-datatable .auditDataTable .ui-cell-data {
  position: relative;
}
.ui-datatable .auditDataTable .ui-cell-data > .history-info {
  padding-left: 35px;
  display: inline-flex;
  min-height: 24px;
}
.ui-datatable .auditDataTable .ui-cell-data > .history-info > span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 16px;
}
.ui-datatable .auditDataTable .ui-widget-content a {
  margin-left: 10px;
}
.ui-datatable .auditDataTable .ui-widget-content a .ui-row-toggler {
  color: rgba(34, 34, 34, 0.5);
}

body .ui-paginator {
  background: none !important;
  border: 0 !important;
  text-align: right;
  margin-top: 15px;
}
body .ui-paginator .ui-paginator-pages {
  display: none !important;
}
body .ui-paginator .ui-inputwrapper-filled {
  width: 65px;
  display: inline-block;
}

.ui-dropdown .ui-dropdown-trigger {
  border: 0;
}

body .ui-dropdown-trigger-icon.pi {
  font-size: 0.7em;
}

.page-count {
  position: absolute;
  right: 200px;
  bottom: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.history-sub-grid table {
  text-align: left;
}

.history-sub-grid table thead {
  background: #e8f1fb;
}

.history-sub-grid table thead th {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  text-align: left;
  font-weight: 400;
}

.history-sub-grid table tbody td {
  padding: 5px;
  text-align: left;
  font-size: 13px;
  border-bottom: rgba(0, 0, 0, 0.07) solid 1px;
}

.history-sub-grid table tbody td:nth-child(2) {
  color: rgba(0, 0, 0, 0.5);
}

.full-width {
  width: 100%;
}

.fr-fic {
  display: block;
  margin: 0 auto;
}

.fr-fir {
  float: right;
}

.fr-fil {
  float: left;
}

.next-line-indention .next-line-indention, .indention .indention {
  margin-left: 0 !important;
}

span.add-agenda-card.indention {
  word-break: break-all;
}

.full-width > p:first-of-type {
  width: 100%;
  float: left;
}

.meeting-details {
  margin-top: 10px !important;
}

.full-width br {
  clear: both;
}

/*info icon*/
.info-icon a, .info-icon a:visited, .info-icon a:active, .info-icon a:link {
  display: inline-block;
  /* background: red; */
  border-radius: 50%;
  width: 34px;
  height: 34px;
  padding: 6px;
  outline: none !important;
  line-height: 22px;
  background: #e0e0e0;
}

.info-icon a:hover {
  background: #e0e0e0;
  outline: none !important;
  line-height: 22px;
}

.hide-info .info-icon a {
  background: transparent;
}

.card-wrapper {
  margin-top: 15px;
}

.card-wrapper .card {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border: #f2f2f2 1px solid;
  position: relative;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
}

.card-wrapper .card:last-child {
  margin-bottom: 0;
}

.card h3, .card p {
  margin: 0;
  padding: 0;
}

.card h3 {
  margin-bottom: 7px;
  font-size: 14px;
  word-break: break-all;
}

.card p {
  margin-bottom: 5px;
}

@media (max-width: 1550px) {
  .dashboard-left .related-information {
    height: calc(100% - 62px);
  }
}
.rowFlex {
  display: flex;
  flex-wrap: wrap;
}

.colFlex {
  position: relative;
  width: 100%;
}

.fullHeight {
  height: 100%;
}

.align-items-stretch {
  align-items: stretch;
}

.wordBreakAll {
  word-break: break-all;
}

@media screen and (max-width: 1600px) and (min-width: 320px) {
  .custom-res-img p img.fr-fic {
    width: auto !important;
    max-width: 100% !important;
  }
}
.padding-0 {
  padding-right: 0px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.long-data-styling {
  width: 100px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.full-column-width {
  width: 100%;
}

.meeting-box-container-list {
  display: flex;
  flex-direction: column;
  padding: 2px;
  width: 100%;
  height: 100%;
}
.meeting-box-container-list .location-container {
  display: flex;
  flex-direction: row;
}
.meeting-box-container-list .location-container forge-icon {
  font-size: 14px;
  padding-right: 0.1rem;
}
.meeting-box-container-list .location-container .location-text {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 70%;
  font-size: 12px;
}
.meeting-box-container-list .meeting-title {
  font-size: 14px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 70%;
}
.meeting-box-container-list .start-end-time {
  font-size: 12px;
}

.meeting-box-container {
  display: flex;
  flex-direction: column;
  padding-left: 5px;
  width: 100%;
  height: 100%;
}
.meeting-box-container .location-container {
  display: flex;
  flex-direction: row;
}
.meeting-box-container .location-container forge-icon {
  font-size: 14px;
  padding-right: 0.1rem;
}
.meeting-box-container .location-container .location-text {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 70%;
  font-size: 12px;
}
.meeting-box-container .meeting-title {
  font-size: 12px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 70%;
}

.meeting-box-container-month {
  display: flex;
  flex-direction: row;
  font-size: 12px;
  font-weight: 500;
  column-gap: 0.25rem;
  padding-left: 0.25rem;
  height: 100%;
  width: 100%;
}
.meeting-box-container-month .meeting-title-text {
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80%;
}
.meeting-box-container-month .meeting-time-text {
  position: relative;
  top: 0.15rem;
}

.dialog-class {
  --forge-dialog-width: 75vw;
  --forge-dialog-min-width: 500px;
  --forge-dialog-max-width: 85vw;
}

.dialog-subscription-class {
  --forge-dialog-max-width: 85vw;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
  .dialog-class {
    --forge-dialog-min-width: fit-content;
  }
  .dialog-class .schedule-height {
    max-height: 80vh;
  }
  .meeting-title-container {
    display: flex;
  }
  .meeting-title-container .col-sm-7 {
    width: 80%;
    display: grid;
  }
  .card-body span {
    width: 50vw;
    text-align: center;
  }
  #btn-notify-for {
    padding-top: 10px;
  }
  .forge-date-range-picker__popup {
    --forge-calendar-width: 100%;
  }
}
.no-padding-forge-card {
  --forge-card-padding: 0px;
}

.mb-15 {
  margin-bottom: 15px;
}

forge-text-field, forge-select {
  padding: 8px 0;
}

forge-dialog::part(surface) {
  display: block;
  --forge-scaffold-width: 98%;
}

.calendar-line-height {
  line-height: 32px;
}

forge-date-range-picker input {
  max-width: 110px;
}
/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/@tylertech/forge/dist/forge.css?ngGlobalStyle ***!
  \****************************************************************************************************************************************************************************************************************************************************/
/**
 * @license
 * Copyright Tyler Technologies, Inc. 
 * License: Apache-2.0
 */
:root {
  --forge-color-emphasis-highest: 0.87;
  --forge-color-emphasis-inverse: 0.8;
  --forge-color-emphasis-higher: 0.7;
  --forge-color-emphasis-high: 0.65;
  --forge-color-emphasis-medium-high: 0.6;
  --forge-color-emphasis-medium: 0.54;
  --forge-color-emphasis-medium-low: 0.38;
  --forge-color-emphasis-low: 0.24;
  --forge-color-emphasis-lower: 0.12;
  --forge-color-emphasis-lowest: 0.08;
  --forge-color-emphasis-minimum: 0.04;
}

:root {
  --forge-animation-duration-short1: 50ms;
  --forge-animation-duration-short2: 100ms;
  --forge-animation-duration-short3: 150ms;
  --forge-animation-duration-short4: 200ms;
  --forge-animation-duration-medium1: 250ms;
  --forge-animation-duration-medium2: 300ms;
  --forge-animation-duration-medium3: 350ms;
  --forge-animation-duration-medium4: 400ms;
  --forge-animation-duration-long1: 450ms;
  --forge-animation-duration-long2: 500ms;
  --forge-animation-duration-long3: 550ms;
  --forge-animation-duration-long4: 600ms;
  --forge-animation-duration-extra-long1: 700ms;
  --forge-animation-duration-extra-long2: 800ms;
  --forge-animation-duration-extra-long3: 900ms;
  --forge-animation-duration-extra-long4: 1000ms;
  --forge-animation-easing-linear: cubic-bezier(0, 0, 1, 1);
  --forge-animation-easing-standard: cubic-bezier(0.2, 0, 0, 1);
  --forge-animation-easing-accelerate: cubic-bezier(0.3, 0, 1, 1);
  --forge-animation-easing-decelerate: cubic-bezier(0, 0, 0, 1);
  --forge-animation-easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
  --forge-animation-easing-emphasized-accelerate: cubic-bezier(0.3, 0, 0.8, 0.15);
  --forge-animation-easing-emphasized-decelerate: cubic-bezier(0.05, 0.7, 0.1, 1);
}

:root {
  --forge-border-thin: 1px;
  --forge-border-medium: 2px;
  --forge-border-thick: 4px;
}

:root {
  --forge-elevation-0: 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);
  --forge-elevation-1: 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);
  --forge-elevation-2: 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);
  --forge-elevation-3: 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);
  --forge-elevation-4: 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);
  --forge-elevation-5: 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);
  --forge-elevation-6: 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);
  --forge-elevation-7: 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);
  --forge-elevation-8: 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);
  --forge-elevation-9: 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);
  --forge-elevation-10: 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);
  --forge-elevation-11: 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);
  --forge-elevation-12: 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);
  --forge-elevation-13: 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);
  --forge-elevation-14: 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);
  --forge-elevation-15: 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);
  --forge-elevation-16: 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);
  --forge-elevation-17: 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);
  --forge-elevation-18: 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);
  --forge-elevation-19: 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);
  --forge-elevation-20: 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);
  --forge-elevation-21: 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);
  --forge-elevation-22: 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);
  --forge-elevation-23: 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);
  --forge-elevation-24: 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);
}

:root {
  --forge-z-index-surface: 1;
  --forge-z-index-header: 4;
  --forge-z-index-backdrop: 7;
  --forge-z-index-dialog: 8;
  --forge-z-index-notification: 9;
  --forge-z-index-popup: 10;
  --forge-z-index-tooltip: 11;
}

:root {
  --forge-shape-extra-small: 1px;
  --forge-shape-extra-small-block-start: 1px 1px 0 0;
  --forge-shape-extra-small-block-end: 0 0 1px 1px;
  --forge-shape-extra-small-inline-start: 1px 0 0 1px;
  --forge-shape-extra-small-inline-end: 0 1px 1px 0;
  --forge-shape-small: 2px;
  --forge-shape-small-block-start: 2px 2px 0 0;
  --forge-shape-small-block-end: 0 0 2px 2px;
  --forge-shape-small-inline-start: 2px 0 0 2px;
  --forge-shape-small-inline-end: 0 2px 2px 0;
  --forge-shape-medium: 4px;
  --forge-shape-medium-block-start: 4px 4px 0 0;
  --forge-shape-medium-block-end: 0 0 4px 4px;
  --forge-shape-medium-inline-start: 4px 0 0 4px;
  --forge-shape-medium-inline-end: 0 4px 4px 0;
  --forge-shape-large: 8px;
  --forge-shape-large-block-start: 8px 8px 0 0;
  --forge-shape-large-block-end: 0 0 8px 8px;
  --forge-shape-large-inline-start: 8px 0 0 8px;
  --forge-shape-large-inline-end: 0 8px 8px 0;
  --forge-shape-extra-large: 16px;
  --forge-shape-extra-large-block-start: 16px 16px 0 0;
  --forge-shape-extra-large-block-end: 0 0 16px 16px;
  --forge-shape-extra-large-inline-start: 16px 0 0 16px;
  --forge-shape-extra-large-inline-end: 0 16px 16px 0;
  --forge-shape-full: 9999px;
  --forge-shape-round: 50%;
}

:root {
  --forge-spacing-xxxsmall: 2px;
  --forge-spacing-xxsmall: 4px;
  --forge-spacing-xsmall: 8px;
  --forge-spacing-small: 12px;
  --forge-spacing-medium: 16px;
  --forge-spacing-medium-large: 20px;
  --forge-spacing-large: 24px;
  --forge-spacing-xlarge: 32px;
  --forge-spacing-xxlarge: 48px;
  --forge-spacing-xxxlarge: 56px;
}

:root {
  --forge-theme-brand: #283593;
  --forge-theme-on-brand: #ffffff;
  --forge-theme-primary: #3f51b5;
  --forge-theme-primary-container-minimum: #f7f8fc;
  --forge-theme-primary-container-low: #e8eaf6;
  --forge-theme-primary-container: #d1d5ed;
  --forge-theme-primary-container-high: #b6bde3;
  --forge-theme-on-primary: #ffffff;
  --forge-theme-on-primary-container-minimum: #222c62;
  --forge-theme-on-primary-container-low: #222c62;
  --forge-theme-on-primary-container: #222c62;
  --forge-theme-on-primary-container-high: #000000;
  --forge-theme-secondary: #ffc107;
  --forge-theme-secondary-container-minimum: #fffdf5;
  --forge-theme-secondary-container-low: #fff8e1;
  --forge-theme-secondary-container: #fff0c3;
  --forge-theme-secondary-container-high: #ffe7a1;
  --forge-theme-on-secondary: #000000;
  --forge-theme-on-secondary-container-minimum: #8a6804;
  --forge-theme-on-secondary-container-low: #8a6804;
  --forge-theme-on-secondary-container: #8a6804;
  --forge-theme-on-secondary-container-high: #000000;
  --forge-theme-tertiary: #3d5afe;
  --forge-theme-tertiary-container-minimum: #f7f8ff;
  --forge-theme-tertiary-container-low: #e8ebff;
  --forge-theme-tertiary-container: #d0d7ff;
  --forge-theme-tertiary-container-high: #b5c0ff;
  --forge-theme-on-tertiary: #ffffff;
  --forge-theme-on-tertiary-container-minimum: #213189;
  --forge-theme-on-tertiary-container-low: #213189;
  --forge-theme-on-tertiary-container: #213189;
  --forge-theme-on-tertiary-container-high: #000000;
  --forge-theme-surface: #ffffff;
  --forge-theme-surface-inverse: #333333;
  --forge-theme-surface-container: #e0e0e0;
  --forge-theme-surface-container-minimum: #f5f5f5;
  --forge-theme-surface-container-low: #ebebeb;
  --forge-theme-surface-container-medium: #c2c2c2;
  --forge-theme-surface-container-high: #9e9e9e;
  --forge-theme-surface-dim: #fafafa;
  --forge-theme-surface-bright: #ffffff;
  --forge-theme-surface-bright-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);
  --forge-theme-on-surface: #000000;
  --forge-theme-on-surface-inverse: #ffffff;
  --forge-theme-on-surface-container: #000000;
  --forge-theme-on-surface-container-minimum: #000000;
  --forge-theme-on-surface-container-low: #000000;
  --forge-theme-on-surface-container-medium: #000000;
  --forge-theme-on-surface-container-high: #000000;
  --forge-theme-text-high: rgba(0, 0, 0, 0.87);
  --forge-theme-text-high-inverse: rgba(255, 255, 255, 0.87);
  --forge-theme-text-medium: rgba(0, 0, 0, 0.6);
  --forge-theme-text-medium-inverse: rgba(255, 255, 255, 0.6);
  --forge-theme-text-low: rgba(0, 0, 0, 0.38);
  --forge-theme-text-low-inverse: rgba(255, 255, 255, 0.38);
  --forge-theme-text-lowest: rgba(0, 0, 0, 0.12);
  --forge-theme-text-lowest-inverse: rgba(255, 255, 255, 0.12);
  --forge-theme-success: #2e7d32;
  --forge-theme-success-container-minimum: #f7faf7;
  --forge-theme-success-container-low: #e6efe6;
  --forge-theme-success-container: #cde0ce;
  --forge-theme-success-container-high: #b0ceb1;
  --forge-theme-on-success: #ffffff;
  --forge-theme-on-success-container-minimum: #19441b;
  --forge-theme-on-success-container-low: #19441b;
  --forge-theme-on-success-container: #19441b;
  --forge-theme-on-success-container-high: #000000;
  --forge-theme-error: #b00020;
  --forge-theme-error-container-minimum: #fcf5f6;
  --forge-theme-error-container-low: #f6e0e4;
  --forge-theme-error-container: #ecc2c9;
  --forge-theme-error-container-high: #e19eaa;
  --forge-theme-on-error: #ffffff;
  --forge-theme-on-error-container-minimum: #5f0011;
  --forge-theme-on-error-container-low: #5f0011;
  --forge-theme-on-error-container: #5f0011;
  --forge-theme-on-error-container-high: #000000;
  --forge-theme-warning: #d14900;
  --forge-theme-warning-container-minimum: #fdf8f5;
  --forge-theme-warning-container-low: #f9e9e0;
  --forge-theme-warning-container: #f4d3c2;
  --forge-theme-warning-container-high: #eeba9e;
  --forge-theme-on-warning: #ffffff;
  --forge-theme-on-warning-container-minimum: #712700;
  --forge-theme-on-warning-container-low: #712700;
  --forge-theme-on-warning-container: #712700;
  --forge-theme-on-warning-container-high: #000000;
  --forge-theme-info: #1565c0;
  --forge-theme-info-container-minimum: #f6f9fc;
  --forge-theme-info-container-low: #e3edf7;
  --forge-theme-info-container: #c7daf0;
  --forge-theme-info-container-high: #a6c4e7;
  --forge-theme-on-info: #ffffff;
  --forge-theme-on-info-container-minimum: #0b3768;
  --forge-theme-on-info-container-low: #0b3768;
  --forge-theme-on-info-container: #0b3768;
  --forge-theme-on-info-container-high: #000000;
  --forge-theme-outline-high: #212121;
  --forge-theme-outline-medium: #757575;
  --forge-theme-outline-low: #9e9e9e;
  --forge-theme-outline: #e0e0e0;
}

*::-webkit-scrollbar {
  height: var(--forge-scrollbar-height, 16px);
  width: var(--forge-scrollbar-width, 16px);
}
*::-webkit-scrollbar-track {
  background-color: var(--forge-scrollbar-track-container, var(--forge-theme-surface-container-low, #ebebeb));
}
*::-webkit-scrollbar-track:hover {
  background-color: var(--forge-scrollbar-track-container-hover, var(--forge-theme-surface-container-low, #ebebeb));
}
*::-webkit-scrollbar-corner {
  background-color: var(--forge-scrollbar-track-container, var(--forge-theme-surface-container-low, #ebebeb));
}
*::-webkit-scrollbar-thumb {
  height: var(--forge-scrollbar-thumb-min-height, 32px);
  width: var(--forge-scrollbar-thumb-min-width, 32px);
  border-radius: var(--forge-scrollbar-border-radius, calc(var(--forge-shape-full, 9999px) * var(--forge-shape-factor, 1)));
  border-width: var(--forge-scrollbar-border-width, 3px);
  border-style: solid;
  border-color: transparent;
  background-color: var(--forge-scrollbar-thumb-container, var(--forge-theme-surface-container-medium, #c2c2c2));
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--forge-scrollbar-thumb-container-hover, var(--forge-theme-surface-container-high, #9e9e9e));
}

.forge-color--brand {
  color: var(--forge-theme-brand, #283593);
}

.forge-background--brand {
  background-color: var(--forge-theme-brand, #283593);
}

.forge-color--on-brand {
  color: var(--forge-theme-on-brand, #ffffff);
}

.forge-background--on-brand {
  background-color: var(--forge-theme-on-brand, #ffffff);
}

.forge-color--primary {
  color: var(--forge-theme-primary, #3f51b5);
}

.forge-background--primary {
  background-color: var(--forge-theme-primary, #3f51b5);
}

.forge-color--primary-container-minimum {
  color: var(--forge-theme-primary-container-minimum, #f7f8fc);
}

.forge-background--primary-container-minimum {
  background-color: var(--forge-theme-primary-container-minimum, #f7f8fc);
}

.forge-color--primary-container-low {
  color: var(--forge-theme-primary-container-low, #e8eaf6);
}

.forge-background--primary-container-low {
  background-color: var(--forge-theme-primary-container-low, #e8eaf6);
}

.forge-color--primary-container {
  color: var(--forge-theme-primary-container, #d1d5ed);
}

.forge-background--primary-container {
  background-color: var(--forge-theme-primary-container, #d1d5ed);
}

.forge-color--primary-container-high {
  color: var(--forge-theme-primary-container-high, #b6bde3);
}

.forge-background--primary-container-high {
  background-color: var(--forge-theme-primary-container-high, #b6bde3);
}

.forge-color--on-primary {
  color: var(--forge-theme-on-primary, #ffffff);
}

.forge-background--on-primary {
  background-color: var(--forge-theme-on-primary, #ffffff);
}

.forge-color--on-primary-container-minimum {
  color: var(--forge-theme-on-primary-container-minimum, #222c62);
}

.forge-background--on-primary-container-minimum {
  background-color: var(--forge-theme-on-primary-container-minimum, #222c62);
}

.forge-color--on-primary-container-low {
  color: var(--forge-theme-on-primary-container-low, #222c62);
}

.forge-background--on-primary-container-low {
  background-color: var(--forge-theme-on-primary-container-low, #222c62);
}

.forge-color--on-primary-container {
  color: var(--forge-theme-on-primary-container, #222c62);
}

.forge-background--on-primary-container {
  background-color: var(--forge-theme-on-primary-container, #222c62);
}

.forge-color--on-primary-container-high {
  color: var(--forge-theme-on-primary-container-high, #000000);
}

.forge-background--on-primary-container-high {
  background-color: var(--forge-theme-on-primary-container-high, #000000);
}

.forge-color--secondary {
  color: var(--forge-theme-secondary, #ffc107);
}

.forge-background--secondary {
  background-color: var(--forge-theme-secondary, #ffc107);
}

.forge-color--secondary-container-minimum {
  color: var(--forge-theme-secondary-container-minimum, #fffdf5);
}

.forge-background--secondary-container-minimum {
  background-color: var(--forge-theme-secondary-container-minimum, #fffdf5);
}

.forge-color--secondary-container-low {
  color: var(--forge-theme-secondary-container-low, #fff8e1);
}

.forge-background--secondary-container-low {
  background-color: var(--forge-theme-secondary-container-low, #fff8e1);
}

.forge-color--secondary-container {
  color: var(--forge-theme-secondary-container, #fff0c3);
}

.forge-background--secondary-container {
  background-color: var(--forge-theme-secondary-container, #fff0c3);
}

.forge-color--secondary-container-high {
  color: var(--forge-theme-secondary-container-high, #ffe7a1);
}

.forge-background--secondary-container-high {
  background-color: var(--forge-theme-secondary-container-high, #ffe7a1);
}

.forge-color--on-secondary {
  color: var(--forge-theme-on-secondary, #000000);
}

.forge-background--on-secondary {
  background-color: var(--forge-theme-on-secondary, #000000);
}

.forge-color--on-secondary-container-minimum {
  color: var(--forge-theme-on-secondary-container-minimum, #8a6804);
}

.forge-background--on-secondary-container-minimum {
  background-color: var(--forge-theme-on-secondary-container-minimum, #8a6804);
}

.forge-color--on-secondary-container-low {
  color: var(--forge-theme-on-secondary-container-low, #8a6804);
}

.forge-background--on-secondary-container-low {
  background-color: var(--forge-theme-on-secondary-container-low, #8a6804);
}

.forge-color--on-secondary-container {
  color: var(--forge-theme-on-secondary-container, #8a6804);
}

.forge-background--on-secondary-container {
  background-color: var(--forge-theme-on-secondary-container, #8a6804);
}

.forge-color--on-secondary-container-high {
  color: var(--forge-theme-on-secondary-container-high, #000000);
}

.forge-background--on-secondary-container-high {
  background-color: var(--forge-theme-on-secondary-container-high, #000000);
}

.forge-color--tertiary {
  color: var(--forge-theme-tertiary, #3d5afe);
}

.forge-background--tertiary {
  background-color: var(--forge-theme-tertiary, #3d5afe);
}

.forge-color--tertiary-container-minimum {
  color: var(--forge-theme-tertiary-container-minimum, #f7f8ff);
}

.forge-background--tertiary-container-minimum {
  background-color: var(--forge-theme-tertiary-container-minimum, #f7f8ff);
}

.forge-color--tertiary-container-low {
  color: var(--forge-theme-tertiary-container-low, #e8ebff);
}

.forge-background--tertiary-container-low {
  background-color: var(--forge-theme-tertiary-container-low, #e8ebff);
}

.forge-color--tertiary-container {
  color: var(--forge-theme-tertiary-container, #d0d7ff);
}

.forge-background--tertiary-container {
  background-color: var(--forge-theme-tertiary-container, #d0d7ff);
}

.forge-color--tertiary-container-high {
  color: var(--forge-theme-tertiary-container-high, #b5c0ff);
}

.forge-background--tertiary-container-high {
  background-color: var(--forge-theme-tertiary-container-high, #b5c0ff);
}

.forge-color--on-tertiary {
  color: var(--forge-theme-on-tertiary, #ffffff);
}

.forge-background--on-tertiary {
  background-color: var(--forge-theme-on-tertiary, #ffffff);
}

.forge-color--on-tertiary-container-minimum {
  color: var(--forge-theme-on-tertiary-container-minimum, #213189);
}

.forge-background--on-tertiary-container-minimum {
  background-color: var(--forge-theme-on-tertiary-container-minimum, #213189);
}

.forge-color--on-tertiary-container-low {
  color: var(--forge-theme-on-tertiary-container-low, #213189);
}

.forge-background--on-tertiary-container-low {
  background-color: var(--forge-theme-on-tertiary-container-low, #213189);
}

.forge-color--on-tertiary-container {
  color: var(--forge-theme-on-tertiary-container, #213189);
}

.forge-background--on-tertiary-container {
  background-color: var(--forge-theme-on-tertiary-container, #213189);
}

.forge-color--on-tertiary-container-high {
  color: var(--forge-theme-on-tertiary-container-high, #000000);
}

.forge-background--on-tertiary-container-high {
  background-color: var(--forge-theme-on-tertiary-container-high, #000000);
}

.forge-color--surface {
  color: var(--forge-theme-surface, #ffffff);
}

.forge-background--surface {
  background-color: var(--forge-theme-surface, #ffffff);
}

.forge-color--surface-inverse {
  color: var(--forge-theme-surface-inverse, #333333);
}

.forge-background--surface-inverse {
  background-color: var(--forge-theme-surface-inverse, #333333);
}

.forge-color--surface-container {
  color: var(--forge-theme-surface-container, #e0e0e0);
}

.forge-background--surface-container {
  background-color: var(--forge-theme-surface-container, #e0e0e0);
}

.forge-color--surface-container-minimum {
  color: var(--forge-theme-surface-container-minimum, #f5f5f5);
}

.forge-background--surface-container-minimum {
  background-color: var(--forge-theme-surface-container-minimum, #f5f5f5);
}

.forge-color--surface-container-low {
  color: var(--forge-theme-surface-container-low, #ebebeb);
}

.forge-background--surface-container-low {
  background-color: var(--forge-theme-surface-container-low, #ebebeb);
}

.forge-color--surface-container-medium {
  color: var(--forge-theme-surface-container-medium, #c2c2c2);
}

.forge-background--surface-container-medium {
  background-color: var(--forge-theme-surface-container-medium, #c2c2c2);
}

.forge-color--surface-container-high {
  color: var(--forge-theme-surface-container-high, #9e9e9e);
}

.forge-background--surface-container-high {
  background-color: var(--forge-theme-surface-container-high, #9e9e9e);
}

.forge-color--surface-dim {
  color: var(--forge-theme-surface-dim, #fafafa);
}

.forge-background--surface-dim {
  background-color: var(--forge-theme-surface-dim, #fafafa);
}

.forge-color--surface-bright {
  color: var(--forge-theme-surface-bright, #ffffff);
}

.forge-background--surface-bright {
  background-color: var(--forge-theme-surface-bright, #ffffff);
}

.forge-color--surface-bright-shadow {
  color: var(--forge-theme-surface-bright-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));
}

.forge-background--surface-bright-shadow {
  background-color: var(--forge-theme-surface-bright-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));
}

.forge-color--on-surface {
  color: var(--forge-theme-on-surface, #000000);
}

.forge-background--on-surface {
  background-color: var(--forge-theme-on-surface, #000000);
}

.forge-color--on-surface-inverse {
  color: var(--forge-theme-on-surface-inverse, #ffffff);
}

.forge-background--on-surface-inverse {
  background-color: var(--forge-theme-on-surface-inverse, #ffffff);
}

.forge-color--on-surface-container {
  color: var(--forge-theme-on-surface-container, #000000);
}

.forge-background--on-surface-container {
  background-color: var(--forge-theme-on-surface-container, #000000);
}

.forge-color--on-surface-container-minimum {
  color: var(--forge-theme-on-surface-container-minimum, #000000);
}

.forge-background--on-surface-container-minimum {
  background-color: var(--forge-theme-on-surface-container-minimum, #000000);
}

.forge-color--on-surface-container-low {
  color: var(--forge-theme-on-surface-container-low, #000000);
}

.forge-background--on-surface-container-low {
  background-color: var(--forge-theme-on-surface-container-low, #000000);
}

.forge-color--on-surface-container-medium {
  color: var(--forge-theme-on-surface-container-medium, #000000);
}

.forge-background--on-surface-container-medium {
  background-color: var(--forge-theme-on-surface-container-medium, #000000);
}

.forge-color--on-surface-container-high {
  color: var(--forge-theme-on-surface-container-high, #000000);
}

.forge-background--on-surface-container-high {
  background-color: var(--forge-theme-on-surface-container-high, #000000);
}

.forge-color--text-high {
  color: var(--forge-theme-text-high, rgba(0, 0, 0, 0.87));
}

.forge-background--text-high {
  background-color: var(--forge-theme-text-high, rgba(0, 0, 0, 0.87));
}

.forge-color--text-high-inverse {
  color: var(--forge-theme-text-high-inverse, rgba(255, 255, 255, 0.87));
}

.forge-background--text-high-inverse {
  background-color: var(--forge-theme-text-high-inverse, rgba(255, 255, 255, 0.87));
}

.forge-color--text-medium {
  color: var(--forge-theme-text-medium, rgba(0, 0, 0, 0.6));
}

.forge-background--text-medium {
  background-color: var(--forge-theme-text-medium, rgba(0, 0, 0, 0.6));
}

.forge-color--text-medium-inverse {
  color: var(--forge-theme-text-medium-inverse, rgba(255, 255, 255, 0.6));
}

.forge-background--text-medium-inverse {
  background-color: var(--forge-theme-text-medium-inverse, rgba(255, 255, 255, 0.6));
}

.forge-color--text-low {
  color: var(--forge-theme-text-low, rgba(0, 0, 0, 0.38));
}

.forge-background--text-low {
  background-color: var(--forge-theme-text-low, rgba(0, 0, 0, 0.38));
}

.forge-color--text-low-inverse {
  color: var(--forge-theme-text-low-inverse, rgba(255, 255, 255, 0.38));
}

.forge-background--text-low-inverse {
  background-color: var(--forge-theme-text-low-inverse, rgba(255, 255, 255, 0.38));
}

.forge-color--text-lowest {
  color: var(--forge-theme-text-lowest, rgba(0, 0, 0, 0.12));
}

.forge-background--text-lowest {
  background-color: var(--forge-theme-text-lowest, rgba(0, 0, 0, 0.12));
}

.forge-color--text-lowest-inverse {
  color: var(--forge-theme-text-lowest-inverse, rgba(255, 255, 255, 0.12));
}

.forge-background--text-lowest-inverse {
  background-color: var(--forge-theme-text-lowest-inverse, rgba(255, 255, 255, 0.12));
}

.forge-color--success {
  color: var(--forge-theme-success, #2e7d32);
}

.forge-background--success {
  background-color: var(--forge-theme-success, #2e7d32);
}

.forge-color--success-container-minimum {
  color: var(--forge-theme-success-container-minimum, #f7faf7);
}

.forge-background--success-container-minimum {
  background-color: var(--forge-theme-success-container-minimum, #f7faf7);
}

.forge-color--success-container-low {
  color: var(--forge-theme-success-container-low, #e6efe6);
}

.forge-background--success-container-low {
  background-color: var(--forge-theme-success-container-low, #e6efe6);
}

.forge-color--success-container {
  color: var(--forge-theme-success-container, #cde0ce);
}

.forge-background--success-container {
  background-color: var(--forge-theme-success-container, #cde0ce);
}

.forge-color--success-container-high {
  color: var(--forge-theme-success-container-high, #b0ceb1);
}

.forge-background--success-container-high {
  background-color: var(--forge-theme-success-container-high, #b0ceb1);
}

.forge-color--on-success {
  color: var(--forge-theme-on-success, #ffffff);
}

.forge-background--on-success {
  background-color: var(--forge-theme-on-success, #ffffff);
}

.forge-color--on-success-container-minimum {
  color: var(--forge-theme-on-success-container-minimum, #19441b);
}

.forge-background--on-success-container-minimum {
  background-color: var(--forge-theme-on-success-container-minimum, #19441b);
}

.forge-color--on-success-container-low {
  color: var(--forge-theme-on-success-container-low, #19441b);
}

.forge-background--on-success-container-low {
  background-color: var(--forge-theme-on-success-container-low, #19441b);
}

.forge-color--on-success-container {
  color: var(--forge-theme-on-success-container, #19441b);
}

.forge-background--on-success-container {
  background-color: var(--forge-theme-on-success-container, #19441b);
}

.forge-color--on-success-container-high {
  color: var(--forge-theme-on-success-container-high, #000000);
}

.forge-background--on-success-container-high {
  background-color: var(--forge-theme-on-success-container-high, #000000);
}

.forge-color--error {
  color: var(--forge-theme-error, #b00020);
}

.forge-background--error {
  background-color: var(--forge-theme-error, #b00020);
}

.forge-color--error-container-minimum {
  color: var(--forge-theme-error-container-minimum, #fcf5f6);
}

.forge-background--error-container-minimum {
  background-color: var(--forge-theme-error-container-minimum, #fcf5f6);
}

.forge-color--error-container-low {
  color: var(--forge-theme-error-container-low, #f6e0e4);
}

.forge-background--error-container-low {
  background-color: var(--forge-theme-error-container-low, #f6e0e4);
}

.forge-color--error-container {
  color: var(--forge-theme-error-container, #ecc2c9);
}

.forge-background--error-container {
  background-color: var(--forge-theme-error-container, #ecc2c9);
}

.forge-color--error-container-high {
  color: var(--forge-theme-error-container-high, #e19eaa);
}

.forge-background--error-container-high {
  background-color: var(--forge-theme-error-container-high, #e19eaa);
}

.forge-color--on-error {
  color: var(--forge-theme-on-error, #ffffff);
}

.forge-background--on-error {
  background-color: var(--forge-theme-on-error, #ffffff);
}

.forge-color--on-error-container-minimum {
  color: var(--forge-theme-on-error-container-minimum, #5f0011);
}

.forge-background--on-error-container-minimum {
  background-color: var(--forge-theme-on-error-container-minimum, #5f0011);
}

.forge-color--on-error-container-low {
  color: var(--forge-theme-on-error-container-low, #5f0011);
}

.forge-background--on-error-container-low {
  background-color: var(--forge-theme-on-error-container-low, #5f0011);
}

.forge-color--on-error-container {
  color: var(--forge-theme-on-error-container, #5f0011);
}

.forge-background--on-error-container {
  background-color: var(--forge-theme-on-error-container, #5f0011);
}

.forge-color--on-error-container-high {
  color: var(--forge-theme-on-error-container-high, #000000);
}

.forge-background--on-error-container-high {
  background-color: var(--forge-theme-on-error-container-high, #000000);
}

.forge-color--warning {
  color: var(--forge-theme-warning, #d14900);
}

.forge-background--warning {
  background-color: var(--forge-theme-warning, #d14900);
}

.forge-color--warning-container-minimum {
  color: var(--forge-theme-warning-container-minimum, #fdf8f5);
}

.forge-background--warning-container-minimum {
  background-color: var(--forge-theme-warning-container-minimum, #fdf8f5);
}

.forge-color--warning-container-low {
  color: var(--forge-theme-warning-container-low, #f9e9e0);
}

.forge-background--warning-container-low {
  background-color: var(--forge-theme-warning-container-low, #f9e9e0);
}

.forge-color--warning-container {
  color: var(--forge-theme-warning-container, #f4d3c2);
}

.forge-background--warning-container {
  background-color: var(--forge-theme-warning-container, #f4d3c2);
}

.forge-color--warning-container-high {
  color: var(--forge-theme-warning-container-high, #eeba9e);
}

.forge-background--warning-container-high {
  background-color: var(--forge-theme-warning-container-high, #eeba9e);
}

.forge-color--on-warning {
  color: var(--forge-theme-on-warning, #ffffff);
}

.forge-background--on-warning {
  background-color: var(--forge-theme-on-warning, #ffffff);
}

.forge-color--on-warning-container-minimum {
  color: var(--forge-theme-on-warning-container-minimum, #712700);
}

.forge-background--on-warning-container-minimum {
  background-color: var(--forge-theme-on-warning-container-minimum, #712700);
}

.forge-color--on-warning-container-low {
  color: var(--forge-theme-on-warning-container-low, #712700);
}

.forge-background--on-warning-container-low {
  background-color: var(--forge-theme-on-warning-container-low, #712700);
}

.forge-color--on-warning-container {
  color: var(--forge-theme-on-warning-container, #712700);
}

.forge-background--on-warning-container {
  background-color: var(--forge-theme-on-warning-container, #712700);
}

.forge-color--on-warning-container-high {
  color: var(--forge-theme-on-warning-container-high, #000000);
}

.forge-background--on-warning-container-high {
  background-color: var(--forge-theme-on-warning-container-high, #000000);
}

.forge-color--info {
  color: var(--forge-theme-info, #1565c0);
}

.forge-background--info {
  background-color: var(--forge-theme-info, #1565c0);
}

.forge-color--info-container-minimum {
  color: var(--forge-theme-info-container-minimum, #f6f9fc);
}

.forge-background--info-container-minimum {
  background-color: var(--forge-theme-info-container-minimum, #f6f9fc);
}

.forge-color--info-container-low {
  color: var(--forge-theme-info-container-low, #e3edf7);
}

.forge-background--info-container-low {
  background-color: var(--forge-theme-info-container-low, #e3edf7);
}

.forge-color--info-container {
  color: var(--forge-theme-info-container, #c7daf0);
}

.forge-background--info-container {
  background-color: var(--forge-theme-info-container, #c7daf0);
}

.forge-color--info-container-high {
  color: var(--forge-theme-info-container-high, #a6c4e7);
}

.forge-background--info-container-high {
  background-color: var(--forge-theme-info-container-high, #a6c4e7);
}

.forge-color--on-info {
  color: var(--forge-theme-on-info, #ffffff);
}

.forge-background--on-info {
  background-color: var(--forge-theme-on-info, #ffffff);
}

.forge-color--on-info-container-minimum {
  color: var(--forge-theme-on-info-container-minimum, #0b3768);
}

.forge-background--on-info-container-minimum {
  background-color: var(--forge-theme-on-info-container-minimum, #0b3768);
}

.forge-color--on-info-container-low {
  color: var(--forge-theme-on-info-container-low, #0b3768);
}

.forge-background--on-info-container-low {
  background-color: var(--forge-theme-on-info-container-low, #0b3768);
}

.forge-color--on-info-container {
  color: var(--forge-theme-on-info-container, #0b3768);
}

.forge-background--on-info-container {
  background-color: var(--forge-theme-on-info-container, #0b3768);
}

.forge-color--on-info-container-high {
  color: var(--forge-theme-on-info-container-high, #000000);
}

.forge-background--on-info-container-high {
  background-color: var(--forge-theme-on-info-container-high, #000000);
}

.forge-color--outline-high {
  color: var(--forge-theme-outline-high, #212121);
}

.forge-background--outline-high {
  background-color: var(--forge-theme-outline-high, #212121);
}

.forge-color--outline-medium {
  color: var(--forge-theme-outline-medium, #757575);
}

.forge-background--outline-medium {
  background-color: var(--forge-theme-outline-medium, #757575);
}

.forge-color--outline-low {
  color: var(--forge-theme-outline-low, #9e9e9e);
}

.forge-background--outline-low {
  background-color: var(--forge-theme-outline-low, #9e9e9e);
}

.forge-color--outline {
  color: var(--forge-theme-outline, #e0e0e0);
}

.forge-background--outline {
  background-color: var(--forge-theme-outline, #e0e0e0);
}

/* prettier-ignore */
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-font-family, "Roboto", sans-serif);
  color: var(--forge-theme-text-high, rgba(0, 0, 0, 0.87));
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-body2-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-body2-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-font-size-scale, 1)));
  font-weight: var(--forge-typography-body2-font-weight, 400);
  line-height: var(--forge-typography-body2-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-line-height-scale, 1.375)));
  letter-spacing: var(--forge-typography-body2-letter-spacing, 0.015625em);
  text-transform: var(--forge-typography-body2-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-body2-text-decoration, inherit);
          text-decoration: var(--forge-typography-body2-text-decoration, inherit);
}

.forge-typography--display1 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-display1-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-display1-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display1-font-size-scale, 1.5)));
  font-weight: var(--forge-typography-display1-font-weight, 300);
  line-height: var(--forge-typography-display1-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display1-line-height-scale, 2.25)));
  letter-spacing: var(--forge-typography-display1-letter-spacing, normal);
  text-transform: var(--forge-typography-display1-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-display1-text-decoration, inherit);
          text-decoration: var(--forge-typography-display1-text-decoration, inherit);
}

.forge-typography--display2 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-display2-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-display2-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display2-font-size-scale, 1.75)));
  font-weight: var(--forge-typography-display2-font-weight, 300);
  line-height: var(--forge-typography-display2-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display2-line-height-scale, 2.25)));
  letter-spacing: var(--forge-typography-display2-letter-spacing, normal);
  text-transform: var(--forge-typography-display2-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-display2-text-decoration, inherit);
          text-decoration: var(--forge-typography-display2-text-decoration, inherit);
}

.forge-typography--display3 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-display3-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-display3-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display3-font-size-scale, 2)));
  font-weight: var(--forge-typography-display3-font-weight, 300);
  line-height: var(--forge-typography-display3-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display3-line-height-scale, 2.5)));
  letter-spacing: var(--forge-typography-display3-letter-spacing, normal);
  text-transform: var(--forge-typography-display3-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-display3-text-decoration, inherit);
          text-decoration: var(--forge-typography-display3-text-decoration, inherit);
}

.forge-typography--display4 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-display4-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-display4-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display4-font-size-scale, 2.25)));
  font-weight: var(--forge-typography-display4-font-weight, 300);
  line-height: var(--forge-typography-display4-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display4-line-height-scale, 2.75)));
  letter-spacing: var(--forge-typography-display4-letter-spacing, -0.0069444444em);
  text-transform: var(--forge-typography-display4-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-display4-text-decoration, inherit);
          text-decoration: var(--forge-typography-display4-text-decoration, inherit);
}

.forge-typography--display5 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-display5-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-display5-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display5-font-size-scale, 2.5)));
  font-weight: var(--forge-typography-display5-font-weight, 300);
  line-height: var(--forge-typography-display5-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display5-line-height-scale, 3)));
  letter-spacing: var(--forge-typography-display5-letter-spacing, -0.0125em);
  text-transform: var(--forge-typography-display5-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-display5-text-decoration, inherit);
          text-decoration: var(--forge-typography-display5-text-decoration, inherit);
}

.forge-typography--display6 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-display6-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-display6-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display6-font-size-scale, 3)));
  font-weight: var(--forge-typography-display6-font-weight, 300);
  line-height: var(--forge-typography-display6-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display6-line-height-scale, 4)));
  letter-spacing: var(--forge-typography-display6-letter-spacing, -0.0208333333em);
  text-transform: var(--forge-typography-display6-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-display6-text-decoration, inherit);
          text-decoration: var(--forge-typography-display6-text-decoration, inherit);
}

.forge-typography--display7 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-display7-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-display7-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display7-font-size-scale, 3.5)));
  font-weight: var(--forge-typography-display7-font-weight, 300);
  line-height: var(--forge-typography-display7-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display7-line-height-scale, 4.5)));
  letter-spacing: var(--forge-typography-display7-letter-spacing, -0.0267857143em);
  text-transform: var(--forge-typography-display7-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-display7-text-decoration, inherit);
          text-decoration: var(--forge-typography-display7-text-decoration, inherit);
}

.forge-typography--display8 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-display8-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-display8-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display8-font-size-scale, 4)));
  font-weight: var(--forge-typography-display8-font-weight, 300);
  line-height: var(--forge-typography-display8-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-display8-line-height-scale, 4.75)));
  letter-spacing: var(--forge-typography-display8-letter-spacing, -0.03125em);
  text-transform: var(--forge-typography-display8-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-display8-text-decoration, inherit);
          text-decoration: var(--forge-typography-display8-text-decoration, inherit);
}

.forge-typography--heading1 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-heading1-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-heading1-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading1-font-size-scale, 0.875)));
  font-weight: var(--forge-typography-heading1-font-weight, 500);
  line-height: var(--forge-typography-heading1-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading1-line-height-scale, 1.125)));
  letter-spacing: var(--forge-typography-heading1-letter-spacing, 0.0178571429em);
  text-transform: var(--forge-typography-heading1-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-heading1-text-decoration, inherit);
          text-decoration: var(--forge-typography-heading1-text-decoration, inherit);
}

.forge-typography--heading2 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-heading2-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-heading2-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading2-font-size-scale, 1)));
  font-weight: var(--forge-typography-heading2-font-weight, 500);
  line-height: var(--forge-typography-heading2-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading2-line-height-scale, 1.25)));
  letter-spacing: var(--forge-typography-heading2-letter-spacing, 0.0125em);
  text-transform: var(--forge-typography-heading2-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-heading2-text-decoration, inherit);
          text-decoration: var(--forge-typography-heading2-text-decoration, inherit);
}

.forge-typography--heading3 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-heading3-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-heading3-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading3-font-size-scale, 1.125)));
  font-weight: var(--forge-typography-heading3-font-weight, 500);
  line-height: var(--forge-typography-heading3-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading3-line-height-scale, 1.375)));
  letter-spacing: var(--forge-typography-heading3-letter-spacing, 0.0083333333em);
  text-transform: var(--forge-typography-heading3-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-heading3-text-decoration, inherit);
          text-decoration: var(--forge-typography-heading3-text-decoration, inherit);
}

.forge-typography--heading4 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-heading4-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-heading4-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading4-font-size-scale, 1.25)));
  font-weight: var(--forge-typography-heading4-font-weight, 500);
  line-height: var(--forge-typography-heading4-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading4-line-height-scale, 1.5)));
  letter-spacing: var(--forge-typography-heading4-letter-spacing, 0.005em);
  text-transform: var(--forge-typography-heading4-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-heading4-text-decoration, inherit);
          text-decoration: var(--forge-typography-heading4-text-decoration, inherit);
}

.forge-typography--heading5 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-heading5-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-heading5-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading5-font-size-scale, 1.5)));
  font-weight: var(--forge-typography-heading5-font-weight, 500);
  line-height: var(--forge-typography-heading5-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading5-line-height-scale, 1.75)));
  letter-spacing: var(--forge-typography-heading5-letter-spacing, 0em);
  text-transform: var(--forge-typography-heading5-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-heading5-text-decoration, inherit);
          text-decoration: var(--forge-typography-heading5-text-decoration, inherit);
}

.forge-typography--heading6 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-heading6-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-heading6-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading6-font-size-scale, 1.75)));
  font-weight: var(--forge-typography-heading6-font-weight, 500);
  line-height: var(--forge-typography-heading6-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading6-line-height-scale, 2.125)));
  letter-spacing: var(--forge-typography-heading6-letter-spacing, 0em);
  text-transform: var(--forge-typography-heading6-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-heading6-text-decoration, inherit);
          text-decoration: var(--forge-typography-heading6-text-decoration, inherit);
}

.forge-typography--heading7 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-heading7-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-heading7-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading7-font-size-scale, 2)));
  font-weight: var(--forge-typography-heading7-font-weight, 500);
  line-height: var(--forge-typography-heading7-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading7-line-height-scale, 2.5)));
  letter-spacing: var(--forge-typography-heading7-letter-spacing, -0.0015625em);
  text-transform: var(--forge-typography-heading7-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-heading7-text-decoration, inherit);
          text-decoration: var(--forge-typography-heading7-text-decoration, inherit);
}

.forge-typography--heading8 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-heading8-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-heading8-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading8-font-size-scale, 2.25)));
  font-weight: var(--forge-typography-heading8-font-weight, 500);
  line-height: var(--forge-typography-heading8-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-heading8-line-height-scale, 2.625)));
  letter-spacing: var(--forge-typography-heading8-letter-spacing, -0.0027777778em);
  text-transform: var(--forge-typography-heading8-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-heading8-text-decoration, inherit);
          text-decoration: var(--forge-typography-heading8-text-decoration, inherit);
}

.forge-typography--subheading1 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-subheading1-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-subheading1-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading1-font-size-scale, 0.875)));
  font-weight: var(--forge-typography-subheading1-font-weight, 400);
  line-height: var(--forge-typography-subheading1-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading1-line-height-scale, 1.125)));
  letter-spacing: var(--forge-typography-subheading1-letter-spacing, normal);
  text-transform: var(--forge-typography-subheading1-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-subheading1-text-decoration, inherit);
          text-decoration: var(--forge-typography-subheading1-text-decoration, inherit);
}

.forge-typography--subheading2 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-subheading2-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-subheading2-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading2-font-size-scale, 1)));
  font-weight: var(--forge-typography-subheading2-font-weight, 400);
  line-height: var(--forge-typography-subheading2-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading2-line-height-scale, 1.25)));
  letter-spacing: var(--forge-typography-subheading2-letter-spacing, normal);
  text-transform: var(--forge-typography-subheading2-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-subheading2-text-decoration, inherit);
          text-decoration: var(--forge-typography-subheading2-text-decoration, inherit);
}

.forge-typography--subheading3 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-subheading3-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-subheading3-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading3-font-size-scale, 1.125)));
  font-weight: var(--forge-typography-subheading3-font-weight, 400);
  line-height: var(--forge-typography-subheading3-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading3-line-height-scale, 1.375)));
  letter-spacing: var(--forge-typography-subheading3-letter-spacing, normal);
  text-transform: var(--forge-typography-subheading3-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-subheading3-text-decoration, inherit);
          text-decoration: var(--forge-typography-subheading3-text-decoration, inherit);
}

.forge-typography--subheading4 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-subheading4-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-subheading4-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading4-font-size-scale, 1.25)));
  font-weight: var(--forge-typography-subheading4-font-weight, 400);
  line-height: var(--forge-typography-subheading4-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading4-line-height-scale, 1.5)));
  letter-spacing: var(--forge-typography-subheading4-letter-spacing, normal);
  text-transform: var(--forge-typography-subheading4-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-subheading4-text-decoration, inherit);
          text-decoration: var(--forge-typography-subheading4-text-decoration, inherit);
}

.forge-typography--subheading5 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-subheading5-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-subheading5-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading5-font-size-scale, 1.5)));
  font-weight: var(--forge-typography-subheading5-font-weight, 400);
  line-height: var(--forge-typography-subheading5-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading5-line-height-scale, 1.75)));
  letter-spacing: var(--forge-typography-subheading5-letter-spacing, 0em);
  text-transform: var(--forge-typography-subheading5-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-subheading5-text-decoration, inherit);
          text-decoration: var(--forge-typography-subheading5-text-decoration, inherit);
}

.forge-typography--subheading6 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-subheading6-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-subheading6-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading6-font-size-scale, 1.75)));
  font-weight: var(--forge-typography-subheading6-font-weight, 400);
  line-height: var(--forge-typography-subheading6-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading6-line-height-scale, 2.125)));
  letter-spacing: var(--forge-typography-subheading6-letter-spacing, 0em);
  text-transform: var(--forge-typography-subheading6-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-subheading6-text-decoration, inherit);
          text-decoration: var(--forge-typography-subheading6-text-decoration, inherit);
}

.forge-typography--subheading7 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-subheading7-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-subheading7-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading7-font-size-scale, 2)));
  font-weight: var(--forge-typography-subheading7-font-weight, 400);
  line-height: var(--forge-typography-subheading7-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading7-line-height-scale, 2.5)));
  letter-spacing: var(--forge-typography-subheading7-letter-spacing, -0.0015625em);
  text-transform: var(--forge-typography-subheading7-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-subheading7-text-decoration, inherit);
          text-decoration: var(--forge-typography-subheading7-text-decoration, inherit);
}

.forge-typography--subheading8 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-subheading8-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-subheading8-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading8-font-size-scale, 2.25)));
  font-weight: var(--forge-typography-subheading8-font-weight, 400);
  line-height: var(--forge-typography-subheading8-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-subheading8-line-height-scale, 2.625)));
  letter-spacing: var(--forge-typography-subheading8-letter-spacing, -0.0027777778em);
  text-transform: var(--forge-typography-subheading8-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-subheading8-text-decoration, inherit);
          text-decoration: var(--forge-typography-subheading8-text-decoration, inherit);
}

.forge-typography--body1 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-body1-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-body1-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-font-size-scale, 0.875)));
  font-weight: var(--forge-typography-body1-font-weight, 400);
  line-height: var(--forge-typography-body1-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-line-height-scale, 1.125)));
  letter-spacing: var(--forge-typography-body1-letter-spacing, 0.0357142857em);
  text-transform: var(--forge-typography-body1-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-body1-text-decoration, inherit);
          text-decoration: var(--forge-typography-body1-text-decoration, inherit);
}

.forge-typography--body2 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-body2-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-body2-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-font-size-scale, 1)));
  font-weight: var(--forge-typography-body2-font-weight, 400);
  line-height: var(--forge-typography-body2-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-line-height-scale, 1.375)));
  letter-spacing: var(--forge-typography-body2-letter-spacing, 0.015625em);
  text-transform: var(--forge-typography-body2-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-body2-text-decoration, inherit);
          text-decoration: var(--forge-typography-body2-text-decoration, inherit);
}

.forge-typography--body3 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-body3-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-body3-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-font-size-scale, 1.125)));
  font-weight: var(--forge-typography-body3-font-weight, 400);
  line-height: var(--forge-typography-body3-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-line-height-scale, 1.5)));
  letter-spacing: var(--forge-typography-body3-letter-spacing, 0.0083333333em);
  text-transform: var(--forge-typography-body3-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-body3-text-decoration, inherit);
          text-decoration: var(--forge-typography-body3-text-decoration, inherit);
}

.forge-typography--body4 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-body4-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-body4-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-font-size-scale, 1.25)));
  font-weight: var(--forge-typography-body4-font-weight, 400);
  line-height: var(--forge-typography-body4-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-body-line-height-scale, 1.75)));
  letter-spacing: var(--forge-typography-body4-letter-spacing, 0.005em);
  text-transform: var(--forge-typography-body4-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-body4-text-decoration, inherit);
          text-decoration: var(--forge-typography-body4-text-decoration, inherit);
}

.forge-typography--label1 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-label1-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-label1-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-label-font-size-scale, 0.75)));
  font-weight: var(--forge-typography-label1-font-weight, 400);
  line-height: var(--forge-typography-label1-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-label-line-height-scale, 1.25)));
  letter-spacing: var(--forge-typography-label1-letter-spacing, 0.0357142857em);
  text-transform: var(--forge-typography-label1-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-label1-text-decoration, inherit);
          text-decoration: var(--forge-typography-label1-text-decoration, inherit);
}

.forge-typography--label2 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-label2-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-label2-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-label-font-size-scale, 0.8125)));
  font-weight: var(--forge-typography-label2-font-weight, 400);
  line-height: var(--forge-typography-label2-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-label-line-height-scale, 1.25)));
  letter-spacing: var(--forge-typography-label2-letter-spacing, 0.0096153846em);
  text-transform: var(--forge-typography-label2-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-label2-text-decoration, inherit);
          text-decoration: var(--forge-typography-label2-text-decoration, inherit);
}

.forge-typography--label3 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-label3-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-label3-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-label-font-size-scale, 0.875)));
  font-weight: var(--forge-typography-label3-font-weight, 400);
  line-height: var(--forge-typography-label3-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-label-line-height-scale, 1.25)));
  letter-spacing: var(--forge-typography-label3-letter-spacing, 0.0089285714em);
  text-transform: var(--forge-typography-label3-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-label3-text-decoration, inherit);
          text-decoration: var(--forge-typography-label3-text-decoration, inherit);
}

.forge-typography--button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-button-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-button-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-button-font-size-scale, 0.875)));
  font-weight: var(--forge-typography-button-font-weight, 500);
  line-height: var(--forge-typography-button-line-height, normal);
  letter-spacing: var(--forge-typography-button-letter-spacing, 0.0714285714em);
  text-transform: var(--forge-typography-button-text-transform, inherit);
  -webkit-text-decoration: var(--forge-typography-button-text-decoration, inherit);
          text-decoration: var(--forge-typography-button-text-decoration, inherit);
}

.forge-typography--overline {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--forge-typography-overline-font-family, var(--forge-typography-font-family, "Roboto", sans-serif));
  font-size: var(--forge-typography-overline-font-size, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-overline-font-size-scale, 0.75)));
  font-weight: var(--forge-typography-overline-font-weight, 500);
  line-height: var(--forge-typography-overline-line-height, calc(var(--forge-typography-font-size, 1rem) * var(--forge-typography-overline-line-height-scale, 2)));
  letter-spacing: var(--forge-typography-overline-letter-spacing, 0.1666666667em);
  text-transform: var(--forge-typography-overline-text-transform, uppercase);
  -webkit-text-decoration: var(--forge-typography-overline-text-decoration, inherit);
          text-decoration: var(--forge-typography-overline-text-decoration, inherit);
}

.forge-anchor,
.forge-hyperlink,
.forge-typography--link {
  -webkit-text-decoration: var(--forge-typography-link-text-decoration, underline);
          text-decoration: var(--forge-typography-link-text-decoration, underline);
  color: var(--forge-theme-primary, #3f51b5);
  cursor: pointer;
}
.forge-anchor:visited,
.forge-hyperlink:visited,
.forge-typography--link:visited {
  color: var(--forge-theme-primary, #3f51b5);
}
.forge-anchor:hover,
.forge-hyperlink:hover,
.forge-typography--link:hover {
  text-decoration: none;
}
.forge-anchor:active,
.forge-hyperlink:active,
.forge-typography--link:active {
  opacity: 0.65;
}
.forge-anchor-plain,
.forge-hyperlink-plain,
.forge-typography--link-plain {
  text-decoration: none;
  color: inherit;
  outline: none;
}

forge-table {
  display: block;
}

.forge-table {
  width: 100%;
  border-collapse: collapse;
}
.forge-table--dense .forge-table-row {
  height: 36px;
}
.forge-table--roomy .forge-table-row {
  height: 56px;
}
.forge-table--resizable .forge-table-head__cell {
  position: relative;
}
.forge-table--resizable .forge-table-head__cell:hover .forge-table__resize-handle {
  display: block;
}
.forge-table--resizable .forge-table__resize-handle {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  border-right-width: var(--forge-border-medium, 2px);
  border-right-style: solid;
  border-right-color: var(--forge-theme-primary, #3f51b5);
  box-sizing: border-box;
  margin-right: var(--forge-spacing-xxsmall, 4px);
  transition-property: border-right-width;
  transition-duration: var(--forge-animation-duration-medium1, 250ms);
  transition-timing-function: var(--forge-animation-easing-accelerate, cubic-bezier(0.3, 0, 1, 1));
}
.forge-table--resizable .forge-table__resize-handle:hover {
  border-right-width: var(--forge-border-thick, 4px);
  cursor: col-resize;
}
.forge-table--resizing {
  -webkit-user-drag: none;
  -webkit-user-select: none;
          user-select: none;
}
.forge-table--layout-fixed {
  table-layout: fixed;
}
.forge-table--no-wrap-content.forge-table--dense .forge-table-row,
.forge-table--no-wrap-content.forge-table--dense .forge-table-cell__container {
  height: 36px;
}
.forge-table--no-wrap-content .forge-table-cell__container > .forge-table-cell__container-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.forge-table--filter-visible .forge-table-head__row {
  height: 32px;
}
.forge-table--filter-visible .forge-table-head__row .forge-table-head__cell {
  border: none;
  vertical-align: bottom;
}
.forge-table-head__row {
  height: 48px;
}
.forge-table-head__row__filter {
  --forge-field-height: 40px;
}
.forge-table-head__row__filter .forge-table-head__cell-container {
  padding: var(--forge-spacing-xsmall, 8px) 0;
}
.forge-table-head__cell {
  color: var(--forge-theme-text-medium, rgba(0, 0, 0, 0.6));
  font-weight: bold;
  text-align: left;
  font-size: calc(var(--forge-typography-font-size, 1rem) * 0.75);
  box-sizing: border-box;
}
.forge-table-head__cell-container {
  display: flex;
  align-items: center;
}
.forge-table-head__cell--sorted-ascending .forge-table-head__cell-text, .forge-table-head__cell--sorted-descending .forge-table-head__cell-text {
  color: var(--forge-theme-text-high, rgba(0, 0, 0, 0.87));
  font-weight: 700 !important;
}
.forge-table-head__cell__sort-order--hidden {
  display: none;
}
.forge-table-head__cell--sortable {
  cursor: pointer;
}
.forge-table-head__cell--sortable :hover .forge-table-head__cell-sort-icon,
.forge-table-head__cell--sortable :hover .forge-table-head__cell__sort-order {
  color: var(--forge-theme-text-medium, rgba(0, 0, 0, 0.6));
}
.forge-table-head__cell--sortable button {
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: inherit;
  margin: inherit;
  padding-block: var(--forge-spacing-xxsmall, 4px);
  padding-inline: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  outline-offset: var(--forge-spacing-xxsmall, 4px);
}
.forge-table-head__cell--sortable.forge-table-head__cell--sorted-ascending .forge-table-head__cell-sort-icon {
  transform: rotate(180deg);
}
.forge-table-head__cell-sort-icon {
  color: var(--forge-theme-text-high, rgba(0, 0, 0, 0.87));
  font-size: 18px !important;
  height: 18px;
  width: 18px;
  margin-left: 5px;
  transition: transform var(--forge-animation-duration-short4, 200ms) var(--forge-animation-easing-accelerate, cubic-bezier(0.3, 0, 1, 1));
  display: none !important;
  font-weight: 700;
}
.forge-table-head__cell-sort-icon--active {
  display: inline !important;
}
.forge-table-head__cell-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.forge-table-row > .forge-table-cell:not(.forge-table-cell__select):first-child,
.forge-table-row .forge-table-cell.forge-table-cell__select + .forge-table-cell:not(.forge-table-cell__select) {
  padding-right: var(--forge-spacing-large, 24px);
}
.forge-table-row > .forge-table-cell:last-child {
  padding-right: var(--forge-spacing-large, 24px);
}
.forge-table-row--expanded .forge-table-body__cell {
  border-bottom: none;
}
.forge-table-row__expandable-content {
  height: auto !important;
}
.forge-table-row__expandable-content:hover {
  background-color: inherit !important;
}
.forge-table-body__row {
  height: 48px;
  transition: background-color var(--forge-animation-duration-short4, 200ms) var(--forge-animation-easing-standard, cubic-bezier(0.2, 0, 0, 1));
}
.forge-table-body__row:hover {
  background-color: var(--forge-table-theme-row-hover-background, var(--forge-theme-surface-container-low, #ebebeb));
}
.forge-table-body__row--selected:hover {
  background-color: var(--forge-table-theme-row-selected-hover-background, var(--forge-theme-primary-container, #d1d5ed));
}
.forge-table-body__row--selected {
  background-color: var(--forge-table-theme-row-selected-background, var(--forge-theme-primary-container-low, #e8eaf6));
}
.forge-table-body__row--selected:hover {
  background-color: var(--forge-table-theme-row-selected-hover-background, var(--forge-theme-primary-container, #d1d5ed));
}
.forge-table-body__row--clickable {
  cursor: pointer;
}
.forge-table-body__row--clickable:active {
  background-color: var(--forge-table-theme-row-active-background, var(--forge-theme-surface-container, #e0e0e0));
}
.forge-table-body__row--clickable.forge-table-body__row--selected:active {
  background-color: var(--forge-table-theme-row-selected-active-background, var(--forge-theme-primary-container-high, #b6bde3));
}
.forge-table-body__cell {
  color: var(--forge-theme-on-surface, #000000);
  font-size: calc(var(--forge-typography-font-size, 1rem) * 0.875);
}
.forge-table-cell {
  padding-right: var(--forge-spacing-xxxlarge, 56px);
  border-bottom-width: var(--forge-border-thin, 1px);
  border-bottom-style: solid;
  border-bottom-color: var(--forge-theme-outline, #e0e0e0);
}
.forge-table-cell:first-child:not(.forge-table-cell__select) {
  padding-left: var(--forge-spacing-large, 24px);
}
.forge-table-cell--resizing {
  position: relative;
}
.forge-table-cell--resizing::before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  border-right-width: var(--forge-border-medium, 2px);
  border-right-style: solid;
  border-right-color: var(--forge-theme-primary, #3f51b5);
}
.forge-table-cell__select {
  text-align: center !important;
  box-sizing: border-box;
  width: 66px;
  padding-right: var(--forge-spacing-small, 12px);
  padding-left: var(--forge-spacing-medium, 16px);
}
.forge-table-cell__select-checkbox-container {
  display: flex;
}
.forge-table-cell__select-checkbox-container--align-left {
  justify-content: flex-start;
}
.forge-table-cell__select-checkbox-container--align-right {
  justify-content: flex-end;
}
.forge-table-cell__select-checkbox-container--align-center {
  justify-content: center;
}
.forge-table-cell__container {
  display: flex;
  align-items: center;
}
.forge-table-cell--center {
  justify-content: center;
}
.forge-table-cell--right {
  justify-content: flex-end;
}
.forge-table--fixed {
  position: relative;
}
.forge-table--fixed .forge-table-head__cell {
  position: sticky;
  top: 0;
  background: var(--forge-theme-surface, #ffffff);
  z-index: var(--forge-z-index-surface, 1);
}
.forge-table--fixed .forge-table-head__cell::after {
  content: "";
  border-bottom-width: 1px;
  border-style: solid;
  border-color: var(--forge-theme-outline, #e0e0e0);
  border-width: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  box-sizing: border-box;
}
.forge-table--fixed .forge-table-head__row__filter .forge-table-head__cell {
  top: 32px;
}

.forge-data-table {
  width: 100%;
  border-collapse: collapse;
}
.forge-data-table thead tr {
  height: 48px;
}
.forge-data-table thead tr th {
  padding-right: var(--forge-spacing-xxxlarge, 56px);
  padding-left: var(--forge-spacing-large, 24px);
  border-bottom-width: var(--forge-border-thin, 1px);
  border-bottom-style: solid;
  border-bottom-color: var(--forge-theme-outline, #e0e0e0);
  color: var(--forge-theme-text-medium, rgba(0, 0, 0, 0.6));
  font-weight: bold;
  text-align: left;
  font-size: calc(var(--forge-typography-font-size, 1rem) * 0.75);
  box-sizing: border-box;
}
.forge-data-table tbody tr {
  height: 48px;
  transition: background-color var(--forge-animation-duration-short4, 200ms) var(--forge-animation-easing-standard, cubic-bezier(0.2, 0, 0, 1));
}
.forge-data-table tbody tr:hover {
  background-color: var(--forge-table-theme-row-hover-background, var(--forge-theme-surface-container-low, #ebebeb));
}
.forge-data-table tbody tr--selected:hover {
  background-color: var(--forge-table-theme-row-selected-hover-background, var(--forge-theme-primary-container, #d1d5ed));
}
.forge-data-table tbody tr td {
  padding-right: var(--forge-spacing-xxxlarge, 56px);
  padding-left: var(--forge-spacing-large, 24px);
  border-bottom-width: var(--forge-border-thin, 1px);
  border-bottom-style: solid;
  border-bottom-color: var(--forge-theme-outline, #e0e0e0);
  color: var(--forge-theme-on-surface, #000000);
  font-size: calc(var(--forge-typography-font-size, 1rem) * 0.875);
}

/*# sourceMappingURL=styles.css.map*/