﻿.mdc-touch-target-wrapper {
    display: inline
}

.mdc-elevation-overlay {
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    opacity: var(--mdc-elevation-overlay-opacity, 0);
    transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    background-color: var(--mdc-elevation-overlay-color, #fff)
}

.mdc-button {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.875rem;
    font-size: var(--mdc-typography-button-font-size, 0.875rem);
    line-height: 2.25rem;
    line-height: var(--mdc-typography-button-line-height, 2.25rem);
    font-weight: 500;
    font-weight: var(--mdc-typography-button-font-weight, 500);
    letter-spacing: 0.0892857143em;
    letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
    text-decoration: none;
    -webkit-text-decoration: var(--mdc-typography-button-text-decoration, none);
    text-decoration: var(--mdc-typography-button-text-decoration, none);
    text-transform: uppercase;
    text-transform: var(--mdc-typography-button-text-transform, uppercase);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 64px;
    border: none;
    outline: none;
    line-height: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    overflow: visible;
    vertical-align: middle;
    margin: 5px
}

    .mdc-button .mdc-elevation-overlay {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0
    }

    .mdc-button::-moz-focus-inner {
        padding: 0;
        border: 0
    }

    .mdc-button:active {
        outline: none
    }

    .mdc-button:hover {
        cursor: pointer
    }

    .mdc-button:disabled {
        cursor: default;
        pointer-events: none
    }

    .mdc-button .mdc-button__icon {
        margin-left: 0;
        margin-right: 8px;
        display: inline-block;
        width: 18px;
        height: 18px;
        font-size: 18px;
        vertical-align: top
    }

        [dir=rtl] .mdc-button .mdc-button__icon, .mdc-button .mdc-button__icon[dir=rtl] {
            margin-left: 8px;
            margin-right: 0
        }

    .mdc-button .mdc-button__touch {
        position: absolute;
        top: 50%;
        right: 0;
        height: 48px;
        left: 0;
        transform: translateY(-50%)
    }

.mdc-button__label + .mdc-button__icon {
    margin-left: 8px;
    margin-right: 0
}

    [dir=rtl] .mdc-button__label + .mdc-button__icon, .mdc-button__label + .mdc-button__icon[dir=rtl] {
        margin-left: 0;
        margin-right: 8px
    }

svg.mdc-button__icon {
    fill: currentColor
}

.mdc-button--raised .mdc-button__icon, .mdc-button--unelevated .mdc-button__icon, .mdc-button--outlined .mdc-button__icon {
    margin-left: -4px;
    margin-right: 8px
}

    [dir=rtl] .mdc-button--raised .mdc-button__icon, .mdc-button--raised .mdc-button__icon[dir=rtl], [dir=rtl] .mdc-button--unelevated .mdc-button__icon, .mdc-button--unelevated .mdc-button__icon[dir=rtl], [dir=rtl] .mdc-button--outlined .mdc-button__icon, .mdc-button--outlined .mdc-button__icon[dir=rtl] {
        margin-left: 8px;
        margin-right: -4px
    }

.mdc-button--raised .mdc-button__label + .mdc-button__icon, .mdc-button--unelevated .mdc-button__label + .mdc-button__icon, .mdc-button--outlined .mdc-button__label + .mdc-button__icon {
    margin-left: 8px;
    margin-right: -4px
}

    [dir=rtl] .mdc-button--raised .mdc-button__label + .mdc-button__icon, .mdc-button--raised .mdc-button__label + .mdc-button__icon[dir=rtl], [dir=rtl] .mdc-button--unelevated .mdc-button__label + .mdc-button__icon, .mdc-button--unelevated .mdc-button__label + .mdc-button__icon[dir=rtl], [dir=rtl] .mdc-button--outlined .mdc-button__label + .mdc-button__icon, .mdc-button--outlined .mdc-button__label + .mdc-button__icon[dir=rtl] {
        margin-left: -4px;
        margin-right: 8px
    }

.mdc-button--touch {
    margin-top: 6px;
    margin-bottom: 6px
}

@-webkit-keyframes mdc-ripple-fg-radius-in {
    from {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1)
    }

    to {
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }
}

@keyframes mdc-ripple-fg-radius-in {
    from {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1)
    }

    to {
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }
}

@-webkit-keyframes mdc-ripple-fg-opacity-in {
    from {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        opacity: 0
    }

    to {
        opacity: var(--mdc-ripple-fg-opacity, 0)
    }
}

@keyframes mdc-ripple-fg-opacity-in {
    from {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        opacity: 0
    }

    to {
        opacity: var(--mdc-ripple-fg-opacity, 0)
    }
}

@-webkit-keyframes mdc-ripple-fg-opacity-out {
    from {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        opacity: var(--mdc-ripple-fg-opacity, 0)
    }

    to {
        opacity: 0
    }
}

@keyframes mdc-ripple-fg-opacity-out {
    from {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        opacity: var(--mdc-ripple-fg-opacity, 0)
    }

    to {
        opacity: 0
    }
}

.mdc-button {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    .mdc-button .mdc-button__ripple::before, .mdc-button .mdc-button__ripple::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    .mdc-button .mdc-button__ripple::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    .mdc-button .mdc-button__ripple::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    .mdc-button.mdc-ripple-upgraded .mdc-button__ripple::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-button.mdc-ripple-upgraded .mdc-button__ripple::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    .mdc-button.mdc-ripple-upgraded--unbounded .mdc-button__ripple::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    .mdc-button.mdc-ripple-upgraded--foreground-activation .mdc-button__ripple::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    .mdc-button.mdc-ripple-upgraded--foreground-deactivation .mdc-button__ripple::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-button .mdc-button__ripple::before, .mdc-button .mdc-button__ripple::after {
        top: calc(50% - 100%);
        left: calc(50% - 100%);
        width: 200%;
        height: 200%
    }

    .mdc-button.mdc-ripple-upgraded .mdc-button__ripple::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    .mdc-button .mdc-button__ripple {
        position: absolute;
        box-sizing: content-box;
        width: 100%;
        height: 100%;
        overflow: hidden
    }

    .mdc-button:not(.mdc-button--outlined) .mdc-button__ripple {
        top: 0;
        left: 0
    }

.mdc-button--raised {
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0,0,0,.12);
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)
}

    .mdc-button--raised:hover, .mdc-button--raised:focus {
        box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0,0,0,.12)
    }

    .mdc-button--raised:active {
        box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0,0,0,.12)
    }

    .mdc-button--raised:disabled {
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0,0,0,.12)
    }

.mdc-button--outlined {
    border-style: solid
}

.mdc-button {
    height: 36px;
    border-radius: 4px;
    border-radius: var(--mdc-shape-small, 4px);
    padding: 0 8px 0 8px
}

    .mdc-button:not(:disabled) {
        background-color: transparent
    }

    .mdc-button:disabled {
        background-color: transparent
    }

    .mdc-button:not(:disabled) {
        color: #6200ee;
        color: var(--mdc-theme-primary, #6200ee)
    }

    .mdc-button:disabled {
        color: rgba(0, 0, 0, 0.38)
    }

    .mdc-button .mdc-button__ripple::before, .mdc-button .mdc-button__ripple::after {
        background-color: #6200ee;
        background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #6200ee))
    }

    .mdc-button:hover .mdc-button__ripple::before, .mdc-button.mdc-ripple-surface--hover .mdc-button__ripple::before {
        opacity: 0.04;
        opacity: var(--mdc-ripple-hover-opacity, 0.04)
    }

    .mdc-button.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before, .mdc-button:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    .mdc-button:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
        transition: opacity 150ms linear
    }

    .mdc-button:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

    .mdc-button.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

    .mdc-button .mdc-button__ripple {
        border-radius: 4px;
        border-radius: var(--mdc-shape-small, 4px)
    }

.mdc-button--unelevated {
    padding: 0 16px 0 16px;
    height: 36px;
    border-radius: 4px;
    border-radius: var(--mdc-shape-small, 4px)
}

    .mdc-button--unelevated:not(:disabled) {
        background-color: #6200ee;
        background-color: var(--mdc-theme-primary, #6200ee)
    }

    .mdc-button--unelevated:disabled {
        background-color: rgba(0, 0, 0, 0.12)
    }

    .mdc-button--unelevated:not(:disabled) {
        color: #fff;
        color: var(--mdc-theme-on-primary, #fff)
    }

    .mdc-button--unelevated:disabled {
        color: rgba(0, 0, 0, 0.38)
    }

    .mdc-button--unelevated .mdc-button__ripple::before, .mdc-button--unelevated .mdc-button__ripple::after {
        background-color: #fff;
        background-color: var(--mdc-ripple-color, var(--mdc-theme-on-primary, #fff))
    }

    .mdc-button--unelevated:hover .mdc-button__ripple::before, .mdc-button--unelevated.mdc-ripple-surface--hover .mdc-button__ripple::before {
        opacity: 0.08;
        opacity: var(--mdc-ripple-hover-opacity, 0.08)
    }

    .mdc-button--unelevated.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before, .mdc-button--unelevated:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
        transition-duration: 75ms;
        opacity: 0.24;
        opacity: var(--mdc-ripple-focus-opacity, 0.24)
    }

    .mdc-button--unelevated:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
        transition: opacity 150ms linear
    }

    .mdc-button--unelevated:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
        transition-duration: 75ms;
        opacity: 0.24;
        opacity: var(--mdc-ripple-press-opacity, 0.24)
    }

    .mdc-button--unelevated.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24)
    }

    .mdc-button--unelevated .mdc-button__ripple {
        border-radius: 4px;
        border-radius: var(--mdc-shape-small, 4px)
    }

.mdc-button--raised {
    padding: 0 16px 0 16px;
    height: 36px;
    border-radius: 4px;
    border-radius: var(--mdc-shape-small, 4px)
}

    .mdc-button--raised:not(:disabled) {
        background-color: #6200ee;
        background-color: var(--mdc-theme-primary, #6200ee)
    }

    .mdc-button--raised:disabled {
        background-color: rgba(0, 0, 0, 0.12)
    }

    .mdc-button--raised:not(:disabled) {
        color: #fff;
        color: var(--mdc-theme-on-primary, #fff)
    }

    .mdc-button--raised:disabled {
        color: rgba(0, 0, 0, 0.38)
    }

    .mdc-button--raised .mdc-button__ripple::before, .mdc-button--raised .mdc-button__ripple::after {
        background-color: #fff;
        background-color: var(--mdc-ripple-color, var(--mdc-theme-on-primary, #fff))
    }

    .mdc-button--raised:hover .mdc-button__ripple::before, .mdc-button--raised.mdc-ripple-surface--hover .mdc-button__ripple::before {
        opacity: 0.08;
        opacity: var(--mdc-ripple-hover-opacity, 0.08)
    }

    .mdc-button--raised.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before, .mdc-button--raised:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
        transition-duration: 75ms;
        opacity: 0.24;
        opacity: var(--mdc-ripple-focus-opacity, 0.24)
    }

    .mdc-button--raised:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
        transition: opacity 150ms linear
    }

    .mdc-button--raised:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
        transition-duration: 75ms;
        opacity: 0.24;
        opacity: var(--mdc-ripple-press-opacity, 0.24)
    }

    .mdc-button--raised.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24)
    }

    .mdc-button--raised .mdc-button__ripple {
        border-radius: 4px;
        border-radius: var(--mdc-shape-small, 4px)
    }

.mdc-button--outlined {
    height: 36px;
    border-radius: 4px;
    border-radius: var(--mdc-shape-small, 4px);
    padding: 0 15px 0 15px;
    border-width: 1px
}

    .mdc-button--outlined:not(:disabled) {
        background-color: transparent
    }

    .mdc-button--outlined:disabled {
        background-color: transparent
    }

    .mdc-button--outlined:not(:disabled) {
        color: #6200ee;
        color: var(--mdc-theme-primary, #6200ee)
    }

    .mdc-button--outlined:disabled {
        color: rgba(0, 0, 0, 0.38)
    }

    .mdc-button--outlined .mdc-button__ripple::before, .mdc-button--outlined .mdc-button__ripple::after {
        background-color: #6200ee;
        background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #6200ee))
    }

    .mdc-button--outlined:hover .mdc-button__ripple::before, .mdc-button--outlined.mdc-ripple-surface--hover .mdc-button__ripple::before {
        opacity: 0.04;
        opacity: var(--mdc-ripple-hover-opacity, 0.04)
    }

    .mdc-button--outlined.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before, .mdc-button--outlined:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    .mdc-button--outlined:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
        transition: opacity 150ms linear
    }

    .mdc-button--outlined:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

    .mdc-button--outlined.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

    .mdc-button--outlined .mdc-button__ripple {
        border-radius: 4px;
        border-radius: var(--mdc-shape-small, 4px)
    }

    .mdc-button--outlined:not(:disabled) {
        border-color: rgba(0, 0, 0, 0.12)
    }

    .mdc-button--outlined:disabled {
        border-color: rgba(0, 0, 0, 0.12)
    }

    .mdc-button--outlined .mdc-button__ripple {
        top: -1px;
        left: -1px;
        border: 1px solid transparent
    }

    .mdc-button--outlined .mdc-button__touch {
        left: -1px;
        width: calc(100% + 2 * 1px)
    }

.mdc-icon-button {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    border: none;
    outline: none;
    background-color: transparent;
    fill: currentColor;
    color: inherit;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 48px;
    height: 48px;
    padding: 12px
}

    .mdc-icon-button svg, .mdc-icon-button img {
        width: 24px;
        height: 24px
    }

    .mdc-icon-button:disabled {
        color: rgba(0, 0, 0, 0.38);
        color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38))
    }

    .mdc-icon-button:disabled {
        cursor: default;
        pointer-events: none
    }

.mdc-icon-button__icon {
    display: inline-block
}

    .mdc-icon-button__icon.mdc-icon-button__icon--on {
        display: none
    }

.mdc-icon-button--on .mdc-icon-button__icon {
    display: none
}

    .mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on {
        display: inline-block
    }

.mdc-icon-button {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    .mdc-icon-button::before, .mdc-icon-button::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    .mdc-icon-button::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    .mdc-icon-button::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    .mdc-icon-button.mdc-ripple-upgraded::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-icon-button.mdc-ripple-upgraded::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    .mdc-icon-button.mdc-ripple-upgraded--unbounded::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    .mdc-icon-button.mdc-ripple-upgraded--foreground-activation::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    .mdc-icon-button.mdc-ripple-upgraded--foreground-deactivation::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-icon-button::before, .mdc-icon-button::after {
        top: calc(50% - 50%);
        left: calc(50% - 50%);
        width: 100%;
        height: 100%
    }

    .mdc-icon-button.mdc-ripple-upgraded::before, .mdc-icon-button.mdc-ripple-upgraded::after {
        top: var(--mdc-ripple-top, calc(50% - 50%));
        left: var(--mdc-ripple-left, calc(50% - 50%));
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    .mdc-icon-button.mdc-ripple-upgraded::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    .mdc-icon-button::before, .mdc-icon-button::after {
        background-color: #000;
        background-color: var(--mdc-ripple-color, #000)
    }

    .mdc-icon-button:hover::before, .mdc-icon-button.mdc-ripple-surface--hover::before {
        opacity: 0.04;
        opacity: var(--mdc-ripple-hover-opacity, 0.04)
    }

    .mdc-icon-button.mdc-ripple-upgraded--background-focused::before, .mdc-icon-button:not(.mdc-ripple-upgraded):focus::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    .mdc-icon-button:not(.mdc-ripple-upgraded)::after {
        transition: opacity 150ms linear
    }

    .mdc-icon-button:not(.mdc-ripple-upgraded):active::after {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

    .mdc-icon-button.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

.mdc-fab {
    position: relative;
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0,0,0,.12);
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    fill: currentColor;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    overflow: visible;
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),opacity 15ms linear 30ms,transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786);
    color: #fff;
    color: var(--mdc-theme-on-secondary, #fff)
}

    .mdc-fab .mdc-elevation-overlay {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0
    }

    .mdc-fab:not(.mdc-fab--extended) {
        border-radius: 50%
    }

        .mdc-fab:not(.mdc-fab--extended) .mdc-fab__ripple {
            border-radius: 50%
        }

    .mdc-fab::-moz-focus-inner {
        padding: 0;
        border: 0
    }

    .mdc-fab:hover, .mdc-fab:focus {
        box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0,0,0,.12)
    }

    .mdc-fab:active {
        box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 12px 17px 2px rgba(0, 0, 0, 0.14),0px 5px 22px 4px rgba(0,0,0,.12)
    }

    .mdc-fab:active, .mdc-fab:focus {
        outline: none
    }

    .mdc-fab:hover {
        cursor: pointer
    }

    .mdc-fab > svg {
        width: 100%
    }

    .mdc-fab .mdc-fab__icon {
        width: 24px;
        height: 24px;
        font-size: 24px
    }

.mdc-fab--mini {
    width: 40px;
    height: 40px
}

.mdc-fab--extended {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.875rem;
    font-size: var(--mdc-typography-button-font-size, 0.875rem);
    line-height: 2.25rem;
    line-height: var(--mdc-typography-button-line-height, 2.25rem);
    font-weight: 500;
    font-weight: var(--mdc-typography-button-font-weight, 500);
    letter-spacing: 0.0892857143em;
    letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
    text-decoration: none;
    -webkit-text-decoration: var(--mdc-typography-button-text-decoration, none);
    text-decoration: var(--mdc-typography-button-text-decoration, none);
    text-transform: uppercase;
    text-transform: var(--mdc-typography-button-text-transform, uppercase);
    border-radius: 24px;
    padding-left: 20px;
    padding-right: 20px;
    width: auto;
    max-width: 100%;
    height: 48px;
    line-height: normal
}

    .mdc-fab--extended .mdc-fab__ripple {
        border-radius: 24px
    }

    .mdc-fab--extended .mdc-fab__icon {
        margin-left: calc(12px - 20px);
        margin-right: 12px
    }

        [dir=rtl] .mdc-fab--extended .mdc-fab__icon, .mdc-fab--extended .mdc-fab__icon[dir=rtl] {
            margin-left: 12px;
            margin-right: calc(12px - 20px)
        }

    .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon {
        margin-left: 12px;
        margin-right: calc(12px - 20px)
    }

        [dir=rtl] .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon, .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon[dir=rtl] {
            margin-left: calc(12px - 20px);
            margin-right: 12px
        }

.mdc-fab--touch {
    margin-top: 4px;
    margin-bottom: 4px;
    margin-right: 4px;
    margin-left: 4px
}

    .mdc-fab--touch .mdc-fab__touch {
        position: absolute;
        top: 50%;
        right: 0;
        height: 48px;
        left: 50%;
        width: 48px;
        transform: translate(-50%, -50%)
    }

.mdc-fab::before {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    content: ""
}

.mdc-fab__label {
    justify-content: flex-start;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: visible
}

.mdc-fab__icon {
    transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
    fill: currentColor;
    will-change: transform
}

.mdc-fab .mdc-fab__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.mdc-fab--exited {
    transform: scale(0);
    opacity: 0;
    transition: opacity 15ms linear 150ms,transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1)
}

    .mdc-fab--exited .mdc-fab__icon {
        transform: scale(0);
        transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1)
    }

.mdc-fab {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    .mdc-fab .mdc-fab__ripple::before, .mdc-fab .mdc-fab__ripple::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    .mdc-fab .mdc-fab__ripple::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    .mdc-fab .mdc-fab__ripple::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    .mdc-fab.mdc-ripple-upgraded .mdc-fab__ripple::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-fab.mdc-ripple-upgraded .mdc-fab__ripple::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    .mdc-fab.mdc-ripple-upgraded--unbounded .mdc-fab__ripple::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    .mdc-fab.mdc-ripple-upgraded--foreground-activation .mdc-fab__ripple::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    .mdc-fab.mdc-ripple-upgraded--foreground-deactivation .mdc-fab__ripple::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-fab .mdc-fab__ripple::before, .mdc-fab .mdc-fab__ripple::after {
        top: calc(50% - 100%);
        left: calc(50% - 100%);
        width: 200%;
        height: 200%
    }

    .mdc-fab.mdc-ripple-upgraded .mdc-fab__ripple::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    .mdc-fab .mdc-fab__ripple::before, .mdc-fab .mdc-fab__ripple::after {
        background-color: #fff;
        background-color: var(--mdc-ripple-color, var(--mdc-theme-on-secondary, #fff))
    }

    .mdc-fab:hover .mdc-fab__ripple::before, .mdc-fab.mdc-ripple-surface--hover .mdc-fab__ripple::before {
        opacity: 0.08;
        opacity: var(--mdc-ripple-hover-opacity, 0.08)
    }

    .mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__ripple::before, .mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__ripple::before {
        transition-duration: 75ms;
        opacity: 0.24;
        opacity: var(--mdc-ripple-focus-opacity, 0.24)
    }

    .mdc-fab:not(.mdc-ripple-upgraded) .mdc-fab__ripple::after {
        transition: opacity 150ms linear
    }

    .mdc-fab:not(.mdc-ripple-upgraded):active .mdc-fab__ripple::after {
        transition-duration: 75ms;
        opacity: 0.24;
        opacity: var(--mdc-ripple-press-opacity, 0.24)
    }

    .mdc-fab.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24)
    }

    .mdc-fab .mdc-fab__ripple {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: -1
    }

.mdc-list {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
    line-height: 1.75rem;
    line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
    letter-spacing: 0.009375em;
    letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
    line-height: 1.5rem;
    margin: 0;
    padding: 8px 0;
    list-style-type: none;
    color: rgba(0, 0, 0, 0.87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))
}

    .mdc-list:focus {
        outline: none
    }

.mdc-list-item {
    height: 48px
}

.mdc-list-item__secondary-text {
    color: rgba(0, 0, 0, 0.54);
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54))
}

.mdc-list-item__graphic {
    background-color: transparent
}

.mdc-list-item__graphic {
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38))
}

.mdc-list-item__meta {
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38))
}

.mdc-list-group__subheader {
    color: rgba(0, 0, 0, 0.87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))
}

.mdc-list-item--disabled .mdc-list-item__text {
    opacity: .38
}

.mdc-list-item--disabled .mdc-list-item__text, .mdc-list-item--disabled .mdc-list-item__primary-text, .mdc-list-item--disabled .mdc-list-item__secondary-text {
    color: #000;
    color: var(--mdc-theme-on-surface, #000)
}

.mdc-list-item--selected, .mdc-list-item--activated {
    color: #6200ee;
    color: var(--mdc-theme-primary, #6200ee)
}

    .mdc-list-item--selected .mdc-list-item__graphic, .mdc-list-item--activated .mdc-list-item__graphic {
        color: #6200ee;
        color: var(--mdc-theme-primary, #6200ee)
    }

.mdc-list--dense {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: .812rem
}

.mdc-list-item {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    padding-left: 16px;
    padding-right: 16px;
    height: 48px
}

    .mdc-list-item:focus {
        outline: none
    }

    .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: ""
    }

    .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: ""
    }

    [dir=rtl] .mdc-list-item, .mdc-list-item[dir=rtl] {
        padding-left: 16px;
        padding-right: 16px
    }

.mdc-list--icon-list .mdc-list-item {
    padding-left: 16px;
    padding-right: 16px;
    height: 56px
}

    [dir=rtl] .mdc-list--icon-list .mdc-list-item, .mdc-list--icon-list .mdc-list-item[dir=rtl] {
        padding-left: 16px;
        padding-right: 16px
    }

.mdc-list--avatar-list .mdc-list-item {
    padding-left: 16px;
    padding-right: 16px;
    height: 56px
}

    [dir=rtl] .mdc-list--avatar-list .mdc-list-item, .mdc-list--avatar-list .mdc-list-item[dir=rtl] {
        padding-left: 16px;
        padding-right: 16px
    }

.mdc-list--thumbnail-list .mdc-list-item {
    padding-left: 16px;
    padding-right: 16px;
    height: 56px
}

    [dir=rtl] .mdc-list--thumbnail-list .mdc-list-item, .mdc-list--thumbnail-list .mdc-list-item[dir=rtl] {
        padding-left: 16px;
        padding-right: 16px
    }

.mdc-list--image-list .mdc-list-item {
    padding-left: 16px;
    padding-right: 16px;
    height: 72px
}

    [dir=rtl] .mdc-list--image-list .mdc-list-item, .mdc-list--image-list .mdc-list-item[dir=rtl] {
        padding-left: 16px;
        padding-right: 16px
    }

.mdc-list--video-list .mdc-list-item {
    padding-left: 0px;
    padding-right: 16px;
    height: 72px
}

    [dir=rtl] .mdc-list--video-list .mdc-list-item, .mdc-list--video-list .mdc-list-item[dir=rtl] {
        padding-left: 16px;
        padding-right: 0px
    }

.mdc-list--dense .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 16px;
    width: 20px;
    height: 20px
}

    [dir=rtl] .mdc-list--dense .mdc-list-item__graphic, .mdc-list--dense .mdc-list-item__graphic[dir=rtl] {
        margin-left: 16px;
        margin-right: 0
    }

.mdc-list-item__graphic {
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    fill: currentColor;
    -o-object-fit: cover;
    object-fit: cover;
    margin-left: 0;
    margin-right: 32px;
    width: 24px;
    height: 24px
}

    [dir=rtl] .mdc-list-item__graphic, .mdc-list-item__graphic[dir=rtl] {
        margin-left: 32px;
        margin-right: 0
    }

.mdc-list--icon-list .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 32px;
    width: 24px;
    height: 24px
}

    [dir=rtl] .mdc-list--icon-list .mdc-list-item__graphic, .mdc-list--icon-list .mdc-list-item__graphic[dir=rtl] {
        margin-left: 32px;
        margin-right: 0
    }

.mdc-list--avatar-list .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%
}

    [dir=rtl] .mdc-list--avatar-list .mdc-list-item__graphic, .mdc-list--avatar-list .mdc-list-item__graphic[dir=rtl] {
        margin-left: 16px;
        margin-right: 0
    }

.mdc-list--thumbnail-list .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 16px;
    width: 40px;
    height: 40px
}

    [dir=rtl] .mdc-list--thumbnail-list .mdc-list-item__graphic, .mdc-list--thumbnail-list .mdc-list-item__graphic[dir=rtl] {
        margin-left: 16px;
        margin-right: 0
    }

.mdc-list--image-list .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 16px;
    width: 56px;
    height: 56px
}

    [dir=rtl] .mdc-list--image-list .mdc-list-item__graphic, .mdc-list--image-list .mdc-list-item__graphic[dir=rtl] {
        margin-left: 16px;
        margin-right: 0
    }

.mdc-list--video-list .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 16px;
    width: 100px;
    height: 56px
}

    [dir=rtl] .mdc-list--video-list .mdc-list-item__graphic, .mdc-list--video-list .mdc-list-item__graphic[dir=rtl] {
        margin-left: 16px;
        margin-right: 0
    }

.mdc-list .mdc-list-item__graphic {
    display: inline-flex
}

.mdc-list-item__meta {
    margin-left: auto;
    margin-right: 0
}

    .mdc-list-item__meta:not(.material-icons) {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: Roboto, sans-serif;
        font-family: var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
        font-size: 0.75rem;
        font-size: var(--mdc-typography-caption-font-size, 0.75rem);
        line-height: 1.25rem;
        line-height: var(--mdc-typography-caption-line-height, 1.25rem);
        font-weight: 400;
        font-weight: var(--mdc-typography-caption-font-weight, 400);
        letter-spacing: 0.0333333333em;
        letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
        text-decoration: inherit;
        -webkit-text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
        text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
        text-transform: inherit;
        text-transform: var(--mdc-typography-caption-text-transform, inherit)
    }

.mdc-list-item[dir=rtl] .mdc-list-item__meta, [dir=rtl] .mdc-list-item .mdc-list-item__meta {
    margin-left: 0;
    margin-right: auto
}

.mdc-list-item__text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

    .mdc-list-item__text[for] {
        pointer-events: none
    }

.mdc-list-item__primary-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 28px;
        content: "";
        vertical-align: 0
    }

    .mdc-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-list--video-list .mdc-list-item__primary-text, .mdc-list--image-list .mdc-list-item__primary-text, .mdc-list--thumbnail-list .mdc-list-item__primary-text, .mdc-list--avatar-list .mdc-list-item__primary-text, .mdc-list--icon-list .mdc-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-list--video-list .mdc-list-item__primary-text::before, .mdc-list--image-list .mdc-list-item__primary-text::before, .mdc-list--thumbnail-list .mdc-list-item__primary-text::before, .mdc-list--avatar-list .mdc-list-item__primary-text::before, .mdc-list--icon-list .mdc-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

    .mdc-list--video-list .mdc-list-item__primary-text::after, .mdc-list--image-list .mdc-list-item__primary-text::after, .mdc-list--thumbnail-list .mdc-list-item__primary-text::after, .mdc-list--avatar-list .mdc-list-item__primary-text::after, .mdc-list--icon-list .mdc-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-list--dense .mdc-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-list--dense .mdc-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 24px;
        content: "";
        vertical-align: 0
    }

    .mdc-list--dense .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, sans-serif;
    font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.875rem;
    font-size: var(--mdc-typography-body2-font-size, 0.875rem);
    line-height: 1.25rem;
    line-height: var(--mdc-typography-body2-line-height, 1.25rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-body2-font-weight, 400);
    letter-spacing: 0.0178571429em;
    letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
    text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-body2-text-transform, inherit);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-list-item__secondary-text::before {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: 0
    }

.mdc-list--dense .mdc-list-item__secondary-text {
    font-size: inherit
}

.mdc-list--dense .mdc-list-item {
    height: 40px
}

.mdc-list--two-line .mdc-list-item__text {
    align-self: flex-start
}

.mdc-list--two-line .mdc-list-item {
    height: 64px
}

.mdc-list--two-line.mdc-list--video-list .mdc-list-item, .mdc-list--two-line.mdc-list--image-list .mdc-list-item, .mdc-list--two-line.mdc-list--thumbnail-list .mdc-list-item, .mdc-list--two-line.mdc-list--avatar-list .mdc-list-item, .mdc-list--two-line.mdc-list--icon-list .mdc-list-item {
    height: 72px
}

.mdc-list--two-line.mdc-list--icon-list .mdc-list-item__graphic {
    align-self: flex-start;
    margin-top: 16px
}

.mdc-list--two-line.mdc-list--dense .mdc-list-item, .mdc-list--avatar-list.mdc-list--dense .mdc-list-item {
    height: 60px
}

.mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 16px;
    width: 36px;
    height: 36px
}

    [dir=rtl] .mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic, .mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic[dir=rtl] {
        margin-left: 16px;
        margin-right: 0
    }

:not(.mdc-list-item--disabled).mdc-list-item {
    cursor: pointer
}

a.mdc-list-item {
    color: inherit;
    text-decoration: none
}

.mdc-list-divider {
    height: 0;
    margin: 0;
    border: none;
    border-bottom-width: 1px;
    border-bottom-style: solid
}

.mdc-list-divider {
    border-bottom-color: rgba(0, 0, 0, 0.12)
}

.mdc-list-divider--padded {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 32px)
}

    [dir=rtl] .mdc-list-divider--padded, .mdc-list-divider--padded[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list-divider--inset {
    margin-left: 72px;
    margin-right: 0;
    width: calc(100% - 72px)
}

    [dir=rtl] .mdc-list-divider--inset, .mdc-list-divider--inset[dir=rtl] {
        margin-left: 0;
        margin-right: 72px
    }

    .mdc-list-divider--inset.mdc-list-divider--padded {
        margin-left: 72px;
        margin-right: 0;
        width: calc(100% - 88px)
    }

        [dir=rtl] .mdc-list-divider--inset.mdc-list-divider--padded, .mdc-list-divider--inset.mdc-list-divider--padded[dir=rtl] {
            margin-left: 0;
            margin-right: 72px
        }

.mdc-list .mdc-list-divider--inset-leading {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 16px)
}

    [dir=rtl] .mdc-list .mdc-list-divider--inset-leading, .mdc-list .mdc-list-divider--inset-leading[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list .mdc-list-divider--inset-trailing {
    width: calc(100% - 16px)
}

.mdc-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 32px)
}

    [dir=rtl] .mdc-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing, .mdc-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list .mdc-list-divider--inset-leading.mdc-list-divider--padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 16px)
}

    [dir=rtl] .mdc-list .mdc-list-divider--inset-leading.mdc-list-divider--padding, .mdc-list .mdc-list-divider--inset-leading.mdc-list-divider--padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 32px)
}

    [dir=rtl] .mdc-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding, .mdc-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list--icon-list .mdc-list-divider--inset-leading {
    margin-left: 72px;
    margin-right: 0;
    width: calc(100% - 72px)
}

    [dir=rtl] .mdc-list--icon-list .mdc-list-divider--inset-leading, .mdc-list--icon-list .mdc-list-divider--inset-leading[dir=rtl] {
        margin-left: 0;
        margin-right: 72px
    }

.mdc-list--icon-list .mdc-list-divider--inset-trailing {
    width: calc(100% - 16px)
}

.mdc-list--icon-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing {
    margin-left: 72px;
    margin-right: 0;
    width: calc(100% - 88px)
}

    [dir=rtl] .mdc-list--icon-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing, .mdc-list--icon-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing[dir=rtl] {
        margin-left: 0;
        margin-right: 72px
    }

.mdc-list--icon-list .mdc-list-divider--inset-leading.mdc-list-divider--padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 16px)
}

    [dir=rtl] .mdc-list--icon-list .mdc-list-divider--inset-leading.mdc-list-divider--padding, .mdc-list--icon-list .mdc-list-divider--inset-leading.mdc-list-divider--padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list--icon-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 32px)
}

    [dir=rtl] .mdc-list--icon-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding, .mdc-list--icon-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list--avatar-list .mdc-list-divider--inset-leading {
    margin-left: 72px;
    margin-right: 0;
    width: calc(100% - 72px)
}

    [dir=rtl] .mdc-list--avatar-list .mdc-list-divider--inset-leading, .mdc-list--avatar-list .mdc-list-divider--inset-leading[dir=rtl] {
        margin-left: 0;
        margin-right: 72px
    }

.mdc-list--avatar-list .mdc-list-divider--inset-trailing {
    width: calc(100% - 16px)
}

.mdc-list--avatar-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing {
    margin-left: 72px;
    margin-right: 0;
    width: calc(100% - 88px)
}

    [dir=rtl] .mdc-list--avatar-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing, .mdc-list--avatar-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing[dir=rtl] {
        margin-left: 0;
        margin-right: 72px
    }

.mdc-list--avatar-list .mdc-list-divider--inset-leading.mdc-list-divider--padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 16px)
}

    [dir=rtl] .mdc-list--avatar-list .mdc-list-divider--inset-leading.mdc-list-divider--padding, .mdc-list--avatar-list .mdc-list-divider--inset-leading.mdc-list-divider--padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list--avatar-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 32px)
}

    [dir=rtl] .mdc-list--avatar-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding, .mdc-list--avatar-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list--thumbnail-list .mdc-list-divider--inset-leading {
    margin-left: 72px;
    margin-right: 0;
    width: calc(100% - 72px)
}

    [dir=rtl] .mdc-list--thumbnail-list .mdc-list-divider--inset-leading, .mdc-list--thumbnail-list .mdc-list-divider--inset-leading[dir=rtl] {
        margin-left: 0;
        margin-right: 72px
    }

.mdc-list--thumbnail-list .mdc-list-divider--inset-trailing {
    width: calc(100% - 16px)
}

.mdc-list--thumbnail-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing {
    margin-left: 72px;
    margin-right: 0;
    width: calc(100% - 88px)
}

    [dir=rtl] .mdc-list--thumbnail-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing, .mdc-list--thumbnail-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing[dir=rtl] {
        margin-left: 0;
        margin-right: 72px
    }

.mdc-list--thumbnail-list .mdc-list-divider--inset-leading.mdc-list-divider--padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 16px)
}

    [dir=rtl] .mdc-list--thumbnail-list .mdc-list-divider--inset-leading.mdc-list-divider--padding, .mdc-list--thumbnail-list .mdc-list-divider--inset-leading.mdc-list-divider--padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list--thumbnail-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 32px)
}

    [dir=rtl] .mdc-list--thumbnail-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding, .mdc-list--thumbnail-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list--image-list .mdc-list-divider--inset-leading {
    margin-left: 88px;
    margin-right: 0;
    width: calc(100% - 88px)
}

    [dir=rtl] .mdc-list--image-list .mdc-list-divider--inset-leading, .mdc-list--image-list .mdc-list-divider--inset-leading[dir=rtl] {
        margin-left: 0;
        margin-right: 88px
    }

.mdc-list--image-list .mdc-list-divider--inset-trailing {
    width: calc(100% - 16px)
}

.mdc-list--image-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing {
    margin-left: 88px;
    margin-right: 0;
    width: calc(100% - 104px)
}

    [dir=rtl] .mdc-list--image-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing, .mdc-list--image-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing[dir=rtl] {
        margin-left: 0;
        margin-right: 88px
    }

.mdc-list--image-list .mdc-list-divider--inset-leading.mdc-list-divider--padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 16px)
}

    [dir=rtl] .mdc-list--image-list .mdc-list-divider--inset-leading.mdc-list-divider--padding, .mdc-list--image-list .mdc-list-divider--inset-leading.mdc-list-divider--padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list--image-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding {
    margin-left: 16px;
    margin-right: 0;
    width: calc(100% - 32px)
}

    [dir=rtl] .mdc-list--image-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding, .mdc-list--image-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-list--video-list .mdc-list-divider--inset-leading {
    margin-left: 116px;
    margin-right: 0;
    width: calc(100% - 116px)
}

    [dir=rtl] .mdc-list--video-list .mdc-list-divider--inset-leading, .mdc-list--video-list .mdc-list-divider--inset-leading[dir=rtl] {
        margin-left: 0;
        margin-right: 116px
    }

.mdc-list--video-list .mdc-list-divider--inset-trailing {
    width: calc(100% - 16px)
}

.mdc-list--video-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing {
    margin-left: 116px;
    margin-right: 0;
    width: calc(100% - 132px)
}

    [dir=rtl] .mdc-list--video-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing, .mdc-list--video-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing[dir=rtl] {
        margin-left: 0;
        margin-right: 116px
    }

.mdc-list--video-list .mdc-list-divider--inset-leading.mdc-list-divider--padding {
    margin-left: 0px;
    margin-right: 0;
    width: calc(100% - 0px)
}

    [dir=rtl] .mdc-list--video-list .mdc-list-divider--inset-leading.mdc-list-divider--padding, .mdc-list--video-list .mdc-list-divider--inset-leading.mdc-list-divider--padding[dir=rtl] {
        margin-left: 0;
        margin-right: 0px
    }

.mdc-list--video-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding {
    margin-left: 0px;
    margin-right: 0;
    width: calc(100% - 16px)
}

    [dir=rtl] .mdc-list--video-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding, .mdc-list--video-list .mdc-list-divider--inset-leading.mdc-list-divider--inset-trailing.mdc-list-divider--inset-padding[dir=rtl] {
        margin-left: 0;
        margin-right: 0px
    }

.mdc-list-group .mdc-list {
    padding: 0
}

.mdc-list-group__subheader {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
    line-height: 1.75rem;
    line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
    letter-spacing: 0.009375em;
    letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
    margin: calc( (3rem - 1.5rem) / 2 ) 16px
}

.mdc-evolution-list-item__primary-text {
    color: rgba(0, 0, 0, 0.87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))
}

.mdc-evolution-list-item__secondary-text {
    color: rgba(0, 0, 0, 0.54);
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54))
}

.mdc-evolution-list-item--with-leading-icon .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-trailing-icon .mdc-evolution-list-item__end {
    background-color: transparent
}

.mdc-evolution-list-item--with-leading-icon .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-trailing-icon .mdc-evolution-list-item__end {
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38))
}

.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38))
}

.mdc-evolution-list-item--disabled .mdc-evolution-list-item__start, .mdc-evolution-list-item--disabled .mdc-evolution-list-item__content, .mdc-evolution-list-item--disabled .mdc-evolution-list-item__end {
    opacity: .38
}

.mdc-evolution-list-item--disabled .mdc-evolution-list-item__primary-text {
    color: #000;
    color: var(--mdc-theme-on-surface, #000)
}

.mdc-evolution-list-item--disabled .mdc-evolution-list-item__secondary-text {
    color: #000;
    color: var(--mdc-theme-on-surface, #000)
}

.mdc-evolution-list-item--disabled.mdc-evolution-list-item--with-leading-icon .mdc-evolution-list-item__start {
    color: #000;
    color: var(--mdc-theme-on-surface, #000)
}

.mdc-evolution-list-item--disabled.mdc-evolution-list-item--with-trailing-icon .mdc-evolution-list-item__end {
    color: #000;
    color: var(--mdc-theme-on-surface, #000)
}

.mdc-evolution-list-item--disabled.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    color: #000;
    color: var(--mdc-theme-on-surface, #000)
}

.mdc-evolution-list-item--selected .mdc-evolution-list-item__primary-text, .mdc-evolution-list-item--activated .mdc-evolution-list-item__primary-text {
    color: #6200ee;
    color: var(--mdc-theme-primary, #6200ee)
}

.mdc-evolution-list-item--selected.mdc-evolution-list-item--with-leading-icon .mdc-evolution-list-item__start, .mdc-evolution-list-item--activated.mdc-evolution-list-item--with-leading-icon .mdc-evolution-list-item__start {
    color: #6200ee;
    color: var(--mdc-theme-primary, #6200ee)
}

.mdc-list-group__subheader {
    color: rgba(0, 0, 0, 0.87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87))
}

@media screen and (-ms-high-contrast: active) {
    .mdc-evolution-list-divider::after {
        content: "";
        display: block;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: white
    }
}

.mdc-evolution-list {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
    line-height: 1.75rem;
    line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
    letter-spacing: 0.009375em;
    letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
    line-height: 1.5rem;
    margin: 0;
    padding: 8px 0;
    list-style-type: none
}

    .mdc-evolution-list:focus {
        outline: none
    }

.mdc-evolution-list-item {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    padding-left: 16px;
    padding-right: 16px;
    align-items: stretch;
    cursor: pointer
}

    .mdc-evolution-list-item:focus {
        outline: none
    }

    [dir=rtl] .mdc-evolution-list-item, .mdc-evolution-list-item[dir=rtl] {
        padding-left: 16px;
        padding-right: 16px
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--with-one-line {
        height: 48px
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--with-two-lines {
        height: 64px
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--with-three-lines {
        height: 88px
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--with-one-line .mdc-evolution-list-item__start {
        align-self: center;
        margin-top: 0
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__start {
        align-self: flex-start;
        margin-top: 16px
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__start {
        align-self: flex-start;
        margin-top: 16px
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--with-one-line .mdc-evolution-list-item__end {
        align-self: center;
        margin-top: 0
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__end {
        align-self: center;
        margin-top: 0
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__end {
        align-self: flex-start;
        margin-top: 16px
    }

    .mdc-evolution-list-item.mdc-evolution-list-item--disabled, .mdc-evolution-list-item.mdc-evolution-list-item--non-interactive {
        cursor: auto
    }

    .mdc-evolution-list-item:not(.mdc-evolution-list-item--selected):focus::before, .mdc-evolution-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: ""
    }

    .mdc-evolution-list-item.mdc-evolution-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: ""
    }

a.mdc-evolution-list-item {
    color: inherit;
    text-decoration: none
}

.mdc-evolution-list-item__start {
    fill: currentColor;
    flex-shrink: 0
}

.mdc-evolution-list-item__end {
    flex-shrink: 0
}

.mdc-evolution-list-item__content {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    align-self: center;
    flex: 1
}

.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__content, .mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__content {
    align-self: stretch
}

.mdc-evolution-list-item__content[for] {
    pointer-events: none
}

.mdc-evolution-list-item__primary-text {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
    line-height: 1.75rem;
    line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
    letter-spacing: 0.009375em;
    letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text, .mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::before, .mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 28px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::after, .mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item__secondary-text {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.875rem;
    font-size: var(--mdc-typography-body2-font-size, 0.875rem);
    line-height: 1.25rem;
    line-height: var(--mdc-typography-body2-line-height, 1.25rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-body2-font-weight, 400);
    letter-spacing: 0.0178571429em;
    letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
    text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-body2-text-transform, inherit);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item__secondary-text::before {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item__overline-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__overline-text, .mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__overline-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__overline-text::before, .mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__overline-text::before {
        display: inline-block;
        width: 0;
        height: 24px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__overline-text::after, .mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__overline-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item {
    padding-left: 0;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item, .mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item[dir=rtl] {
        padding-left: auto;
        padding-right: 0
    }

.mdc-evolution-list-item--with-leading-avatar .mdc-evolution-list-item__start {
    margin-left: 16px;
    margin-right: 16px
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-avatar .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-leading-avatar .mdc-evolution-list-item__start[dir=rtl] {
        margin-left: 16px;
        margin-right: 16px
    }

.mdc-evolution-list-item--with-leading-avatar .mdc-evolution-list-item__start {
    width: 40px;
    height: 40px
}

.mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item--with-one-line {
    height: 56px
}

.mdc-evolution-list-item--with-leading-avatar.mdc-evolution-list-item--with-two-lines {
    height: 72px
}

.mdc-evolution-list-item--with-leading-avatar .mdc-evolution-list-item__start {
    border-radius: 50%
}

.mdc-evolution-list-item--with-leading-icon .mdc-evolution-list-item__start {
    width: 24px;
    height: 24px
}

.mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item {
    padding-left: 0;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item, .mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item[dir=rtl] {
        padding-left: auto;
        padding-right: 0
    }

.mdc-evolution-list-item--with-leading-icon .mdc-evolution-list-item__start {
    margin-left: 16px;
    margin-right: 32px
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-icon .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-leading-icon .mdc-evolution-list-item__start[dir=rtl] {
        margin-left: 32px;
        margin-right: 16px
    }

.mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item--with-one-line {
    height: 56px
}

.mdc-evolution-list-item--with-leading-icon.mdc-evolution-list-item--with-two-lines {
    height: 72px
}

.mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item {
    padding-left: 0;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item, .mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item[dir=rtl] {
        padding-left: auto;
        padding-right: 0
    }

.mdc-evolution-list-item--with-leading-thumbnail .mdc-evolution-list-item__start {
    margin-left: 16px;
    margin-right: 16px
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-thumbnail .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-leading-thumbnail .mdc-evolution-list-item__start[dir=rtl] {
        margin-left: 16px;
        margin-right: 16px
    }

.mdc-evolution-list-item--with-leading-thumbnail .mdc-evolution-list-item__start {
    width: 40px;
    height: 40px
}

.mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item--with-one-line {
    height: 56px
}

.mdc-evolution-list-item--with-leading-thumbnail.mdc-evolution-list-item--with-two-lines {
    height: 72px
}

.mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item {
    padding-left: 0;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item, .mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item[dir=rtl] {
        padding-left: auto;
        padding-right: 0
    }

.mdc-evolution-list-item--with-leading-image .mdc-evolution-list-item__start {
    margin-left: 16px;
    margin-right: 16px
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-image .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-leading-image .mdc-evolution-list-item__start[dir=rtl] {
        margin-left: 16px;
        margin-right: 16px
    }

.mdc-evolution-list-item--with-leading-image .mdc-evolution-list-item__start {
    width: 56px;
    height: 56px
}

.mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item--with-one-line {
    height: 72px
}

.mdc-evolution-list-item--with-leading-image.mdc-evolution-list-item--with-two-lines {
    height: 72px
}

.mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__start {
    align-self: flex-start;
    margin-top: 8px
}

.mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item {
    padding-left: 0;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item, .mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item[dir=rtl] {
        padding-left: auto;
        padding-right: 0
    }

.mdc-evolution-list-item--with-leading-video .mdc-evolution-list-item__start {
    margin-left: 0;
    margin-right: 16px
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-video .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-leading-video .mdc-evolution-list-item__start[dir=rtl] {
        margin-left: 16px;
        margin-right: 0
    }

.mdc-evolution-list-item--with-leading-video .mdc-evolution-list-item__start {
    width: 100px;
    height: 56px
}

.mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item--with-one-line {
    height: 72px
}

.mdc-evolution-list-item--with-leading-video.mdc-evolution-list-item--with-two-lines {
    height: 72px
}

.mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item {
    padding-left: 0;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item, .mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item[dir=rtl] {
        padding-left: auto;
        padding-right: 0
    }

.mdc-evolution-list-item--with-leading-checkbox .mdc-evolution-list-item__start {
    margin-left: 8px;
    margin-right: 24px
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-checkbox .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-leading-checkbox .mdc-evolution-list-item__start[dir=rtl] {
        margin-left: 24px;
        margin-right: 8px
    }

.mdc-evolution-list-item--with-leading-checkbox .mdc-evolution-list-item__start {
    width: 40px;
    height: 40px
}

.mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__start {
    align-self: flex-start;
    margin-top: 8px
}

.mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item--with-one-line {
    height: 56px
}

.mdc-evolution-list-item--with-leading-checkbox.mdc-evolution-list-item--with-two-lines {
    height: 72px
}

.mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item {
    padding-left: 0;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item, .mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item[dir=rtl] {
        padding-left: auto;
        padding-right: 0
    }

.mdc-evolution-list-item--with-leading-radio .mdc-evolution-list-item__start {
    margin-left: 8px;
    margin-right: 24px
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-radio .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-leading-radio .mdc-evolution-list-item__start[dir=rtl] {
        margin-left: 24px;
        margin-right: 8px
    }

.mdc-evolution-list-item--with-leading-radio .mdc-evolution-list-item__start {
    width: 40px;
    height: 40px
}

.mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__start {
    align-self: flex-start;
    margin-top: 8px
}

.mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item--with-one-line {
    height: 56px
}

.mdc-evolution-list-item--with-leading-radio.mdc-evolution-list-item--with-two-lines {
    height: 72px
}

.mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item {
    padding-left: 0;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item, .mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item[dir=rtl] {
        padding-left: auto;
        padding-right: 0
    }

.mdc-evolution-list-item--with-leading-switch .mdc-evolution-list-item__start {
    margin-left: 16px;
    margin-right: 16px
}

    [dir=rtl] .mdc-evolution-list-item--with-leading-switch .mdc-evolution-list-item__start, .mdc-evolution-list-item--with-leading-switch .mdc-evolution-list-item__start[dir=rtl] {
        margin-left: 16px;
        margin-right: 16px
    }

.mdc-evolution-list-item--with-leading-switch .mdc-evolution-list-item__start {
    width: 36px;
    height: 20px
}

.mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__start {
    align-self: flex-start;
    margin-top: 16px
}

.mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text {
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px
}

    .mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

    .mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__primary-text::after {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: -20px
    }

.mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item--with-two-lines.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 32px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item--with-one-line {
    height: 56px
}

.mdc-evolution-list-item--with-leading-switch.mdc-evolution-list-item--with-two-lines {
    height: 72px
}

.mdc-evolution-list-item--with-trailing-icon.mdc-evolution-list-item {
    padding-left: auto;
    padding-right: 0
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-icon.mdc-evolution-list-item, .mdc-evolution-list-item--with-trailing-icon.mdc-evolution-list-item[dir=rtl] {
        padding-left: 0;
        padding-right: auto
    }

.mdc-evolution-list-item--with-trailing-icon .mdc-evolution-list-item__end {
    margin-left: 16px;
    margin-right: 16px
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-icon .mdc-evolution-list-item__end, .mdc-evolution-list-item--with-trailing-icon .mdc-evolution-list-item__end[dir=rtl] {
        margin-left: 16px;
        margin-right: 16px
    }

.mdc-evolution-list-item--with-trailing-icon .mdc-evolution-list-item__end {
    width: 24px;
    height: 24px
}

.mdc-evolution-list-item--with-trailing-meta.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__end {
    align-self: flex-start;
    margin-top: 0
}

.mdc-evolution-list-item--with-trailing-meta.mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__end {
    align-self: flex-start;
    margin-top: 0
}

.mdc-evolution-list-item--with-trailing-meta.mdc-evolution-list-item {
    padding-left: auto;
    padding-right: 0
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-meta.mdc-evolution-list-item, .mdc-evolution-list-item--with-trailing-meta.mdc-evolution-list-item[dir=rtl] {
        padding-left: 0;
        padding-right: auto
    }

.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    margin-left: 28px;
    margin-right: 16px
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end, .mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end[dir=rtl] {
        margin-left: 16px;
        margin-right: 28px
    }

.mdc-evolution-list-item--with-trailing-meta.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-trailing-meta.mdc-evolution-list-item--with-two-lines .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 28px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-trailing-meta.mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__end {
    display: block;
    margin-top: 0;
    line-height: normal
}

    .mdc-evolution-list-item--with-trailing-meta.mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__end::before {
        display: inline-block;
        width: 0;
        height: 28px;
        content: "";
        vertical-align: 0
    }

.mdc-evolution-list-item--with-trailing-meta .mdc-evolution-list-item__end {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.75rem;
    font-size: var(--mdc-typography-caption-font-size, 0.75rem);
    line-height: 1.25rem;
    line-height: var(--mdc-typography-caption-line-height, 1.25rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-caption-font-weight, 400);
    letter-spacing: 0.0333333333em;
    letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-caption-text-transform, inherit)
}

.mdc-evolution-list-item--with-trailing-checkbox.mdc-evolution-list-item {
    padding-left: auto;
    padding-right: 0
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-checkbox.mdc-evolution-list-item, .mdc-evolution-list-item--with-trailing-checkbox.mdc-evolution-list-item[dir=rtl] {
        padding-left: 0;
        padding-right: auto
    }

.mdc-evolution-list-item--with-trailing-checkbox .mdc-evolution-list-item__end {
    margin-left: 24px;
    margin-right: 8px
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-checkbox .mdc-evolution-list-item__end, .mdc-evolution-list-item--with-trailing-checkbox .mdc-evolution-list-item__end[dir=rtl] {
        margin-left: 8px;
        margin-right: 24px
    }

.mdc-evolution-list-item--with-trailing-checkbox .mdc-evolution-list-item__end {
    width: 40px;
    height: 40px
}

.mdc-evolution-list-item--with-trailing-checkbox.mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__end {
    align-self: flex-start;
    margin-top: 8px
}

.mdc-evolution-list-item--with-trailing-radio.mdc-evolution-list-item {
    padding-left: auto;
    padding-right: 0
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-radio.mdc-evolution-list-item, .mdc-evolution-list-item--with-trailing-radio.mdc-evolution-list-item[dir=rtl] {
        padding-left: 0;
        padding-right: auto
    }

.mdc-evolution-list-item--with-trailing-radio .mdc-evolution-list-item__end {
    margin-left: 24px;
    margin-right: 8px
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-radio .mdc-evolution-list-item__end, .mdc-evolution-list-item--with-trailing-radio .mdc-evolution-list-item__end[dir=rtl] {
        margin-left: 8px;
        margin-right: 24px
    }

.mdc-evolution-list-item--with-trailing-radio .mdc-evolution-list-item__end {
    width: 40px;
    height: 40px
}

.mdc-evolution-list-item--with-trailing-radio.mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__end {
    align-self: flex-start;
    margin-top: 8px
}

.mdc-evolution-list-item--with-trailing-switch.mdc-evolution-list-item {
    padding-left: auto;
    padding-right: 0
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-switch.mdc-evolution-list-item, .mdc-evolution-list-item--with-trailing-switch.mdc-evolution-list-item[dir=rtl] {
        padding-left: 0;
        padding-right: auto
    }

.mdc-evolution-list-item--with-trailing-switch .mdc-evolution-list-item__end {
    margin-left: 16px;
    margin-right: 16px
}

    [dir=rtl] .mdc-evolution-list-item--with-trailing-switch .mdc-evolution-list-item__end, .mdc-evolution-list-item--with-trailing-switch .mdc-evolution-list-item__end[dir=rtl] {
        margin-left: 16px;
        margin-right: 16px
    }

.mdc-evolution-list-item--with-trailing-switch .mdc-evolution-list-item__end {
    width: 36px;
    height: 20px
}

.mdc-evolution-list-item--with-trailing-switch.mdc-evolution-list-item--with-three-lines .mdc-evolution-list-item__end {
    align-self: flex-start;
    margin-top: 16px
}

.mdc-evolution-list-group .mdc-list {
    padding: 0
}

.mdc-evolution-list-group__subheader {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
    line-height: 1.75rem;
    line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
    letter-spacing: 0.009375em;
    letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
    margin: calc( (3rem - 1.5rem) / 2 ) 16px
}

.mdc-evolution-list-divider {
    background-color: rgba(0, 0, 0, 0.12)
}

.mdc-evolution-list-divider {
    height: 1px;
    padding: 0;
    background-clip: content-box
}

    .mdc-evolution-list-divider.mdc-evolution-list-divider--with-leading-padding {
        padding-left: 16px;
        padding-right: auto
    }

        [dir=rtl] .mdc-evolution-list-divider.mdc-evolution-list-divider--with-leading-padding, .mdc-evolution-list-divider.mdc-evolution-list-divider--with-leading-padding[dir=rtl] {
            padding-left: auto;
            padding-right: 16px
        }

    .mdc-evolution-list-divider.mdc-evolution-list-divider--with-leading-inset {
        padding-left: 16px;
        padding-right: auto
    }

        [dir=rtl] .mdc-evolution-list-divider.mdc-evolution-list-divider--with-leading-inset, .mdc-evolution-list-divider.mdc-evolution-list-divider--with-leading-inset[dir=rtl] {
            padding-left: auto;
            padding-right: 16px
        }

    .mdc-evolution-list-divider.mdc-evolution-list-divider--with-trailing-inset {
        padding-left: auto;
        padding-right: 16px
    }

        [dir=rtl] .mdc-evolution-list-divider.mdc-evolution-list-divider--with-trailing-inset, .mdc-evolution-list-divider.mdc-evolution-list-divider--with-trailing-inset[dir=rtl] {
            padding-left: 16px;
            padding-right: auto
        }

.mdc-evolution-list-divider--with-leading-icon.mdc-evolution-list-divider--with-leading-inset {
    padding-left: 72px;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-divider--with-leading-icon.mdc-evolution-list-divider--with-leading-inset, .mdc-evolution-list-divider--with-leading-icon.mdc-evolution-list-divider--with-leading-inset[dir=rtl] {
        padding-left: auto;
        padding-right: 72px
    }

.mdc-evolution-list-divider--with-leading-image.mdc-evolution-list-divider--with-leading-inset {
    padding-left: 88px;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-divider--with-leading-image.mdc-evolution-list-divider--with-leading-inset, .mdc-evolution-list-divider--with-leading-image.mdc-evolution-list-divider--with-leading-inset[dir=rtl] {
        padding-left: auto;
        padding-right: 88px
    }

.mdc-evolution-list-divider--with-leading-thumbnail.mdc-evolution-list-divider--with-leading-inset {
    padding-left: 72px;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-divider--with-leading-thumbnail.mdc-evolution-list-divider--with-leading-inset, .mdc-evolution-list-divider--with-leading-thumbnail.mdc-evolution-list-divider--with-leading-inset[dir=rtl] {
        padding-left: auto;
        padding-right: 72px
    }

.mdc-evolution-list-divider--with-leading-video.mdc-evolution-list-divider--with-leading-padding {
    padding-left: 0px;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-divider--with-leading-video.mdc-evolution-list-divider--with-leading-padding, .mdc-evolution-list-divider--with-leading-video.mdc-evolution-list-divider--with-leading-padding[dir=rtl] {
        padding-left: auto;
        padding-right: 0px
    }

.mdc-evolution-list-divider--with-leading-video.mdc-evolution-list-divider--with-leading-inset {
    padding-left: 116px;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-divider--with-leading-video.mdc-evolution-list-divider--with-leading-inset, .mdc-evolution-list-divider--with-leading-video.mdc-evolution-list-divider--with-leading-inset[dir=rtl] {
        padding-left: auto;
        padding-right: 116px
    }

.mdc-evolution-list-divider--with-leading-avatar.mdc-evolution-list-divider--with-leading-inset {
    padding-left: 72px;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-divider--with-leading-avatar.mdc-evolution-list-divider--with-leading-inset, .mdc-evolution-list-divider--with-leading-avatar.mdc-evolution-list-divider--with-leading-inset[dir=rtl] {
        padding-left: auto;
        padding-right: 72px
    }

.mdc-evolution-list-divider--with-leading-checkbox.mdc-evolution-list-divider--with-leading-inset {
    padding-left: 72px;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-divider--with-leading-checkbox.mdc-evolution-list-divider--with-leading-inset, .mdc-evolution-list-divider--with-leading-checkbox.mdc-evolution-list-divider--with-leading-inset[dir=rtl] {
        padding-left: auto;
        padding-right: 72px
    }

.mdc-evolution-list-divider--with-leading-switch.mdc-evolution-list-divider--with-leading-inset {
    padding-left: 84px;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-divider--with-leading-switch.mdc-evolution-list-divider--with-leading-inset, .mdc-evolution-list-divider--with-leading-switch.mdc-evolution-list-divider--with-leading-inset[dir=rtl] {
        padding-left: auto;
        padding-right: 84px
    }

.mdc-evolution-list-divider--with-leading-radio.mdc-evolution-list-divider--with-leading-inset {
    padding-left: 72px;
    padding-right: auto
}

    [dir=rtl] .mdc-evolution-list-divider--with-leading-radio.mdc-evolution-list-divider--with-leading-inset, .mdc-evolution-list-divider--with-leading-radio.mdc-evolution-list-divider--with-leading-inset[dir=rtl] {
        padding-left: auto;
        padding-right: 72px
    }

:not(.mdc-list-item--disabled).mdc-list-item {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    :not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    :not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    :not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded .mdc-list-item__ripple::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded .mdc-list-item__ripple::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--unbounded .mdc-list-item__ripple::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--foreground-activation .mdc-list-item__ripple::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--foreground-deactivation .mdc-list-item__ripple::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    :not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::after {
        top: calc(50% - 100%);
        left: calc(50% - 100%);
        width: 200%;
        height: 200%
    }

    :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded .mdc-list-item__ripple::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    :not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple::after {
        background-color: #000;
        background-color: var(--mdc-ripple-color, #000)
    }

    :not(.mdc-list-item--disabled).mdc-list-item:hover .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-surface--hover .mdc-list-item__ripple::before {
        opacity: 0.04;
        opacity: var(--mdc-ripple-hover-opacity, 0.04)
    }

    :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--background-focused .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item:not(.mdc-ripple-upgraded):focus .mdc-list-item__ripple::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    :not(.mdc-list-item--disabled).mdc-list-item:not(.mdc-ripple-upgraded) .mdc-list-item__ripple::after {
        transition: opacity 150ms linear
    }

    :not(.mdc-list-item--disabled).mdc-list-item:not(.mdc-ripple-upgraded):active .mdc-list-item__ripple::after {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

    :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

:not(.mdc-list-item--disabled).mdc-list-item--activated .mdc-list-item__ripple::before {
    opacity: 0.12;
    opacity: var(--mdc-ripple-activated-opacity, 0.12)
}

:not(.mdc-list-item--disabled).mdc-list-item--activated .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item--activated .mdc-list-item__ripple::after {
    background-color: #6200ee;
    background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #6200ee))
}

:not(.mdc-list-item--disabled).mdc-list-item--activated:hover .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item--activated.mdc-ripple-surface--hover .mdc-list-item__ripple::before {
    opacity: 0.16;
    opacity: var(--mdc-ripple-hover-opacity, 0.16)
}

:not(.mdc-list-item--disabled).mdc-list-item--activated.mdc-ripple-upgraded--background-focused .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item--activated:not(.mdc-ripple-upgraded):focus .mdc-list-item__ripple::before {
    transition-duration: 75ms;
    opacity: 0.24;
    opacity: var(--mdc-ripple-focus-opacity, 0.24)
}

:not(.mdc-list-item--disabled).mdc-list-item--activated:not(.mdc-ripple-upgraded) .mdc-list-item__ripple::after {
    transition: opacity 150ms linear
}

:not(.mdc-list-item--disabled).mdc-list-item--activated:not(.mdc-ripple-upgraded):active .mdc-list-item__ripple::after {
    transition-duration: 75ms;
    opacity: 0.24;
    opacity: var(--mdc-ripple-press-opacity, 0.24)
}

:not(.mdc-list-item--disabled).mdc-list-item--activated.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24)
}

:not(.mdc-list-item--disabled).mdc-list-item--selected .mdc-list-item__ripple::before {
    opacity: 0.08;
    opacity: var(--mdc-ripple-selected-opacity, 0.08)
}

:not(.mdc-list-item--disabled).mdc-list-item--selected .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item--selected .mdc-list-item__ripple::after {
    background-color: #6200ee;
    background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #6200ee))
}

:not(.mdc-list-item--disabled).mdc-list-item--selected:hover .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item--selected.mdc-ripple-surface--hover .mdc-list-item__ripple::before {
    opacity: 0.12;
    opacity: var(--mdc-ripple-hover-opacity, 0.12)
}

:not(.mdc-list-item--disabled).mdc-list-item--selected.mdc-ripple-upgraded--background-focused .mdc-list-item__ripple::before, :not(.mdc-list-item--disabled).mdc-list-item--selected:not(.mdc-ripple-upgraded):focus .mdc-list-item__ripple::before {
    transition-duration: 75ms;
    opacity: 0.2;
    opacity: var(--mdc-ripple-focus-opacity, 0.2)
}

:not(.mdc-list-item--disabled).mdc-list-item--selected:not(.mdc-ripple-upgraded) .mdc-list-item__ripple::after {
    transition: opacity 150ms linear
}

:not(.mdc-list-item--disabled).mdc-list-item--selected:not(.mdc-ripple-upgraded):active .mdc-list-item__ripple::after {
    transition-duration: 75ms;
    opacity: 0.2;
    opacity: var(--mdc-ripple-press-opacity, 0.2)
}

:not(.mdc-list-item--disabled).mdc-list-item--selected.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.2)
}

:not(.mdc-list-item--disabled).mdc-list-item .mdc-list-item__ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.mdc-list-item--disabled {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    .mdc-list-item--disabled .mdc-list-item__ripple::before, .mdc-list-item--disabled .mdc-list-item__ripple::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    .mdc-list-item--disabled .mdc-list-item__ripple::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    .mdc-list-item--disabled .mdc-list-item__ripple::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    .mdc-list-item--disabled.mdc-ripple-upgraded .mdc-list-item__ripple::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-list-item--disabled.mdc-ripple-upgraded .mdc-list-item__ripple::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    .mdc-list-item--disabled.mdc-ripple-upgraded--unbounded .mdc-list-item__ripple::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    .mdc-list-item--disabled.mdc-ripple-upgraded--foreground-activation .mdc-list-item__ripple::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    .mdc-list-item--disabled.mdc-ripple-upgraded--foreground-deactivation .mdc-list-item__ripple::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-list-item--disabled .mdc-list-item__ripple::before, .mdc-list-item--disabled .mdc-list-item__ripple::after {
        top: calc(50% - 100%);
        left: calc(50% - 100%);
        width: 200%;
        height: 200%
    }

    .mdc-list-item--disabled.mdc-ripple-upgraded .mdc-list-item__ripple::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    .mdc-list-item--disabled .mdc-list-item__ripple::before, .mdc-list-item--disabled .mdc-list-item__ripple::after {
        background-color: #000;
        background-color: var(--mdc-ripple-color, #000)
    }

    .mdc-list-item--disabled.mdc-ripple-upgraded--background-focused .mdc-list-item__ripple::before, .mdc-list-item--disabled:not(.mdc-ripple-upgraded):focus .mdc-list-item__ripple::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    .mdc-list-item--disabled .mdc-list-item__ripple {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none
    }

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item .mdc-evolution-list-item__ripple::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item .mdc-evolution-list-item__ripple::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item .mdc-evolution-list-item__ripple::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item.mdc-ripple-upgraded .mdc-evolution-list-item__ripple::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item.mdc-ripple-upgraded .mdc-evolution-list-item__ripple::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item.mdc-ripple-upgraded--unbounded .mdc-evolution-list-item__ripple::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item.mdc-ripple-upgraded--foreground-activation .mdc-evolution-list-item__ripple::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item.mdc-ripple-upgraded--foreground-deactivation .mdc-evolution-list-item__ripple::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item .mdc-evolution-list-item__ripple::after {
        top: calc(50% - 100%);
        left: calc(50% - 100%);
        width: 200%;
        height: 200%
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item.mdc-ripple-upgraded .mdc-evolution-list-item__ripple::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item .mdc-evolution-list-item__ripple::after {
        background-color: #000;
        background-color: var(--mdc-ripple-color, #000)
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item:hover .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item.mdc-ripple-surface--hover .mdc-evolution-list-item__ripple::before {
        opacity: 0.04;
        opacity: var(--mdc-ripple-hover-opacity, 0.04)
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item.mdc-ripple-upgraded--background-focused .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item:not(.mdc-ripple-upgraded):focus .mdc-evolution-list-item__ripple::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item:not(.mdc-ripple-upgraded) .mdc-evolution-list-item__ripple::after {
        transition: opacity 150ms linear
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item:not(.mdc-ripple-upgraded):active .mdc-evolution-list-item__ripple::after {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

    :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated .mdc-evolution-list-item__ripple::before {
    opacity: 0.12;
    opacity: var(--mdc-ripple-activated-opacity, 0.12)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated .mdc-evolution-list-item__ripple::after {
    background-color: #6200ee;
    background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #6200ee))
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated:hover .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated.mdc-ripple-surface--hover .mdc-evolution-list-item__ripple::before {
    opacity: 0.16;
    opacity: var(--mdc-ripple-hover-opacity, 0.16)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated.mdc-ripple-upgraded--background-focused .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated:not(.mdc-ripple-upgraded):focus .mdc-evolution-list-item__ripple::before {
    transition-duration: 75ms;
    opacity: 0.24;
    opacity: var(--mdc-ripple-focus-opacity, 0.24)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated:not(.mdc-ripple-upgraded) .mdc-evolution-list-item__ripple::after {
    transition: opacity 150ms linear
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated:not(.mdc-ripple-upgraded):active .mdc-evolution-list-item__ripple::after {
    transition-duration: 75ms;
    opacity: 0.24;
    opacity: var(--mdc-ripple-press-opacity, 0.24)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--activated.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected .mdc-evolution-list-item__ripple::before {
    opacity: 0.08;
    opacity: var(--mdc-ripple-selected-opacity, 0.08)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected .mdc-evolution-list-item__ripple::after {
    background-color: #6200ee;
    background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #6200ee))
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected:hover .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected.mdc-ripple-surface--hover .mdc-evolution-list-item__ripple::before {
    opacity: 0.12;
    opacity: var(--mdc-ripple-hover-opacity, 0.12)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected.mdc-ripple-upgraded--background-focused .mdc-evolution-list-item__ripple::before, :not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected:not(.mdc-ripple-upgraded):focus .mdc-evolution-list-item__ripple::before {
    transition-duration: 75ms;
    opacity: 0.2;
    opacity: var(--mdc-ripple-focus-opacity, 0.2)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected:not(.mdc-ripple-upgraded) .mdc-evolution-list-item__ripple::after {
    transition: opacity 150ms linear
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected:not(.mdc-ripple-upgraded):active .mdc-evolution-list-item__ripple::after {
    transition-duration: 75ms;
    opacity: 0.2;
    opacity: var(--mdc-ripple-press-opacity, 0.2)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item--selected.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.2)
}

:not(.mdc-evolution-list-item--disabled).mdc-evolution-list-item .mdc-evolution-list-item__ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.mdc-evolution-list-item--disabled {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    .mdc-evolution-list-item--disabled .mdc-evolution-list-item__ripple::before, .mdc-evolution-list-item--disabled .mdc-evolution-list-item__ripple::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    .mdc-evolution-list-item--disabled .mdc-evolution-list-item__ripple::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    .mdc-evolution-list-item--disabled .mdc-evolution-list-item__ripple::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    .mdc-evolution-list-item--disabled.mdc-ripple-upgraded .mdc-evolution-list-item__ripple::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-evolution-list-item--disabled.mdc-ripple-upgraded .mdc-evolution-list-item__ripple::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    .mdc-evolution-list-item--disabled.mdc-ripple-upgraded--unbounded .mdc-evolution-list-item__ripple::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    .mdc-evolution-list-item--disabled.mdc-ripple-upgraded--foreground-activation .mdc-evolution-list-item__ripple::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    .mdc-evolution-list-item--disabled.mdc-ripple-upgraded--foreground-deactivation .mdc-evolution-list-item__ripple::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-evolution-list-item--disabled .mdc-evolution-list-item__ripple::before, .mdc-evolution-list-item--disabled .mdc-evolution-list-item__ripple::after {
        top: calc(50% - 100%);
        left: calc(50% - 100%);
        width: 200%;
        height: 200%
    }

    .mdc-evolution-list-item--disabled.mdc-ripple-upgraded .mdc-evolution-list-item__ripple::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    .mdc-evolution-list-item--disabled .mdc-evolution-list-item__ripple::before, .mdc-evolution-list-item--disabled .mdc-evolution-list-item__ripple::after {
        background-color: #000;
        background-color: var(--mdc-ripple-color, #000)
    }

    .mdc-evolution-list-item--disabled.mdc-ripple-upgraded--background-focused .mdc-evolution-list-item__ripple::before, .mdc-evolution-list-item--disabled:not(.mdc-ripple-upgraded):focus .mdc-evolution-list-item__ripple::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    .mdc-evolution-list-item--disabled .mdc-evolution-list-item__ripple {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none
    }

.mdc-menu-surface {
    display: none;
    position: absolute;
    box-sizing: border-box;
    max-width: calc(100vw - 32px);
    max-width: var(--mdc-menu-max-width, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    max-height: var(--mdc-menu-max-height, calc(100vh - 32px));
    margin: 0;
    padding: 0;
    transform: scale(1);
    transform-origin: top left;
    opacity: 0;
    overflow: auto;
    will-change: transform,opacity;
    z-index: 8;
    transition: opacity .03s linear,transform .12s cubic-bezier(0, 0, 0.2, 1),height 250ms cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0,0,0,.12);
    background-color: #fff;
    background-color: var(--mdc-theme-surface, #fff);
    color: #000;
    color: var(--mdc-theme-on-surface, #000);
    border-radius: 4px;
    border-radius: var(--mdc-shape-medium, 4px);
    transform-origin-left: top left;
    transform-origin-right: top right
}

    .mdc-menu-surface:focus {
        outline: none
    }

.mdc-menu-surface--open {
    display: inline-block;
    transform: scale(1);
    opacity: 1
}

.mdc-menu-surface--animating-open {
    display: inline-block;
    transform: scale(0.8);
    opacity: 0
}

.mdc-menu-surface--animating-closed {
    display: inline-block;
    opacity: 0;
    transition: opacity .075s linear
}

[dir=rtl] .mdc-menu-surface, .mdc-menu-surface[dir=rtl] {
    transform-origin-left: top right;
    transform-origin-right: top left
}

.mdc-menu-surface--anchor {
    position: relative;
    overflow: visible
}

.mdc-menu-surface--fixed {
    position: fixed
}

.mdc-menu-surface--fullwidth {
    width: 100%
}

.mdc-menu {
    min-width: 112px;
    min-width: var(--mdc-menu-min-width, 112px)
}

    .mdc-menu .mdc-list-item__meta {
        color: rgba(0, 0, 0, 0.87)
    }

    .mdc-menu .mdc-list-item__graphic {
        color: rgba(0, 0, 0, 0.87)
    }

    .mdc-menu .mdc-list {
        color: rgba(0, 0, 0, 0.87);
        position: relative
    }

        .mdc-menu .mdc-list .mdc-elevation-overlay {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0
        }

    .mdc-menu .mdc-list-divider {
        margin: 8px 0
    }

    .mdc-menu .mdc-list-item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .mdc-menu .mdc-list-item--disabled {
        cursor: auto
    }

    .mdc-menu a.mdc-list-item .mdc-list-item__text, .mdc-menu a.mdc-list-item .mdc-list-item__graphic {
        pointer-events: none
    }

.mdc-menu__selection-group {
    padding: 0;
    fill: currentColor
}

    .mdc-menu__selection-group .mdc-list-item {
        padding-left: 56px;
        padding-right: 16px
    }

        [dir=rtl] .mdc-menu__selection-group .mdc-list-item, .mdc-menu__selection-group .mdc-list-item[dir=rtl] {
            padding-left: 16px;
            padding-right: 56px
        }

    .mdc-menu__selection-group .mdc-menu__selection-group-icon {
        left: 16px;
        right: initial;
        display: none;
        position: absolute;
        top: 50%;
        transform: translateY(-50%)
    }

        [dir=rtl] .mdc-menu__selection-group .mdc-menu__selection-group-icon, .mdc-menu__selection-group .mdc-menu__selection-group-icon[dir=rtl] {
            left: initial;
            right: 16px
        }

.mdc-menu-item--selected .mdc-menu__selection-group-icon {
    display: inline
}

.mdc-card {
    border-radius: 4px;
    border-radius: var(--mdc-shape-medium, 4px);
    background-color: #fff;
    background-color: var(--mdc-theme-surface, #fff);
    position: relative;
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    box-sizing: border-box
}

    .mdc-card .mdc-elevation-overlay {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0
    }

    .mdc-card::after {
        border-radius: 4px;
        border-radius: var(--mdc-shape-medium, 4px);
        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-card--outlined {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0,0,0,.12);
    border-width: 1px;
    border-style: solid;
    border-color: #e0e0e0
}

    .mdc-card--outlined::after {
        border: none
    }

.mdc-card__content {
    border-radius: inherit;
    height: 100%
}

.mdc-card__media {
    position: relative;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

    .mdc-card__media::before {
        display: block;
        content: ""
    }

    .mdc-card__media:first-child {
        border-top-left-radius: inherit;
        border-top-right-radius: inherit
    }

    .mdc-card__media:last-child {
        border-bottom-left-radius: inherit;
        border-bottom-right-radius: inherit
    }

.mdc-card__media--square::before {
    margin-top: 100%
}

.mdc-card__media--16-9::before {
    margin-top: 56.25%
}

.mdc-card__media-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box
}

.mdc-card__primary-action {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    outline: none;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden
}

    .mdc-card__primary-action:first-child {
        border-top-left-radius: inherit;
        border-top-right-radius: inherit
    }

    .mdc-card__primary-action:last-child {
        border-bottom-left-radius: inherit;
        border-bottom-right-radius: inherit
    }

.mdc-card__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    min-height: 52px;
    padding: 8px
}

.mdc-card__actions--full-bleed {
    padding: 0
}

.mdc-card__action-buttons, .mdc-card__action-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box
}

.mdc-card__action-icons {
    color: rgba(0, 0, 0, 0.6);
    flex-grow: 1;
    justify-content: flex-end
}

.mdc-card__action-buttons + .mdc-card__action-icons {
    margin-left: 16px;
    margin-right: 0
}

    [dir=rtl] .mdc-card__action-buttons + .mdc-card__action-icons, .mdc-card__action-buttons + .mdc-card__action-icons[dir=rtl] {
        margin-left: 0;
        margin-right: 16px
    }

.mdc-card__action {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .mdc-card__action:focus {
        outline: none
    }

.mdc-card__action--button {
    margin-left: 0;
    margin-right: 8px;
    padding: 0 8px
}

    [dir=rtl] .mdc-card__action--button, .mdc-card__action--button[dir=rtl] {
        margin-left: 8px;
        margin-right: 0
    }

    .mdc-card__action--button:last-child {
        margin-left: 0;
        margin-right: 0
    }

        [dir=rtl] .mdc-card__action--button:last-child, .mdc-card__action--button:last-child[dir=rtl] {
            margin-left: 0;
            margin-right: 0
        }

.mdc-card__actions--full-bleed .mdc-card__action--button {
    justify-content: space-between;
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
    padding: 8px 16px;
    text-align: left
}

    [dir=rtl] .mdc-card__actions--full-bleed .mdc-card__action--button, .mdc-card__actions--full-bleed .mdc-card__action--button[dir=rtl] {
        text-align: right
    }

.mdc-card__action--icon {
    margin: -6px 0;
    padding: 12px
}

    .mdc-card__action--icon:not(:disabled) {
        color: rgba(0, 0, 0, 0.6)
    }

.mdc-card__primary-action {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    .mdc-card__primary-action::before, .mdc-card__primary-action::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    .mdc-card__primary-action::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    .mdc-card__primary-action::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    .mdc-card__primary-action.mdc-ripple-upgraded::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-card__primary-action.mdc-ripple-upgraded::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    .mdc-card__primary-action.mdc-ripple-upgraded--unbounded::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    .mdc-card__primary-action.mdc-ripple-upgraded--foreground-activation::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    .mdc-card__primary-action.mdc-ripple-upgraded--foreground-deactivation::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-card__primary-action::before, .mdc-card__primary-action::after {
        top: calc(50% - 100%);
        left: calc(50% - 100%);
        width: 200%;
        height: 200%
    }

    .mdc-card__primary-action.mdc-ripple-upgraded::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    .mdc-card__primary-action::before, .mdc-card__primary-action::after {
        background-color: #000;
        background-color: var(--mdc-ripple-color, #000)
    }

    .mdc-card__primary-action:hover::before, .mdc-card__primary-action.mdc-ripple-surface--hover::before {
        opacity: 0.04;
        opacity: var(--mdc-ripple-hover-opacity, 0.04)
    }

    .mdc-card__primary-action.mdc-ripple-upgraded--background-focused::before, .mdc-card__primary-action:not(.mdc-ripple-upgraded):focus::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    .mdc-card__primary-action:not(.mdc-ripple-upgraded)::after {
        transition: opacity 150ms linear
    }

    .mdc-card__primary-action:not(.mdc-ripple-upgraded):active::after {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

    .mdc-card__primary-action.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12)
    }

.mdc-tooltip__surface {
    border-radius: 4px;
    border-radius: var(--mdc-shape-small, 4px)
}

.mdc-tooltip__surface {
    color: white;
    color: var(--mdc-theme-text-primary-on-dark, white)
}

.mdc-tooltip__surface {
    background-color: rgba(0, 0, 0, 0.6)
}

.mdc-tooltip__surface {
    word-break: break-all;
    word-break: var(--mdc-tooltip-word-break, normal);
    overflow-wrap: anywhere
}

.mdc-tooltip {
    z-index: 2
}

.mdc-tooltip--showing-transition .mdc-tooltip__surface {
    transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)
}

.mdc-tooltip--hide-transition .mdc-tooltip__surface {
    transition: opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1)
}

.mdc-tooltip__title {
    color: rgba(0, 0, 0, 0.87);
    color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87))
}

.mdc-tooltip__content {
    color: rgba(0, 0, 0, 0.6)
}

.mdc-tooltip__content-link {
    color: #264FEC;
}

.mdc-tooltip {
    position: fixed;
    display: none
}

.mdc-tooltip-wrapper--rich {
    position: relative
}

.mdc-tooltip--shown, .mdc-tooltip--showing, .mdc-tooltip--hide {
    display: inline-flex
}

    .mdc-tooltip--shown.mdc-tooltip--rich, .mdc-tooltip--showing.mdc-tooltip--rich, .mdc-tooltip--hide.mdc-tooltip--rich {
        box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0,0,0,.12);
        display: inline-block;
        border-radius: 8px;
        left: -320px;
        padding: 8px 8px;
        position: absolute
    }

        .mdc-tooltip--shown.mdc-tooltip--rich .mdc-tooltip__surface, .mdc-tooltip--showing.mdc-tooltip--rich .mdc-tooltip__surface, .mdc-tooltip--hide.mdc-tooltip--rich .mdc-tooltip__surface {
            background-color: rgba(255, 255, 255, 0.6)
        }

.mdc-tooltip__surface {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.75rem;
    font-size: var(--mdc-typography-caption-font-size, 0.75rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-caption-font-weight, 400);
    letter-spacing: 0.0333333333em;
    letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-caption-text-transform, inherit);
    line-height: 16px;
    padding: 4px 8px;
    min-width: 40px;
    max-width: 200px;
    min-height: 24px;
    max-height: 40vh;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    transform: scale(0.8);
    opacity: 0;
    will-change: transform,opacity;
    outline: 1px solid transparent
}

.mdc-tooltip--rich .mdc-tooltip__surface {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    min-height: 24px;
    min-width: 40px;
    max-width: 320px
}

.mdc-tooltip--multiline .mdc-tooltip__surface {
    text-align: left
}

    [dir=rtl] .mdc-tooltip--multiline .mdc-tooltip__surface, .mdc-tooltip--multiline .mdc-tooltip__surface[dir=rtl] {
        text-align: right
    }

.mdc-tooltip--shown .mdc-tooltip__surface {
    transform: scale(1);
    opacity: 1
}

.mdc-tooltip--hide .mdc-tooltip__surface {
    transform: scale(1)
}

.mdc-tooltip__surface .mdc-tooltip__title {
    display: block;
    margin-top: 0;
    line-height: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.875rem;
    font-size: var(--mdc-typography-subtitle2-font-size, 0.875rem);
    font-weight: 500;
    font-weight: var(--mdc-typography-subtitle2-font-weight, 500);
    letter-spacing: 0.0071428571em;
    letter-spacing: var(--mdc-typography-subtitle2-letter-spacing, 0.0071428571em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle2-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle2-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle2-text-transform, inherit);
    margin: 0 8px
}

    .mdc-tooltip__surface .mdc-tooltip__title::before {
        display: inline-block;
        width: 0;
        height: 20px;
        content: "";
        vertical-align: 0
    }

.mdc-tooltip__surface .mdc-tooltip__content {
    display: block;
    margin-top: 0;
    line-height: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-body1-font-size, 1rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-body1-font-weight, 400);
    letter-spacing: 0.03125em;
    letter-spacing: var(--mdc-typography-body1-letter-spacing, 0.03125em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-body1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-body1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-body1-text-transform, inherit);
    margin: 0 8px 16px 8px;
    text-align: left
}

    .mdc-tooltip__surface .mdc-tooltip__content::before {
        display: inline-block;
        width: 0;
        height: 24px;
        content: "";
        vertical-align: 0
    }

    [dir=rtl] .mdc-tooltip__surface .mdc-tooltip__content, .mdc-tooltip__surface .mdc-tooltip__content[dir=rtl] {
        text-align: right
    }

.mdc-tooltip__surface .mdc-tooltip__content-link {
    text-decoration: none
}

.mdc-floating-label {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
    letter-spacing: 0.009375em;
    letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
    position: absolute;
    left: 0;
    transform-origin: left top;
    line-height: 1.15rem;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: text;
    overflow: hidden;
    will-change: transform;
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

    [dir=rtl] .mdc-floating-label, .mdc-floating-label[dir=rtl] {
        right: 0;
        left: auto;
        transform-origin: right top;
        text-align: right
    }

.mdc-floating-label--float-above {
    cursor: auto
}

.mdc-floating-label--required::after {
    margin-left: 1px;
    margin-right: 0px;
    content: "*"
}

[dir=rtl] .mdc-floating-label--required::after, .mdc-floating-label--required[dir=rtl]::after {
    margin-left: 0;
    margin-right: 1px
}

.mdc-floating-label--float-above {
    transform: translateY(-106%) scale(0.75)
}

.mdc-floating-label--shake {
    -webkit-animation: mdc-floating-label-shake-float-above-standard 250ms 1;
    animation: mdc-floating-label-shake-float-above-standard 250ms 1
}

@-webkit-keyframes mdc-floating-label-shake-float-above-standard {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-106%) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-106%) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-106%) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-106%) scale(0.75)
    }
}

@keyframes mdc-floating-label-shake-float-above-standard {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-106%) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-106%) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-106%) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-106%) scale(0.75)
    }
}

.mdc-line-ripple::before, .mdc-line-ripple::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom-style: solid;
    content: ""
}

.mdc-line-ripple::before {
    border-bottom-width: 1px;
    z-index: 1
}

.mdc-line-ripple::after {
    transform: scaleX(0);
    border-bottom-width: 2px;
    opacity: 0;
    z-index: 2
}

.mdc-line-ripple::after {
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)
}

.mdc-line-ripple--active::after {
    transform: scaleX(1);
    opacity: 1
}

.mdc-line-ripple--deactivating::after {
    opacity: 0
}

.mdc-notched-outline {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    text-align: left;
    pointer-events: none
}

    [dir=rtl] .mdc-notched-outline, .mdc-notched-outline[dir=rtl] {
        text-align: right
    }

.mdc-notched-outline__leading, .mdc-notched-outline__notch, .mdc-notched-outline__trailing {
    box-sizing: border-box;
    height: 100%;
    border-top: 1px solid;
    border-bottom: 1px solid;
    pointer-events: none
}

.mdc-notched-outline__leading {
    border-left: 1px solid;
    border-right: none;
    width: 12px
}

    [dir=rtl] .mdc-notched-outline__leading, .mdc-notched-outline__leading[dir=rtl] {
        border-left: none;
        border-right: 1px solid
    }

.mdc-notched-outline__trailing {
    border-left: none;
    border-right: 1px solid;
    flex-grow: 1
}

    [dir=rtl] .mdc-notched-outline__trailing, .mdc-notched-outline__trailing[dir=rtl] {
        border-left: 1px solid;
        border-right: none
    }

.mdc-notched-outline__notch {
    flex: 0 0 auto;
    width: auto;
    max-width: calc(100% - 12px * 2)
}

.mdc-notched-outline .mdc-floating-label {
    display: inline-block;
    position: relative;
    max-width: 100%
}

.mdc-notched-outline .mdc-floating-label--float-above {
    text-overflow: clip
}

.mdc-notched-outline--upgraded .mdc-floating-label--float-above {
    max-width: calc(100% / 0.75)
}

.mdc-notched-outline--notched .mdc-notched-outline__notch {
    padding-left: 0;
    padding-right: 8px;
    border-top: none
}

    [dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch, .mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl] {
        padding-left: 8px;
        padding-right: 0
    }

.mdc-notched-outline--no-label .mdc-notched-outline__notch {
    display: none
}

.mdc-text-field--filled {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    .mdc-text-field--filled .mdc-text-field__ripple::before, .mdc-text-field--filled .mdc-text-field__ripple::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    .mdc-text-field--filled .mdc-text-field__ripple::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    .mdc-text-field--filled .mdc-text-field__ripple::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    .mdc-text-field--filled.mdc-ripple-upgraded .mdc-text-field__ripple::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-text-field--filled.mdc-ripple-upgraded .mdc-text-field__ripple::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    .mdc-text-field--filled.mdc-ripple-upgraded--unbounded .mdc-text-field__ripple::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    .mdc-text-field--filled.mdc-ripple-upgraded--foreground-activation .mdc-text-field__ripple::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    .mdc-text-field--filled.mdc-ripple-upgraded--foreground-deactivation .mdc-text-field__ripple::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-text-field--filled .mdc-text-field__ripple::before, .mdc-text-field--filled .mdc-text-field__ripple::after {
        top: calc(50% - 100%);
        left: calc(50% - 100%);
        width: 200%;
        height: 200%
    }

    .mdc-text-field--filled.mdc-ripple-upgraded .mdc-text-field__ripple::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

.mdc-text-field__ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.mdc-text-field {
    border-top-left-radius: 4px;
    border-top-left-radius: var(--mdc-shape-small, 4px);
    border-top-right-radius: 4px;
    border-top-right-radius: var(--mdc-shape-small, 4px);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    display: inline-flex;
    align-items: baseline;
    padding: 0 16px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    will-change: opacity,transform,color
}

    .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
        color: rgba(0, 0, 0, 0.6)
    }

    .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input {
        color: rgba(0, 0, 0, 0.87)
    }

@media all {
    .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder {
        color: rgba(0, 0, 0, 0.54)
    }

    .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.54)
    }

    .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
        color: rgba(0, 0, 0, 0.54)
    }
}

@media all {
    .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.54)
    }
}

.mdc-text-field .mdc-text-field__input {
    caret-color: #6200ee;
    caret-color: var(--mdc-theme-primary, #6200ee)
}

.mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-line .mdc-text-field-helper-text {
    color: rgba(0, 0, 0, 0.6)
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field-character-counter, .mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-line .mdc-text-field-character-counter {
    color: rgba(0, 0, 0, 0.6)
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon--leading {
    color: rgba(0, 0, 0, 0.54)
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing {
    color: rgba(0, 0, 0, 0.54)
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__affix--prefix {
    color: rgba(0, 0, 0, 0.6)
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__affix--suffix {
    color: rgba(0, 0, 0, 0.6)
}

.mdc-text-field .mdc-floating-label {
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

.mdc-text-field__input {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
    letter-spacing: 0.009375em;
    letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
    height: 28px;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-width: 0;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0
}

    .mdc-text-field__input::-ms-clear {
        display: none
    }

    .mdc-text-field__input::-webkit-calendar-picker-indicator {
        display: none
    }

    .mdc-text-field__input:focus {
        outline: none
    }

    .mdc-text-field__input:invalid {
        box-shadow: none
    }

@media all {
    .mdc-text-field__input::-moz-placeholder {
        -moz-transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0
    }

    .mdc-text-field__input:-ms-input-placeholder {
        -ms-transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0
    }

    .mdc-text-field__input::placeholder {
        transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0
    }
}

@media all {
    .mdc-text-field__input:-ms-input-placeholder {
        -ms-transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0
    }
}

@media all {
    .mdc-text-field--no-label .mdc-text-field__input::-moz-placeholder, .mdc-text-field--focused .mdc-text-field__input::-moz-placeholder {
        transition-delay: 40ms;
        transition-duration: 110ms;
        opacity: 1
    }

    .mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder, .mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder {
        transition-delay: 40ms;
        transition-duration: 110ms;
        opacity: 1
    }

    .mdc-text-field--no-label .mdc-text-field__input::placeholder, .mdc-text-field--focused .mdc-text-field__input::placeholder {
        transition-delay: 40ms;
        transition-duration: 110ms;
        opacity: 1
    }
}

@media all {
    .mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder, .mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder {
        transition-delay: 40ms;
        transition-duration: 110ms;
        opacity: 1
    }
}

.mdc-text-field__affix {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
    letter-spacing: 0.009375em;
    letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
    height: 28px;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    white-space: nowrap
}

.mdc-text-field--label-floating .mdc-text-field__affix, .mdc-text-field--no-label .mdc-text-field__affix {
    opacity: 1
}

@supports(-webkit-hyphens: none) {
    .mdc-text-field--outlined .mdc-text-field__affix {
        align-items: center;
        align-self: center;
        display: inline-flex;
        height: 100%
    }
}

.mdc-text-field__affix--prefix {
    padding-left: 0;
    padding-right: 2px
}

    [dir=rtl] .mdc-text-field__affix--prefix, .mdc-text-field__affix--prefix[dir=rtl] {
        padding-left: 2px;
        padding-right: 0
    }

.mdc-text-field--end-aligned .mdc-text-field__affix--prefix {
    padding-left: 0;
    padding-right: 12px
}

    [dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix, .mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl] {
        padding-left: 12px;
        padding-right: 0
    }

.mdc-text-field__affix--suffix {
    padding-left: 12px;
    padding-right: 0
}

    [dir=rtl] .mdc-text-field__affix--suffix, .mdc-text-field__affix--suffix[dir=rtl] {
        padding-left: 0;
        padding-right: 12px
    }

.mdc-text-field--end-aligned .mdc-text-field__affix--suffix {
    padding-left: 2px;
    padding-right: 0
}

    [dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix, .mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl] {
        padding-left: 0;
        padding-right: 2px
    }

.mdc-text-field--filled {
    height: 56px
}

    .mdc-text-field--filled .mdc-text-field__ripple::before, .mdc-text-field--filled .mdc-text-field__ripple::after {
        background-color: rgba(0, 0, 0, 0.87);
        background-color: var(--mdc-ripple-color, rgba(0, 0, 0, 0.87))
    }

    .mdc-text-field--filled:hover .mdc-text-field__ripple::before, .mdc-text-field--filled.mdc-ripple-surface--hover .mdc-text-field__ripple::before {
        opacity: 0.04;
        opacity: var(--mdc-ripple-hover-opacity, 0.04)
    }

    .mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before, .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    .mdc-text-field--filled::before {
        display: inline-block;
        width: 0;
        height: 40px;
        content: "";
        vertical-align: 0
    }

    .mdc-text-field--filled:not(.mdc-text-field--disabled) {
        background-color: whitesmoke
    }

        .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before {
            border-bottom-color: rgba(0, 0, 0, 0.42)
        }

        .mdc-text-field--filled:not(.mdc-text-field--disabled):hover .mdc-line-ripple::before {
            border-bottom-color: rgba(0, 0, 0, 0.87)
        }

    .mdc-text-field--filled .mdc-line-ripple::after {
        border-bottom-color: #6200ee;
        border-bottom-color: var(--mdc-theme-primary, #6200ee)
    }

    .mdc-text-field--filled .mdc-floating-label {
        left: 16px;
        right: initial
    }

        [dir=rtl] .mdc-text-field--filled .mdc-floating-label, .mdc-text-field--filled .mdc-floating-label[dir=rtl] {
            left: initial;
            right: 16px
        }

    .mdc-text-field--filled .mdc-floating-label--float-above {
        transform: translateY(-106%) scale(0.75)
    }

    .mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input {
        height: 100%
    }

    .mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label {
        display: none
    }

    .mdc-text-field--filled.mdc-text-field--no-label::before {
        display: none
    }

@supports(-webkit-hyphens: none) {
    .mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix {
        align-items: center;
        align-self: center;
        display: inline-flex;
        height: 100%
    }
}

.mdc-text-field--outlined {
    height: 56px;
    overflow: visible
}

    .mdc-text-field--outlined .mdc-floating-label--float-above {
        transform: translateY(-37.25px) scale(1)
    }

    .mdc-text-field--outlined .mdc-floating-label--float-above {
        font-size: .75rem
    }

    .mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
        transform: translateY(-34.75px) scale(0.75)
    }

    .mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
        font-size: 1rem
    }

    .mdc-text-field--outlined .mdc-floating-label--shake {
        -webkit-animation: mdc-floating-label-shake-float-above-text-field-outlined 250ms 1;
        animation: mdc-floating-label-shake-float-above-text-field-outlined 250ms 1
    }

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-outlined {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)
    }
}

.mdc-text-field--outlined .mdc-text-field__input {
    height: 100%
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading, .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch, .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
    border-color: rgba(0, 0, 0, 0.38)
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading, .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch, .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing {
    border-color: rgba(0, 0, 0, 0.87)
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading, .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch, .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing {
    border-color: #6200ee;
    border-color: var(--mdc-theme-primary, #6200ee)
}

.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
    border-top-left-radius: 4px;
    border-top-left-radius: var(--mdc-shape-small, 4px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-left-radius: var(--mdc-shape-small, 4px)
}

    [dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading, .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl] {
        border-top-left-radius: 0;
        border-top-right-radius: 4px;
        border-top-right-radius: var(--mdc-shape-small, 4px);
        border-bottom-right-radius: 4px;
        border-bottom-right-radius: var(--mdc-shape-small, 4px);
        border-bottom-left-radius: 0
    }

@supports(top: max(0%)) {
    .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
        width: max(12px, var(--mdc-shape-small, 4px))
    }
}

@supports(top: max(0%)) {
    .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch {
        max-width: calc(100% - max(12px, var(--mdc-shape-small, 4px)) * 2)
    }
}

.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing {
    border-top-left-radius: 0;
    border-top-right-radius: 4px;
    border-top-right-radius: var(--mdc-shape-small, 4px);
    border-bottom-right-radius: 4px;
    border-bottom-right-radius: var(--mdc-shape-small, 4px);
    border-bottom-left-radius: 0
}

    [dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing, .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl] {
        border-top-left-radius: 4px;
        border-top-left-radius: var(--mdc-shape-small, 4px);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 4px;
        border-bottom-left-radius: var(--mdc-shape-small, 4px)
    }

@supports(top: max(0%)) {
    .mdc-text-field--outlined {
        padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

@supports(top: max(0%)) {
    .mdc-text-field--outlined {
        padding-right: max(16px, var(--mdc-shape-small, 4px))
    }
}

@supports(top: max(0%)) {
    .mdc-text-field--outlined + .mdc-text-field-helper-line {
        padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

@supports(top: max(0%)) {
    .mdc-text-field--outlined + .mdc-text-field-helper-line {
        padding-right: max(16px, var(--mdc-shape-small, 4px))
    }
}

.mdc-text-field--outlined.mdc-text-field--with-leading-icon {
    padding-left: 0
}

@supports(top: max(0%)) {
    .mdc-text-field--outlined.mdc-text-field--with-leading-icon {
        padding-right: max(16px, var(--mdc-shape-small, 4px))
    }
}

[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon, .mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl] {
    padding-right: 0
}

@supports(top: max(0%)) {
    [dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon, .mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl] {
        padding-left: max(16px, var(--mdc-shape-small, 4px))
    }
}

.mdc-text-field--outlined.mdc-text-field--with-trailing-icon {
    padding-right: 0
}

@supports(top: max(0%)) {
    .mdc-text-field--outlined.mdc-text-field--with-trailing-icon {
        padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon, .mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl] {
    padding-left: 0
}

@supports(top: max(0%)) {
    [dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon, .mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl] {
        padding-right: max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon {
    padding-left: 0;
    padding-right: 0
}

.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch {
    padding-top: 1px
}

.mdc-text-field--outlined .mdc-text-field__ripple::before, .mdc-text-field--outlined .mdc-text-field__ripple::after {
    content: none
}

.mdc-text-field--outlined .mdc-floating-label {
    left: 4px;
    right: initial
}

    [dir=rtl] .mdc-text-field--outlined .mdc-floating-label, .mdc-text-field--outlined .mdc-floating-label[dir=rtl] {
        left: initial;
        right: 4px
    }

.mdc-text-field--outlined .mdc-text-field__input {
    display: flex;
    border: none !important;
    background-color: transparent
}

.mdc-text-field--outlined .mdc-notched-outline {
    z-index: 1
}

.mdc-text-field--textarea {
    flex-direction: column;
    align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    transition: none
}

    .mdc-text-field--textarea .mdc-floating-label {
        top: 19px
    }

        .mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above) {
            transform: none
        }

    .mdc-text-field--textarea .mdc-text-field__input {
        flex-grow: 1;
        height: auto;
        min-height: 1.5rem;
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
        resize: none;
        padding: 0 16px;
        line-height: 1.5rem
    }

    .mdc-text-field--textarea.mdc-text-field--filled::before {
        display: none
    }

    .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above {
        transform: translateY(-10.25px) scale(0.75)
    }

    .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake {
        -webkit-animation: mdc-floating-label-shake-float-above-textarea-filled 250ms 1;
        animation: mdc-floating-label-shake-float-above-textarea-filled 250ms 1
    }

@-webkit-keyframes mdc-floating-label-shake-float-above-textarea-filled {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-10.25px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-10.25px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75)
    }
}

@keyframes mdc-floating-label-shake-float-above-textarea-filled {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-10.25px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-10.25px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75)
    }
}

.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input {
    margin-top: 23px;
    margin-bottom: 9px
}

.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input {
    margin-top: 16px;
    margin-bottom: 16px
}

.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch {
    padding-top: 0
}

.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above {
    transform: translateY(-27.25px) scale(1)
}

.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above {
    font-size: .75rem
}

.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
    transform: translateY(-24.75px) scale(0.75)
}

.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
    font-size: 1rem
}

.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake {
    -webkit-animation: mdc-floating-label-shake-float-above-textarea-outlined 250ms 1;
    animation: mdc-floating-label-shake-float-above-textarea-outlined 250ms 1
}

@-webkit-keyframes mdc-floating-label-shake-float-above-textarea-outlined {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-24.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-24.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75)
    }
}

@keyframes mdc-floating-label-shake-float-above-textarea-outlined {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-24.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-24.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75)
    }
}

.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input {
    margin-top: 16px;
    margin-bottom: 16px
}

.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label {
    top: 18px
}

.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input {
    margin-bottom: 2px
}

.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter {
    align-self: flex-end;
    padding: 0 16px
}

    .mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::after {
        display: inline-block;
        width: 0;
        height: 16px;
        content: "";
        vertical-align: -16px
    }

    .mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::before {
        display: none
    }

.mdc-text-field__resizer {
    align-self: stretch;
    display: inline-flex;
    flex-direction: column;
    flex-grow: 1;
    max-height: 100%;
    max-width: 100%;
    min-height: 56px;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    min-width: -moz-available;
    min-width: -webkit-fill-available;
    overflow: hidden;
    resize: both
}

.mdc-text-field--filled .mdc-text-field__resizer {
    transform: translateY(-1px)
}

    .mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input, .mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter {
        transform: translateY(1px)
    }

.mdc-text-field--outlined .mdc-text-field__resizer {
    transform: translateX(-1px) translateY(-1px)
}

    [dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer, .mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl] {
        transform: translateX(1px) translateY(-1px)
    }

    .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input, .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter {
        transform: translateX(1px) translateY(1px)
    }

        [dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input, .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl], [dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter, .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl] {
            transform: translateX(-1px) translateY(1px)
        }

.mdc-text-field--with-leading-icon {
    padding-left: 0;
    padding-right: 16px
}

    [dir=rtl] .mdc-text-field--with-leading-icon, .mdc-text-field--with-leading-icon[dir=rtl] {
        padding-left: 16px;
        padding-right: 0
    }

    .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label {
        max-width: calc(100% - 48px);
        left: 48px;
        right: initial
    }

        [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label, .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl] {
            left: initial;
            right: 48px
        }

    .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above {
        max-width: calc(100% / 0.75 - 64px / 0.75)
    }

    .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label {
        left: 36px;
        right: initial
    }

        [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label, .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl] {
            left: initial;
            right: 36px
        }

    .mdc-text-field--with-leading-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch {
        max-width: calc(100% - 60px)
    }

    .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
        transform: translateY(-37.25px) translateX(-32px) scale(1)
    }

        [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl] {
            transform: translateY(-37.25px) translateX(32px) scale(1)
        }

    .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
        font-size: .75rem
    }

    .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
        transform: translateY(-34.75px) translateX(-32px) scale(0.75)
    }

        [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl], [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl] {
            transform: translateY(-34.75px) translateX(32px) scale(0.75)
        }

    .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
        font-size: 1rem
    }

    .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake {
        -webkit-animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1;
        animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1
    }

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon {
    0% {
        transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 32px)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 32px)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon {
    0% {
        transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 32px)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 32px)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)
    }
}

[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake, .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake {
    -webkit-animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1;
    animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1
}

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
    0% {
        transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - -32px)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - -32px)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
    0% {
        transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - -32px)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - -32px)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)
    }
}

.mdc-text-field--with-trailing-icon {
    padding-left: 16px;
    padding-right: 0
}

    [dir=rtl] .mdc-text-field--with-trailing-icon, .mdc-text-field--with-trailing-icon[dir=rtl] {
        padding-left: 0;
        padding-right: 16px
    }

    .mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label {
        max-width: calc(100% - 64px)
    }

    .mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above {
        max-width: calc(100% / 0.75 - 64px / 0.75)
    }

    .mdc-text-field--with-trailing-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch {
        max-width: calc(100% - 60px)
    }

.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon {
    padding-left: 0;
    padding-right: 0
}

    .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label {
        max-width: calc(100% - 96px)
    }

    .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above {
        max-width: calc(100% / 0.75 - 96px / 0.75)
    }

.mdc-text-field-helper-line {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box
}

.mdc-text-field + .mdc-text-field-helper-line {
    padding-right: 16px;
    padding-left: 16px
}

.mdc-form-field > .mdc-text-field + label {
    align-self: flex-start
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: rgba(98, 0, 238, 0.87)
}

.mdc-text-field--focused .mdc-notched-outline__leading, .mdc-text-field--focused .mdc-notched-outline__notch, .mdc-text-field--focused .mdc-notched-outline__trailing {
    border-width: 2px
}

.mdc-text-field--focused + .mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg) {
    opacity: 1
}

.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch {
    padding-top: 2px
}

.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea .mdc-notched-outline--notched .mdc-notched-outline__notch {
    padding-top: 0
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-line-ripple::before {
    border-bottom-color: #b00020;
    border-bottom-color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after {
    border-bottom-color: #b00020;
    border-bottom-color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: #b00020;
    color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--invalid + .mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg {
    color: #b00020;
    color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid .mdc-text-field__input {
    caret-color: #b00020;
    caret-color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing {
    color: #b00020;
    color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before {
    border-bottom-color: #b00020;
    border-bottom-color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading, .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch, .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
    border-color: #b00020;
    border-color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading, .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch, .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing {
    border-color: #b00020;
    border-color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading, .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch, .mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing {
    border-color: #b00020;
    border-color: var(--mdc-theme-error, #b00020)
}

.mdc-text-field--invalid + .mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg {
    opacity: 1
}

.mdc-text-field--disabled {
    pointer-events: none
}

    .mdc-text-field--disabled .mdc-text-field__input {
        color: rgba(0, 0, 0, 0.38)
    }

@media all {
    .mdc-text-field--disabled .mdc-text-field__input::-moz-placeholder {
        color: rgba(0, 0, 0, 0.38)
    }

    .mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.38)
    }

    .mdc-text-field--disabled .mdc-text-field__input::placeholder {
        color: rgba(0, 0, 0, 0.38)
    }
}

@media all {
    .mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.38)
    }
}

.mdc-text-field--disabled .mdc-floating-label {
    color: rgba(0, 0, 0, 0.38)
}

.mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-helper-text {
    color: rgba(0, 0, 0, 0.38)
}

.mdc-text-field--disabled .mdc-text-field-character-counter, .mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-character-counter {
    color: rgba(0, 0, 0, 0.38)
}

.mdc-text-field--disabled .mdc-text-field__icon--leading {
    color: rgba(0, 0, 0, 0.3)
}

.mdc-text-field--disabled .mdc-text-field__icon--trailing {
    color: rgba(0, 0, 0, 0.3)
}

.mdc-text-field--disabled .mdc-text-field__affix--prefix {
    color: rgba(0, 0, 0, 0.38)
}

.mdc-text-field--disabled .mdc-text-field__affix--suffix {
    color: rgba(0, 0, 0, 0.38)
}

.mdc-text-field--disabled .mdc-line-ripple::before {
    border-bottom-color: rgba(0, 0, 0, 0.06)
}

.mdc-text-field--disabled .mdc-notched-outline__leading, .mdc-text-field--disabled .mdc-notched-outline__notch, .mdc-text-field--disabled .mdc-notched-outline__trailing {
    border-color: rgba(0, 0, 0, 0.06)
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-text-field__input::-moz-placeholder {
        color: GrayText
    }

    .mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder {
        color: GrayText
    }

    .mdc-text-field--disabled .mdc-text-field__input::placeholder {
        color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder {
        color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-floating-label {
        color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-helper-text {
        color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-text-field-character-counter, .mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-character-counter {
        color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-text-field__icon--leading {
        color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-text-field__icon--trailing {
        color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-text-field__affix--prefix {
        color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-text-field__affix--suffix {
        color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-line-ripple::before {
        border-bottom-color: GrayText
    }
}

@media screen and (-ms-high-contrast: active) {
    .mdc-text-field--disabled .mdc-notched-outline__leading, .mdc-text-field--disabled .mdc-notched-outline__notch, .mdc-text-field--disabled .mdc-notched-outline__trailing {
        border-color: GrayText
    }
}

.mdc-text-field--disabled .mdc-floating-label {
    cursor: default
}

.mdc-text-field--disabled.mdc-text-field--filled {
    background-color: #fafafa
}

    .mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple {
        display: none
    }

.mdc-text-field--disabled .mdc-text-field__input {
    pointer-events: auto
}

.mdc-text-field--end-aligned .mdc-text-field__input {
    text-align: right
}

    [dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input, .mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl] {
        text-align: left
    }

[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input, [dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix {
    direction: ltr
}

[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix {
    padding-left: 0;
    padding-right: 2px
}

[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix {
    padding-left: 12px;
    padding-right: 0
}

[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading {
    order: 1
}

[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix {
    order: 2
}

[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input {
    order: 3
}

[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix {
    order: 4
}

[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing, .mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--trailing {
    order: 5
}

[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input, .mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input {
    text-align: right
}

[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix, .mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix {
    padding-right: 12px
}

[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix, .mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix {
    padding-left: 2px
}

.mdc-text-field-helper-text {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 12px;
    font-size: var(--mdc-typography-caption-font-size, 0.75rem);
    line-height: 1.25rem;
    line-height: var(--mdc-typography-caption-line-height, 1.25rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-caption-font-weight, 400);
    letter-spacing: 0.0333333333em;
    letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-caption-text-transform, inherit);
    display: block;
    margin-top: 0;
    line-height: normal;
    margin: 0;
    opacity: 0;
    will-change: opacity;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

    .mdc-text-field-helper-text::before {
        display: inline-block;
        width: 0;
        height: 16px;
        content: "";
        vertical-align: 0
    }

.mdc-text-field-helper-text--persistent {
    transition: none;
    opacity: 1;
    will-change: initial
}

.mdc-text-field-character-counter {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.75rem;
    font-size: var(--mdc-typography-caption-font-size, 0.75rem);
    line-height: 1.25rem;
    line-height: var(--mdc-typography-caption-line-height, 1.25rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-caption-font-weight, 400);
    letter-spacing: 0.0333333333em;
    letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-caption-text-transform, inherit);
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-left: auto;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 0;
    white-space: nowrap
}

    .mdc-text-field-character-counter::before {
        display: inline-block;
        width: 0;
        height: 16px;
        content: "";
        vertical-align: 0
    }

    [dir=rtl] .mdc-text-field-character-counter, .mdc-text-field-character-counter[dir=rtl] {
        margin-left: 0;
        margin-right: auto
    }

    [dir=rtl] .mdc-text-field-character-counter, .mdc-text-field-character-counter[dir=rtl] {
        padding-left: 0;
        padding-right: 16px
    }

.mdc-text-field__icon {
    align-self: center;
    cursor: pointer
}

    .mdc-text-field__icon:not([tabindex]), .mdc-text-field__icon[tabindex="-1"] {
        cursor: default;
        pointer-events: none
    }

    .mdc-text-field__icon svg {
        display: block
    }

.mdc-text-field__icon--leading {
    margin-left: 16px;
    margin-right: 8px
}

    [dir=rtl] .mdc-text-field__icon--leading, .mdc-text-field__icon--leading[dir=rtl] {
        margin-left: 8px;
        margin-right: 16px
    }

.mdc-text-field__icon--trailing {
    padding: 12px;
    margin-left: 0px;
    margin-right: 0px
}

    [dir=rtl] .mdc-text-field__icon--trailing, .mdc-text-field__icon--trailing[dir=rtl] {
        margin-left: 0px;
        margin-right: 0px
    }

.mdc-select {
    display: inline-flex;
    position: relative
}

    .mdc-select:not(.mdc-select--disabled) .mdc-select__selected-text {
        color: rgba(0, 0, 0, 0.87)
    }

    .mdc-select.mdc-select--disabled .mdc-select__selected-text {
        color: rgba(0, 0, 0, 0.38)
    }

    .mdc-select:not(.mdc-select--disabled) .mdc-floating-label {
        color: rgba(0, 0, 0, 0.6)
    }

    .mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label {
        color: rgba(98, 0, 238, 0.87)
    }

    .mdc-select.mdc-select--disabled .mdc-floating-label {
        color: rgba(0, 0, 0, 0.38)
    }

    .mdc-select:not(.mdc-select--disabled) .mdc-select__dropdown-icon {
        fill: rgba(0, 0, 0, 0.54)
    }

    .mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-select__dropdown-icon {
        fill: #6200ee;
        fill: var(--mdc-theme-primary, #6200ee)
    }

    .mdc-select.mdc-select--disabled .mdc-select__dropdown-icon {
        fill: rgba(0, 0, 0, 0.38)
    }

    .mdc-select:not(.mdc-select--disabled) + .mdc-select-helper-text {
        color: rgba(0, 0, 0, 0.6)
    }

    .mdc-select.mdc-select--disabled + .mdc-select-helper-text {
        color: rgba(0, 0, 0, 0.38)
    }

    .mdc-select:not(.mdc-select--disabled) .mdc-select__icon {
        color: rgba(0, 0, 0, 0.54)
    }

    .mdc-select.mdc-select--disabled .mdc-select__icon {
        color: rgba(0, 0, 0, 0.38)
    }

@media screen and (-ms-high-contrast: active) {
    .mdc-select.mdc-select--disabled .mdc-select__selected-text {
        color: GrayText
    }

    .mdc-select.mdc-select--disabled .mdc-select__dropdown-icon {
        fill: red
    }

    .mdc-select.mdc-select--disabled .mdc-floating-label {
        color: GrayText
    }

    .mdc-select.mdc-select--disabled .mdc-line-ripple::before {
        border-bottom-color: GrayText
    }

    .mdc-select.mdc-select--disabled .mdc-notched-outline__leading, .mdc-select.mdc-select--disabled .mdc-notched-outline__notch, .mdc-select.mdc-select--disabled .mdc-notched-outline__trailing {
        border-color: GrayText
    }

    .mdc-select.mdc-select--disabled .mdc-select__icon {
        color: GrayText
    }

    .mdc-select.mdc-select--disabled + .mdc-select-helper-text {
        color: GrayText
    }
}

.mdc-select .mdc-floating-label {
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

.mdc-select .mdc-select__anchor {
    padding-left: 16px;
    padding-right: 0
}

    [dir=rtl] .mdc-select .mdc-select__anchor, .mdc-select .mdc-select__anchor[dir=rtl] {
        padding-left: 0;
        padding-right: 16px
    }

.mdc-select.mdc-select--with-leading-icon .mdc-select__anchor {
    padding-left: 0;
    padding-right: 0
}

    [dir=rtl] .mdc-select.mdc-select--with-leading-icon .mdc-select__anchor, .mdc-select.mdc-select--with-leading-icon .mdc-select__anchor[dir=rtl] {
        padding-left: 0;
        padding-right: 0
    }

.mdc-select .mdc-select__icon {
    width: 24px;
    height: 24px;
    font-size: 24px
}

.mdc-select .mdc-select__dropdown-icon {
    width: 24px;
    height: 24px
}

.mdc-select .mdc-select__menu .mdc-list-item {
    padding-left: 16px;
    padding-right: 16px
}

    [dir=rtl] .mdc-select .mdc-select__menu .mdc-list-item, .mdc-select .mdc-select__menu .mdc-list-item[dir=rtl] {
        padding-left: 16px;
        padding-right: 16px
    }

.mdc-select .mdc-select__menu .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 12px
}

    [dir=rtl] .mdc-select .mdc-select__menu .mdc-list-item__graphic, .mdc-select .mdc-select__menu .mdc-list-item__graphic[dir=rtl] {
        margin-left: 12px;
        margin-right: 0
    }

.mdc-select__dropdown-icon {
    margin-left: 12px;
    margin-right: 12px;
    display: inline-flex;
    position: relative;
    align-self: center;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    pointer-events: none
}

    .mdc-select__dropdown-icon .mdc-select__dropdown-icon-active, .mdc-select__dropdown-icon .mdc-select__dropdown-icon-inactive {
        position: absolute;
        top: 0;
        left: 0
    }

    .mdc-select__dropdown-icon .mdc-select__dropdown-icon-graphic {
        width: 41.6666666667%;
        height: 20.8333333333%
    }

    .mdc-select__dropdown-icon .mdc-select__dropdown-icon-inactive {
        opacity: 1;
        transition: opacity 75ms linear 75ms
    }

    .mdc-select__dropdown-icon .mdc-select__dropdown-icon-active {
        opacity: 0;
        transition: opacity 75ms linear
    }

    [dir=rtl] .mdc-select__dropdown-icon, .mdc-select__dropdown-icon[dir=rtl] {
        margin-left: 12px;
        margin-right: 12px
    }

.mdc-select--activated .mdc-select__dropdown-icon .mdc-select__dropdown-icon-inactive {
    opacity: 0;
    transition: opacity 49.5ms linear
}

.mdc-select--activated .mdc-select__dropdown-icon .mdc-select__dropdown-icon-active {
    opacity: 1;
    transition: opacity 100.5ms linear 49.5ms
}

.mdc-select__anchor {
    width: 200px;
    min-width: 0;
    flex: 1 1 auto;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    outline: none;
    cursor: pointer
}

    .mdc-select__anchor .mdc-floating-label--float-above {
        transform: translateY(-106%) scale(0.75)
    }

.mdc-select__selected-text-container {
    display: flex;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    pointer-events: none;
    box-sizing: border-box;
    width: auto;
    min-width: 0;
    flex-grow: 1;
    height: 28px;
    border: none;
    outline: none;
    padding: 0;
    background-color: transparent;
    color: inherit
}

.mdc-select__selected-text {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
    line-height: 1.75rem;
    line-height: var(--mdc-typography-subtitle1-line-height, 1.75rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
    letter-spacing: 0.009375em;
    letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 100%;
    text-align: left
}

    [dir=rtl] .mdc-select__selected-text, .mdc-select__selected-text[dir=rtl] {
        text-align: right
    }

.mdc-select--invalid:not(.mdc-select--disabled) .mdc-floating-label {
    color: #b00020;
    color: var(--mdc-theme-error, #b00020)
}

.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label {
    color: #b00020;
    color: var(--mdc-theme-error, #b00020)
}

.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--invalid + .mdc-select-helper-text--validation-msg {
    color: #b00020;
    color: var(--mdc-theme-error, #b00020)
}

.mdc-select--invalid:not(.mdc-select--disabled) .mdc-select__dropdown-icon {
    fill: #b00020;
    fill: var(--mdc-theme-error, #b00020)
}

.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-select__dropdown-icon {
    fill: #b00020;
    fill: var(--mdc-theme-error, #b00020)
}

.mdc-select--disabled {
    cursor: default;
    pointer-events: none
}

.mdc-select--with-leading-icon .mdc-select__menu .mdc-list-item {
    padding-left: 12px;
    padding-right: 12px
}

    [dir=rtl] .mdc-select--with-leading-icon .mdc-select__menu .mdc-list-item, .mdc-select--with-leading-icon .mdc-select__menu .mdc-list-item[dir=rtl] {
        padding-left: 12px;
        padding-right: 12px
    }

.mdc-select__menu .mdc-list .mdc-select__icon {
    margin-left: 0;
    margin-right: 0
}

    [dir=rtl] .mdc-select__menu .mdc-list .mdc-select__icon, .mdc-select__menu .mdc-list .mdc-select__icon[dir=rtl] {
        margin-left: 0;
        margin-right: 0
    }

.mdc-select__menu .mdc-list .mdc-list-item--selected, .mdc-select__menu .mdc-list .mdc-list-item--activated {
    color: #000;
    color: var(--mdc-theme-on-surface, #000)
}

    .mdc-select__menu .mdc-list .mdc-list-item--selected .mdc-list-item__graphic, .mdc-select__menu .mdc-list .mdc-list-item--activated .mdc-list-item__graphic {
        color: #000;
        color: var(--mdc-theme-on-surface, #000)
    }

.mdc-select--filled .mdc-select__anchor {
    height: 56px;
    display: flex;
    align-items: baseline
}

    .mdc-select--filled .mdc-select__anchor::before {
        display: inline-block;
        width: 0;
        height: 40px;
        content: "";
        vertical-align: 0
    }

.mdc-select--filled.mdc-select--no-label .mdc-select__anchor .mdc-select__selected-text::before {
    content: "​"
}

.mdc-select--filled.mdc-select--no-label .mdc-select__anchor .mdc-select__selected-text-container {
    height: 100%;
    display: inline-flex;
    align-items: center
}

.mdc-select--filled.mdc-select--no-label .mdc-select__anchor::before {
    display: none
}

.mdc-select--filled .mdc-select__anchor {
    border-top-left-radius: 4px;
    border-top-left-radius: var(--mdc-shape-small, 4px);
    border-top-right-radius: 4px;
    border-top-right-radius: var(--mdc-shape-small, 4px);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.mdc-select--filled:not(.mdc-select--disabled) .mdc-select__anchor {
    background-color: whitesmoke
}

.mdc-select--filled.mdc-select--disabled .mdc-select__anchor {
    background-color: #fafafa
}

.mdc-select--filled:not(.mdc-select--disabled) .mdc-line-ripple::before {
    border-bottom-color: rgba(0, 0, 0, 0.42)
}

.mdc-select--filled:not(.mdc-select--disabled):hover .mdc-line-ripple::before {
    border-bottom-color: rgba(0, 0, 0, 0.87)
}

.mdc-select--filled:not(.mdc-select--disabled) .mdc-line-ripple::after {
    border-bottom-color: #6200ee;
    border-bottom-color: var(--mdc-theme-primary, #6200ee)
}

.mdc-select--filled.mdc-select--disabled .mdc-line-ripple::before {
    border-bottom-color: rgba(0, 0, 0, 0.06)
}

.mdc-select--filled .mdc-floating-label {
    max-width: calc(100% - 64px)
}

.mdc-select--filled .mdc-floating-label--float-above {
    max-width: calc(100% / 0.75 - 64px / 0.75)
}

.mdc-select--filled .mdc-menu-surface--is-open-below {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px
}

.mdc-select--filled.mdc-select--focused.mdc-line-ripple::after {
    transform: scale(1, 2);
    opacity: 1
}

.mdc-select--filled .mdc-floating-label {
    left: 16px;
    right: initial
}

    [dir=rtl] .mdc-select--filled .mdc-floating-label, .mdc-select--filled .mdc-floating-label[dir=rtl] {
        left: initial;
        right: 16px
    }

.mdc-select--filled.mdc-select--with-leading-icon .mdc-floating-label {
    left: 48px;
    right: initial
}

    [dir=rtl] .mdc-select--filled.mdc-select--with-leading-icon .mdc-floating-label, .mdc-select--filled.mdc-select--with-leading-icon .mdc-floating-label[dir=rtl] {
        left: initial;
        right: 48px
    }

.mdc-select--filled.mdc-select--with-leading-icon .mdc-floating-label {
    max-width: calc(100% - 96px)
}

.mdc-select--filled.mdc-select--with-leading-icon .mdc-floating-label--float-above {
    max-width: calc(100% / 0.75 - 96px / 0.75)
}

.mdc-select--invalid:not(.mdc-select--disabled) .mdc-line-ripple::before {
    border-bottom-color: #b00020;
    border-bottom-color: var(--mdc-theme-error, #b00020)
}

.mdc-select--invalid:not(.mdc-select--disabled):hover .mdc-line-ripple::before {
    border-bottom-color: #b00020;
    border-bottom-color: var(--mdc-theme-error, #b00020)
}

.mdc-select--invalid:not(.mdc-select--disabled) .mdc-line-ripple::after {
    border-bottom-color: #b00020;
    border-bottom-color: var(--mdc-theme-error, #b00020)
}

.mdc-select--outlined {
    border: none
}

    .mdc-select--outlined .mdc-select__anchor {
        height: 56px
    }

        .mdc-select--outlined .mdc-select__anchor .mdc-floating-label--float-above {
            transform: translateY(-37.25px) scale(1)
        }

        .mdc-select--outlined .mdc-select__anchor .mdc-floating-label--float-above {
            font-size: .75rem
        }

        .mdc-select--outlined .mdc-select__anchor.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-select--outlined .mdc-select__anchor .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
            transform: translateY(-34.75px) scale(0.75)
        }

        .mdc-select--outlined .mdc-select__anchor.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-select--outlined .mdc-select__anchor .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
            font-size: 1rem
        }

        .mdc-select--outlined .mdc-select__anchor .mdc-floating-label--shake {
            -webkit-animation: mdc-floating-label-shake-float-above-select-outlined-56px 250ms 1;
            animation: mdc-floating-label-shake-float-above-select-outlined-56px 250ms 1
        }

@-webkit-keyframes mdc-floating-label-shake-float-above-select-outlined-56px {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)
    }
}

@keyframes mdc-floating-label-shake-float-above-select-outlined-56px {
    0% {
        transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)
    }
}

.mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__leading {
    border-top-left-radius: 4px;
    border-top-left-radius: var(--mdc-shape-small, 4px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-left-radius: var(--mdc-shape-small, 4px)
}

    [dir=rtl] .mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__leading, .mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl] {
        border-top-left-radius: 0;
        border-top-right-radius: 4px;
        border-top-right-radius: var(--mdc-shape-small, 4px);
        border-bottom-right-radius: 4px;
        border-bottom-right-radius: var(--mdc-shape-small, 4px);
        border-bottom-left-radius: 0
    }

@supports(top: max(0%)) {
    .mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__leading {
        width: max(12px, var(--mdc-shape-small, 4px))
    }
}

@supports(top: max(0%)) {
    .mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__notch {
        max-width: calc(100% - max(12px, var(--mdc-shape-small, 4px)) * 2)
    }
}

.mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__trailing {
    border-top-left-radius: 0;
    border-top-right-radius: 4px;
    border-top-right-radius: var(--mdc-shape-small, 4px);
    border-bottom-right-radius: 4px;
    border-bottom-right-radius: var(--mdc-shape-small, 4px);
    border-bottom-left-radius: 0
}

    [dir=rtl] .mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__trailing, .mdc-select--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl] {
        border-top-left-radius: 4px;
        border-top-left-radius: var(--mdc-shape-small, 4px);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 4px;
        border-bottom-left-radius: var(--mdc-shape-small, 4px)
    }

@supports(top: max(0%)) {
    .mdc-select--outlined .mdc-select__anchor {
        padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

[dir=rtl] .mdc-select--outlined .mdc-select__anchor, .mdc-select--outlined .mdc-select__anchor[dir=rtl] {
    padding-left: 0
}

@supports(top: max(0%)) {
    [dir=rtl] .mdc-select--outlined .mdc-select__anchor, .mdc-select--outlined .mdc-select__anchor[dir=rtl] {
        padding-right: max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

@supports(top: max(0%)) {
    .mdc-select--outlined + .mdc-select-helper-text {
        margin-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

[dir=rtl] .mdc-select--outlined + .mdc-select-helper-text, .mdc-select--outlined + .mdc-select-helper-text[dir=rtl] {
    margin-left: 0
}

@supports(top: max(0%)) {
    [dir=rtl] .mdc-select--outlined + .mdc-select-helper-text, .mdc-select--outlined + .mdc-select-helper-text[dir=rtl] {
        margin-right: max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

.mdc-select--outlined:not(.mdc-select--disabled) .mdc-select__anchor {
    background-color: transparent
}

.mdc-select--outlined.mdc-select--disabled .mdc-select__anchor {
    background-color: transparent
}

.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__leading, .mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__notch, .mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__trailing {
    border-color: rgba(0, 0, 0, 0.38)
}

.mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__anchor:hover .mdc-notched-outline .mdc-notched-outline__leading, .mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__anchor:hover .mdc-notched-outline .mdc-notched-outline__notch, .mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__anchor:hover .mdc-notched-outline .mdc-notched-outline__trailing {
    border-color: rgba(0, 0, 0, 0.87)
}

.mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__leading, .mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__notch, .mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__trailing {
    border-width: 2px
}

.mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__leading, .mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__notch, .mdc-select--outlined:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__trailing {
    border-color: #6200ee;
    border-color: var(--mdc-theme-primary, #6200ee)
}

.mdc-select--outlined.mdc-select--disabled .mdc-notched-outline__leading, .mdc-select--outlined.mdc-select--disabled .mdc-notched-outline__notch, .mdc-select--outlined.mdc-select--disabled .mdc-notched-outline__trailing {
    border-color: rgba(0, 0, 0, 0.06)
}

.mdc-select--outlined .mdc-select__anchor :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch {
    max-width: calc(100% - 60px)
}

.mdc-select--outlined .mdc-select__anchor {
    display: flex;
    align-items: baseline;
    overflow: visible
}

    .mdc-select--outlined .mdc-select__anchor .mdc-floating-label--shake {
        -webkit-animation: mdc-floating-label-shake-float-above-select-outlined 250ms 1;
        animation: mdc-floating-label-shake-float-above-select-outlined 250ms 1
    }

    .mdc-select--outlined .mdc-select__anchor .mdc-floating-label--float-above {
        transform: translateY(-37.25px) scale(1)
    }

    .mdc-select--outlined .mdc-select__anchor .mdc-floating-label--float-above {
        font-size: .75rem
    }

    .mdc-select--outlined .mdc-select__anchor.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-select--outlined .mdc-select__anchor .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
        transform: translateY(-34.75px) scale(0.75)
    }

    .mdc-select--outlined .mdc-select__anchor.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-select--outlined .mdc-select__anchor .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
        font-size: 1rem
    }

    .mdc-select--outlined .mdc-select__anchor .mdc-notched-outline--notched .mdc-notched-outline__notch {
        padding-top: 1px
    }

    .mdc-select--outlined .mdc-select__anchor .mdc-select__selected-text::before {
        content: "​"
    }

    .mdc-select--outlined .mdc-select__anchor .mdc-select__selected-text-container {
        height: 100%;
        display: inline-flex;
        align-items: center
    }

    .mdc-select--outlined .mdc-select__anchor::before {
        display: none
    }

.mdc-select--outlined .mdc-select__selected-text-container {
    display: flex;
    border: none;
    z-index: 1;
    background-color: transparent
}

.mdc-select--outlined .mdc-select__icon {
    z-index: 2
}

.mdc-select--outlined .mdc-floating-label {
    line-height: 1.15rem;
    left: 4px;
    right: initial
}

    [dir=rtl] .mdc-select--outlined .mdc-floating-label, .mdc-select--outlined .mdc-floating-label[dir=rtl] {
        left: initial;
        right: 4px
    }

.mdc-select--outlined.mdc-select--focused .mdc-notched-outline--notched .mdc-notched-outline__notch {
    padding-top: 2px
}

.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled) .mdc-notched-outline__leading, .mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled) .mdc-notched-outline__notch, .mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled) .mdc-notched-outline__trailing {
    border-color: #b00020;
    border-color: var(--mdc-theme-error, #b00020)
}

.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__anchor:hover .mdc-notched-outline .mdc-notched-outline__leading, .mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__anchor:hover .mdc-notched-outline .mdc-notched-outline__notch, .mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled):not(.mdc-select--focused) .mdc-select__anchor:hover .mdc-notched-outline .mdc-notched-outline__trailing {
    border-color: #b00020;
    border-color: var(--mdc-theme-error, #b00020)
}

.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__leading, .mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__notch, .mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__trailing {
    border-width: 2px
}

.mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__leading, .mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__notch, .mdc-select--outlined.mdc-select--invalid:not(.mdc-select--disabled).mdc-select--focused .mdc-notched-outline .mdc-notched-outline__trailing {
    border-color: #b00020;
    border-color: var(--mdc-theme-error, #b00020)
}

.mdc-select--outlined.mdc-select--with-leading-icon .mdc-floating-label {
    left: 36px;
    right: initial
}

    [dir=rtl] .mdc-select--outlined.mdc-select--with-leading-icon .mdc-floating-label, .mdc-select--outlined.mdc-select--with-leading-icon .mdc-floating-label[dir=rtl] {
        left: initial;
        right: 36px
    }

.mdc-select--outlined.mdc-select--with-leading-icon .mdc-floating-label--float-above {
    transform: translateY(-37.25px) translateX(-32px) scale(1)
}

    [dir=rtl] .mdc-select--outlined.mdc-select--with-leading-icon .mdc-floating-label--float-above, .mdc-select--outlined.mdc-select--with-leading-icon .mdc-floating-label--float-above[dir=rtl] {
        transform: translateY(-37.25px) translateX(32px) scale(1)
    }

.mdc-select--outlined.mdc-select--with-leading-icon .mdc-floating-label--float-above {
    font-size: .75rem
}

.mdc-select--outlined.mdc-select--with-leading-icon.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-select--outlined.mdc-select--with-leading-icon .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
    transform: translateY(-34.75px) translateX(-32px) scale(0.75)
}

    [dir=rtl] .mdc-select--outlined.mdc-select--with-leading-icon.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-select--outlined.mdc-select--with-leading-icon.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl], [dir=rtl] .mdc-select--outlined.mdc-select--with-leading-icon .mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-select--outlined.mdc-select--with-leading-icon .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl] {
        transform: translateY(-34.75px) translateX(32px) scale(0.75)
    }

.mdc-select--outlined.mdc-select--with-leading-icon.mdc-notched-outline--upgraded .mdc-floating-label--float-above, .mdc-select--outlined.mdc-select--with-leading-icon .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
    font-size: 1rem
}

.mdc-select--outlined.mdc-select--with-leading-icon .mdc-floating-label--shake {
    -webkit-animation: mdc-floating-label-shake-float-above-select-outlined-leading-icon-56px 250ms 1;
    animation: mdc-floating-label-shake-float-above-select-outlined-leading-icon-56px 250ms 1
}

@-webkit-keyframes mdc-floating-label-shake-float-above-select-outlined-leading-icon-56px {
    0% {
        transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 32px)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 32px)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)
    }
}

@keyframes mdc-floating-label-shake-float-above-select-outlined-leading-icon-56px {
    0% {
        transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 32px)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 32px)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)
    }
}

[dir=rtl] .mdc-select--outlined.mdc-select--with-leading-icon .mdc-floating-label--shake, .mdc-select--outlined.mdc-select--with-leading-icon[dir=rtl] .mdc-floating-label--shake {
    -webkit-animation: mdc-floating-label-shake-float-above-select-outlined-leading-icon-56px 250ms 1;
    animation: mdc-floating-label-shake-float-above-select-outlined-leading-icon-56px 250ms 1
}

@-webkit-keyframes mdc-floating-label-shake-float-above-select-outlined-leading-icon-56px-rtl {
    0% {
        transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - -32px)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - -32px)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)
    }
}

@keyframes mdc-floating-label-shake-float-above-select-outlined-leading-icon-56px-rtl {
    0% {
        transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)
    }

    33% {
        -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - -32px)) translateY(-34.75px) scale(0.75)
    }

    66% {
        -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - -32px)) translateY(-34.75px) scale(0.75)
    }

    100% {
        transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)
    }
}

.mdc-select--outlined.mdc-select--with-leading-icon .mdc-select__anchor :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch {
    max-width: calc(100% - 96px)
}

.mdc-select--outlined .mdc-menu-surface {
    margin-bottom: 8px
}

.mdc-select--outlined.mdc-select--no-label .mdc-menu-surface, .mdc-select--outlined .mdc-menu-surface--is-open-below {
    margin-bottom: 0
}

.mdc-select__anchor {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

    .mdc-select__anchor .mdc-select__ripple::before, .mdc-select__anchor .mdc-select__ripple::after {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: ""
    }

    .mdc-select__anchor .mdc-select__ripple::before {
        transition: opacity 15ms linear,background-color 15ms linear;
        z-index: 1;
        z-index: var(--mdc-ripple-z-index, 1)
    }

    .mdc-select__anchor .mdc-select__ripple::after {
        z-index: 0;
        z-index: var(--mdc-ripple-z-index, 0)
    }

    .mdc-select__anchor.mdc-ripple-upgraded .mdc-select__ripple::before {
        transform: scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-select__anchor.mdc-ripple-upgraded .mdc-select__ripple::after {
        top: 0;
        left: 0;
        transform: scale(0);
        transform-origin: center center
    }

    .mdc-select__anchor.mdc-ripple-upgraded--unbounded .mdc-select__ripple::after {
        top: var(--mdc-ripple-top, 0);
        left: var(--mdc-ripple-left, 0)
    }

    .mdc-select__anchor.mdc-ripple-upgraded--foreground-activation .mdc-select__ripple::after {
        -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;
        animation: mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards
    }

    .mdc-select__anchor.mdc-ripple-upgraded--foreground-deactivation .mdc-select__ripple::after {
        -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
        animation: mdc-ripple-fg-opacity-out 150ms;
        transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1))
    }

    .mdc-select__anchor .mdc-select__ripple::before, .mdc-select__anchor .mdc-select__ripple::after {
        top: calc(50% - 100%);
        left: calc(50% - 100%);
        width: 200%;
        height: 200%
    }

    .mdc-select__anchor.mdc-ripple-upgraded .mdc-select__ripple::after {
        width: var(--mdc-ripple-fg-size, 100%);
        height: var(--mdc-ripple-fg-size, 100%)
    }

    .mdc-select__anchor .mdc-select__ripple::before, .mdc-select__anchor .mdc-select__ripple::after {
        background-color: rgba(0, 0, 0, 0.87);
        background-color: var(--mdc-ripple-color, rgba(0, 0, 0, 0.87))
    }

    .mdc-select__anchor:hover .mdc-select__ripple::before, .mdc-select__anchor.mdc-ripple-surface--hover .mdc-select__ripple::before {
        opacity: 0.04;
        opacity: var(--mdc-ripple-hover-opacity, 0.04)
    }

    .mdc-select__anchor.mdc-ripple-upgraded--background-focused .mdc-select__ripple::before, .mdc-select__anchor:not(.mdc-ripple-upgraded):focus .mdc-select__ripple::before {
        transition-duration: 75ms;
        opacity: 0.12;
        opacity: var(--mdc-ripple-focus-opacity, 0.12)
    }

    .mdc-select__anchor .mdc-select__ripple {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none
    }

.mdc-select__menu .mdc-list .mdc-list-item--selected .mdc-list-item__ripple::before, .mdc-select__menu .mdc-list .mdc-list-item--selected .mdc-list-item__ripple::after {
    background-color: #000;
    background-color: var(--mdc-ripple-color, var(--mdc-theme-on-surface, #000))
}

.mdc-select__menu .mdc-list .mdc-list-item--selected:hover .mdc-list-item__ripple::before, .mdc-select__menu .mdc-list .mdc-list-item--selected.mdc-ripple-surface--hover .mdc-list-item__ripple::before {
    opacity: 0.04;
    opacity: var(--mdc-ripple-hover-opacity, 0.04)
}

.mdc-select__menu .mdc-list .mdc-list-item--selected.mdc-ripple-upgraded--background-focused .mdc-list-item__ripple::before, .mdc-select__menu .mdc-list .mdc-list-item--selected:not(.mdc-ripple-upgraded):focus .mdc-list-item__ripple::before {
    transition-duration: 75ms;
    opacity: 0.12;
    opacity: var(--mdc-ripple-focus-opacity, 0.12)
}

.mdc-select__menu .mdc-list .mdc-list-item--selected:not(.mdc-ripple-upgraded) .mdc-list-item__ripple::after {
    transition: opacity 150ms linear
}

.mdc-select__menu .mdc-list .mdc-list-item--selected:not(.mdc-ripple-upgraded):active .mdc-list-item__ripple::after {
    transition-duration: 75ms;
    opacity: 0.12;
    opacity: var(--mdc-ripple-press-opacity, 0.12)
}

.mdc-select__menu .mdc-list .mdc-list-item--selected.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12)
}

.mdc-select-helper-text {
    margin: 0;
    margin-left: 16px;
    margin-right: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.75rem;
    font-size: var(--mdc-typography-caption-font-size, 0.75rem);
    line-height: 1.25rem;
    line-height: var(--mdc-typography-caption-line-height, 1.25rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-caption-font-weight, 400);
    letter-spacing: 0.0333333333em;
    letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-caption-text-transform, inherit);
    display: block;
    margin-top: 0;
    line-height: normal
}

    [dir=rtl] .mdc-select-helper-text, .mdc-select-helper-text[dir=rtl] {
        margin-left: 16px;
        margin-right: 16px
    }

    .mdc-select-helper-text::before {
        display: inline-block;
        width: 0;
        height: 16px;
        content: "";
        vertical-align: 0
    }

.mdc-select-helper-text--validation-msg {
    opacity: 0;
    transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)
}

.mdc-select--invalid + .mdc-select-helper-text--validation-msg, .mdc-select-helper-text--validation-msg-persistent {
    opacity: 1
}

.mdc-select--with-leading-icon .mdc-select__icon {
    display: inline-block;
    box-sizing: border-box;
    border: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    flex-shrink: 0;
    align-self: center;
    background-color: transparent;
    fill: currentColor
}

.mdc-select--with-leading-icon .mdc-select__icon {
    margin-left: 12px;
    margin-right: 12px
}

    [dir=rtl] .mdc-select--with-leading-icon .mdc-select__icon, .mdc-select--with-leading-icon .mdc-select__icon[dir=rtl] {
        margin-left: 12px;
        margin-right: 12px
    }

.mdc-select__icon:not([tabindex]), .mdc-select__icon[tabindex="-1"] {
    cursor: default;
    pointer-events: none
}

.mdc-dialog, .mdc-dialog__scrim {
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%
}

.mdc-dialog {
    display: none;
    z-index: 7;
    z-index: var(--mdc-dialog-z-index, 7)
}

    .mdc-dialog .mdc-dialog__surface {
        background-color: #fff;
        background-color: var(--mdc-theme-surface, #fff)
    }

    .mdc-dialog .mdc-dialog__scrim {
        background-color: rgba(0,0,0,.32)
    }

    .mdc-dialog .mdc-dialog__title {
        color: rgba(0,0,0,.87)
    }

    .mdc-dialog .mdc-dialog__content {
        color: rgba(0,0,0,.6)
    }

    .mdc-dialog.mdc-dialog--scrollable .mdc-dialog__title, .mdc-dialog.mdc-dialog--scrollable .mdc-dialog__actions, .mdc-dialog.mdc-dialog--scrollable.mdc-dialog-scroll-divider-footer .mdc-dialog__actions {
        border-color: rgba(0,0,0,.12)
    }

    .mdc-dialog.mdc-dialog-scroll-divider-header.mdc-dialog--fullscreen .mdc-dialog__header {
        box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0,0,0,.12)
    }

    .mdc-dialog .mdc-dialog__content {
        padding: 20px 24px 20px 24px
    }

    .mdc-dialog .mdc-dialog__surface {
        min-width: 280px
    }

@media(max-width: 592px) {
    .mdc-dialog .mdc-dialog__surface {
        max-width: calc(100vw - 32px)
    }
}

@media(min-width: 592px) {
    .mdc-dialog .mdc-dialog__surface {
        max-width: 560px
    }
}

.mdc-dialog .mdc-dialog__surface {
    max-height: calc(100% - 32px)
}

.mdc-dialog .mdc-dialog__surface {
    border-radius: 4px;
    border-radius: var(--mdc-shape-medium, 4px)
}

@media(max-width: 960px)and (max-height: 1440px) {
    .mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface {
        max-height: 560px;
        max-width: 560px
    }
}

@media(max-width: 720px)and (max-height: 1023px)and (max-width: 672px) {
    .mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface {
        max-width: calc(100vw - 112px)
    }
}

@media(max-width: 720px)and (max-height: 1023px)and (min-width: 672px) {
    .mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface {
        max-width: 560px
    }
}

@media(max-width: 720px)and (max-height: 1023px)and (max-height: 720px) {
    .mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface {
        max-height: calc(100vh - 160px)
    }
}

@media(max-width: 720px)and (max-height: 1023px)and (min-height: 720px) {
    .mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface {
        max-height: 560px
    }
}

@media(max-width: 720px)and (max-height: 400px) {
    .mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface {
        max-width: 100vw;
        width: 100vw;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0
    }
}

@media(max-width: 600px)and (max-height: 960px) {
    .mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface {
        max-width: 100vw;
        width: 100vw;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0
    }
}

@media(min-width: 960px)and (min-height: 1440px) {
    .mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface {
        max-width: calc(100vw - 400px)
    }
}

.mdc-dialog__scrim {
    opacity: 0;
    z-index: -1
}

.mdc-dialog__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
    height: 100%;
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none
}

.mdc-dialog__surface {
    position: relative;
    box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
    pointer-events: auto;
    overflow-y: auto
}

    .mdc-dialog__surface .mdc-elevation-overlay {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0
    }

.mdc-dialog[dir=rtl] .mdc-dialog__surface, [dir=rtl] .mdc-dialog .mdc-dialog__surface {
    text-align: right
}

.mdc-dialog__title {
    display: block;
    margin-top: 0;
    line-height: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-headline6-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1.25rem;
    font-size: var(--mdc-typography-headline6-font-size, 1.25rem);
    line-height: 2rem;
    line-height: var(--mdc-typography-headline6-line-height, 2rem);
    font-weight: 500;
    font-weight: var(--mdc-typography-headline6-font-weight, 500);
    letter-spacing: 0.0125em;
    letter-spacing: var(--mdc-typography-headline6-letter-spacing, 0.0125em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-headline6-text-decoration, inherit);
    text-decoration: var(--mdc-typography-headline6-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-headline6-text-transform, inherit);
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0 24px 9px;
    border-bottom: 1px solid transparent
}

    .mdc-dialog__title::before {
        display: inline-block;
        width: 0;
        height: 40px;
        content: "";
        vertical-align: 0
    }

.mdc-dialog[dir=rtl] .mdc-dialog__title, [dir=rtl] .mdc-dialog .mdc-dialog__title {
    text-align: right
}

.mdc-dialog--scrollable .mdc-dialog__title {
    padding-bottom: 15px
}

.mdc-dialog--fullscreen .mdc-dialog__header {
    display: inline-flex;
    padding: 0 16px 9px;
    border-bottom: 1px solid transparent;
    justify-content: space-between;
    align-items: baseline
}

.mdc-dialog--fullscreen .mdc-dialog__title {
    padding: 0;
    border-bottom: 0
}

.mdc-dialog--fullscreen .mdc-dialog__close {
    width: 24px;
    height: 24px;
    padding: 0px
}

.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions {
    border-top: 1px solid transparent
}

.mdc-dialog__content {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 1rem;
    font-size: var(--mdc-typography-body1-font-size, 1rem);
    line-height: 1.5rem;
    line-height: var(--mdc-typography-body1-line-height, 1.5rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-body1-font-weight, 400);
    letter-spacing: 0.03125em;
    letter-spacing: var(--mdc-typography-body1-letter-spacing, 0.03125em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-body1-text-decoration, inherit);
    text-decoration: var(--mdc-typography-body1-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-body1-text-transform, inherit);
    flex-grow: 1;
    box-sizing: border-box;
    margin: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

    .mdc-dialog__content > :first-child {
        margin-top: 0
    }

    .mdc-dialog__content > :last-child {
        margin-bottom: 0
    }

.mdc-dialog__title + .mdc-dialog__content {
    padding-top: 0
}

.mdc-dialog--scrollable .mdc-dialog__title + .mdc-dialog__content {
    padding-top: 8px;
    padding-bottom: 8px
}

.mdc-dialog__content .mdc-list:first-child:last-child {
    padding: 6px 0 0
}

.mdc-dialog--scrollable .mdc-dialog__content .mdc-list:first-child:last-child {
    padding: 0
}

.mdc-dialog__actions {
    display: flex;
    position: relative;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    min-height: 52px;
    margin: 0;
    padding: 8px;
    border-top: 1px solid transparent
}

.mdc-dialog--stacked .mdc-dialog__actions {
    flex-direction: column;
    align-items: flex-end
}

.mdc-dialog__button {
    margin-left: 8px;
    margin-right: 0;
    max-width: 100%;
    text-align: right
}

    [dir=rtl] .mdc-dialog__button, .mdc-dialog__button[dir=rtl] {
        margin-left: 0;
        margin-right: 8px
    }

    .mdc-dialog__button:first-child {
        margin-left: 0;
        margin-right: 0
    }

        [dir=rtl] .mdc-dialog__button:first-child, .mdc-dialog__button:first-child[dir=rtl] {
            margin-left: 0;
            margin-right: 0
        }

.mdc-dialog[dir=rtl] .mdc-dialog__button, [dir=rtl] .mdc-dialog .mdc-dialog__button {
    text-align: left
}

.mdc-dialog--stacked .mdc-dialog__button:not(:first-child) {
    margin-top: 12px
}

.mdc-dialog--open, .mdc-dialog--opening, .mdc-dialog--closing {
    display: flex
}

    .mdc-dialog--opening .mdc-dialog__scrim {
        transition: opacity 150ms linear
    }

    .mdc-dialog--opening .mdc-dialog__container {
        transition: opacity 75ms linear,transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)
    }

    .mdc-dialog--closing .mdc-dialog__scrim, .mdc-dialog--closing .mdc-dialog__container {
        transition: opacity 75ms linear
    }

    .mdc-dialog--closing .mdc-dialog__container {
        transform: none
    }

    .mdc-dialog--open .mdc-dialog__scrim {
        opacity: 1
    }

    .mdc-dialog--open .mdc-dialog__container {
        transform: none;
        opacity: 1
    }

.mdc-dialog-scroll-lock {
    overflow: hidden
}

.mdc-snackbar {
    z-index: 8;
    margin: 8px;
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    pointer-events: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

.mdc-snackbar__surface {
    background-color: #333333
}

.mdc-snackbar__label {
    color: rgba(255, 255, 255, 0.87)
}

.mdc-snackbar__surface {
    min-width: 344px
}

@media(max-width: 480px),(max-width: 344px) {
    .mdc-snackbar__surface {
        min-width: 100%
    }
}

.mdc-snackbar__surface {
    max-width: 672px
}

.mdc-snackbar__surface {
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0,0,0,.12)
}

.mdc-snackbar__surface {
    border-radius: 4px;
    border-radius: var(--mdc-shape-small, 4px)
}

.mdc-snackbar--opening, .mdc-snackbar--open, .mdc-snackbar--closing {
    display: flex
}

    .mdc-snackbar--open .mdc-snackbar__label, .mdc-snackbar--open .mdc-snackbar__actions {
        visibility: visible
    }

.mdc-snackbar--leading {
    justify-content: flex-start
}

.mdc-snackbar--stacked .mdc-snackbar__label {
    padding-left: 16px;
    padding-right: 8px;
    padding-bottom: 12px
}

    [dir=rtl] .mdc-snackbar--stacked .mdc-snackbar__label, .mdc-snackbar--stacked .mdc-snackbar__label[dir=rtl] {
        padding-left: 8px;
        padding-right: 16px
    }

.mdc-snackbar--stacked .mdc-snackbar__surface {
    flex-direction: column;
    align-items: flex-start
}

.mdc-snackbar--stacked .mdc-snackbar__actions {
    align-self: flex-end;
    margin-bottom: 8px
}

.mdc-snackbar__surface {
    padding-left: 0;
    padding-right: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    transform: scale(0.8);
    opacity: 0
}

    .mdc-snackbar__surface::before {
        position: absolute;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border: 1px solid transparent;
        border-radius: inherit;
        content: ""
    }

    [dir=rtl] .mdc-snackbar__surface, .mdc-snackbar__surface[dir=rtl] {
        padding-left: 8px;
        padding-right: 0
    }

.mdc-snackbar--open .mdc-snackbar__surface {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
    transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)
}

.mdc-snackbar--closing .mdc-snackbar__surface {
    transform: scale(1);
    transition: opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1)
}

.mdc-snackbar__label {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 0.875rem;
    font-size: var(--mdc-typography-body2-font-size, 0.875rem);
    line-height: 1.25rem;
    line-height: var(--mdc-typography-body2-line-height, 1.25rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-body2-font-weight, 400);
    letter-spacing: 0.0178571429em;
    letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
    text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-body2-text-transform, inherit);
    padding-left: 16px;
    padding-right: 8px;
    width: 100%;
    flex-grow: 1;
    box-sizing: border-box;
    margin: 0;
    visibility: hidden;
    padding-top: 14px;
    padding-bottom: 14px
}

    [dir=rtl] .mdc-snackbar__label, .mdc-snackbar__label[dir=rtl] {
        padding-left: 8px;
        padding-right: 16px
    }

    .mdc-snackbar__label::before {
        display: inline;
        content: attr(data-mdc-snackbar-label-text)
    }

.mdc-snackbar__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    box-sizing: border-box;
    visibility: hidden
}

.mdc-snackbar__action:not(:disabled) {
    color: #bb86fc
}

.mdc-snackbar__action::before, .mdc-snackbar__action::after {
    background-color: #bb86fc;
    background-color: var(--mdc-ripple-color, #bb86fc)
}

.mdc-snackbar__action:hover::before, .mdc-snackbar__action.mdc-ripple-surface--hover::before {
    opacity: 0.08;
    opacity: var(--mdc-ripple-hover-opacity, 0.08)
}

.mdc-snackbar__action.mdc-ripple-upgraded--background-focused::before, .mdc-snackbar__action:not(.mdc-ripple-upgraded):focus::before {
    transition-duration: 75ms;
    opacity: 0.24;
    opacity: var(--mdc-ripple-focus-opacity, 0.24)
}

.mdc-snackbar__action:not(.mdc-ripple-upgraded)::after {
    transition: opacity 150ms linear
}

.mdc-snackbar__action:not(.mdc-ripple-upgraded):active::after {
    transition-duration: 75ms;
    opacity: 0.24;
    opacity: var(--mdc-ripple-press-opacity, 0.24)
}

.mdc-snackbar__action.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24)
}

.mdc-snackbar__dismiss {
    color: rgba(255, 255, 255, 0.87)
}

    .mdc-snackbar__dismiss::before, .mdc-snackbar__dismiss::after {
        background-color: rgba(255, 255, 255, 0.87);
        background-color: var(--mdc-ripple-color, rgba(255, 255, 255, 0.87))
    }

    .mdc-snackbar__dismiss:hover::before, .mdc-snackbar__dismiss.mdc-ripple-surface--hover::before {
        opacity: 0.08;
        opacity: var(--mdc-ripple-hover-opacity, 0.08)
    }

    .mdc-snackbar__dismiss.mdc-ripple-upgraded--background-focused::before, .mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):focus::before {
        transition-duration: 75ms;
        opacity: 0.24;
        opacity: var(--mdc-ripple-focus-opacity, 0.24)
    }

    .mdc-snackbar__dismiss:not(.mdc-ripple-upgraded)::after {
        transition: opacity 150ms linear
    }

    .mdc-snackbar__dismiss:not(.mdc-ripple-upgraded):active::after {
        transition-duration: 75ms;
        opacity: 0.24;
        opacity: var(--mdc-ripple-press-opacity, 0.24)
    }

    .mdc-snackbar__dismiss.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24)
    }

    .mdc-snackbar__dismiss.mdc-snackbar__dismiss {
        width: 36px;
        height: 36px;
        padding: 9px;
        font-size: 18px
    }

        .mdc-snackbar__dismiss.mdc-snackbar__dismiss svg, .mdc-snackbar__dismiss.mdc-snackbar__dismiss img {
            width: 18px;
            height: 18px
        }

.mdc-snackbar__action + .mdc-snackbar__dismiss {
    margin-left: 8px;
    margin-right: 0
}

    [dir=rtl] .mdc-snackbar__action + .mdc-snackbar__dismiss, .mdc-snackbar__action + .mdc-snackbar__dismiss[dir=rtl] {
        margin-left: 0;
        margin-right: 8px
    }

.mdc-circular-progress__determinate-circle, .mdc-circular-progress__indeterminate-circle-graphic {
    stroke: #6200ee;
    stroke: var(--mdc-theme-primary, #6200ee)
}

.mdc-circular-progress__determinate-track {
    stroke: transparent
}

@-webkit-keyframes mdc-circular-progress-container-rotate {
    to {
        transform: rotate(360deg)
    }
}

@keyframes mdc-circular-progress-container-rotate {
    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes mdc-circular-progress-spinner-layer-rotate {
    12.5% {
        transform: rotate(135deg)
    }

    25% {
        transform: rotate(270deg)
    }

    37.5% {
        transform: rotate(405deg)
    }

    50% {
        transform: rotate(540deg)
    }

    62.5% {
        transform: rotate(675deg)
    }

    75% {
        transform: rotate(810deg)
    }

    87.5% {
        transform: rotate(945deg)
    }

    100% {
        transform: rotate(1080deg)
    }
}

@keyframes mdc-circular-progress-spinner-layer-rotate {
    12.5% {
        transform: rotate(135deg)
    }

    25% {
        transform: rotate(270deg)
    }

    37.5% {
        transform: rotate(405deg)
    }

    50% {
        transform: rotate(540deg)
    }

    62.5% {
        transform: rotate(675deg)
    }

    75% {
        transform: rotate(810deg)
    }

    87.5% {
        transform: rotate(945deg)
    }

    100% {
        transform: rotate(1080deg)
    }
}

@-webkit-keyframes mdc-circular-progress-color-1-fade-in-out {
    from {
        opacity: .99
    }

    25% {
        opacity: .99
    }

    26% {
        opacity: 0
    }

    89% {
        opacity: 0
    }

    90% {
        opacity: .99
    }

    to {
        opacity: .99
    }
}

@keyframes mdc-circular-progress-color-1-fade-in-out {
    from {
        opacity: .99
    }

    25% {
        opacity: .99
    }

    26% {
        opacity: 0
    }

    89% {
        opacity: 0
    }

    90% {
        opacity: .99
    }

    to {
        opacity: .99
    }
}

@-webkit-keyframes mdc-circular-progress-color-2-fade-in-out {
    from {
        opacity: 0
    }

    15% {
        opacity: 0
    }

    25% {
        opacity: .99
    }

    50% {
        opacity: .99
    }

    51% {
        opacity: 0
    }

    to {
        opacity: 0
    }
}

@keyframes mdc-circular-progress-color-2-fade-in-out {
    from {
        opacity: 0
    }

    15% {
        opacity: 0
    }

    25% {
        opacity: .99
    }

    50% {
        opacity: .99
    }

    51% {
        opacity: 0
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes mdc-circular-progress-color-3-fade-in-out {
    from {
        opacity: 0
    }

    40% {
        opacity: 0
    }

    50% {
        opacity: .99
    }

    75% {
        opacity: .99
    }

    76% {
        opacity: 0
    }

    to {
        opacity: 0
    }
}

@keyframes mdc-circular-progress-color-3-fade-in-out {
    from {
        opacity: 0
    }

    40% {
        opacity: 0
    }

    50% {
        opacity: .99
    }

    75% {
        opacity: .99
    }

    76% {
        opacity: 0
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes mdc-circular-progress-color-4-fade-in-out {
    from {
        opacity: 0
    }

    65% {
        opacity: 0
    }

    75% {
        opacity: .99
    }

    90% {
        opacity: .99
    }

    to {
        opacity: 0
    }
}

@keyframes mdc-circular-progress-color-4-fade-in-out {
    from {
        opacity: 0
    }

    65% {
        opacity: 0
    }

    75% {
        opacity: .99
    }

    90% {
        opacity: .99
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes mdc-circular-progress-left-spin {
    from {
        transform: rotate(265deg)
    }

    50% {
        transform: rotate(130deg)
    }

    to {
        transform: rotate(265deg)
    }
}

@keyframes mdc-circular-progress-left-spin {
    from {
        transform: rotate(265deg)
    }

    50% {
        transform: rotate(130deg)
    }

    to {
        transform: rotate(265deg)
    }
}

@-webkit-keyframes mdc-circular-progress-right-spin {
    from {
        transform: rotate(-265deg)
    }

    50% {
        transform: rotate(-130deg)
    }

    to {
        transform: rotate(-265deg)
    }
}

@keyframes mdc-circular-progress-right-spin {
    from {
        transform: rotate(-265deg)
    }

    50% {
        transform: rotate(-130deg)
    }

    to {
        transform: rotate(-265deg)
    }
}

.mdc-circular-progress {
    display: inline-flex;
    position: relative;
    direction: ltr;
    transition: opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)
}

.mdc-circular-progress__determinate-container, .mdc-circular-progress__indeterminate-circle-graphic, .mdc-circular-progress__indeterminate-container, .mdc-circular-progress__spinner-layer {
    position: absolute;
    width: 100%;
    height: 100%
}

.mdc-circular-progress__determinate-container {
    transform: rotate(-90deg)
}

.mdc-circular-progress__indeterminate-container {
    font-size: 0;
    letter-spacing: 0;
    white-space: nowrap;
    opacity: 0
}

.mdc-circular-progress__determinate-circle-graphic, .mdc-circular-progress__indeterminate-circle-graphic {
    fill: transparent
}

.mdc-circular-progress__determinate-circle {
    transition: stroke-dashoffset 500ms 0ms cubic-bezier(0, 0, 0.2, 1)
}

.mdc-circular-progress__gap-patch {
    position: absolute;
    top: 0;
    left: 47.5%;
    box-sizing: border-box;
    width: 5%;
    height: 100%;
    overflow: hidden
}

    .mdc-circular-progress__gap-patch .mdc-circular-progress__indeterminate-circle-graphic {
        left: -900%;
        width: 2000%;
        transform: rotate(180deg)
    }

.mdc-circular-progress__circle-clipper {
    display: inline-flex;
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden
}

    .mdc-circular-progress__circle-clipper .mdc-circular-progress__indeterminate-circle-graphic {
        width: 200%
    }

.mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic {
    left: -100%
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__determinate-container {
    opacity: 0
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container {
    opacity: 1
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container {
    -webkit-animation: mdc-circular-progress-container-rotate 1568.2352941176ms linear infinite;
    animation: mdc-circular-progress-container-rotate 1568.2352941176ms linear infinite
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer {
    -webkit-animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__color-1 {
    -webkit-animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__color-2 {
    -webkit-animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__color-3 {
    -webkit-animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__color-4 {
    -webkit-animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic {
    -webkit-animation: mdc-circular-progress-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: mdc-circular-progress-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic {
    -webkit-animation: mdc-circular-progress-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: mdc-circular-progress-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both
}

.mdc-circular-progress--closed {
    opacity: 0
}

.mdc-text-field-helper-text {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-family: var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
    font-size: 12px;
    line-height: 1.25rem;
    line-height: var(--mdc-typography-caption-line-height, 1.25rem);
    font-weight: 400;
    font-weight: var(--mdc-typography-caption-font-weight, 400);
    letter-spacing: 0.0333333333em;
    letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
    text-decoration: inherit;
    -webkit-text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
    text-transform: inherit;
    text-transform: var(--mdc-typography-caption-text-transform, inherit);
    display: block;
    margin-top: 0;
    line-height: normal;
    margin: 0;
    opacity: 0;
    will-change: opacity;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

    .mdc-text-field-helper-text::before {
        display: inline-block;
        width: 0;
        height: 16px;
        content: "";
        vertical-align: 0
    }

.mdc-text-field-helper-text--persistent {
    transition: none;
    opacity: 1;
    will-change: initial
}

@font-face {
    font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/material-icons/MaterialIcons-Regular.eot");
    src: local("Material Icons"),local("MaterialIcons-Regular"),url("../fonts/material-icons/MaterialIcons-Regular.woff2") format("woff2"),url("../fonts/material-icons/MaterialIcons-Regular.woff") format("woff"),url("../fonts/material-icons/MaterialIcons-Regular.ttf") format("truetype")
}

.material-icons {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga"
}

@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-Light.eot");
    src: url("../Fonts/Roboto/Roboto-Light.eot#iefix") format("embedded-opentype"),url("../Fonts/Roboto/Roboto-Light.woff2") format("woff2"),url("../Fonts/Roboto/Roboto-Light.woff") format("woff"),url("../Fonts/Roboto/Roboto-Light.ttf") format("truetype"),url("../Fonts/Roboto/Roboto-Light.svg#Roboto") format("svg");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-LightItalic.eot");
    src: url("../Fonts/Roboto/Roboto-LightItalic.eot#iefix") format("embedded-opentype"),url("../Fonts/Roboto/Roboto-LightItalic.woff2") format("woff2"),url("../Fonts/Roboto/Roboto-LightItalic.woff") format("woff"),url("../Fonts/Roboto/Roboto-LightItalic.ttf") format("truetype"),url("../Fonts/Roboto/Roboto-LightItalic.svg#Roboto") format("svg");
    font-weight: 300;
    font-style: italic
}

@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-Regular.eot");
    src: url("../Fonts/Roboto/Roboto-Regular.eot#iefix") format("embedded-opentype"),url("../Fonts/Roboto/Roboto-Regular.woff2") format("woff2"),url("../Fonts/Roboto/Roboto-Regular.woff") format("woff"),url("../Fonts/Roboto/Roboto-Regular.ttf") format("truetype"),url("../Fonts/Roboto/Roboto-Regular.svg#Roboto") format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-RegularItalic.eot");
    src: url("../Fonts/Roboto/Roboto-RegularItalic.eot#iefix") format("embedded-opentype"),url("../Fonts/Roboto/Roboto-RegularItalic.woff2") format("woff2"),url("../Fonts/Roboto/Roboto-RegularItalic.woff") format("woff"),url("../Fonts/Roboto/Roboto-RegularItalic.ttf") format("truetype"),url("../Fonts/Roboto/Roboto-RegularItalic.svg#Roboto") format("svg");
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-Medium.eot");
    src: url("../Fonts/Roboto/Roboto-Medium.eot#iefix") format("embedded-opentype"),url("../Fonts/Roboto/Roboto-Medium.woff2") format("woff2"),url("../Fonts/Roboto/Roboto-Medium.woff") format("woff"),url("../Fonts/Roboto/Roboto-Medium.ttf") format("truetype"),url("../Fonts/Roboto/Roboto-Medium.svg#Roboto") format("svg");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-MediumItalic.eot");
    src: url("../Fonts/Roboto/Roboto-MediumItalic.eot#iefix") format("embedded-opentype"),url("../Fonts/Roboto/Roboto-MediumItalic.woff2") format("woff2"),url("../Fonts/Roboto/Roboto-MediumItalic.woff") format("woff"),url("../Fonts/Roboto/Roboto-MediumItalic.ttf") format("truetype"),url("../Fonts/Roboto/Roboto-MediumItalic.svg#Roboto") format("svg");
    font-weight: 500;
    font-style: italic
}

@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-Bold.eot");
    src: url("../Fonts/Roboto/Roboto-Bold.eot#iefix") format("embedded-opentype"),url("../Fonts/Roboto/Roboto-Bold.woff2") format("woff2"),url("../Fonts/Roboto/Roboto-Bold.woff") format("woff"),url("../Fonts/Roboto/Roboto-Bold.ttf") format("truetype"),url("../Fonts/Roboto/Roboto-Bold.svg#Roboto") format("svg");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-BoldItalic.eot");
    src: url("../Fonts/Roboto/Roboto-BoldItalic.eot#iefix") format("embedded-opentype"),url("../Fonts/Roboto/Roboto-BoldItalic.woff2") format("woff2"),url("../Fonts/Roboto/Roboto-BoldItalic.woff") format("woff"),url("../Fonts/Roboto/Roboto-BoldItalic.ttf") format("truetype"),url("../Fonts/Roboto/Roboto-BoldItalic.svg#Roboto") format("svg");
    font-weight: 600;
    font-style: italic
}

@font-face {
    font-family: "Ubuntu";
    src: url("../Fonts/Ubuntu/Ubuntu-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: "Ubuntu";
    src: url("../Fonts/Ubuntu/Ubuntu-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic
}

@font-face {
    font-family: "Ubuntu";
    src: url("../Fonts/Ubuntu/Ubuntu-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: "Ubuntu";
    src: url("../Fonts/Ubuntu/Ubuntu-RegularItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: "Ubuntu";
    src: url("../Fonts/Ubuntu/Ubuntu-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: "Ubuntu";
    src: url("../Fonts/Ubuntu/Ubuntu-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic
}

@font-face {
    font-family: "Ubuntu";
    src: url("../Fonts/Ubuntu/Ubuntu-Bold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: "Ubuntu";
    src: url("../Fonts/Ubuntu/Ubuntu-BoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic
}

.mdc-button {
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    height: 40px;
    padding: 12px 20px;
    box-sizing: border-box
}

    .mdc-button:not(:disabled) {
        color: #25e0c1
    }

        .mdc-button:not(:disabled).mdc-button--outlined {
            color: #25e0c1;
            border-color: #25e0c1
        }

        .mdc-button:not(:disabled).mdc-button--raised, .mdc-button:not(:disabled).mdc-button--unelevated {
            color: rgba(0,0,0,.87);
            background-color: #25e0c1
        }

        .mdc-button:not(:disabled).mdc-button--filled {
            color: #25e0c1;
            box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)
        }

    .mdc-button:disabled {
        color: #bababa
    }

        .mdc-button:disabled.mdc-button--outlined {
            color: #bababa;
            border-color: #bababa
        }

        .mdc-button:disabled.mdc-button--raised, .mdc-button:disabled.mdc-button--unelevated {
            color: rgba(255,255,255,.87);
            background-color: #bababa
        }

        .mdc-button:disabled.mdc-button--filled {
            color: #bababa
        }

    .mdc-button .mdc-button__ripple:before, .mdc-button .mdc-button__ripple:after {
        background-color: #25e0c1
    }

    .mdc-button.mdc-button--raised .mdc-button__ripple:before, .mdc-button.mdc-button--raised .mdc-button__ripple:after, .mdc-button.mdc-button--unelevated .mdc-button__ripple:before, .mdc-button.mdc-button--unelevated .mdc-button__ripple:after {
        background-color: rgba(0,0,0,.87)
    }

    .mdc-button.mdc-button--filled {
        font-size: 18px;
        padding: 15px 30px;
        height: 50px;
        background-color: #fff
    }

    .mdc-button .mdc-button__icon {
        font-size: 24px;
        width: 24px;
        height: 24px;
        margin-top: -4px;
        margin-bottom: -4px
    }

    .mdc-button .mdc-button__ripple + .mdc-button__icon {
        margin-left: -4px
    }

    .mdc-button .mdc-button__label + .mdc-button__icon {
        margin-right: -4px
    }

    .mdc-button.mdc-button--secondary {
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        height: 40px;
        padding: 12px 20px;
        box-sizing: border-box
    }

        .mdc-button.mdc-button--secondary:not(:disabled) {
            color: #5c6368
        }

            .mdc-button.mdc-button--secondary:not(:disabled).mdc-button--outlined {
                color: #5c6368;
                border-color: #5c6368
            }

            .mdc-button.mdc-button--secondary:not(:disabled).mdc-button--raised, .mdc-button.mdc-button--secondary:not(:disabled).mdc-button--unelevated {
                color: rgba(255,255,255,.87);
                background-color: #5c6368
            }

            .mdc-button.mdc-button--secondary:not(:disabled).mdc-button--filled {
                color: #5c6368;
                box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)
            }

        .mdc-button.mdc-button--secondary:disabled {
            color: #bababa
        }

            .mdc-button.mdc-button--secondary:disabled.mdc-button--outlined {
                color: #bababa;
                border-color: #bababa
            }

            .mdc-button.mdc-button--secondary:disabled.mdc-button--raised, .mdc-button.mdc-button--secondary:disabled.mdc-button--unelevated {
                color: rgba(255,255,255,.87);
                background-color: #bababa
            }

            .mdc-button.mdc-button--secondary:disabled.mdc-button--filled {
                color: #bababa
            }

        .mdc-button.mdc-button--secondary .mdc-button__ripple:before, .mdc-button.mdc-button--secondary .mdc-button__ripple:after {
            background-color: #5c6368
        }

        .mdc-button.mdc-button--secondary.mdc-button--raised .mdc-button__ripple:before, .mdc-button.mdc-button--secondary.mdc-button--raised .mdc-button__ripple:after, .mdc-button.mdc-button--secondary.mdc-button--unelevated .mdc-button__ripple:before, .mdc-button.mdc-button--secondary.mdc-button--unelevated .mdc-button__ripple:after {
            background-color: rgba(255,255,255,.87)
        }

        .mdc-button.mdc-button--secondary.mdc-button--filled {
            font-size: 18px;
            padding: 15px 30px;
            height: 50px;
            background-color: #fff
        }

        .mdc-button.mdc-button--secondary .mdc-button__icon {
            font-size: 24px;
            width: 24px;
            height: 24px;
            margin-top: -4px;
            margin-bottom: -4px
        }

        .mdc-button.mdc-button--secondary .mdc-button__ripple + .mdc-button__icon {
            margin-left: -4px
        }

        .mdc-button.mdc-button--secondary .mdc-button__label + .mdc-button__icon {
            margin-right: -4px
        }

    .mdc-button.mdc-button--accent {
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        height: 40px;
        padding: 12px 20px;
        box-sizing: border-box
    }

        .mdc-button.mdc-button--accent:not(:disabled) {
            color: #00325F
        }

            .mdc-button.mdc-button--accent:not(:disabled).mdc-button--outlined {
                color: #00325F;
                border-color: #00325F
            }

            .mdc-button.mdc-button--accent:not(:disabled).mdc-button--raised, .mdc-button.mdc-button--accent:not(:disabled).mdc-button--unelevated {
                color: rgba(255,255,255,.87);
                background-color: #00325F 
                
            }

            .mdc-button.mdc-button--accent:not(:disabled).mdc-button--filled {
                color: #264FEC;
                box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)
            }

        .mdc-button.mdc-button--accent:disabled {
            color: #bababa
        }

            .mdc-button.mdc-button--accent:disabled.mdc-button--outlined {
                color: #bababa;
                border-color: #bababa
            }

            .mdc-button.mdc-button--accent:disabled.mdc-button--raised, .mdc-button.mdc-button--accent:disabled.mdc-button--unelevated {
                color: rgba(255,255,255,.87);
                background-color: #bababa
            }

            .mdc-button.mdc-button--accent:disabled.mdc-button--filled {
                color: #bababa
            }

        .mdc-button.mdc-button--accent .mdc-button__ripple:before, .mdc-button.mdc-button--accent .mdc-button__ripple:after {
            background-color: #00325F
        }

        .mdc-button.mdc-button--accent.mdc-button--raised .mdc-button__ripple:before, .mdc-button.mdc-button--accent.mdc-button--raised .mdc-button__ripple:after, .mdc-button.mdc-button--accent.mdc-button--unelevated .mdc-button__ripple:before, .mdc-button.mdc-button--accent.mdc-button--unelevated .mdc-button__ripple:after {
            background-color: rgba(255,255,255,.87)
        }

        .mdc-button.mdc-button--accent.mdc-button--filled {
            font-size: 18px;
            padding: 15px 30px;
            height: 50px;
            background-color: #fff
        }

        .mdc-button.mdc-button--accent .mdc-button__icon {
            font-size: 24px;
            width: 24px;
            height: 24px;
            margin-top: -4px;
            margin-bottom: -4px
        }

        .mdc-button.mdc-button--accent .mdc-button__ripple + .mdc-button__icon {
            margin-left: -4px
        }

        .mdc-button.mdc-button--accent .mdc-button__label + .mdc-button__icon {
            margin-right: -4px
        }

.mdc-icon-button {
    overflow: hidden;
    border-radius: 50%
}

    .mdc-icon-button:not(:disabled) {
        color: rgba(0,0,0,.54)
    }

    .mdc-icon-button.mdc-ripprle-upgrade:before {
        transform: scale(1)
    }

    .mdc-icon-button.mdc-ripprle-upgrade:before, .mdc-icon-button.mdc-ripprle-upgrade:after {
        top: calc(50% - 50%);
        left: calc(50% - 50%);
        width: 100%;
        height: 100%
    }

.mdc-card {
    border-radius: 10px
}

    .mdc-card .mdc-card__header {
        display: flex;
        padding: 24px 24px 12px;
        flex-shrink: 0
    }

    .mdc-card .mdc-card__header__title {
        color: rgba(0,0,0,.54);
        font-size: 18px
    }

    .mdc-card .mdc-card__content {
        padding: 12px 24px;
        flex-grow: 1;
        flex-shrink: 1
    }

    .mdc-card .mdc-card__actions {
        padding: 12px 24px 24px;
        justify-content: flex-end;
        flex-shrink: 0
    }

        .mdc-card .mdc-card__actions .mdc-button {
            margin-left: 5px;
            margin-right: 5px
        }

            .mdc-card .mdc-card__actions .mdc-button:first-child {
                margin-left: 0
            }

            .mdc-card .mdc-card__actions .mdc-button:last-child {
                margin-right: 0
            }

.mdc-text-field--standard {
    padding: 0;
    height: 45px;
    margin-top: 18px;
    margin-bottom: 18px;
    box-sizing: border-box
}

    .mdc-text-field--standard:first-of-type {
        margin-top: 0
    }

    .mdc-text-field--standard:before {
        content: "";
        display: inline-block;
        height: 35px;
        width: 0;
        vertical-align: 0
    }

    .mdc-text-field--standard .mdc-floating-label {
        font-size: 20px;
        top: calc(50% + 6px);
        transform: translateY(-50%);
        line-height: 22px
    }

    .mdc-text-field--standard .mdc-floating-label--float-above {
        transform: translateY(calc(-100% - 8px)) scale(0.75)
    }

    .mdc-text-field--standard .mdc-text-field__input {
        font-size: 20px;
        caret-color: initial
    }

    .mdc-text-field--standard:not(.mdc-text-field--disabled) .mdc-text-field__icon--leading, .mdc-text-field--standard:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing {
        color: #00325F
    }

    .mdc-text-field--standard:not(.mdc-text-field--disabled) .mdc-text-field__input {
        color: #585858
    }

    .mdc-text-field--standard:not(.mdc-text-field--disabled) .mdc-floating-label {
        color: rgba(0,0,0,.54)
    }

    .mdc-text-field--standard:not(.mdc-text-field--disabled) .mdc-floating-label--float-above {
        color: #00325F
    }

    .mdc-text-field--standard.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__icon--leading, .mdc-text-field--standard.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing {
        color: #e00000
    }

    .mdc-text-field--standard.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label {
        color: #e00000
    }

    .mdc-text-field--standard.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above {
        color: #e00000
    }

    .mdc-text-field--standard.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple:before, .mdc-text-field--standard.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple:after {
        border-bottom-color: #e00000
    }

    .mdc-text-field--standard.mdc-text-field--invalid:not(.mdc-text-field--disabled) + .mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg {
        color: #e00000
    }

    .mdc-text-field--standard .mdc-line-ripple:before {
        border-bottom-color: rgba(0,0,0,.42)
    }

    .mdc-text-field--standard .mdc-line-ripple:after {
        border-bottom-color: #00325F
    }

    .mdc-text-field--standard .mdc-text-field__icon {
        font-size: 20px;
        padding: 8px;
        align-self: flex-end
    }

    .mdc-text-field--standard + .mdc-text-field-helper-line {
        margin-top: -18px;
        padding-left: 0;
        padding-right: 0
    }

.mdc-dialog .mdc-dialog__header {
    display: flex;
    padding: 16px
}

.mdc-dialog .mdc-dialog__surface {
    border-radius: 10px
}

.mdc-dialog .mdc-dialog__header__title {
    color: #00325F;
    font-size: 16px;
    font-weight: 500
}

.mdc-dialog .mdc-dialog__header__close {
    display: inline-block
}

.mdc-dialog .mdc-dialog__actions {
    padding: 24px
}

.mdc-dialog .mdc-button {
    min-width: 98px
}

.mdc-dialog .mdc-dialog__scrim {
    background-color: rgba(0,0,0,.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

.mdc-dialog .mdc-dialog__message {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: #585858
}

    .mdc-dialog .mdc-dialog__message.mdc-dialog__message--highlight {
        font-weight: 600;
        color: #00325F
    }

.mdc-dialog:not(.mdc-dialog--alert):not(.mdc-dialog--confirmation) .mdc-dialog__surface {
    width: 100vw;
    max-width: 100vw
}

@media screen and (min-width: 600px) {
    .mdc-dialog:not(.mdc-dialog--alert):not(.mdc-dialog--confirmation) .mdc-dialog__header__title {
        order: 1
    }

    .mdc-dialog:not(.mdc-dialog--alert):not(.mdc-dialog--confirmation) .mdc-dialog__header__close {
        order: 2;
        margin-left: auto
    }

        .mdc-dialog:not(.mdc-dialog--alert):not(.mdc-dialog--confirmation) .mdc-dialog__header__close .material-icons:last-child {
            display: none
        }
}

@media screen and (max-width: 599px) {
    .mdc-dialog:not(.mdc-dialog--alert):not(.mdc-dialog--confirmation) .mdc-dialog__surface {
        width: 100%
    }

    .mdc-dialog:not(.mdc-dialog--alert):not(.mdc-dialog--confirmation) .mdc-dialog__header__title {
        order: 2
    }

    .mdc-dialog:not(.mdc-dialog--alert):not(.mdc-dialog--confirmation) .mdc-dialog__header__close {
        order: 1
    }

        .mdc-dialog:not(.mdc-dialog--alert):not(.mdc-dialog--confirmation) .mdc-dialog__header__close .material-icons:first-child {
            display: none
        }
}

.mdc-dialog--alert .mdc-dialog__surface {
    width: 500px;
    max-width: calc(100vw - 48px)
}

.mdc-dialog--alert .mdc-dialog__content {
    padding-left: 36px;
    padding-right: 36px;
    align-items: center
}

@media screen and (max-width: 599px) {
    .mdc-dialog--alert .mdc-dialog__content {
        padding-left: 24px;
        padding-right: 24px
    }
}

.mdc-dialog--alert .mdc-dialog__header__close {
    margin-left: auto
}

.mdc-dialog--alert .mdc-dialog__actions {
    justify-content: center
}

.doc-navigation {
    display: block
}

    .doc-navigation .doc-navigation__button {
        display: inline-block;
        vertical-align: middle;
        color: #00325F
    }

        .doc-navigation .doc-navigation__button:disabled {
            color: rgba(119,33,201,.38)
        }

    .doc-navigation .doc-navigation__text {
        display: inline-block;
        color: #00325F;
        vertical-align: middle;
        font-size: 18px;
        font-weight: 400;
        margin-left: 10px;
        margin-right: 10px
    }

.hint-box {
    display: none;
    position: absolute;
    background: #fff;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 6px;
    opacity: 0;
    box-shadow: 0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2);
    transition: opacity .5s linear
}

    .hint-box:before {
        display: block;
        position: absolute
    }

    .hint-box.is-visible {
        display: block;
        opacity: 1;
        z-index: 2
    }

    .hint-box.hint-box--right:before {
        content: "";
        position: absolute;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid #fff;
        left: -10px;
        top: 50%;
        transform: translateY(-50%)
    }

    .hint-box.hint-box--left:after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #fff;
        right: -10px;
        top: 50%;
        transform: translateY(-50%)
    }

    .hint-box.hint-box--top:after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #fff;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%)
    }

    .hint-box.hint-box--bottom:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #fff;
        top: -10px;
        left: 50%;
        transform: translateX(-50%)
    }

    .hint-box .hint-box__title {
        font-size: 14px;
        font-weight: 600;
        color: #585858;
        margin-bottom: 10px
    }

    .hint-box .hint-box__list {
        display: block;
        margin: 0;
        padding: 5px 0;
        padding-left: 12px;
        list-style: none
    }

        .hint-box .hint-box__list .hint-box__list__item {
            display: block;
            font-size: 14px;
            font-weight: 400;
            color: #585858;
            padding-top: 5px;
            padding-bottom: 5px
        }

            .hint-box .hint-box__list .hint-box__list__item:before {
                content: " •";
                display: inline-block;
                font-size: 20px;
                line-height: 9px;
                vertical-align: middle;
                margin-right: 4px
            }

:root {
    --mdc-theme-primary: #25E0C1;
    --mdc-theme-secondary: #5c6368;
    --mdc-theme-on-primary: rgba(0, 0, 0, 0.87);
    --mdc-theme-on-secondary: #FFFFFF;
    --mdc-typography-font-family: $main-typography
}

html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    box-sizing: border-box
}

body {
    font-family: "Ubuntu","Roboto",Arial,Helvetica,sans-serif;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    box-sizing: border-box
}

    body * {
        box-sizing: border-box
    }

        body *:before, body *:after {
            box-sizing: border-box
        }

@media screen and (min-width: 600px) {
    body {
        background: url("https://inovadevapicontent.geravd.com.br/public/background/ativas/5_13.jpg"),url("../Assets/custom/gera/background-desktop.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat
    }
}

@media screen and (max-width: 599px) {
    body {
        background: url("https://inovadevapicontent.geravd.com.br/public/background/ativas/5_15.jpg"),url("../Assets/custom/gera/background-mobile.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat
    }
}

h1, h2, h3, h4, h5, h6 {
    margin: 0
}

p {
    margin: 0
}

a {
    text-decoration: none
}

.login {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    max-width: 100%
}

    .login .login__header {
        display: flex;
        justify-self: flex-start;
        justify-self: flex-start;
        width: 374px;
        max-width: 100%;
        padding: 20px 12px 30px
    }

    .login .login__client-logo {
        display: block;
        width: 230px
    }

    .login .login__content {
        display: block;
        width: 374px;
        padding: 10px 12px;
        max-width: 100%
    }

        .login .login__content .mdc-text-field {
            display: flex
        }

    .login .mdc-card {
        margin-bottom: 10px
    }

        .login .mdc-card .mdc-card__header {
            display: flex;
            align-items: flex-start
        }

        .login .mdc-card .mdc-card__header__title {
            font-size: 16px
        }

    .login .mdc-card__header__wrapper {
        display: block;
        flex-grow: 1
    }

    .login .login__user-label {
        display: block;
        color: #585858;
        font-size: 14px;
        font-weight: 300
    }

    .login .login__user-name {
        display: block;
        color: #00325F;
        font-size: 20px;
        font-weight: 300
    }

    .login .mdc-card__header__steps {
        display: block;
        font-size: 14px;
        color: rgba(0,0,0,.54);
        flex-grow: 0
    }

        .login .mdc-card__header__steps > span {
            display: inline-block;
            vertical-align: middle
        }

        .login .mdc-card__header__steps .mdc-icon-button {
            display: inline-block;
            padding: 0;
            width: 24px;
            height: 24px;
            vertical-align: middle
        }

    .login .login__password-recovery {
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: #001C76;
        margin-top: 12px;
        margin-bottom: 12px
    }


    .login .login__bottom {
        width: 100%;
        display: grid;
        grid-template-columns: 50% 50%;
        margin: 0px;
        padding: 0px;
    }

    .login .login__externalredirect {
        text-align: right;
    }

    .login .login__externalredirect_link {
        display: block;
        margin-top: 12px;
        margin-bottom: 12px;

        color: #008626;
        font-size: 14px;
        font-family: Ubuntu;
        font-weight: 400;
        word-wrap: break-word
    }

    .login .login__externalredirect_beta {
        font-style: italic;
        font-weight: 300;
    }

    .login .login__recaptcha-message {
        color: rgba(0,0,0,.38);
        font-family: "Roboto",Arial,Helvetica,sans-serif;
        font-size: 11px;
        line-height: 16px;
        width: 100%
    }

    .login .login__recaptcha-message__hightlight {
        color: #00325F
    }

    .login .login__actions {
        display: flex;
        flex-flow: row wrap;
        width: 374px;
        padding: 10px 12px;
        max-width: 100%
    }

    .login .mdc-button--filled {
        width: 100%
    }

    .login .login__optional-separator {
        display: flex;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
        align-items: center
    }

        .login .login__optional-separator:before, .login .login__optional-separator:after {
            display: inline-block;
            content: "";
            background-color: rgba(255,255,255,.87);
            height: 1px;
            width: auto;
            flex-grow: 1
        }

        .login .login__optional-separator .login__optional-separator__label {
            display: inline-block;
            margin-left: 10px;
            margin-right: 10px;
            flex-grow: 0;
            flex-shrink: 0;
            color: rgba(255,255,255,.87)
        }

    .login .login__external-button {
        background-color: #fff;
        color: rgba(0,0,0,.54);
        width: calc(50% - 5px);
        padding-top: 8px;
        padding-bottom: 8px;
        box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2)
    }

        .login .login__external-button .mdc-button__icon {
            font-size: 24px;
            width: 24px;
            height: 24px
        }

        .login .login__external-button + .login__external-button {
            margin-left: 10px
        }

        .login .login__external-button .mdc-button__ripple:before, .login .login__external-button .mdc-button__ripple:after {
            background-color: rgba(0,0,0,.54)
        }

    .login .login__footer {
        display: flex;
        width: 374px;
        max-width: 100%;
        padding: 10px 12px
    }

    .login .login__footer__powered-icon {
        display: block;
        margin: 0 auto;      
    }

@media screen and (max-width: 599px) {
    .login .login__header, .login .login__content, .login .login__actions, .login .login__footer {
        width: 100%
    }
}

.login .hint-box.hint-box--right {
    right: calc(-100% - 16px);
    top: calc(50% + 8px);
    transform: translateY(-50%)
}

.login .hint-box.hint-box--top {
    top: 10%;
    transform: translateY(-50%)
}

.contract {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    max-width: 100%;
    max-height: 100%
}

@media screen and (min-width: 600px) {
    .contract {
        background-size: cover
    }
}

@media screen and (max-width: 599px) {
    .contract {
        background-size: cover
    }
}

.contract .contract__content {
    display: block;
    width: 724px;
    padding: 12px;
    max-width: 100%;
    max-height: 100%;
    height: 642px
}

@media screen and (max-width: 599px) {
    .contract .contract__content {
        height: 100%;
        width: 100%
    }
}

.contract .contract__card {
    max-height: 100%;
    height: 100%
}

    .contract .contract__card .mdc-card__header {
        position: relative;
        padding: 8px
    }

        .contract .contract__card .mdc-card__header .contract__card__cancel-mobile {
            margin-right: auto
        }

        .contract .contract__card .mdc-card__header .contract__card__cancel-desktop {
            margin-left: auto
        }

@media screen and (min-width: 600px) {
    .contract .contract__card .mdc-card__header .contract__card__cancel-mobile {
        display: none
    }
}

@media screen and (max-width: 599px) {
    .contract .contract__card .mdc-card__header .contract__card__cancel-desktop {
        display: none
    }
}

.contract .contract__card .mdc-card__content {
    overflow: auto
}

.contract .contract__card .mdc-card__actions {
    flex-wrap: wrap
}

    .contract .contract__card .mdc-card__actions .mdc-button:first-child {
        margin-right: auto
    }

    .contract .contract__card .mdc-card__actions .mdc-button:last-child {
        margin-left: auto
    }

@media screen and (min-width: 700px) {
    .contract .contract__card .mdc-card__actions .mdc-button:not(.contract__hidden-button) + .doc-navigation {
        margin-right: 24px
    }
}

.contract .contract__card .mdc-card__actions .mdc-button.contract__hidden-button {
    display: none
}

@media screen and (min-width: 700px) {
    .contract .contract__card .mdc-card__actions .mdc-button.contract__hidden-button + .doc-navigation {
        margin-left: auto;
        margin-right: auto
    }

        .contract .contract__card .mdc-card__actions .mdc-button.contract__hidden-button + .doc-navigation + .mdc-button {
            margin-left: -48px
        }
}

@media screen and (max-width: 699px) {
    .contract .contract__card .mdc-card__actions .doc-navigation {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px
    }

    .contract .contract__card .mdc-card__actions .mdc-button {
        order: 2
    }
}

@media screen and (max-width: 375px) {
    .contract .contract__card .mdc-card__actions .mdc-button {
        width: 100%
    }

        .contract .contract__card .mdc-card__actions .mdc-button:last-child {
            margin-top: 10px
        }
}

.contract .contract__card .contract__document {
    display: block;
    font-family: "Roboto",Arial,Helvetica,sans-serif
}

    .contract .contract__card .contract__document h1 {
        color: rgba(0,0,0,.87);
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        margin-bottom: 10px
    }

    .contract .contract__card .contract__document p {
        color: rgba(0,0,0,.54);
        font-size: 16px;
        display: block;
        margin-bottom: 10px
    }

.client-color {
    color: #00325F !important
}