@limetech/lime-elements
Version:
1,482 lines (1,395 loc) • 163 kB
CSS
@charset "UTF-8";
/*
* This file is imported into every component!
*
* Nothing in this file may output any CSS
* without being explicitly called by outside code.
*/
/*
* This file is imported into every component!
*
* Nothing in this file may output any CSS
* without being explicitly called by outside code.
*/
/**
* Note! This file is exported to `dist/scss/` in the published
* node module, for consumer projects to import.
* That means this file cannot import from any file that isn't
* also exported, keeping the same relative path.
*
* Or, just don't import anything, that works too.
*/
/**
* This can be used on a trigger element that opens a dropdown menu or a popover.
*/
/**
* This mixin will mask out the content that is close to
* the edges of a scrollable area.
* - If the scrollable content has `overflow-y`, use `vertically`
* as an argument for `$direction`.
- If the scrollable content has `overflow-x`, use `horizontally`
* as an argument for `$direction`.
*
* For the visual effect to work smoothly, we need to make sure that
* the size of the fade-out edge effect is the same as the
* internal paddings of the scrollable area. Otherwise, content of a
* scrollable area that does not have a padding will fade out before
* any scrolling has been done.
* This is why this mixin already adds paddings, which automatically
* default to the size of the fade-out effect.
* This size defaults to `1rem`, but to override the size use
* `--limel-top-edge-fade-height` & `--limel-bottom-edge-fade-height`
* when `vertically` argument is set, and use
* `--limel-left-edge-fade-width` & `--limel-right-edge-fade-width`
* when `horizontally` argument is set.
* Of course you can also programmatically increase and decrease the
* size of these variables for each edge, based on the amount of
* scrolling that has been done by the user. In this case, make sure
* to add a custom padding where the mixin is used, to override
* the paddings that are automatically added by the mixin in the
* compiled CSS code.
*/
/**
* This mixin will add an animated underline to the bottom of an `a` elements.
* Note that you may need to add `all: unset;` –depending on your use case–
* before using this mixin.
*/
/**
* This mixin creates a cross-browser font stack.
* - `sans-serif` can be used for the UI of the components.
* - `monospace` can be used for code.
*
* ⚠️ If we change the font stacks, we need to update
* 1. the consumer documentation in `README.md`, and
* 2. the CSS variables of `--kompendium-example-font-family`
* in the `<style>` tag of `index.html`.
*/
/**
* This mixin is a hack, using old CSS syntax
* to enable you to truncate a piece of text,
* after a certain number of lines.
*/
/**
* This mixin will add a chessboard background pattern,
* typically used to visualize transparency.
*/
/**
* Make a container resizable by the user.
* This is used in the documentations and examples
* of some components, to demonstrate how the component
* behaves in a resizable container.
*/
/**
* The breakpoints below are used to create responsive designs
* in Lime's products. Therefore, they are here to get distributed
* to all components in other private repos, which rely on this `mixins`
* file, to create consistent styles.
*
* :::important
* In very rare cases you should used media queries!
* Nowadays, there are many better ways of achieving responsive design
* without media queries. For example, using CSS Grid, Flexbox, and their features.
* :::
*/
/**
* Media query mixins for responsive design based on screen width.
* Note that these mixins do not detect the device type!
*/
/**
* @prop --icon-background-color: Color to use for icon background when `badgeIcons=true`.
* @prop --icon-color: Color to use for icon. Defaults to grey when `badgeIcons=false`. Defaults to white when `badgeIcons=true`.
* @prop --list-grid-max-width: Maximum width of a list that has `has-grid-layout` class. Defaults to `100%`.
* @prop --list-grid-item-max-width: Maximum width of items in a list that has `has-grid-layout` class. Defaults to `10rem`.
* @prop --list-grid-item-min-width: Minimum width of items in a list that has `has-grid-layout` class. Defaults to `7.5rem`.
* @prop --list-grid-gap: Distance between items in a list that has `has-grid-layout` class. Defaults to `0.75rem`.
* @prop --list-background-color-of-odd-interactive-items: Background color of odd list items, when `has-striped-rows` class is applied to the component. Defaults to `--contrast-200`.
* @prop --list-background-color-of-even-interactive-items: Background color of even list items, when `has-striped-rows` class is applied to the component. Defaults to `transparent`.
* @prop --list-margin: Space around the list. Defaults to `0.25rem`, which visualizes keyboard-focused items in a better way, as it adds some space for the outline effect;
*/
:host(limel-list) {
display: block;
isolation: isolate;
}
:host([hidden]) {
display: none;
}
.mdc-deprecated-list {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: Roboto, sans-serif;
/* @alternate */
font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
font-size: 1rem;
/* @alternate */
font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
line-height: 1.75rem;
/* @alternate */
line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
font-weight: 400;
/* @alternate */
font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
letter-spacing: 0.009375em;
/* @alternate */
letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
text-decoration: inherit;
/* @alternate */
text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
text-transform: inherit;
/* @alternate */
text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
/* @alternate */
line-height: 1.5rem;
margin: 0;
padding: 8px 0;
list-style-type: none;
color: rgba(0, 0, 0, 0.87);
/* @alternate */
color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
.mdc-deprecated-list:focus {
outline: none;
}
.mdc-deprecated-list-item {
height: 48px;
}
.mdc-deprecated-list-item__secondary-text {
color: rgba(0, 0, 0, 0.54);
/* @alternate */
color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54));
}
.mdc-deprecated-list-item__graphic {
background-color: transparent;
}
.mdc-deprecated-list-item__graphic {
color: rgba(0, 0, 0, 0.38);
/* @alternate */
color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38));
}
.mdc-deprecated-list-item__meta {
color: rgba(0, 0, 0, 0.38);
/* @alternate */
color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38));
}
.mdc-deprecated-list-group__subheader {
color: rgba(0, 0, 0, 0.87);
/* @alternate */
color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
.mdc-deprecated-list-item--disabled .mdc-deprecated-list-item__text {
opacity: 0.38;
}
.mdc-deprecated-list-item--disabled .mdc-deprecated-list-item__text,
.mdc-deprecated-list-item--disabled .mdc-deprecated-list-item__primary-text,
.mdc-deprecated-list-item--disabled .mdc-deprecated-list-item__secondary-text {
color: #000;
/* @alternate */
color: var(--mdc-theme-on-surface, #000);
}
.mdc-deprecated-list-item--selected,
.mdc-deprecated-list-item--activated {
color: #6200ee;
/* @alternate */
color: var(--mdc-theme-primary, #6200ee);
}
.mdc-deprecated-list-item--selected .mdc-deprecated-list-item__graphic,
.mdc-deprecated-list-item--activated .mdc-deprecated-list-item__graphic {
color: #6200ee;
/* @alternate */
color: var(--mdc-theme-primary, #6200ee);
}
.mdc-deprecated-list--dense {
padding-top: 4px;
padding-bottom: 4px;
font-size: 0.812rem;
}
.mdc-deprecated-list-item {
display: flex;
position: relative;
align-items: center;
justify-content: flex-start;
overflow: hidden;
padding: 0;
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
height: 48px;
}
.mdc-deprecated-list-item:focus {
outline: none;
}
.mdc-deprecated-list-item:not(.mdc-deprecated-list-item--selected):focus::before, .mdc-deprecated-list-item.mdc-ripple-upgraded--background-focused::before {
position: absolute;
box-sizing: border-box;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: 1px solid transparent;
border-radius: inherit;
content: "";
pointer-events: none;
}
.mdc-deprecated-list-item.mdc-deprecated-list-item--selected::before {
position: absolute;
box-sizing: border-box;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: 3px double transparent;
border-radius: inherit;
content: "";
pointer-events: none;
}
[dir=rtl] .mdc-deprecated-list-item, .mdc-deprecated-list-item[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--icon-list .mdc-deprecated-list-item {
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
height: 56px;
}
[dir=rtl] .mdc-deprecated-list--icon-list .mdc-deprecated-list-item, .mdc-deprecated-list--icon-list .mdc-deprecated-list-item[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--avatar-list .mdc-deprecated-list-item {
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
height: 56px;
}
[dir=rtl] .mdc-deprecated-list--avatar-list .mdc-deprecated-list-item, .mdc-deprecated-list--avatar-list .mdc-deprecated-list-item[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item {
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
height: 56px;
}
[dir=rtl] .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item, .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--image-list .mdc-deprecated-list-item {
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
height: 72px;
}
[dir=rtl] .mdc-deprecated-list--image-list .mdc-deprecated-list-item, .mdc-deprecated-list--image-list .mdc-deprecated-list-item[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-item {
/* @noflip */ /*rtl:ignore*/
padding-left: 0px;
/* @noflip */ /*rtl:ignore*/
padding-right: 16px;
height: 72px;
}
[dir=rtl] .mdc-deprecated-list--video-list .mdc-deprecated-list-item, .mdc-deprecated-list--video-list .mdc-deprecated-list-item[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
padding-left: 16px;
/* @noflip */ /*rtl:ignore*/
padding-right: 0px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--dense .mdc-deprecated-list-item__graphic {
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
width: 20px;
height: 20px;
}
[dir=rtl] .mdc-deprecated-list--dense .mdc-deprecated-list-item__graphic, .mdc-deprecated-list--dense .mdc-deprecated-list-item__graphic[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
/*rtl:end:ignore*/
}
.mdc-deprecated-list-item__graphic {
flex-shrink: 0;
align-items: center;
justify-content: center;
fill: currentColor;
object-fit: cover;
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 32px;
width: 24px;
height: 24px;
}
[dir=rtl] .mdc-deprecated-list-item__graphic, .mdc-deprecated-list-item__graphic[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 32px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--icon-list .mdc-deprecated-list-item__graphic {
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 32px;
width: 24px;
height: 24px;
}
[dir=rtl] .mdc-deprecated-list--icon-list .mdc-deprecated-list-item__graphic, .mdc-deprecated-list--icon-list .mdc-deprecated-list-item__graphic[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 32px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--avatar-list .mdc-deprecated-list-item__graphic {
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
width: 40px;
height: 40px;
border-radius: 50%;
}
[dir=rtl] .mdc-deprecated-list--avatar-list .mdc-deprecated-list-item__graphic, .mdc-deprecated-list--avatar-list .mdc-deprecated-list-item__graphic[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item__graphic {
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
width: 40px;
height: 40px;
}
[dir=rtl] .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item__graphic, .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item__graphic[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--image-list .mdc-deprecated-list-item__graphic {
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
width: 56px;
height: 56px;
}
[dir=rtl] .mdc-deprecated-list--image-list .mdc-deprecated-list-item__graphic, .mdc-deprecated-list--image-list .mdc-deprecated-list-item__graphic[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-item__graphic {
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
width: 100px;
height: 56px;
}
[dir=rtl] .mdc-deprecated-list--video-list .mdc-deprecated-list-item__graphic, .mdc-deprecated-list--video-list .mdc-deprecated-list-item__graphic[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
/*rtl:end:ignore*/
}
.mdc-deprecated-list .mdc-deprecated-list-item__graphic {
display: inline-flex;
}
.mdc-deprecated-list-item__meta {
/* @noflip */ /*rtl:ignore*/
margin-left: auto;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
}
.mdc-deprecated-list-item__meta:not(.material-icons) {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: Roboto, sans-serif;
/* @alternate */
font-family: var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
font-size: 0.75rem;
/* @alternate */
font-size: var(--mdc-typography-caption-font-size, 0.75rem);
line-height: 1.25rem;
/* @alternate */
line-height: var(--mdc-typography-caption-line-height, 1.25rem);
font-weight: 400;
/* @alternate */
font-weight: var(--mdc-typography-caption-font-weight, 400);
letter-spacing: 0.0333333333em;
/* @alternate */
letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
text-decoration: inherit;
/* @alternate */
text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
text-transform: inherit;
/* @alternate */
text-transform: var(--mdc-typography-caption-text-transform, inherit);
}
.mdc-deprecated-list-item[dir=rtl] .mdc-deprecated-list-item__meta, [dir=rtl] .mdc-deprecated-list-item .mdc-deprecated-list-item__meta {
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: auto;
}
.mdc-deprecated-list-item__text {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.mdc-deprecated-list-item__text[for] {
pointer-events: none;
}
.mdc-deprecated-list-item__primary-text {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
display: block;
margin-top: 0;
/* @alternate */
line-height: normal;
margin-bottom: -20px;
}
.mdc-deprecated-list-item__primary-text::before {
display: inline-block;
width: 0;
height: 28px;
content: "";
vertical-align: 0;
}
.mdc-deprecated-list-item__primary-text::after {
display: inline-block;
width: 0;
height: 20px;
content: "";
vertical-align: -20px;
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-item__primary-text, .mdc-deprecated-list--image-list .mdc-deprecated-list-item__primary-text, .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item__primary-text, .mdc-deprecated-list--avatar-list .mdc-deprecated-list-item__primary-text, .mdc-deprecated-list--icon-list .mdc-deprecated-list-item__primary-text {
display: block;
margin-top: 0;
/* @alternate */
line-height: normal;
margin-bottom: -20px;
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-item__primary-text::before, .mdc-deprecated-list--image-list .mdc-deprecated-list-item__primary-text::before, .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item__primary-text::before, .mdc-deprecated-list--avatar-list .mdc-deprecated-list-item__primary-text::before, .mdc-deprecated-list--icon-list .mdc-deprecated-list-item__primary-text::before {
display: inline-block;
width: 0;
height: 32px;
content: "";
vertical-align: 0;
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-item__primary-text::after, .mdc-deprecated-list--image-list .mdc-deprecated-list-item__primary-text::after, .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item__primary-text::after, .mdc-deprecated-list--avatar-list .mdc-deprecated-list-item__primary-text::after, .mdc-deprecated-list--icon-list .mdc-deprecated-list-item__primary-text::after {
display: inline-block;
width: 0;
height: 20px;
content: "";
vertical-align: -20px;
}
.mdc-deprecated-list--dense .mdc-deprecated-list-item__primary-text {
display: block;
margin-top: 0;
/* @alternate */
line-height: normal;
margin-bottom: -20px;
}
.mdc-deprecated-list--dense .mdc-deprecated-list-item__primary-text::before {
display: inline-block;
width: 0;
height: 24px;
content: "";
vertical-align: 0;
}
.mdc-deprecated-list--dense .mdc-deprecated-list-item__primary-text::after {
display: inline-block;
width: 0;
height: 20px;
content: "";
vertical-align: -20px;
}
.mdc-deprecated-list-item__secondary-text {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: Roboto, sans-serif;
/* @alternate */
font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
font-size: 0.875rem;
/* @alternate */
font-size: var(--mdc-typography-body2-font-size, 0.875rem);
line-height: 1.25rem;
/* @alternate */
line-height: var(--mdc-typography-body2-line-height, 1.25rem);
font-weight: 400;
/* @alternate */
font-weight: var(--mdc-typography-body2-font-weight, 400);
letter-spacing: 0.0178571429em;
/* @alternate */
letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
text-decoration: inherit;
/* @alternate */
text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
text-transform: inherit;
/* @alternate */
text-transform: var(--mdc-typography-body2-text-transform, inherit);
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
display: block;
margin-top: 0;
/* @alternate */
line-height: normal;
}
.mdc-deprecated-list-item__secondary-text::before {
display: inline-block;
width: 0;
height: 20px;
content: "";
vertical-align: 0;
}
.mdc-deprecated-list--dense .mdc-deprecated-list-item__secondary-text {
font-size: inherit;
}
.mdc-deprecated-list--dense .mdc-deprecated-list-item {
height: 40px;
}
.mdc-deprecated-list--two-line .mdc-deprecated-list-item__text {
align-self: flex-start;
}
.mdc-deprecated-list--two-line .mdc-deprecated-list-item {
height: 64px;
}
.mdc-deprecated-list--two-line.mdc-deprecated-list--video-list .mdc-deprecated-list-item, .mdc-deprecated-list--two-line.mdc-deprecated-list--image-list .mdc-deprecated-list-item, .mdc-deprecated-list--two-line.mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-item, .mdc-deprecated-list--two-line.mdc-deprecated-list--avatar-list .mdc-deprecated-list-item, .mdc-deprecated-list--two-line.mdc-deprecated-list--icon-list .mdc-deprecated-list-item {
height: 72px;
}
.mdc-deprecated-list--two-line.mdc-deprecated-list--icon-list .mdc-deprecated-list-item__graphic {
align-self: flex-start;
margin-top: 16px;
}
.mdc-deprecated-list--two-line.mdc-deprecated-list--dense .mdc-deprecated-list-item,
.mdc-deprecated-list--avatar-list.mdc-deprecated-list--dense .mdc-deprecated-list-item {
height: 60px;
}
.mdc-deprecated-list--avatar-list.mdc-deprecated-list--dense .mdc-deprecated-list-item__graphic {
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
width: 36px;
height: 36px;
}
[dir=rtl] .mdc-deprecated-list--avatar-list.mdc-deprecated-list--dense .mdc-deprecated-list-item__graphic, .mdc-deprecated-list--avatar-list.mdc-deprecated-list--dense .mdc-deprecated-list-item__graphic[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
/*rtl:end:ignore*/
}
:not(.mdc-deprecated-list-item--disabled).mdc-deprecated-list-item {
cursor: pointer;
}
a.mdc-deprecated-list-item {
color: inherit;
text-decoration: none;
}
.mdc-deprecated-list-divider {
height: 0;
margin: 0;
border: none;
border-bottom-width: 1px;
border-bottom-style: solid;
}
.mdc-deprecated-list-divider {
border-bottom-color: rgba(0, 0, 0, 0.12);
}
.mdc-deprecated-list-divider--padded {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 32px);
}
[dir=rtl] .mdc-deprecated-list-divider--padded, .mdc-deprecated-list-divider--padded[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list-divider--inset {
/* @noflip */ /*rtl:ignore*/
margin-left: 72px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 72px);
}
[dir=rtl] .mdc-deprecated-list-divider--inset, .mdc-deprecated-list-divider--inset[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 72px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list-divider--inset.mdc-deprecated-list-divider--padded {
/* @noflip */ /*rtl:ignore*/
margin-left: 72px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 88px);
}
[dir=rtl] .mdc-deprecated-list-divider--inset.mdc-deprecated-list-divider--padded, .mdc-deprecated-list-divider--inset.mdc-deprecated-list-divider--padded[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 72px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 16px);
}
[dir=rtl] .mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading, .mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list .mdc-deprecated-list-divider--inset-trailing {
width: calc(100% - 16px);
}
.mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 32px);
}
[dir=rtl] .mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing, .mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 16px);
}
[dir=rtl] .mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding, .mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 32px);
}
[dir=rtl] .mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding, .mdc-deprecated-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading {
/* @noflip */ /*rtl:ignore*/
margin-left: 72px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 72px);
}
[dir=rtl] .mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading, .mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 72px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-trailing {
width: calc(100% - 16px);
}
.mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing {
/* @noflip */ /*rtl:ignore*/
margin-left: 72px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 88px);
}
[dir=rtl] .mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing, .mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 72px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 16px);
}
[dir=rtl] .mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding, .mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 32px);
}
[dir=rtl] .mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding, .mdc-deprecated-list--icon-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading {
/* @noflip */ /*rtl:ignore*/
margin-left: 72px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 72px);
}
[dir=rtl] .mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading, .mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 72px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-trailing {
width: calc(100% - 16px);
}
.mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing {
/* @noflip */ /*rtl:ignore*/
margin-left: 72px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 88px);
}
[dir=rtl] .mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing, .mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 72px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 16px);
}
[dir=rtl] .mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding, .mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 32px);
}
[dir=rtl] .mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding, .mdc-deprecated-list--avatar-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading {
/* @noflip */ /*rtl:ignore*/
margin-left: 72px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 72px);
}
[dir=rtl] .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading, .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 72px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-trailing {
width: calc(100% - 16px);
}
.mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing {
/* @noflip */ /*rtl:ignore*/
margin-left: 72px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 88px);
}
[dir=rtl] .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing, .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 72px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 16px);
}
[dir=rtl] .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding, .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 32px);
}
[dir=rtl] .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding, .mdc-deprecated-list--thumbnail-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading {
/* @noflip */ /*rtl:ignore*/
margin-left: 88px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 88px);
}
[dir=rtl] .mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading, .mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 88px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-trailing {
width: calc(100% - 16px);
}
.mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing {
/* @noflip */ /*rtl:ignore*/
margin-left: 88px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 104px);
}
[dir=rtl] .mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing, .mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 88px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 16px);
}
[dir=rtl] .mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding, .mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 16px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 32px);
}
[dir=rtl] .mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding, .mdc-deprecated-list--image-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 16px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading {
/* @noflip */ /*rtl:ignore*/
margin-left: 116px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 116px);
}
[dir=rtl] .mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading, .mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 116px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-trailing {
width: calc(100% - 16px);
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing {
/* @noflip */ /*rtl:ignore*/
margin-left: 116px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 132px);
}
[dir=rtl] .mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing, .mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 116px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 0px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 0px);
}
[dir=rtl] .mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding, .mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 0px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding {
/* @noflip */ /*rtl:ignore*/
margin-left: 0px;
/* @noflip */ /*rtl:ignore*/
margin-right: 0;
width: calc(100% - 16px);
}
[dir=rtl] .mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding, .mdc-deprecated-list--video-list .mdc-deprecated-list-divider--inset-leading.mdc-deprecated-list-divider--inset-trailing.mdc-deprecated-list-divider--inset-padding[dir=rtl] {
/*rtl:begin:ignore*/
/* @noflip */ /*rtl:ignore*/
margin-left: 0;
/* @noflip */ /*rtl:ignore*/
margin-right: 0px;
/*rtl:end:ignore*/
}
.mdc-deprecated-list-group .mdc-deprecated-list {
padding: 0;
}
.mdc-deprecated-list-group__subheader {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: Roboto, sans-serif;
/* @alternate */
font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
font-size: 1rem;
/* @alternate */
font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
line-height: 1.75rem;
/* @alternate */
line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
font-weight: 400;
/* @alternate */
font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
letter-spacing: 0.009375em;
/* @alternate */
letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
text-decoration: inherit;
/* @alternate */
text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
text-transform: inherit;
/* @alternate */
text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
margin: calc((3rem - 1.5rem) / 2) 16px;
}
.mdc-list-item__primary-text {
color: rgba(0, 0, 0, 0.87);
/* @alternate */
color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
.mdc-list-item__secondary-text {
color: rgba(0, 0, 0, 0.54);
/* @alternate */
color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54));
}
.mdc-list-item__overline-text {
color: rgba(0, 0, 0, 0.38);
/* @alternate */
color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38));
}
.mdc-list-item--with-leading-icon .mdc-list-item__start,
.mdc-list-item--with-trailing-icon .mdc-list-item__end {
background-color: transparent;
}
.mdc-list-item--with-leading-icon .mdc-list-item__start,
.mdc-list-item--with-trailing-icon .mdc-list-item__end {
color: rgba(0, 0, 0, 0.38);
/* @alternate */
color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38));
}
.mdc-list-item__end {
color: rgba(0, 0, 0, 0.38);
/* @alternate */
color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38));
}
.mdc-list-item--disabled .mdc-list-item__start,
.mdc-list-item--disabled .mdc-list-item__content,
.mdc-list-item--disabled .mdc-list-item__end {
opacity: 0.38;
}
.mdc-list-item--disabled .mdc-list-item__primary-text {
color: #000;
/* @alternate */
color: var(--mdc-theme-on-surface, #000);
}
.mdc-list-item--disabled .mdc-list-item__secondary-text {
color: #000;
/* @alternate */
color: var(--mdc-theme-on-surface, #000);
}
.mdc-list-item--disabled .mdc-list-item__overline-text {
color: #000;
/* @alternate */
color: var(--mdc-theme-on-surface, #000);
}
.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start {
color: #000;
/* @alternate */
color: var(--mdc-theme-on-surface, #000);
}
.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end {
color: #000;
/* @alternate */
color: var(--mdc-theme-on-surface, #000);
}
.mdc-list-item--disabled.mdc-list-item--with-trailing-meta .mdc-list-item__end {
color: #000;
/* @alternate */
color: var(--mdc-theme-on-surface, #000);
}
.mdc-list-item--selected .mdc-list-item__primary-text,
.mdc-list-item--activated .mdc-list-item__primary-text {
color: #6200ee;
/* @alternate */
color: var(--mdc-theme-primary, #6200ee);
}
.mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
.mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
color: #6200ee;
/* @alternate */
color: var(--mdc-theme-primary, #6200ee);
}
.mdc-deprecated-list-group__subheader {
color: rgba(0, 0, 0, 0.87);
/* @alternate */
color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
.mdc-list-divider::after {
content: "";
display: block;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: white;
}
}
.mdc-list {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: Roboto, sans-serif;
/* @alternate */
font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
font-size: 1rem;
/* @alternate */
font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
line-height: 1.75rem;
/* @alternate */
line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
font-weight: 400;
/* @alternate */
font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
letter-spacing: 0.009375em;
/* @alternate */
letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
text-decoration: inherit;
/* @alternate */
text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
text-transform: inherit;
/* @alternate */
text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
/* @alternate */
line-height: 1.5rem;
margin: 0;
padding: 8px 0;
list-style-type: none;
}
.mdc-list:focus {
outline: none;
}
.mdc-list-item {
display: flex;
position: relative;
align-items: center;
justify-content: flex-start;
overflow: hidden;
padding: 0;
align-items: stretch;
cursor: pointer;
}
.mdc-list-item:focus {
outline: none;
}
.mdc-list-item.mdc-list-item--with-one-line {
height: 48px;
}
.mdc-list-item.mdc-list-item--with-two-lines {
height: 64px;
}
.mdc-list-item.mdc-list-item--with-three-lines {
height: 88px;
}
.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__start {
align-self: center;
margin-top: 0;
}
.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__start {
align-self: flex-start;
margin-top: 16px;
}
.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__start {
align-self: flex-start;
margin-top: 16px;
}
.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__end {
align-self: center;
margin-top: 0;
}
.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__end {
align-self: center;
margin-top: 0;
}
.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__end {
align-self: flex-start;
margin-top: 16px;
}
.mdc-list-item.mdc-list-item--disabled, .mdc-list-item.mdc-list-item--non-interactive {
cursor: auto;
}
.mdc-list-item:not(.mdc-list-item--selected):focus::before, .mdc-list-item.mdc-ripple-upgraded--background-focused::before {
position: absolute;
box-sizing: border-box;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: 1px solid transparent;
border-radius: inherit;
content: "";
pointer-events: none;
}
.mdc-list-item.mdc-list-item--selected::before {
position: absolute;
box-sizing: border-box;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: 3px double transparent;
border-radius: inherit;
content: "";
pointer-events: none;
}
.mdc-list-item.mdc-list-item--selected:focus::before {
position: absolute;
box-sizing: border-box;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: 3px solid transparent;
border-radius: inherit;
content: "";
pointer-events: none;
}
a.mdc-list-item {
color: inherit;
text-decoration: none;
}
.mdc-list-item__start {
fill: currentColor;
flex-shrink: 0;
pointer-events: none;
}
.mdc-list-item__end {
flex-shrink: 0;
pointer-events: none;
}
.mdc-list-item__content {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
align-self: center;
flex: 1;
pointer-events: none;
}
.mdc-list-item--with-two-lines .mdc-list-item__content, .mdc-list-item--with-three-lines .mdc-list-item__content {
align-self: stretch;
}
.mdc-list-item__content[for] {
pointer-events: none;
}
.mdc-list-item__primary-text {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: Roboto, sans-serif;
/* @alternate */
font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
font-size: 1rem;
/* @alternate */
font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
line-height: 1.75rem;
/* @alternate */
line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
font-weight: 400;
/* @alternate */
font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
letter-spacing: 0.009375em;
/* @alternate */
letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
text-decoration: inherit;
/* @alternate */
text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
text-transform: inherit;
/* @alternate */
text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.mdc-list-item--with-two-lines .mdc-list-item__primary-text, .mdc-list-item--with-three-lines .mdc-list-item__primary-text {
display: block;
margin-top: 0;
/* @alternate */
line-height: normal;
margin-bottom: -20px;
}
.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before, .mdc-list-item--with-three-lines .mdc-list-item__primary-text::before {
display: inline-block;
width: 0;
height: 28px;
content: "";
vertical-align: 0;
}
.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after, .mdc-list-item--with-three-lines .mdc-list-item__primary-text::after {
display: inline-block;
width: 0;
height: 20px;
content: "";
vertical-align: -20px;
}
.mdc-list-item__secondary-text {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: Roboto