@keyframes mdc-ripple-fg-radius-in {
    0% {
        animation-timing-function: cubic-bezier(.4, 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-opacity-in {
    0% {
        animation-timing-function: linear;
        opacity: 0;
    }

    to {
        opacity: var(--mdc-ripple-fg-opacity, 0);
    }
}

@keyframes mdc-ripple-fg-opacity-out {
    0% {
        animation-timing-function: linear;
        opacity: var(--mdc-ripple-fg-opacity, 0);
    }

    to {
        opacity: 0;
    }
}

.mdc-ripple-surface--test-edge-var-bug {
    --mdc-ripple-surface-test-edge-var: 1px solid #000;
    visibility: hidden;
}

.mdc-ripple-surface--test-edge-var-bug:before {
    border: var(--mdc-ripple-surface-test-edge-var);
}

.mdc-button {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 2.25rem;
    font-weight: 500;
    letter-spacing: .08929em;
    text-decoration: none;
    text-transform: uppercase;
    --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;
    padding: 0 8px;
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 64px;
    height: 36px;
    border: none;
    outline: none;
    line-height: inherit;
    user-select: none;
    -webkit-appearance: none;
    overflow: hidden;
    vertical-align: middle;
    border-radius: 2px;
}

.mdc-button:after, .mdc-button:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-button:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-button.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-button.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-button.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-button.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-button.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-button:after, .mdc-button:before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

.mdc-button.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mdc-button:active {
    outline: none;
}

.mdc-button:hover {
    cursor: pointer;
}

.mdc-button:disabled {
    color: rgba(0, 0, 0, .37);
    cursor: default;
    pointer-events: none;
}

.mdc-button:disabled, .mdc-button:not(:disabled) {
    background-color: transparent;
}

.mdc-button:not(:disabled) {
    color: #fbda4b;
    color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-button:after, .mdc-button:before {
    background-color: #fbda4b;
}

@supports not (-ms-ime-align:auto) {
    .mdc-button: after, .mdc-button:before {
        background-color: var(--mdc-theme-primary, #fbda4b);
    }
}

.mdc-button:hover:before {
    opacity: .08;
}

.mdc-button.mdc-ripple-upgraded--background-focused:before, .mdc-button:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .24;
}

.mdc-button:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-button:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .32;
}

.mdc-button.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.32;
}

.mdc-button .mdc-button__icon {
    margin-left: 0;
    margin-right: 8px;
    display: inline-block;
    width: 18px;
    height: 18px;
    font-size: 18px;
    vertical-align: top;
}

.mdc-button .mdc-button__icon[dir=rtl], [dir=rtl] .mdc-button .mdc-button__icon {
    margin-left: 8px;
    margin-right: 0;
}

.mdc-button svg.mdc-button__icon {
    fill: currentColor;
}

.mdc-button--outlined .mdc-button__icon, .mdc-button--raised .mdc-button__icon, .mdc-button--unelevated .mdc-button__icon {
    margin-left: -4px;
    margin-right: 8px;
}

.mdc-button--outlined .mdc-button__icon[dir=rtl], .mdc-button--raised .mdc-button__icon[dir=rtl], .mdc-button--unelevated .mdc-button__icon[dir=rtl], [dir=rtl] .mdc-button--outlined .mdc-button__icon, [dir=rtl] .mdc-button--raised .mdc-button__icon, [dir=rtl] .mdc-button--unelevated .mdc-button__icon {
    margin-left: 8px;
    margin-right: -4px;
}

.mdc-button--raised, .mdc-button--unelevated {
    padding: 0 16px;
}

.mdc-button--raised:disabled, .mdc-button--unelevated:disabled {
    background-color: rgba(0, 0, 0, .12);
    color: rgba(0, 0, 0, .37);
}

.mdc-button--raised:not(:disabled), .mdc-button--unelevated:not(:disabled) {
    background-color: #fbda4b;
}

@supports not (-ms-ime-align:auto) {
    .mdc-button--raised:

not(:disabled

), .mdc-button--unelevated:not(:disabled) {
       background-color: var(--mdc-theme-primary, #fbda4b);
   }
}

.mdc-button--raised:not(:disabled), .mdc-button--unelevated:not(:disabled) {
    color: #000;
    color: var(--mdc-theme-on-primary, #000);
}

.mdc-button--raised:after, .mdc-button--raised:before, .mdc-button--unelevated:after, .mdc-button--unelevated:before {
    background-color: #000;
}

@supports not (-ms-ime-align:auto) {
    .mdc-button--raised: after, .mdc-button--raised:before, .mdc-button--unelevated:after, .mdc-button--unelevated:before {
        background-color: var(--mdc-theme-on-primary, #000);
    }
}

.mdc-button--raised:hover:before, .mdc-button--unelevated:hover:before {
    opacity: .04;
}

.mdc-button--raised.mdc-ripple-upgraded--background-focused:before, .mdc-button--raised:not(.mdc-ripple-upgraded):focus:before, .mdc-button--unelevated.mdc-ripple-upgraded--background-focused:before, .mdc-button--unelevated:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-button--raised:not(.mdc-ripple-upgraded):after, .mdc-button--unelevated:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-button--raised:not(.mdc-ripple-upgraded):active:after, .mdc-button--unelevated:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-button--raised.mdc-ripple-upgraded, .mdc-button--unelevated.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-button--raised {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);
}

.mdc-button--raised:focus, .mdc-button--raised:hover {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
}

.mdc-button--raised:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
}

.mdc-button--raised:disabled {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12);
}

.mdc-button--outlined {
    border-style: solid;
    padding: 0 14px;
    border-width: 2px;
}

.mdc-button--outlined:disabled {
    border-color: rgba(0, 0, 0, .37);
}

.mdc-button--outlined:not(:disabled) {
    border-color: #fbda4b;
    border-color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-button--dense {
    height: 32px;
    font-size: .8125rem;
}

.mdc-card {
    background-color: #fff;
    background-color: var(--mdc-theme-surface, #fff);
    border-radius: 2px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.mdc-card--outlined {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12);
    border: 1px solid #e0e0e0;
}

.mdc-card__media {
    position: relative;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: 50%;
    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 {
    --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;
    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:after, .mdc-card__primary-action:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-card__primary-action:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.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 {
    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 {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-card__primary-action:after, .mdc-card__primary-action:before {
    top: -50%;
    left: -50%;
    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:after, .mdc-card__primary-action:before {
    background-color: #000;
}

.mdc-card__primary-action:hover:before {
    opacity: .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: .12;
}

.mdc-card__primary-action:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-card__primary-action:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-card__primary-action.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.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, .38);
    color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, .38));
    flex-grow: 1;
    justify-content: flex-end;
}

.mdc-card__action-buttons + .mdc-card__action-icons {
    margin-left: 16px;
    margin-right: 0;
}

.mdc-card__action-buttons + .mdc-card__action-icons[dir=rtl], [dir=rtl] .mdc-card__action-buttons + .mdc-card__action-icons {
    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;
    user-select: none;
}

.mdc-card__action:focus {
    outline: none;
}

.mdc-card__action--button {
    margin-left: 0;
    margin-right: 8px;
    padding: 0 8px;
}

.mdc-card__action--button[dir=rtl], [dir=rtl] .mdc-card__action--button {
    margin-left: 8px;
    margin-right: 0;
}

.mdc-card__action--button:last-child, .mdc-card__action--button:last-child[dir=rtl], [dir=rtl] .mdc-card__action--button:last-child {
    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;
}

.mdc-card__actions--full-bleed .mdc-card__action--button[dir=rtl], [dir=rtl] .mdc-card__actions--full-bleed .mdc-card__action--button {
    text-align: right;
}

.mdc-card__action--icon {
    margin: -6px 0;
    padding: 12px;
}

.mdc-card__action--icon:not(:disabled) {
    color: rgba(0, 0, 0, .38);
    color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, .38));
}

@keyframes mdc-checkbox-unchecked-checked-checkmark-path {
    0%, 50% {
        stroke-dashoffset: 29.78334;
    }

    50% {
        animation-timing-function: cubic-bezier(0, 0, .2, 1);
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
    0%, 68.2% {
        transform: scaleX(0);
    }

    68.2% {
        animation-timing-function: cubic-bezier(0, 0, 0, 1);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes mdc-checkbox-checked-unchecked-checkmark-path {
    0% {
        animation-timing-function: cubic-bezier(.4, 0, 1, 1);
        opacity: 1;
        stroke-dashoffset: 0;
    }

    to {
        opacity: 0;
        stroke-dashoffset: -29.78334;
    }
}

@keyframes mdc-checkbox-checked-indeterminate-checkmark {
    0% {
        animation-timing-function: cubic-bezier(0, 0, .2, 1);
        transform: rotate(0deg);
        opacity: 1;
    }

    to {
        transform: rotate(45deg);
        opacity: 0;
    }
}

@keyframes mdc-checkbox-indeterminate-checked-checkmark {
    0% {
        animation-timing-function: cubic-bezier(.14, 0, 0, 1);
        transform: rotate(45deg);
        opacity: 0;
    }

    to {
        transform: rotate(1turn);
        opacity: 1;
    }
}

@keyframes mdc-checkbox-checked-indeterminate-mixedmark {
    0% {
        animation-timing-function: mdc-animation-deceleration-curve-timing-function;
        transform: rotate(-45deg);
        opacity: 0;
    }

    to {
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes mdc-checkbox-indeterminate-checked-mixedmark {
    0% {
        animation-timing-function: cubic-bezier(.14, 0, 0, 1);
        transform: rotate(0deg);
        opacity: 1;
    }

    to {
        transform: rotate(315deg);
        opacity: 0;
    }
}

@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
    0% {
        animation-timing-function: linear;
        transform: scaleX(1);
        opacity: 1;
    }

    32.8%, to {
        transform: scaleX(0);
        opacity: 0;
    }
}

.mdc-checkbox {
    display: inline-block;
    position: relative;
    flex: 0 0 18px;
    box-sizing: content-box;
    width: 18px;
    height: 18px;
    padding: 11px;
    line-height: 0;
    white-space: nowrap;
    cursor: pointer;
    vertical-align: bottom;
    --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-checkbox:after, .mdc-checkbox:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-checkbox:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-checkbox.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-checkbox.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-checkbox.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-checkbox.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-checkbox.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-checkbox:after, .mdc-checkbox:before {
    background-color: #2d8c2d;
}

@supports not (-ms-ime-align:auto) {
    .mdc-checkbox: after, .mdc-checkbox:before {
        background-color: var(--mdc-theme-secondary, #2d8c2d);
    }
}

.mdc-checkbox:hover:before {
    opacity: .04;
}

.mdc-checkbox.mdc-ripple-upgraded--background-focused:before, .mdc-checkbox:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-checkbox:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-checkbox:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-checkbox.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-checkbox:after, .mdc-checkbox:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mdc-checkbox.mdc-ripple-upgraded:after, .mdc-checkbox.mdc-ripple-upgraded:before {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-checkbox.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-checkbox__checkmark {
    color: #000;
}

.mdc-checkbox__mixedmark {
    border-color: #000;
}

.mdc-checkbox__background:before {
    background-color: #2d8c2d;
}

@supports not (-ms-ime-align:auto) {
    .mdc-checkbox__background: before {
        background-color: var(--mdc-theme-secondary, #2d8c2d);
    }
}

.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
    border-color: rgba(0, 0, 0, .54);
    background-color: transparent;
}

.mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background, .mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background {
    border-color: #2d8c2d;
    border-color: var(--mdc-theme-secondary, #2d8c2d);
    background-color: #2d8c2d;
    background-color: var(--mdc-theme-secondary, #2d8c2d);
}

@keyframes mdc-checkbox-fade-in-background-0 {
    0% {
        border-color: rgba(0, 0, 0, .54);
        background-color: transparent;
    }

    50% {
        border-color: #2d8c2d;
        border-color: var(--mdc-theme-secondary, #2d8c2d);
        background-color: #2d8c2d;
        background-color: var(--mdc-theme-secondary, #2d8c2d);
    }
}

@keyframes mdc-checkbox-fade-out-background-0 {
    0%, 80% {
        border-color: #2d8c2d;
        border-color: var(--mdc-theme-secondary, #2d8c2d);
        background-color: #2d8c2d;
        background-color: var(--mdc-theme-secondary, #2d8c2d);
    }

    to {
        border-color: rgba(0, 0, 0, .54);
        background-color: transparent;
    }
}

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
    animation-name: mdc-checkbox-fade-in-background-0;
}

.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
    animation-name: mdc-checkbox-fade-out-background-0;
}

.mdc-checkbox__native-control:disabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
    border-color: rgba(0, 0, 0, .26);
}

.mdc-checkbox__native-control:disabled:checked ~ .mdc-checkbox__background, .mdc-checkbox__native-control:disabled:indeterminate ~ .mdc-checkbox__background {
    border-color: transparent;
    background-color: rgba(0, 0, 0, .26);
}

@media screen and (-ms-high-contrast: active) {
    .mdc-checkbox__mixedmark {
        margin: 0 1px;
    }
}

.mdc-checkbox--disabled {
    cursor: default;
    pointer-events: none;
}

.mdc-checkbox__background {
    left: 11px;
    right: auto;
    display: inline-flex;
    position: absolute;
    top: 11px;
    bottom: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 45%;
    height: 45%;
    transition: background-color 90ms cubic-bezier(.4, 0, .6, 1) 0ms, border-color 90ms cubic-bezier(.4, 0, .6, 1) 0ms;
    border: 2px solid;
    border-radius: 2px;
    background-color: transparent;
    pointer-events: none;
    will-change: background-color, border-color;
}

.mdc-checkbox[dir=rtl] .mdc-checkbox__background, [dir=rtl] .mdc-checkbox .mdc-checkbox__background {
    left: auto;
    right: 11px;
}

.mdc-checkbox__checkmark {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: opacity .18s cubic-bezier(.4, 0, .6, 1) 0ms;
    opacity: 0;
}

.mdc-checkbox--upgraded .mdc-checkbox__checkmark {
    opacity: 1;
}

.mdc-checkbox__checkmark-path {
    transition: stroke-dashoffset .18s cubic-bezier(.4, 0, .6, 1) 0ms;
    stroke: currentColor;
    stroke-width: 3.12px;
    stroke-dashoffset: 29.78334;
    stroke-dasharray: 29.78334;
}

.mdc-checkbox__mixedmark {
    width: 100%;
    height: 0;
    transform: scaleX(0) rotate(0deg);
    transition: opacity 90ms cubic-bezier(.4, 0, .6, 1) 0ms, transform 90ms cubic-bezier(.4, 0, .6, 1) 0ms;
    border-width: 1px;
    border-style: solid;
    opacity: 0;
}

.mdc-checkbox--upgraded .mdc-checkbox__background, .mdc-checkbox--upgraded .mdc-checkbox__checkmark, .mdc-checkbox--upgraded .mdc-checkbox__checkmark-path, .mdc-checkbox--upgraded .mdc-checkbox__mixedmark {
    transition: none !important;
}

.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background {
    animation-duration: .18s;
    animation-timing-function: linear;
}

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path {
    animation: mdc-checkbox-unchecked-checked-checkmark-path .18s linear 0s;
    transition: none;
}

.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark {
    animation: mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;
    transition: none;
}

.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path {
    animation: mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;
    transition: none;
}

.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark {
    animation: mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;
    transition: none;
}

.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark {
    animation: mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;
    transition: none;
}

.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark {
    animation: mdc-checkbox-indeterminate-checked-checkmark .5s linear 0s;
    transition: none;
}

.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark {
    animation: mdc-checkbox-indeterminate-checked-mixedmark .5s linear 0s;
    transition: none;
}

.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark {
    animation: mdc-checkbox-indeterminate-unchecked-mixedmark .3s linear 0s;
    transition: none;
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background, .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background {
    transition: border-color 90ms cubic-bezier(0, 0, .2, 1) 0ms, background-color 90ms cubic-bezier(0, 0, .2, 1) 0ms;
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path, .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path {
    stroke-dashoffset: 0;
}

.mdc-checkbox__background:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: opacity 90ms cubic-bezier(.4, 0, .6, 1) 0ms, transform 90ms cubic-bezier(.4, 0, .6, 1) 0ms;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: "";
    will-change: opacity, transform;
}

.mdc-ripple-upgraded--background-focused .mdc-checkbox__background:before {
    content: none;
}

.mdc-checkbox__native-control:focus ~ .mdc-checkbox__background:before {
    transform: scale(2.75);
    transition: opacity 80ms cubic-bezier(0, 0, .2, 1) 0ms, transform 80ms cubic-bezier(0, 0, .2, 1) 0ms;
    opacity: .12;
}

.mdc-checkbox__native-control {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: inherit;
}

.mdc-checkbox__native-control:disabled {
    cursor: default;
    pointer-events: none;
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
    transition: opacity .18s cubic-bezier(0, 0, .2, 1) 0ms, transform .18s cubic-bezier(0, 0, .2, 1) 0ms;
    opacity: 1;
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
    transform: scaleX(1) rotate(-45deg);
}

.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
    transform: rotate(45deg);
    transition: opacity 90ms cubic-bezier(.4, 0, .6, 1) 0ms, transform 90ms cubic-bezier(.4, 0, .6, 1) 0ms;
    opacity: 0;
}

.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
    transform: scaleX(1) rotate(0deg);
    opacity: 1;
}

.mdc-chip {
    --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;
    border-radius: 16px;
    background-color: #e0e0e0;
    color: rgba(0, 0, 0, .87);
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: .01786em;
    text-decoration: inherit;
    text-transform: inherit;
    height: 32px;
    display: inline-flex;
    position: relative;
    align-items: center;
    box-sizing: border-box;
    padding: 7px 12px;
    outline: none;
    cursor: pointer;
    overflow: hidden;
}

.mdc-chip:after, .mdc-chip:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-chip:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-chip.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-chip.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-chip.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-chip.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-chip.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-chip:after, .mdc-chip:before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

.mdc-chip.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-chip:after, .mdc-chip:before {
    background-color: rgba(0, 0, 0, .87);
}

.mdc-chip:hover:before {
    opacity: .04;
}

.mdc-chip.mdc-ripple-upgraded--background-focused:before, .mdc-chip:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-chip:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-chip:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-chip.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-chip:hover {
    color: rgba(0, 0, 0, .87);
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--leading, .mdc-chip .mdc-chip__icon.mdc-chip__icon--trailing {
    color: rgba(0, 0, 0, .54);
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--trailing:hover {
    color: rgba(0, 0, 0, .62);
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--trailing:focus {
    color: rgba(0, 0, 0, .87);
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden) {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--trailing {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.mdc-chip:hover {
    color: #000;
    color: var(--mdc-theme-on-surface, #000);
}

.mdc-chip--exit {
    transition: opacity 75ms cubic-bezier(.4, 0, .2, 1), width .15s cubic-bezier(0, 0, .2, 1), padding .1s linear, margin .1s linear;
    opacity: 0;
}

.mdc-chip__text {
    white-space: nowrap;
}

.mdc-chip__icon {
    border-radius: 50%;
    outline: none;
    vertical-align: middle;
}

.mdc-chip__icon--trailing {
    margin: 0 -4px 0 4px;
}

.mdc-chip__checkmark, .mdc-chip__icon--leading {
    height: 20px;
    margin: -4px 4px -4px -4px;
}

.mdc-chip__checkmark-path {
    transition: stroke-dashoffset .15s cubic-bezier(.4, 0, .6, 1) 50ms;
    stroke-width: 2px;
    stroke-dashoffset: 29.78334;
    stroke-dasharray: 29.78334;
}

.mdc-chip--selected .mdc-chip__checkmark-path {
    stroke-dashoffset: 0;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:before {
    opacity: .16;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:after, .mdc-chip-set--choice .mdc-chip.mdc-chip--selected:before {
    background-color: #fbda4b;
}

@supports not (-ms-ime-align:auto) {
    .mdc-chip-set--choice .mdc-chip.mdc-chip--selected: after, .mdc-chip-set--choice .mdc-chip.mdc-chip--selected:before {
        background-color: var(--mdc-theme-primary, #fbda4b);
    }
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:hover:before {
    opacity: .24;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-upgraded--background-focused:before, .mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .4;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .48;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.48;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected {
    color: #fbda4b;
    color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected .mdc-chip__icon.mdc-chip__icon--leading {
    color: rgba(251, 218, 75, .54);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:hover {
    color: #fbda4b;
    color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-chip-set--choice .mdc-chip .mdc-chip__checkmark-path {
    stroke: #fbda4b;
    stroke: var(--mdc-theme-primary, #fbda4b);
}

.mdc-chip-set--choice .mdc-chip--selected {
    background-color: #fff;
    background-color: var(--mdc-theme-surface, #fff);
}

.mdc-chip__checkmark-svg {
    width: 0;
    height: 20px;
    transition: width .15s cubic-bezier(.4, 0, .2, 1);
}

.mdc-chip--selected .mdc-chip__checkmark-svg {
    width: 20px;
}

.mdc-chip-set--filter .mdc-chip__icon--leading {
    transition: opacity 75ms linear;
    transition-delay: -50ms;
    opacity: 1;
}

.mdc-chip-set--filter .mdc-chip__icon--leading + .mdc-chip__checkmark {
    transition: opacity 75ms linear;
    transition-delay: 80ms;
    opacity: 0;
}

.mdc-chip-set--filter .mdc-chip__icon--leading + .mdc-chip__checkmark .mdc-chip__checkmark-svg {
    transition: width 0ms;
}

.mdc-chip-set--filter .mdc-chip--selected .mdc-chip__icon--leading {
    opacity: 0;
}

.mdc-chip-set--filter .mdc-chip--selected .mdc-chip__icon--leading + .mdc-chip__checkmark {
    width: 0;
    opacity: 1;
}

.mdc-chip-set--filter .mdc-chip__icon--leading-hidden.mdc-chip__icon--leading {
    width: 0;
    opacity: 0;
}

.mdc-chip-set--filter .mdc-chip__icon--leading-hidden.mdc-chip__icon--leading + .mdc-chip__checkmark {
    width: 20px;
}

@keyframes mdc-chip-entry {
    0% {
        transform: scale(.8);
        opacity: .4;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.mdc-chip-set {
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.mdc-chip-set .mdc-chip {
    margin: 4px;
}

.mdc-chip-set--input .mdc-chip {
    animation: mdc-chip-entry .1s cubic-bezier(0, 0, .2, 1);
}

.mdc-dialog {
    display: flex;
    visibility: hidden;
    z-index: 5;
}

.mdc-dialog, .mdc-dialog__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.mdc-dialog__backdrop {
    background-color: rgba(0, 0, 0, .87);
    background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, .87));
    opacity: 0;
    z-index: -1;
}

.mdc-dialog__surface {
    box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
    background-color: #fff;
    background-color: var(--mdc-theme-background, #fff);
    display: inline-flex;
    flex-direction: column;
    width: calc(100% - 30px);
    min-width: 640px;
    max-width: 865px;
    transform: translateY(150px) scale(.8);
    border-radius: 2px;
    opacity: 0;
}

.mdc-dialog[dir=rtl] .mdc-dialog__surface, [dir=rtl] .mdc-dialog .mdc-dialog__surface {
    text-align: right;
}

.mdc-dialog__header {
    display: flex;
    align-items: center;
    padding: 24px 24px 0;
}

.mdc-dialog[dir=rtl] .mdc-dialog__header, [dir=rtl] .mdc-dialog .mdc-dialog__header {
    text-align: right;
}

.mdc-dialog__header__empty {
    padding: 0;
}

.mdc-dialog__header__title {
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 500;
    letter-spacing: .0125em;
    flex: 1;
    margin: 0;
}

.mdc-dialog__body, .mdc-dialog__header__title {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-decoration: inherit;
    text-transform: inherit;
}

.mdc-dialog__body {
    color: rgba(0, 0, 0, .54);
    color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, .54));
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    letter-spacing: .03125em;
    margin-top: 20px;
    padding: 0 24px 24px;
}

.mdc-dialog__body--scrollable {
    max-height: 195px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    overflow-x: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.mdc-dialog__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 8px;
}

.mdc-dialog__footer__button {
    margin-left: 0;
    margin-right: 8px;
}

.mdc-dialog__footer__button[dir=rtl], [dir=rtl] .mdc-dialog__footer__button {
    margin-left: 8px;
    margin-right: 0;
}

.mdc-dialog__footer__button:last-child, .mdc-dialog__footer__button:last-child[dir=rtl], [dir=rtl] .mdc-dialog__footer__button:last-child {
    margin-left: 0;
    margin-right: 0;
}

.mdc-dialog__action:not(:disabled) {
    color: #2d8c2d;
    color: var(--mdc-theme-secondary, #2d8c2d);
}

@media (max-width: 640px) {
    .mdc-dialog, .mdc-dialog__surface {
        min-width: 280px;
    }

    .mdc-dialog__body {
        line-height: 24px;
    }
}

.mdc-dialog--animating {
    visibility: visible;
}

.mdc-dialog--animating .mdc-dialog__backdrop {
    transition: opacity .12s cubic-bezier(0, 0, .2, 1) 0ms;
}

.mdc-dialog--animating .mdc-dialog__surface {
    transition: opacity .12s cubic-bezier(0, 0, .2, 1) 0ms, transform .12s cubic-bezier(0, 0, .2, 1) 0ms;
}

.mdc-dialog--open {
    visibility: visible;
}

.mdc-dialog--open .mdc-dialog__backdrop {
    opacity: .3;
}

.mdc-dialog--open .mdc-dialog__surface {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.mdc-dialog-scroll-lock {
    overflow: hidden;
}

.mdc-drawer--persistent {
    color: rgba(0, 0, 0, .87);
    width: 0;
}

.mdc-drawer--persistent .mdc-drawer__toolbar-spacer {
    display: flex;
    position: relative;
    flex-direction: row;
    flex-shrink: 0;
    align-items: center;
    box-sizing: border-box;
    height: 56px;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

@media (min-width: 600px) {
    .mdc-drawer--persistent .mdc-drawer__toolbar-spacer {
        height: 64px;
    }
}

.mdc-drawer--persistent .mdc-drawer__header {
    position: relative;
}

.mdc-drawer--persistent .mdc-drawer__header:before {
    display: block;
    padding-top: 56.25%;
    content: ""
}

.mdc-drawer--persistent .mdc-drawer__header-content {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: flex-end;
    box-sizing: border-box;
    padding: 16px;
}

.mdc-drawer--persistent .mdc-list-item {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.375rem;
    font-weight: 500;
    letter-spacing: .00714em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    outline: none;
    color: inherit;
    text-decoration: none;
}

.mdc-drawer--persistent .mdc-list-item__graphic {
    color: rgba(0, 0, 0, .54);
}

.mdc-drawer--persistent.mdc-drawer--permanent, .mdc-drawer--persistent .mdc-drawer__drawer {
    background-color: #fff;
}

.mdc-drawer--persistent .mdc-drawer__drawer {
    border-left: 0;
    border-right: 1px solid #e4e4e4;
    left: 0;
    right: auto;
    height: 100%;
    transform: translateX(-107%);
    transform: translateX(calc(-100% - 20px));
    will-change: transform;
    display: inline-flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 240px;
    overflow: hidden;
    touch-action: none;
}

.mdc-drawer--persistent .mdc-drawer__drawer[dir=rtl], [dir=rtl] .mdc-drawer--persistent .mdc-drawer__drawer {
    border-left: 1px solid #e4e4e4;
    border-right: 0;
    left: auto;
    right: 0;
    transform: translateX(107%);
    transform: translateX(calc(100% + 20px));
}

.mdc-drawer--persistent.mdc-drawer--open {
    width: 240px;
    pointer-events: auto;
}

.mdc-drawer--persistent.mdc-drawer--open .mdc-drawer__drawer, .mdc-drawer--persistent.mdc-drawer--open[dir=rtl] .mdc-drawer__drawer, [dir=rtl] .mdc-drawer--persistent.mdc-drawer--open .mdc-drawer__drawer {
    transform: none;
}

.mdc-drawer--persistent.mdc-drawer--animating .mdc-drawer__drawer {
    transition: transform .2s cubic-bezier(.4, 0, .2, 1) 0ms;
}

.mdc-drawer--persistent.mdc-drawer--animating.mdc-drawer--open .mdc-drawer__drawer {
    transition: transform .25s cubic-bezier(.4, 0, .2, 1) 0ms;
}

.mdc-drawer--permanent {
    color: rgba(0, 0, 0, .87);
    border-left: 0;
    border-right: 1px solid #e4e4e4;
    left: 0;
    right: auto;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    box-sizing: border-box;
    width: 240px;
    overflow: hidden;
}

.mdc-drawer--permanent .mdc-drawer__toolbar-spacer {
    display: flex;
    position: relative;
    flex-direction: row;
    flex-shrink: 0;
    align-items: center;
    box-sizing: border-box;
    height: 56px;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

@media (min-width: 600px) {
    .mdc-drawer--permanent .mdc-drawer__toolbar-spacer {
        height: 64px;
    }
}

.mdc-drawer--permanent .mdc-drawer__header {
    position: relative;
}

.mdc-drawer--permanent .mdc-drawer__header:before {
    display: block;
    padding-top: 56.25%;
    content: ""
}

.mdc-drawer--permanent .mdc-drawer__header-content {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: flex-end;
    box-sizing: border-box;
    padding: 16px;
}

.mdc-drawer--permanent .mdc-list-item {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.375rem;
    font-weight: 500;
    letter-spacing: .00714em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    outline: none;
    color: inherit;
    text-decoration: none;
}

.mdc-drawer--permanent .mdc-list-item__graphic {
    color: rgba(0, 0, 0, .54);
}

.mdc-drawer--permanent.mdc-drawer--permanent, .mdc-drawer--permanent .mdc-drawer__drawer {
    background-color: #fff;
}

.mdc-drawer--permanent[dir=rtl], [dir=rtl] .mdc-drawer--permanent {
    border-left: 1px solid #e4e4e4;
    border-right: 0;
    left: auto;
    right: 0;
}

.mdc-drawer--permanent--floating {
    border-left: 0;
    border-right: none;
    background: none;
}

.mdc-drawer--permanent--floating[dir=rtl], [dir=rtl] .mdc-drawer--permanent--floating {
    border-left: none;
    border-right: 0;
}

.mdc-drawer--temporary {
    color: rgba(0, 0, 0, .87);
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    contain: strict;
    z-index: 5;
}

.mdc-drawer--temporary .mdc-drawer__toolbar-spacer {
    display: flex;
    position: relative;
    flex-direction: row;
    flex-shrink: 0;
    align-items: center;
    box-sizing: border-box;
    height: 56px;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

@media (min-width: 600px) {
    .mdc-drawer--temporary .mdc-drawer__toolbar-spacer {
        height: 64px;
    }
}

.mdc-drawer--temporary .mdc-drawer__header {
    position: relative;
}

.mdc-drawer--temporary .mdc-drawer__header:before {
    display: block;
    padding-top: 56.25%;
    content: ""
}

.mdc-drawer--temporary .mdc-drawer__header-content {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: flex-end;
    box-sizing: border-box;
    padding: 16px;
}

.mdc-drawer--temporary .mdc-list-item {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.375rem;
    font-weight: 500;
    letter-spacing: .00714em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    outline: none;
    color: inherit;
    text-decoration: none;
}

.mdc-drawer--temporary .mdc-list-item__graphic {
    color: rgba(0, 0, 0, .54);
}

.mdc-drawer--temporary.mdc-drawer--permanent, .mdc-drawer--temporary .mdc-drawer__drawer {
    background-color: #fff;
}

.mdc-drawer--temporary:before {
    background-color: rgba(0, 0, 0, .6);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    opacity: 0;
    opacity: var(--mdc-temporary-drawer-opacity, 0);
    content: "";
    will-change: opacity;
}

.mdc-drawer--temporary .mdc-drawer__drawer {
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12);
    left: 0;
    right: auto;
    height: 100%;
    transform: translateX(-107%);
    transform: translateX(calc(-100% - 20px));
    will-change: transform;
    display: flex;
    position: absolute;
    flex-direction: column;
    box-sizing: border-box;
    width: calc(100% - 56px);
    max-width: 280px;
    overflow: hidden;
    touch-action: none;
}

.mdc-drawer--temporary .mdc-drawer__drawer[dir=rtl], [dir=rtl] .mdc-drawer--temporary .mdc-drawer__drawer {
    left: auto;
    right: 0;
    transform: translateX(107%);
    transform: translateX(calc(100% + 20px));
}

@media (min-width: 600px) {
    .mdc-drawer--temporary .mdc-drawer__drawer {
        width: calc(100% - 64px);
        max-width: 320px;
    }
}

.mdc-drawer--temporary .mdc-drawer__content {
    flex-grow: 1;
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.mdc-drawer--temporary .mdc-drawer__footer {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    flex-shrink: 0;
}

.mdc-drawer--temporary.mdc-drawer--open {
    pointer-events: auto;
}

.mdc-drawer--temporary.mdc-drawer--open:before {
    opacity: 1;
    opacity: var(--mdc-temporary-drawer-opacity, 1);
}

.mdc-drawer--temporary.mdc-drawer--open .mdc-drawer__drawer, .mdc-drawer--temporary.mdc-drawer--open[dir=rtl] .mdc-drawer__drawer, [dir=rtl] .mdc-drawer--temporary.mdc-drawer--open .mdc-drawer__drawer {
    transform: none;
}

.mdc-drawer--temporary.mdc-drawer--animating:before {
    transition: opacity .3s cubic-bezier(0, 0, .2, 1) 0ms;
}

.mdc-drawer--temporary.mdc-drawer--animating .mdc-drawer__drawer {
    transition: transform .2s cubic-bezier(.4, 0, .2, 1) 0ms;
}

.mdc-drawer--temporary.mdc-drawer--animating.mdc-drawer--open .mdc-drawer__drawer {
    transition: transform .25s cubic-bezier(.4, 0, .2, 1) 0ms;
}

.mdc-drawer-scroll-lock, .mdc-fab {
    overflow: hidden;
}

.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;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 56px;
    height: 56px;
    padding: 0;
    transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1), opacity 15ms linear 30ms, transform .27s cubic-bezier(0, 0, .2, 1) 0ms;
    border: none;
    border-radius: 50%;
    fill: currentColor;
    cursor: pointer;
    user-select: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #2d8c2d;
    color: #fff;
    color: var(--mdc-theme-on-secondary, #fff);
}

.mdc-fab:after, .mdc-fab:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-fab:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-fab.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-fab.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-fab.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-fab.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-fab.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-fab:after, .mdc-fab:before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

.mdc-fab.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-fab::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mdc-fab:focus, .mdc-fab:hover {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
}

.mdc-fab:active {
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 12px 17px 2px rgba(0, 0, 0, .14), 0 5px 22px 4px rgba(0, 0, 0, .12);
}

.mdc-fab:active, .mdc-fab:focus {
    outline: none;
}

.mdc-fab:hover {
    cursor: pointer;
}

.mdc-fab > svg {
    width: 100%
}

@supports not (-ms-ime-align:auto) {
    .mdc-fab {
        background-color: var(--mdc-theme-secondary, #2d8c2d);
    }
}

.mdc-fab .mdc-fab__icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.mdc-fab:after, .mdc-fab:before {
    background-color: #fff;
}

@supports not (-ms-ime-align:auto) {
    .mdc-fab: after, .mdc-fab:before {
        background-color: var(--mdc-theme-on-secondary, #fff);
    }
}

.mdc-fab:hover:before {
    opacity: .08;
}

.mdc-fab.mdc-ripple-upgraded--background-focused:before, .mdc-fab:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .24;
}

.mdc-fab:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-fab:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .32;
}

.mdc-fab.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.32;
}

.mdc-fab--mini {
    width: 40px;
    height: 40px;
}

.mdc-fab--extended {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 2.25rem;
    font-weight: 500;
    letter-spacing: .08929em;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 20px;
    width: auto;
    max-width: 100%;
    height: 48px;
    border-radius: 24px;
}

.mdc-fab--extended .mdc-fab__icon {
    margin-left: -8px;
    margin-right: 12px;
}

.mdc-fab--extended .mdc-fab__icon[dir=rtl], .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon, [dir=rtl] .mdc-fab--extended .mdc-fab__icon {
    margin-left: 12px;
    margin-right: -8px;
}

.mdc-fab--extended .mdc-fab__label + .mdc-fab__icon[dir=rtl], [dir=rtl] .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon {
    margin-left: -8px;
    margin-right: 12px;
}

.mdc-fab__label {
    justify-content: flex-start;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.mdc-fab__icon {
    transition: transform .18s cubic-bezier(0, 0, .2, 1) 90ms;
    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);
    transition: opacity 15ms linear .15s, transform .18s cubic-bezier(.4, 0, 1, 1) 0ms;
    opacity: 0;
}

.mdc-fab--exited .mdc-fab__icon {
    transform: scale(0);
    transition: transform 135ms cubic-bezier(.4, 0, 1, 1) 0ms;
}

.mdc-floating-label {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 400;
    letter-spacing: .00937em;
    text-decoration: inherit;
    text-transform: inherit;
    position: absolute;
    bottom: 8px;
    left: 0;
    transform-origin: left top;
    transition: transform .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1);
    line-height: 1.15rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: text;
    overflow: hidden;
    will-change: transform;
}

.mdc-floating-label[dir=rtl], [dir=rtl] .mdc-floating-label {
    right: 0;
    left: auto;
    transform-origin: right top;
}

.mdc-floating-label--float-above {
    cursor: auto;
    transform: translateY(-100%) scale(.75);
}

.mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-standard .25s 1;
}

@keyframes mdc-floating-label-shake-float-above-standard {
    0% {
        transform: translateX(0) translateY(-100%) scale(.75);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(4%) translateY(-100%) scale(.75);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(-4%) translateY(-100%) scale(.75);
    }

    to {
        transform: translateX(0) translateY(-100%) scale(.75);
    }
}

.mdc-form-field {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: .01786em;
    text-decoration: inherit;
    text-transform: inherit;
    color: rgba(0, 0, 0, .87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87));
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.mdc-form-field > label {
    order: 0;
    margin-right: auto;
    padding-left: 4px;
}

.mdc-form-field--align-end > label, .mdc-form-field[dir=rtl] > label, [dir=rtl] .mdc-form-field > label {
    margin-left: auto;
    padding-right: 4px;
}

.mdc-form-field--align-end > label {
    order: -1;
}

.mdc-form-field--align-end[dir=rtl] > label, [dir=rtl] .mdc-form-field--align-end > label {
    margin-right: auto;
    padding-left: 4px;
}

.mdc-grid-tile__primary {
    padding-bottom: 100%
}

.mdc-grid-tile {
    margin: 2px 0;
    padding: 0 2px;
}

.mdc-grid-tile__secondary {
    left: 2px;
    width: calc(100% - 4px);
}

.mdc-grid-list__tiles {
    margin: 2px auto;
    display: flex;
    flex-flow: row wrap;
    padding: 0;
}

.mdc-grid-list--tile-gutter-1 .mdc-grid-tile {
    margin: .5px 0;
    padding: 0 .5px;
}

.mdc-grid-list--tile-gutter-1 .mdc-grid-tile__secondary {
    left: .5px;
    width: calc(100% - 1px);
}

.mdc-grid-list--tile-gutter-1 .mdc-grid-list__tiles {
    margin: .5px auto;
}

.mdc-grid-list--tile-aspect-16x9 .mdc-grid-tile__primary {
    padding-bottom: 56.24993%
}

.mdc-grid-list--tile-aspect-3x2 .mdc-grid-tile__primary {
    padding-bottom: 66.66667%
}

.mdc-grid-list--tile-aspect-2x3 .mdc-grid-tile__primary {
    padding-bottom: 149.99925%
}

.mdc-grid-list--tile-aspect-4x3 .mdc-grid-tile__primary {
    padding-bottom: 75.00019%
}

.mdc-grid-list--tile-aspect-3x4 .mdc-grid-tile__primary {
    padding-bottom: 133.33333%
}

.mdc-grid-tile {
    display: block;
    position: relative;
    width: 200px;
    width: var(--mdc-grid-list-tile-width, 200px);
}

.mdc-grid-tile__primary {
    background-color: #fff;
    background-color: var(--mdc-theme-background, #fff);
    color: rgba(0, 0, 0, .87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87));
    position: relative;
    height: 0;
}

.mdc-grid-tile__primary-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.mdc-grid-tile__secondary {
    background-color: #fbda4b;
    background-color: var(--mdc-theme-primary, #fbda4b);
    color: #000;
    color: var(--mdc-theme-on-primary, #000);
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    height: 48px;
    padding: 16px;
}

.mdc-grid-tile__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1rem;
}

.mdc-grid-tile__support-text, .mdc-grid-tile__title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    padding: 0;
}

.mdc-grid-tile__support-text {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 400;
    letter-spacing: .00937em;
    text-decoration: inherit;
    text-transform: inherit;
    margin: 4px 0 0;
}

.mdc-grid-tile__icon {
    position: absolute;
    top: calc(50% - 12px);
    font-size: 0;
}

.mdc-grid-list--twoline-caption .mdc-grid-tile__secondary {
    height: 68px;
}

.mdc-grid-list--header-caption .mdc-grid-tile__secondary {
    top: 0;
    bottom: auto;
}

.mdc-grid-list--with-icon-align-start .mdc-grid-tile__secondary {
    padding-left: 56px;
    padding-right: 8px;
}

.mdc-grid-list[dir=rtl] .mdc-grid-list--with-icon-align-start .mdc-grid-tile__secondary, [dir=rtl] .mdc-grid-list .mdc-grid-list--with-icon-align-start .mdc-grid-tile__secondary {
    padding-left: 8px;
    padding-right: 56px;
}

.mdc-grid-list--with-icon-align-start .mdc-grid-tile__icon {
    left: 16px;
    right: auto;
    font-size: 24px;
}

.mdc-grid-list[dir=rtl] .mdc-grid-list--with-icon-align-start .mdc-grid-tile__icon, [dir=rtl] .mdc-grid-list .mdc-grid-list--with-icon-align-start .mdc-grid-tile__icon {
    left: auto;
    right: 16px;
}

.mdc-grid-list--with-icon-align-end .mdc-grid-tile__secondary {
    padding-left: 16px;
    padding-right: 56px;
}

.mdc-grid-list[dir=rtl] .mdc-grid-list--with-icon-align-end .mdc-grid-tile__secondary, [dir=rtl] .mdc-grid-list .mdc-grid-list--with-icon-align-end .mdc-grid-tile__secondary {
    padding-left: 56px;
    padding-right: 16px;
}

.mdc-grid-list--with-icon-align-end .mdc-grid-tile__icon {
    left: auto;
    right: 16px;
    font-size: 24px;
}

.mdc-grid-list[dir=rtl] .mdc-grid-list--with-icon-align-end .mdc-grid-tile__icon, [dir=rtl] .mdc-grid-list .mdc-grid-list--with-icon-align-end .mdc-grid-tile__icon {
    left: 16px;
    right: auto;
}

.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;
    width: 48px;
    height: 48px;
    padding: 12px;
    font-size: 24px;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    border: none;
    outline: none;
    background-color: transparent;
    fill: currentColor;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

.mdc-icon-button:after, .mdc-icon-button:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-icon-button:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.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 {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-icon-button.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-icon-button:after, .mdc-icon-button:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mdc-icon-button.mdc-ripple-upgraded:after, .mdc-icon-button.mdc-ripple-upgraded:before {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
    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 img, .mdc-icon-button svg {
    width: 24px;
    height: 24px;
}

.mdc-icon-button:disabled {
    color: rgba(0, 0, 0, .38);
    color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, .38));
    cursor: default;
    pointer-events: none;
}

.mdc-icon-button:after, .mdc-icon-button:before {
    background-color: #000;
}

.mdc-icon-button:hover:before {
    opacity: .04;
}

.mdc-icon-button.mdc-ripple-upgraded--background-focused:before, .mdc-icon-button:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-icon-button:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-icon-button:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-icon-button.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-icon-toggle {
    --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;
    color: rgba(0, 0, 0, .87);
    color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, .87));
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    padding: 12px;
    outline: none;
    font-size: 1.5rem;
    cursor: pointer;
    user-select: none;
    will-change: auto;
}

.mdc-icon-toggle:after, .mdc-icon-toggle:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-icon-toggle:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-icon-toggle.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-icon-toggle.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-icon-toggle.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-icon-toggle.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-icon-toggle.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-icon-toggle:after, .mdc-icon-toggle:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mdc-icon-toggle.mdc-ripple-upgraded:after, .mdc-icon-toggle.mdc-ripple-upgraded:before {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-icon-toggle.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-icon-toggle:after, .mdc-icon-toggle:before {
    background-color: #000;
}

.mdc-icon-toggle:hover:before {
    opacity: .04;
}

.mdc-icon-toggle.mdc-ripple-upgraded--background-focused:before, .mdc-icon-toggle:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-icon-toggle:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-icon-toggle:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-icon-toggle.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-icon-toggle:after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-icon-toggle--disabled {
    color: rgba(0, 0, 0, .38);
    color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, .38));
    pointer-events: none;
}

.mdc-image-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
}

.mdc-image-list__image-aspect-container, .mdc-image-list__item {
    position: relative;
    box-sizing: border-box;
}

.mdc-image-list__item {
    list-style-type: none;
}

.mdc-image-list__image {
    width: 100%
}

.mdc-image-list__image-aspect-container .mdc-image-list__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.mdc-image-list__image-aspect-container {
    padding-bottom: 100%
}

.mdc-image-list__supporting {
    color: rgba(0, 0, 0, .87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87));
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 8px 0;
    line-height: 24px;
}

.mdc-image-list__label {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 400;
    letter-spacing: .00937em;
    text-decoration: inherit;
    text-transform: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.mdc-image-list--with-text-protection .mdc-image-list__supporting {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
}

.mdc-image-list--masonry {
    display: block;
}

.mdc-image-list--masonry .mdc-image-list__item {
    break-inside: avoid-column;
}

.mdc-image-list--masonry .mdc-image-list__image {
    display: block;
    height: auto;
}

:root {
    --mdc-layout-grid-margin-desktop: 24px;
    --mdc-layout-grid-gutter-desktop: 45px;
    --mdc-layout-grid-column-width-desktop: 72px;
    --mdc-layout-grid-margin-tablet: 16px;
    --mdc-layout-grid-gutter-tablet: 15px;
    --mdc-layout-grid-column-width-tablet: 72px;
    --mdc-layout-grid-margin-phone: 16px;
    --mdc-layout-grid-gutter-phone: 15px;
    --mdc-layout-grid-column-width-phone: 72px;
}

@media (min-width: 940px) {
    .mdc-layout-grid {
        box-sizing: border-box;
        margin: 0 auto;
        padding: 24px;
        padding: var(--mdc-layout-grid-margin-desktop, 24px);
    }
}

@media (min-width: 480px) and (max-width: 939px) {
    .mdc-layout-grid {
        box-sizing: border-box;
        margin: 0 auto;
        padding: 16px;
        padding: var(--mdc-layout-grid-margin-tablet, 16px);
    }
}

@media (max-width: 479px) {
    .mdc-layout-grid {
        box-sizing: border-box;
        margin: 0 auto;
        padding: 16px;
        padding: var(--mdc-layout-grid-margin-phone, 16px);
    }
}

@media (min-width: 940px) {
    .mdc-layout-grid__inner {
        display: flex;
        flex-flow: row wrap;
        align-items: stretch;
        margin: -22.5px;
        margin: calc(var(--mdc-layout-grid-gutter-desktop, 45px) / 2 * -1);
    }

    @supports (display:grid) {
        .mdc-layout-grid__inner {
            display: grid;
            margin: 0;
            grid-gap: 45px;
            grid-gap: var(--mdc-layout-grid-gutter-desktop, 45px);
            grid-template-columns: repeat(12, minmax(0, 1fr));
        }
    }
}

@media (min-width: 480px) and (max-width: 939px) {
    .mdc-layout-grid__inner {
        display: flex;
        flex-flow: row wrap;
        align-items: stretch;
        margin: -7.5px;
        margin: calc(var(--mdc-layout-grid-gutter-tablet, 15px) / 2 * -1);
    }

    @supports (display:grid) {
        .mdc-layout-grid__inner {
            display: grid;
            margin: 0;
            grid-gap: 15px;
            grid-gap: var(--mdc-layout-grid-gutter-tablet, 15px);
            grid-template-columns: repeat(8, minmax(0, 1fr));
        }
    }
}

@media (max-width: 479px) {
    .mdc-layout-grid__inner {
        display: flex;
        flex-flow: row wrap;
        align-items: stretch;
        margin: -7.5px;
        margin: calc(var(--mdc-layout-grid-gutter-phone, 15px) / 2 * -1);
    }

    @supports (display:grid) {
        .mdc-layout-grid__inner {
            display: grid;
            margin: 0;
            grid-gap: 15px;
            grid-gap: var(--mdc-layout-grid-gutter-phone, 15px);
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
    }
}

@media (min-width: 940px) {
    .mdc-layout-grid__cell {
        width: calc(33.33333% - 45px);
        width: calc(33.33333% - var(--mdc-layout-grid-gutter-desktop, 45px));
        box-sizing: border-box;
        margin: 22.5px;
        margin: calc(var(--mdc-layout-grid-gutter-desktop, 45px) / 2);
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell {
            width: auto;
            grid-column-end: span 4;
            margin: 0;
        }
    }

    .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-desktop {
        width: calc(8.33333% - 45px);
        width: calc(8.33333% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-desktop {
            width: auto;
            grid-column-end: span 1;
        }
    }

    .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-desktop {
        width: calc(16.66667% - 45px);
        width: calc(16.66667% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-desktop {
            width: auto;
            grid-column-end: span 2;
        }
    }

    .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-desktop {
        width: calc(25% - 45px);
        width: calc(25% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-desktop {
            width: auto;
            grid-column-end: span 3;
        }
    }

    .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-desktop {
        width: calc(33.33333% - 45px);
        width: calc(33.33333% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-desktop {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-desktop {
        width: calc(41.66667% - 45px);
        width: calc(41.66667% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-desktop {
            width: auto;
            grid-column-end: span 5;
        }
    }

    .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-desktop {
        width: calc(50% - 45px);
        width: calc(50% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-desktop {
            width: auto;
            grid-column-end: span 6;
        }
    }

    .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-desktop {
        width: calc(58.33333% - 45px);
        width: calc(58.33333% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-desktop {
            width: auto;
            grid-column-end: span 7;
        }
    }

    .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-desktop {
        width: calc(66.66667% - 45px);
        width: calc(66.66667% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-desktop {
            width: auto;
            grid-column-end: span 8;
        }
    }

    .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-desktop {
        width: calc(75% - 45px);
        width: calc(75% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-desktop {
            width: auto;
            grid-column-end: span 9;
        }
    }

    .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-desktop {
        width: calc(83.33333% - 45px);
        width: calc(83.33333% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-desktop {
            width: auto;
            grid-column-end: span 10;
        }
    }

    .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-desktop {
        width: calc(91.66667% - 45px);
        width: calc(91.66667% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-desktop {
            width: auto;
            grid-column-end: span 11;
        }
    }

    .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-desktop {
        width: calc(100% - 45px);
        width: calc(100% - var(--mdc-layout-grid-gutter-desktop, 45px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-desktop {
            width: auto;
            grid-column-end: span 12;
        }
    }
}

@media (min-width: 480px) and (max-width: 939px) {
    .mdc-layout-grid__cell {
        width: calc(50% - 15px);
        width: calc(50% - var(--mdc-layout-grid-gutter-tablet, 15px));
        box-sizing: border-box;
        margin: 7.5px;
        margin: calc(var(--mdc-layout-grid-gutter-tablet, 15px) / 2);
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell {
            width: auto;
            grid-column-end: span 4;
            margin: 0;
        }
    }

    .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-tablet {
        width: calc(12.5% - 15px);
        width: calc(12.5% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-tablet {
            width: auto;
            grid-column-end: span 1;
        }
    }

    .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-tablet {
        width: calc(25% - 15px);
        width: calc(25% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-tablet {
            width: auto;
            grid-column-end: span 2;
        }
    }

    .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-tablet {
        width: calc(37.5% - 15px);
        width: calc(37.5% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-tablet {
            width: auto;
            grid-column-end: span 3;
        }
    }

    .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-tablet {
        width: calc(50% - 15px);
        width: calc(50% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-tablet {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-tablet {
        width: calc(62.5% - 15px);
        width: calc(62.5% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-tablet {
            width: auto;
            grid-column-end: span 5;
        }
    }

    .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-tablet {
        width: calc(75% - 15px);
        width: calc(75% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-tablet {
            width: auto;
            grid-column-end: span 6;
        }
    }

    .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-tablet {
        width: calc(87.5% - 15px);
        width: calc(87.5% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-tablet {
            width: auto;
            grid-column-end: span 7;
        }
    }

    .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-tablet {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-tablet {
            width: auto;
            grid-column-end: span 8;
        }
    }

    .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-tablet {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-tablet {
            width: auto;
            grid-column-end: span 8;
        }
    }

    .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-tablet {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-tablet {
            width: auto;
            grid-column-end: span 8;
        }
    }

    .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-tablet {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-tablet {
            width: auto;
            grid-column-end: span 8;
        }
    }

    .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-tablet {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-tablet {
            width: auto;
            grid-column-end: span 8;
        }
    }
}

@media (max-width: 479px) {
    .mdc-layout-grid__cell {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
        box-sizing: border-box;
        margin: 7.5px;
        margin: calc(var(--mdc-layout-grid-gutter-phone, 15px) / 2);
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell {
            width: auto;
            grid-column-end: span 4;
            margin: 0;
        }
    }

    .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-phone {
        width: calc(25% - 15px);
        width: calc(25% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-phone {
            width: auto;
            grid-column-end: span 1;
        }
    }

    .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-phone {
        width: calc(50% - 15px);
        width: calc(50% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-phone {
            width: auto;
            grid-column-end: span 2;
        }
    }

    .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-phone {
        width: calc(75% - 15px);
        width: calc(75% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-phone {
            width: auto;
            grid-column-end: span 3;
        }
    }

    .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-phone {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-phone {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-phone {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-phone {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-phone {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-phone {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-phone {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-phone {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-phone {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-phone {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-phone {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-phone {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-phone {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-phone {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-phone {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-phone {
            width: auto;
            grid-column-end: span 4;
        }
    }

    .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-phone {
        width: calc(100% - 15px);
        width: calc(100% - var(--mdc-layout-grid-gutter-phone, 15px));
    }

    @supports (display:grid) {
        .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-phone {
            width: auto;
            grid-column-end: span 4;
        }
    }
}

.mdc-layout-grid__cell--order-1 {
    order: 1;
}

.mdc-layout-grid__cell--order-2 {
    order: 2;
}

.mdc-layout-grid__cell--order-3 {
    order: 3;
}

.mdc-layout-grid__cell--order-4 {
    order: 4;
}

.mdc-layout-grid__cell--order-5 {
    order: 5;
}

.mdc-layout-grid__cell--order-6 {
    order: 6;
}

.mdc-layout-grid__cell--order-7 {
    order: 7;
}

.mdc-layout-grid__cell--order-8 {
    order: 8;
}

.mdc-layout-grid__cell--order-9 {
    order: 9;
}

.mdc-layout-grid__cell--order-10 {
    order: 10;
}

.mdc-layout-grid__cell--order-11 {
    order: 11;
}

.mdc-layout-grid__cell--order-12 {
    order: 12;
}

.mdc-layout-grid__cell--align-top {
    align-self: flex-start;
}

@supports (display:grid) {
    .mdc-layout-grid__cell--align-top {
        align-self: start;
    }
}

.mdc-layout-grid__cell--align-middle {
    align-self: center;
}

.mdc-layout-grid__cell--align-bottom {
    align-self: flex-end;
}

@supports (display:grid) {
    .mdc-layout-grid__cell--align-bottom {
        align-self: end;
    }
}

@media (min-width: 940px) {
    .mdc-layout-grid--fixed-column-width {
        width: 1407px;
        width: calc(var(--mdc-layout-grid-column-width-desktop, 72px) * 12 + var(--mdc-layout-grid-gutter-desktop, 45px) * 11 + var(--mdc-layout-grid-margin-desktop, 24px) * 2);
    }
}

@media (min-width: 480px) and (max-width: 939px) {
    .mdc-layout-grid--fixed-column-width {
        width: 713px;
        width: calc(var(--mdc-layout-grid-column-width-tablet, 72px) * 8 + var(--mdc-layout-grid-gutter-tablet, 15px) * 7 + var(--mdc-layout-grid-margin-tablet, 16px) * 2);
    }
}

@media (max-width: 479px) {
    .mdc-layout-grid--fixed-column-width {
        width: 365px;
        width: calc(var(--mdc-layout-grid-column-width-phone, 72px) * 4 + var(--mdc-layout-grid-gutter-phone, 15px) * 3 + var(--mdc-layout-grid-margin-phone, 16px) * 2);
    }
}

.mdc-layout-grid--align-left {
    margin-right: auto;
    margin-left: 0;
}

.mdc-layout-grid--align-right {
    margin-right: 0;
    margin-left: auto;
}

.mdc-line-ripple {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transition: transform .18s cubic-bezier(.4, 0, .2, 1), opacity .18s cubic-bezier(.4, 0, .2, 1);
    opacity: 0;
    z-index: 2;
}

.mdc-line-ripple--active {
    transform: scaleX(1);
    opacity: 1;
}

.mdc-line-ripple--deactivating {
    opacity: 0;
}

@keyframes primary-indeterminate-translate {
    0% {
        transform: translateX(0);
    }

    20% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(0);
    }

    59.15% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(83.67142%);
    }

    to {
        transform: translateX(200.61106%);
    }
}

@keyframes primary-indeterminate-scale {
    0% {
        transform: scaleX(.08);
    }

    36.65% {
        animation-timing-function: cubic-bezier(.33473, .12482, .78584, 1);
        transform: scaleX(.08);
    }

    69.15% {
        animation-timing-function: cubic-bezier(.06, .11, .6, 1);
        transform: scaleX(.66148);
    }

    to {
        transform: scaleX(.08);
    }
}

@keyframes secondary-indeterminate-translate {
    0% {
        animation-timing-function: cubic-bezier(.15, 0, .51506, .40969);
        transform: translateX(0);
    }

    25% {
        animation-timing-function: cubic-bezier(.31033, .28406, .8, .73371);
        transform: translateX(37.65191%);
    }

    48.35% {
        animation-timing-function: cubic-bezier(.4, .62704, .6, .90203);
        transform: translateX(84.38617%);
    }

    to {
        transform: translateX(160.27778%);
    }
}

@keyframes secondary-indeterminate-scale {
    0% {
        animation-timing-function: cubic-bezier(.20503, .05705, .57661, .45397);
        transform: scaleX(.08);
    }

    19.15% {
        animation-timing-function: cubic-bezier(.15231, .19643, .64837, 1.00432);
        transform: scaleX(.4571);
    }

    44.15% {
        animation-timing-function: cubic-bezier(.25776, -.00316, .21176, 1.38179);
        transform: scaleX(.72796);
    }

    to {
        transform: scaleX(.08);
    }
}

@keyframes buffering {
    to {
        transform: translateX(-10px);
    }
}

@keyframes primary-indeterminate-translate-reverse {
    0% {
        transform: translateX(0);
    }

    20% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(0);
    }

    59.15% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(-83.67142%);
    }

    to {
        transform: translateX(-200.61106%);
    }
}

@keyframes secondary-indeterminate-translate-reverse {
    0% {
        animation-timing-function: cubic-bezier(.15, 0, .51506, .40969);
        transform: translateX(0);
    }

    25% {
        animation-timing-function: cubic-bezier(.31033, .28406, .8, .73371);
        transform: translateX(-37.65191%);
    }

    48.35% {
        animation-timing-function: cubic-bezier(.4, .62704, .6, .90203);
        transform: translateX(-84.38617%);
    }

    to {
        transform: translateX(-160.27778%);
    }
}

@keyframes buffering-reverse {
    to {
        transform: translateX(10px);
    }
}

.mdc-linear-progress {
    position: relative;
    width: 100%;
    height: 4px;
    transform: translateZ(0);
    transition: opacity .25s cubic-bezier(.4, 0, .6, 1) 0ms;
    overflow: hidden;
}

.mdc-linear-progress__bar {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: none;
    transform-origin: top left;
    transition: transform .25s cubic-bezier(.4, 0, .6, 1) 0ms;
}

.mdc-linear-progress__bar-inner {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: none;
}

.mdc-linear-progress__buffering-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: buffering .25s linear infinite;
    background-repeat: repeat-x;
    background-size: 10px 4px;
}

.mdc-linear-progress__buffer {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: top left;
    transition: transform .25s cubic-bezier(.4, 0, .6, 1) 0ms;
}

.mdc-linear-progress__primary-bar {
    transform: scaleX(0);
}

.mdc-linear-progress__secondary-bar {
    visibility: hidden;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__bar {
    transition: none;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar {
    left: -145.166611%;
    animation: primary-indeterminate-translate 2s linear infinite;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar > .mdc-linear-progress__bar-inner {
    animation: primary-indeterminate-scale 2s linear infinite;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar {
    left: -54.888891%;
    animation: secondary-indeterminate-translate 2s linear infinite;
    visibility: visible;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar > .mdc-linear-progress__bar-inner {
    animation: secondary-indeterminate-scale 2s linear infinite;
}

.mdc-linear-progress--reversed .mdc-linear-progress__bar, .mdc-linear-progress--reversed .mdc-linear-progress__buffer {
    right: 0;
    transform-origin: center right;
}

.mdc-linear-progress--reversed .mdc-linear-progress__primary-bar {
    animation-name: primary-indeterminate-translate-reverse;
}

.mdc-linear-progress--reversed .mdc-linear-progress__secondary-bar {
    animation-name: secondary-indeterminate-translate-reverse;
}

.mdc-linear-progress--reversed .mdc-linear-progress__buffering-dots {
    animation: buffering-reverse .25s linear infinite;
}

.mdc-linear-progress--closed {
    opacity: 0;
}

.mdc-linear-progress__bar-inner {
    background-color: #fbda4b;
    background-color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-linear-progress__buffering-dots {
    background-image: url("data:image/svg+xml; charset=utf-8, %3Csvg xmlns='http: //www.w3.org/2000/svg' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23e6e6e6'/%3E%3C/svg%3E");
}

.mdc-linear-progress__buffer {
    background-color: #e6e6e6;
}

.mdc-linear-progress--indeterminate.mdc-linear-progress--reversed .mdc-linear-progress__primary-bar {
    right: -145.166611%;
    left: auto;
}

.mdc-linear-progress--indeterminate.mdc-linear-progress--reversed .mdc-linear-progress__secondary-bar {
    right: -54.888891%;
    left: auto;
}

.mdc-list {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 400;
    letter-spacing: .00937em;
    text-decoration: inherit;
    text-transform: inherit;
    color: rgba(0, 0, 0, .87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87));
    margin: 0;
    padding: 8px 0;
    line-height: 1.5rem;
    list-style-type: none;
}

.mdc-list-item__secondary-text {
    color: rgba(0, 0, 0, .54);
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, .54));
}

.mdc-list-item__graphic {
    background-color: transparent;
    color: rgba(0, 0, 0, .38);
    color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, .38));
}

.mdc-list-item__meta {
    color: rgba(0, 0, 0, .38);
    color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, .38));
}

.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;
    height: 48px;
    padding: 0 16px;
    overflow: hidden;
}

.mdc-list-item:focus {
    outline: none;
}

.mdc-list-item--activated, .mdc-list-item--activated .mdc-list-item__graphic, .mdc-list-item--selected, .mdc-list-item--selected .mdc-list-item__graphic {
    color: #fbda4b;
    color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-list-item--disabled {
    color: rgba(0, 0, 0, .38);
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, .38));
}

.mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 32px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.mdc-list-item[dir=rtl] .mdc-list-item__graphic, [dir=rtl] .mdc-list-item .mdc-list-item__graphic {
    margin-left: 32px;
    margin-right: 0;
}

.mdc-list-item__meta {
    margin-left: auto;
    margin-right: 0;
}

.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 {
    align-self: flex-start;
}

.mdc-list-item__primary-text, .mdc-list-item__text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.mdc-list-item__primary-text {
    margin-top: 0;
    line-height: normal;
    margin-bottom: -20px;
    display: block;
}

.mdc-list-item__primary-text:before {
    display: inline-block;
    width: 0;
    height: 32px;
    content: "";
    vertical-align: 0;
}

.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 {
    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 {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: .01786em;
    text-decoration: inherit;
    text-transform: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 0;
    line-height: normal;
    display: block;
}

.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 {
    margin-top: 0;
    line-height: normal;
    font-size: inherit;
}

.mdc-list--dense .mdc-list-item__secondary-text:before {
    display: inline-block;
    width: 0;
    height: 20px;
    content: "";
    vertical-align: 0;
}

.mdc-list--dense .mdc-list-item {
    height: 40px;
}

.mdc-list--dense .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 36px;
    width: 20px;
    height: 20px;
}

.mdc-list-item[dir=rtl] .mdc-list--dense .mdc-list-item__graphic, [dir=rtl] .mdc-list-item .mdc-list--dense .mdc-list-item__graphic {
    margin-left: 36px;
    margin-right: 0;
}

.mdc-list--avatar-list .mdc-list-item {
    height: 56px;
}

.mdc-list--avatar-list .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.mdc-list-item[dir=rtl] .mdc-list--avatar-list .mdc-list-item__graphic, [dir=rtl] .mdc-list-item .mdc-list--avatar-list .mdc-list-item__graphic {
    margin-left: 16px;
    margin-right: 0;
}

.mdc-list--two-line .mdc-list-item {
    height: 72px;
}

.mdc-list--avatar-list.mdc-list--dense .mdc-list-item, .mdc-list--two-line.mdc-list--dense .mdc-list-item {
    height: 60px;
}

.mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic {
    margin-left: 0;
    margin-right: 20px;
    width: 36px;
    height: 36px;
}

.mdc-list-item[dir=rtl] .mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic, [dir=rtl] .mdc-list-item .mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic {
    margin-left: 20px;
    margin-right: 0;
}

:not(.mdc-list--non-interactive) > :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--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:after, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:after, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:after, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:before {
    background-color: #000;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:hover:before {
    opacity: .04;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--background-focused:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:before {
    opacity: .24;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:after, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:before {
    background-color: #fbda4b;
}

@supports not (-ms-ime-align:auto) {
    :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:after, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:before {
        background-color: var(--mdc-theme-primary, #fbda4b);
    }
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:hover:before {
    opacity: .32;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated.mdc-ripple-upgraded--background-focused:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .48;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .56;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.56;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:before {
    opacity: .16;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:after, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:before {
    background-color: #fbda4b;
}

@supports not (-ms-ime-align:auto) {
    :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:after, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:before {
        background-color: var(--mdc-theme-primary, #fbda4b);
    }
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:hover:before {
    opacity: .24;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected.mdc-ripple-upgraded--background-focused:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .4;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .48;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.48;
}

a.mdc-list-item {
    color: inherit;
    text-decoration: none;
}

.mdc-list-divider {
    height: 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, .12);
}

.mdc-list-divider--padded {
    margin: 0 16px;
}

.mdc-list-divider--inset {
    margin-left: 72px;
    margin-right: 0;
    width: calc(100% - 72px);
}

.mdc-list-group[dir=rtl] .mdc-list-divider--inset, [dir=rtl] .mdc-list-group .mdc-list-divider--inset {
    margin-left: 0;
    margin-right: 72px;
}

.mdc-list-divider--inset.mdc-list-divider--padded {
    width: calc(100% - 88px);
}

.mdc-list-group .mdc-list {
    padding: 0;
}

.mdc-list-group__subheader {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 400;
    letter-spacing: .00937em;
    text-decoration: inherit;
    text-transform: inherit;
    margin: .75rem 16px;
    color: rgba(0, 0, 0, .87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87));
}

.mdc-menu {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    background-color: #fff;
    background-color: var(--mdc-theme-background, #fff);
    display: none;
    position: absolute;
    box-sizing: border-box;
    min-width: 170px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    margin: 0;
    padding: 0;
    transform: scale(1);
    transform-origin: top left;
    border-radius: 2px;
    opacity: 0;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: auto;
    will-change: transform, opacity;
    z-index: 4;
}

.mdc-menu:focus {
    outline: none;
}

.mdc-menu--animating-open {
    display: inline-block;
    transform: scale(.8);
    transition: opacity .03s linear, transform .12s cubic-bezier(0, 0, .2, 1);
    opacity: 0;
    overflow-y: hidden;
}

.mdc-menu--open {
    display: inline-block;
    transform: scale(1);
    opacity: 1;
}

.mdc-menu--animating-closed {
    display: inline-block;
    transition: opacity 75ms linear;
    opacity: 0;
    overflow-y: hidden;
}

.mdc-menu__items {
    box-sizing: border-box;
    transform: scale(1);
    overflow-x: hidden;
    overflow-y: auto;
    will-change: transform;
}

.mdc-menu__items > .mdc-list-item {
    cursor: pointer;
}

.mdc-menu--animating .mdc-menu__items {
    overflow-y: hidden;
}

.mdc-menu--animating-open > .mdc-menu__items {
    transform: scale(1.25);
}

.mdc-menu--open > .mdc-menu__items {
    transform: scale(1);
}

[dir=rtl] .mdc-menu {
    transform-origin: top right;
}

.mdc-menu .mdc-list, .mdc-menu .mdc-list-group {
    padding: 8px 0;
}

.mdc-menu .mdc-list-item {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 400;
    letter-spacing: .00937em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    outline: none;
    color: inherit;
    text-decoration: none;
    user-select: none;
}

.mdc-menu .mdc-list-item__graphic {
    color: rgba(0, 0, 0, .54);
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, .54));
}

.mdc-menu .mdc-list-item[aria-disabled=true] {
    color: rgba(0, 0, 0, .38);
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, .38));
    cursor: default;
    pointer-events: none;
}

.mdc-menu .mdc-list-item[aria-disabled=true]:focus:before {
    opacity: 0;
}

.mdc-menu-anchor {
    position: relative;
    overflow: visible;
}

.mdc-notched-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 1px);
    height: calc(100% - 2px);
    transition: opacity .15s cubic-bezier(.4, 0, .2, 1);
    opacity: 0;
    overflow: hidden;
}

.mdc-notched-outline svg {
    position: absolute;
    width: 100%;
    height: 100%
}

.mdc-notched-outline__idle {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    transition: opacity .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid;
    opacity: 1;
}

.mdc-notched-outline__path {
    stroke-width: 1px;
    transition: stroke .15s cubic-bezier(.4, 0, .2, 1), stroke-width .15s cubic-bezier(.4, 0, .2, 1);
    fill: transparent;
}

.mdc-notched-outline--notched {
    opacity: 1;
}

.mdc-notched-outline--notched ~ .mdc-notched-outline__idle {
    opacity: 0;
}

.mdc-radio {
    --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;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    padding: 10px;
    cursor: pointer;
    will-change: opacity, transform, border-color, color;
}

.mdc-radio .mdc-radio__native-control:enabled:not(:checked) + .mdc-radio__background .mdc-radio__outer-circle {
    border-color: rgba(0, 0, 0, .54);
}

.mdc-radio .mdc-radio__native-control:enabled + .mdc-radio__background .mdc-radio__inner-circle, .mdc-radio .mdc-radio__native-control:enabled:checked + .mdc-radio__background .mdc-radio__outer-circle {
    border-color: #2d8c2d;
    border-color: var(--mdc-theme-secondary, #2d8c2d);
}

.mdc-radio .mdc-radio__background:before {
    background-color: #2d8c2d;
}

@supports not (-ms-ime-align:auto) {
    .mdc-radio .mdc-radio__background: before {
        background-color: var(--mdc-theme-secondary, #2d8c2d);
    }
}

.mdc-radio:after, .mdc-radio:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-radio:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-radio.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-radio.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-radio.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-radio.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-radio.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-radio:after, .mdc-radio:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mdc-radio.mdc-ripple-upgraded:after, .mdc-radio.mdc-ripple-upgraded:before {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-radio.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-radio:after, .mdc-radio:before {
    background-color: #2d8c2d;
}

@supports not (-ms-ime-align:auto) {
    .mdc-radio: after, .mdc-radio:before {
        background-color: var(--mdc-theme-secondary, #2d8c2d);
    }
}

.mdc-radio:hover:before {
    opacity: .04;
}

.mdc-radio.mdc-ripple-upgraded--background-focused:before, .mdc-radio:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-radio:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-radio:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-radio.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-radio__background {
    display: inline-block;
    position: absolute;
    left: 10px;
    box-sizing: border-box;
    width: 50%;
    height: 50%
}

.mdc-radio__background:before {
    transform: scale(0);
    transition: opacity .12s cubic-bezier(.4, 0, .6, 1) 0ms, transform .12s cubic-bezier(.4, 0, .6, 1) 0ms;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-radio__background:before, .mdc-radio__outer-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.mdc-radio__outer-circle {
    box-sizing: border-box;
    transition: border-color .12s cubic-bezier(.4, 0, .6, 1) 0ms;
    border-width: 2px;
    border-style: solid;
}

.mdc-radio__inner-circle {
    box-sizing: border-box;
    transform: scale(0);
    transition: transform .12s cubic-bezier(.4, 0, .6, 1) 0ms, border-color .12s cubic-bezier(.4, 0, .6, 1) 0ms;
    border-width: 10px;
    border-style: solid;
    border-radius: 50%
}

.mdc-radio__inner-circle, .mdc-radio__native-control {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mdc-radio__native-control {
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: inherit;
    z-index: 1;
}

.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__background:before {
    content: none;
}

.mdc-radio__native-control:checked + .mdc-radio__background, .mdc-radio__native-control:disabled + .mdc-radio__background {
    transition: opacity .12s cubic-bezier(0, 0, .2, 1) 0ms, transform .12s cubic-bezier(0, 0, .2, 1) 0ms;
}

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__outer-circle, .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__outer-circle {
    transition: border-color .12s cubic-bezier(0, 0, .2, 1) 0ms;
}

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle, .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle {
    transition: transform .12s cubic-bezier(0, 0, .2, 1) 0ms, border-color .12s cubic-bezier(0, 0, .2, 1) 0ms;
}

.mdc-radio--disabled {
    cursor: default;
    pointer-events: none;
}

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle {
    transform: scale(.5);
    transition: transform .12s cubic-bezier(0, 0, .2, 1) 0ms, border-color .12s cubic-bezier(0, 0, .2, 1) 0ms;
}

.mdc-radio__native-control:disabled + .mdc-radio__background, [aria-disabled=true] .mdc-radio__native-control + .mdc-radio__background {
    cursor: default;
}

.mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle, .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__outer-circle, [aria-disabled=true] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__inner-circle, [aria-disabled=true] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__outer-circle {
    border-color: rgba(0, 0, 0, .26);
}

.mdc-radio__native-control:focus + .mdc-radio__background:before {
    transform: scale(2);
    transition: opacity .12s cubic-bezier(0, 0, .2, 1) 0ms, transform .12s cubic-bezier(0, 0, .2, 1) 0ms;
    opacity: .12;
}

.mdc-ripple-surface {
    --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;
    position: relative;
    outline: none;
    overflow: hidden;
}

.mdc-ripple-surface:after, .mdc-ripple-surface:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-ripple-surface:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-ripple-surface.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-ripple-surface.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-ripple-surface.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-ripple-surface:after, .mdc-ripple-surface:before {
    background-color: #000;
}

.mdc-ripple-surface:hover:before {
    opacity: .04;
}

.mdc-ripple-surface.mdc-ripple-upgraded--background-focused:before, .mdc-ripple-surface:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-ripple-surface:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-ripple-surface:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-ripple-surface.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-ripple-surface:after, .mdc-ripple-surface:before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

.mdc-ripple-surface.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-ripple-surface[data-mdc-ripple-is-unbounded] {
    overflow: visible;
}

.mdc-ripple-surface[data-mdc-ripple-is-unbounded]:after, .mdc-ripple-surface[data-mdc-ripple-is-unbounded]:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded:after, .mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded:before {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-ripple-surface--primary:after, .mdc-ripple-surface--primary:before {
    background-color: #fbda4b;
}

@supports not (-ms-ime-align:auto) {
    .mdc-ripple-surface--primary: after, .mdc-ripple-surface--primary:before {
        background-color: var(--mdc-theme-primary, #fbda4b);
    }
}

.mdc-ripple-surface--primary:hover:before {
    opacity: .08;
}

.mdc-ripple-surface--primary.mdc-ripple-upgraded--background-focused:before, .mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .24;
}

.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .32;
}

.mdc-ripple-surface--primary.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.32;
}

.mdc-ripple-surface--accent:after, .mdc-ripple-surface--accent:before {
    background-color: #2d8c2d;
}

@supports not (-ms-ime-align:auto) {
    .mdc-ripple-surface--accent: after, .mdc-ripple-surface--accent:before {
        background-color: var(--mdc-theme-secondary, #2d8c2d);
    }
}

.mdc-ripple-surface--accent:hover:before {
    opacity: .04;
}

.mdc-ripple-surface--accent.mdc-ripple-upgraded--background-focused:before, .mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-ripple-surface--accent.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

@keyframes mdc-select-float-native-control {
    0% {
        transform: translateY(8px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mdc-select {
    background-image: url("data:image/svg+xml; charset=utf-8, %3Csvg width='10' height='5' viewBox='7 10 10 5' xmlns='http: //www.w3.org/2000/svg'%3E%3Cpath fill='%230' fill-rule='evenodd' opacity='.54' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    height: 52px;
    background-repeat: no-repeat;
    background-position: right 8px bottom 12px;
}

.mdc-select:not(.mdc-select--disabled) {
    background-color: transparent;
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control {
    color: rgba(0, 0, 0, .87);
}

.mdc-select:not(.mdc-select--disabled) .mdc-floating-label {
    color: rgba(0, 0, 0, .6);
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control {
    border-bottom-color: rgba(0, 0, 0, .42);
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control:focus ~ .mdc-line-ripple {
    background-color: #fbda4b;
    background-color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control:focus ~ .mdc-floating-label {
    color: rgba(251, 218, 75, .87);
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control:hover {
    border-bottom-color: rgba(0, 0, 0, .87);
}

.mdc-select[dir=rtl], [dir=rtl] .mdc-select {
    background-position: left 8px bottom 12px;
}

.mdc-select__native-control {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 400;
    letter-spacing: .00937em;
    text-decoration: inherit;
    text-transform: inherit;
    width: 100%;
    padding: 20px 26px 4px 0;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0;
    outline: none;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
}

.mdc-select__native-control[dir=rtl], [dir=rtl] .mdc-select__native-control {
    padding-left: 26px;
    padding-right: 0;
}

.mdc-select__native-control::-ms-expand {
    display: none;
}

@-moz-document url-prefix("") {
    .mdc-select__native-control {
        text-indent: -2px;
    }
}

.mdc-select .mdc-floating-label {
    pointer-events: none;
}

.mdc-select .mdc-select__native-control:focus ~ .mdc-line-ripple:after {
    transform: scaleY(2);
    opacity: 1;
}

.mdc-select--box {
    --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;
    height: 56px;
    border-radius: 4px 4px 0 0;
    background-position: right 10px center;
    overflow: hidden;
}

.mdc-select--box:not(.mdc-select--disabled) {
    background-color: #f5f5f5;
}

.mdc-select--box:after, .mdc-select--box:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-select--box:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-select--box.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-select--box.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-select--box.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-select--box.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-select--box.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-select--box:after, .mdc-select--box:before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

.mdc-select--box.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-select--box:after, .mdc-select--box:before {
    background-color: rgba(0, 0, 0, .87);
}

.mdc-select--box:hover:before {
    opacity: .04;
}

.mdc-select--box.mdc-ripple-upgraded--background-focused:before, .mdc-select--box:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-select--box[dir=rtl], [dir=rtl] .mdc-select--box {
    background-position: left 10px center;
}

.mdc-select--box .mdc-select__native-control {
    padding-left: 16px;
    padding-right: 26px;
    height: 56px;
    border-radius: 4px 4px 0 0;
}

.mdc-select--box .mdc-select__native-control[dir=rtl], [dir=rtl] .mdc-select--box .mdc-select__native-control {
    padding-left: 26px;
    padding-right: 16px;
}

.mdc-select--box .mdc-floating-label {
    left: 16px;
    right: auto;
    bottom: 12px;
    line-height: 1.75rem;
}

.mdc-select--box .mdc-floating-label[dir=rtl], [dir=rtl] .mdc-select--box .mdc-floating-label {
    left: auto;
    right: 16px;
}

.mdc-select--box .mdc-floating-label--float-above {
    transform: translateY(-40%) scale(.75);
}

.mdc-select--outlined {
    height: 56px;
    border: none;
    background-position: right 10px center;
}

.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__idle {
    border-color: rgba(0, 0, 0, .24);
}

.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__path {
    stroke: rgba(0, 0, 0, .24);
}

.mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select__native-control:focus) .mdc-select__native-control:hover ~ .mdc-notched-outline__idle {
    border-color: rgba(0, 0, 0, .87);
}

.mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select__native-control:focus) .mdc-select__native-control:hover ~ .mdc-notched-outline .mdc-notched-outline__path {
    stroke: rgba(0, 0, 0, .87);
}

.mdc-select--outlined:not(.mdc-select--disabled) .mdc-select__native-control:focus ~ .mdc-notched-outline .mdc-notched-outline__path {
    stroke-width: 2px;
    stroke: #fbda4b;
    stroke: var(--mdc-theme-primary, #fbda4b);
}

.mdc-select--outlined .mdc-floating-label--float-above {
    transform: translateY(-130%) scale(.75);
}

.mdc-select--outlined .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-text-field-outlined .25s 1;
}

.mdc-select--outlined .mdc-notched-outline, .mdc-select--outlined .mdc-notched-outline__idle {
    border-radius: 4px;
}

.mdc-select--outlined[dir=rtl], [dir=rtl] .mdc-select--outlined {
    background-position: left 10px center;
}

.mdc-select--outlined .mdc-select__native-control {
    display: flex;
    padding: 12px 26px 12px 16px;
    border: none;
    background-color: transparent;
    z-index: 1;
}

.mdc-select--outlined .mdc-select__native-control[dir=rtl], [dir=rtl] .mdc-select--outlined .mdc-select__native-control {
    padding-left: 26px;
    padding-right: 16px;
}

.mdc-select--outlined .mdc-floating-label {
    left: 16px;
    right: auto;
    position: absolute;
    bottom: 20px;
}

.mdc-select--outlined .mdc-floating-label[dir=rtl], [dir=rtl] .mdc-select--outlined .mdc-floating-label {
    left: auto;
    right: 16px;
}

.mdc-select--disabled {
    background-image: url("data:image/svg+xml; charset=utf-8, %3Csvg width='10' height='5' viewBox='7 10 10 5' xmlns='http: //www.w3.org/2000/svg'%3E%3Cpath fill='%23%23000' fill-rule='evenodd' opacity='.54' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    opacity: .38;
    cursor: default;
    pointer-events: none;
}

.mdc-select--disabled .mdc-floating-label {
    color: rgba(0, 0, 0, .37);
}

.mdc-select--disabled .mdc-line-ripple {
    display: none;
}

.mdc-select--disabled .mdc-select__native-control {
    border-bottom-style: dotted;
}

.mdc-select--disabled.mdc-select--box {
    background-color: #fafafa;
}

.mdc-select--disabled.mdc-select--outlined .mdc-select__native-control {
    border-bottom-style: none;
}

.mdc-select--disabled.mdc-select--outlined .mdc-notched-outline__idle {
    border-color: rgba(0, 0, 0, .16);
}

.mdc-select--disabled.mdc-select--outlined .mdc-notched-outline__path {
    stroke: rgba(0, 0, 0, .16);
}

.mdc-shape-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.mdc-shape-container__corner {
    position: absolute;
    z-index: 1;
}

.mdc-shape-container__corner:after, .mdc-shape-container__corner:before {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    content: ""
}

.mdc-shape-container__corner--top-left {
    transform: rotate(-45deg);
}

.mdc-shape-container__corner--top-right {
    transform: rotate(45deg);
}

.mdc-shape-container__corner--bottom-right {
    transform: rotate(135deg);
}

.mdc-shape-container__corner--bottom-left {
    transform: rotate(-135deg);
}

@keyframes mdc-slider-emphasize {
    0% {
        animation-timing-function: ease-out;
    }

    50% {
        animation-timing-function: ease-in;
        transform: scale(.85);
    }

    to {
        transform: scale(.571);
    }
}

.mdc-slider {
    position: relative;
    width: 100%;
    height: 48px;
    cursor: pointer;
    touch-action: pan-x;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track {
    background-color: #2d8c2d;
    background-color: var(--mdc-theme-secondary, #2d8c2d);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-container {
    background-color: rgba(45, 140, 45, .26);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-marker-container:after, .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-marker:after {
    background-color: #2d8c2d;
    background-color: var(--mdc-theme-secondary, #2d8c2d);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__thumb {
    fill: #2d8c2d;
    fill: var(--mdc-theme-secondary, #2d8c2d);
    stroke: #2d8c2d;
    stroke: var(--mdc-theme-secondary, #2d8c2d);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__focus-ring, .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__pin {
    background-color: #2d8c2d;
    background-color: var(--mdc-theme-secondary, #2d8c2d);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__pin {
    color: #fff;
    color: var(--mdc-theme-text-primary-on-dark, #fff);
}

.mdc-slider--disabled {
    cursor: auto;
}

.mdc-slider--disabled .mdc-slider__track {
    background-color: #9a9a9a;
}

.mdc-slider--disabled .mdc-slider__track-container {
    background-color: hsla(0, 0%, 60.4%, .26);
}

.mdc-slider--disabled .mdc-slider__track-marker-container:after, .mdc-slider--disabled .mdc-slider__track-marker:after {
    background-color: #9a9a9a;
}

.mdc-slider--disabled .mdc-slider__thumb {
    fill: #9a9a9a;
    stroke: #9a9a9a;
    stroke: #fff;
    stroke: var(--mdc-slider-bg-color-behind-component, #fff);
}

.mdc-slider:focus {
    outline: none;
}

.mdc-slider__track-container {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    overflow: hidden;
}

.mdc-slider__track {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: left top;
    will-change: transform;
}

.mdc-slider[dir=rtl] .mdc-slider__track, [dir=rtl] .mdc-slider .mdc-slider__track {
    transform-origin: right top;
}

.mdc-slider__track-marker-container {
    display: flex;
    margin-right: 0;
    margin-left: -1px;
    visibility: hidden;
}

.mdc-slider[dir=rtl] .mdc-slider__track-marker-container, [dir=rtl] .mdc-slider .mdc-slider__track-marker-container {
    margin-right: -1px;
    margin-left: 0;
}

.mdc-slider__track-marker-container:after {
    display: block;
    width: 2px;
    height: 2px;
    content: ""
}

.mdc-slider__track-marker {
    flex: 1;
}

.mdc-slider__track-marker:after {
    display: block;
    width: 2px;
    height: 2px;
    content: ""
}

.mdc-slider__track-marker:first-child:after {
    width: 3px;
}

.mdc-slider__thumb-container {
    position: absolute;
    top: 15px;
    left: 0;
    width: 21px;
    height: 100%;
    user-select: none;
    will-change: transform;
}

.mdc-slider__thumb {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(.571);
    transition: transform .1s ease-out, fill .1s ease-out, stroke .1s ease-out;
    stroke-width: 3.5;
}

.mdc-slider__focus-ring {
    width: 21px;
    height: 21px;
    transition: transform .26667s ease-out, opacity .26667s ease-out, background-color .26667s ease-out;
    border-radius: 50%;
    opacity: 0;
}

.mdc-slider__pin {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-top: -2px;
    margin-left: -2px;
    transform: rotate(-45deg) scale(0) translate(0);
    transition: transform .1s ease-out;
    border-radius: 50% 50% 50% 0;
    z-index: 1;
}

.mdc-slider__pin-value-marker {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: .01786em;
    text-decoration: inherit;
    text-transform: inherit;
    transform: rotate(45deg);
}

.mdc-slider--active .mdc-slider__thumb {
    transform: scaleX(1);
}

.mdc-slider--focus .mdc-slider__thumb {
    animation: mdc-slider-emphasize .26667s linear;
}

.mdc-slider--focus .mdc-slider__focus-ring {
    transform: scale3d(1.55, 1.55, 1.55);
    opacity: .25;
}

.mdc-slider--in-transit .mdc-slider__thumb {
    transition-delay: .14s;
}

.mdc-slider--in-transit .mdc-slider__thumb-container, .mdc-slider--in-transit .mdc-slider__track, .mdc-slider:focus:not(.mdc-slider--active) .mdc-slider__thumb-container, .mdc-slider:focus:not(.mdc-slider--active) .mdc-slider__track {
    transition: transform 80ms ease;
}

.mdc-slider--discrete.mdc-slider--active .mdc-slider__thumb {
    transform: scale(.57143);
}

.mdc-slider--discrete.mdc-slider--active .mdc-slider__pin {
    transform: rotate(-45deg) scale(1) translate(19px, -20px);
}

.mdc-slider--discrete.mdc-slider--focus .mdc-slider__thumb {
    animation: none;
}

.mdc-slider--discrete.mdc-slider--display-markers .mdc-slider__track-marker-container {
    visibility: visible;
}

.mdc-snackbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 50%;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding-right: 24px;
    padding-left: 24px;
    transform: translate(-50%, 100%);
    transition: transform .25s cubic-bezier(.4, 0, 1, 1) 0ms;
    background-color: #323232;
    pointer-events: none;
    will-change: transform;
}

@media (max-width: 599px) {
    .mdc-snackbar {
        left: 0;
        width: 100%;
        transform: translateY(100%);
    }
}

@media (min-width: 600px) {
    .mdc-snackbar {
        min-width: 288px;
        max-width: 568px;
        border-radius: 2px;
    }
}

@media (min-width: 600px) {
    .mdc-snackbar--align-start {
        left: 24px;
        right: auto;
        bottom: 24px;
        transform: translateY(200%);
    }

    .mdc-snackbar--align-start[dir=rtl], [dir=rtl] .mdc-snackbar--align-start {
        left: auto;
        right: 24px;
    }
}

@media (max-width: 599px) {
    .mdc-snackbar--align-start {
        bottom: 0;
        left: 0;
        width: 100%;
        transform: translateY(100%);
    }
}

.mdc-snackbar--active {
    transform: translate(0);
    transition: transform .25s cubic-bezier(0, 0, .2, 1) 0ms;
    pointer-events: auto;
}

.mdc-snackbar--active:not(.mdc-snackbar--align-start) {
    transform: translate(-50%);
}

@media (max-width: 599px) {
    .mdc-snackbar--active:

not(.mdc-snackbar--align-start

) {
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translate(0);
}
}

.mdc-snackbar__action-wrapper {
    padding-left: 24px;
    padding-right: 0;
}

.mdc-snackbar__action-wrapper[dir=rtl], [dir=rtl] .mdc-snackbar__action-wrapper {
    padding-left: 0;
    padding-right: 24px;
}

.mdc-snackbar--action-on-bottom {
    flex-direction: column;
}

.mdc-snackbar__text {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    letter-spacing: .03125em;
    text-decoration: inherit;
    text-transform: inherit;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    align-items: center;
    height: 48px;
    transition: opacity .3s cubic-bezier(.4, 0, 1, 1) 0ms;
    opacity: 0;
    color: #fff;
}

.mdc-snackbar[dir=rtl] .mdc-snackbar__text, [dir=rtl] .mdc-snackbar .mdc-snackbar__text {
    margin-left: auto;
    margin-right: 0;
}

@media (min-width: 600px) {
    .mdc-snackbar__text {
        padding-left: 0;
        padding-right: 24px;
    }

    .mdc-snackbar__text[dir=rtl], [dir=rtl] .mdc-snackbar__text {
        padding-left: 24px;
        padding-right: 0;
    }
}

.mdc-snackbar--action-on-bottom .mdc-snackbar__text {
    margin-right: inherit;
}

.mdc-snackbar--action-on-bottom .mdc-snackbar__action-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    margin: -12px 0 8px auto;
}

.mdc-snackbar--action-on-bottom .mdc-snackbar__action-wrapper[dir=rtl], [dir=rtl] .mdc-snackbar--action-on-bottom .mdc-snackbar__action-wrapper {
    margin-left: 0;
    margin-right: auto;
}

.mdc-snackbar--multiline .mdc-snackbar__text {
    height: 80px;
}

.mdc-snackbar__action-button {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 2.25rem;
    font-weight: 500;
    letter-spacing: .08929em;
    text-decoration: none;
    text-transform: uppercase;
    color: #2d8c2d;
    color: var(--mdc-theme-secondary, #2d8c2d);
    padding: 0;
    transition: opacity .3s cubic-bezier(.4, 0, 1, 1) 0ms;
    border: none;
    outline: none;
    background-color: transparent;
    opacity: 0;
    user-select: none;
    -webkit-appearance: none;
    visibility: hidden;
}

.mdc-snackbar__action-button::-moz-focus-inner {
    border: 0;
}

.mdc-snackbar__action-button:hover {
    cursor: pointer;
}

.mdc-snackbar__action-button:not([aria-hidden]) {
    visibility: inherit;
}

.mdc-snackbar--active .mdc-snackbar__action-button:not([aria-hidden]), .mdc-snackbar--active .mdc-snackbar__text {
    transition: opacity .3s cubic-bezier(.4, 0, 1, 1) 0ms;
    opacity: 1;
}

.mdc-snackbar--multiline.mdc-snackbar--action-on-bottom .mdc-snackbar__text {
    margin: 0;
}

.mdc-switch {
    display: inline-block;
    position: relative;
    outline: none;
    user-select: none;
}

.mdc-switch.mdc-switch--checked .mdc-switch__thumb, .mdc-switch.mdc-switch--checked .mdc-switch__track {
    background-color: #2d8c2d;
    background-color: var(--mdc-theme-secondary, #2d8c2d);
    border-color: #2d8c2d;
    border-color: var(--mdc-theme-secondary, #2d8c2d);
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__track {
    background-color: #000;
    border-color: #000;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb {
    background-color: #fff;
    border-color: #fff;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:after, .mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:before {
    background-color: #9e9e9e;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:hover:before {
    opacity: .08;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay.mdc-ripple-upgraded--background-focused:before, .mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .24;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .32;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.32;
}

.mdc-switch__native-control {
    left: 0;
    right: auto;
    position: absolute;
    top: 0;
    width: 68px;
    height: 48px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    pointer-events: auto;
}

.mdc-switch__native-control[dir=rtl], [dir=rtl] .mdc-switch__native-control {
    left: auto;
    right: 0;
}

.mdc-switch__track {
    box-sizing: border-box;
    width: 32px;
    height: 14px;
    transition: opacity 90ms cubic-bezier(.4, 0, .2, 1), background-color 90ms cubic-bezier(.4, 0, .2, 1), border-color 90ms cubic-bezier(.4, 0, .2, 1);
    border: 1px solid;
    border-radius: 7px;
    opacity: .38;
}

.mdc-switch__thumb-underlay {
    left: -18px;
    right: auto;
    --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;
    display: flex;
    position: absolute;
    top: -17px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transform: translateX(0);
    transition: transform 90ms cubic-bezier(.4, 0, .2, 1), background-color 90ms cubic-bezier(.4, 0, .2, 1), border-color 90ms cubic-bezier(.4, 0, .2, 1);
}

.mdc-switch__thumb-underlay[dir=rtl], [dir=rtl] .mdc-switch__thumb-underlay {
    left: auto;
    right: -18px;
}

.mdc-switch__thumb-underlay:after, .mdc-switch__thumb-underlay:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-switch__thumb-underlay:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-switch__thumb-underlay:after, .mdc-switch__thumb-underlay:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded:after, .mdc-switch__thumb-underlay.mdc-ripple-upgraded:before {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-switch__thumb-underlay:after, .mdc-switch__thumb-underlay:before {
    background-color: #2d8c2d;
}

@supports not (-ms-ime-align:auto) {
    .mdc-switch__thumb-underlay: after, .mdc-switch__thumb-underlay:before {
        background-color: var(--mdc-theme-secondary, #2d8c2d);
    }
}

.mdc-switch__thumb-underlay:hover:before {
    opacity: .04;
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded--background-focused:before, .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-switch__thumb {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 10px solid;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.mdc-switch--checked .mdc-switch__track {
    opacity: .54;
}

.mdc-switch--checked .mdc-switch__thumb-underlay {
    transform: translateX(20px);
}

.mdc-switch--checked .mdc-switch__native-control, .mdc-switch--checked .mdc-switch__thumb-underlay[dir=rtl], [dir=rtl] .mdc-switch--checked .mdc-switch__thumb-underlay {
    transform: translateX(-20px);
}

.mdc-switch--checked .mdc-switch__native-control[dir=rtl], [dir=rtl] .mdc-switch--checked .mdc-switch__native-control {
    transform: translateX(20px);
}

.mdc-switch--disabled {
    opacity: .38;
    pointer-events: none;
}

.mdc-switch--disabled .mdc-switch__thumb {
    border-width: 1px;
}

.mdc-switch--disabled .mdc-switch__native-control {
    cursor: default;
    pointer-events: none;
}

.mdc-tab {
    position: relative;
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 2.25rem;
    font-weight: 500;
    letter-spacing: .08929em;
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
    box-sizing: border-box;
    height: 48px;
    padding: 0 24px;
    border: none;
    outline: none;
    background: none;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    z-index: 1;
}

.mdc-tab .mdc-tab__icon, .mdc-tab .mdc-tab__text-label {
    color: #000;
    color: var(--mdc-theme-on-surface, #000);
}

.mdc-tab--min-width {
    flex: 0 1 auto;
}

.mdc-tab__ripple {
    --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;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mdc-tab__ripple:after, .mdc-tab__ripple:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-tab__ripple:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-tab__ripple.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-tab__ripple.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-tab__ripple.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-tab__ripple.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-tab__ripple.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-tab__ripple:after, .mdc-tab__ripple:before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

.mdc-tab__ripple.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-tab__ripple:after, .mdc-tab__ripple:before {
    background-color: #fbda4b;
}

@supports not (-ms-ime-align:auto) {
    .mdc-tab__ripple: after, .mdc-tab__ripple:before {
        background-color: var(--mdc-theme-primary, #fbda4b);
    }
}

.mdc-tab__ripple:hover:before {
    opacity: .08;
}

.mdc-tab__ripple.mdc-ripple-upgraded--background-focused:before, .mdc-tab__ripple:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .24;
}

.mdc-tab__ripple:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-tab__ripple:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .32;
}

.mdc-tab__ripple.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.32;
}

.mdc-tab__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
    pointer-events: none;
}

.mdc-tab__icon, .mdc-tab__text-label {
    z-index: 2;
}

.mdc-tab__text-label {
    display: inline-block;
    opacity: .6;
    line-height: 1;
}

.mdc-tab__icon {
    width: 24px;
    height: 24px;
    opacity: .54;
}

.mdc-tab--stacked {
    height: 72px;
}

.mdc-tab--stacked .mdc-tab__content {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.mdc-tab--stacked .mdc-tab__icon {
    padding-top: 12px;
}

.mdc-tab--stacked .mdc-tab__text-label {
    padding-bottom: 16px;
}

.mdc-tab--animating-activate .mdc-tab__icon, .mdc-tab--animating-activate .mdc-tab__text-label, .mdc-tab--animating-deactivate .mdc-tab__icon, .mdc-tab--animating-deactivate .mdc-tab__text-label {
    transition: color .15s linear, opacity .15s linear;
}

.mdc-tab--animating-activate .mdc-tab__icon, .mdc-tab--animating-activate .mdc-tab__text-label {
    transition-delay: .1s;
}

.mdc-tab--active .mdc-tab__icon, .mdc-tab--active .mdc-tab__text-label {
    color: #fbda4b;
    color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-tab--active .mdc-tab__icon, .mdc-tab--active .mdc-tab__text-label {
    opacity: 1;
}

.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon + .mdc-tab__text-label {
    padding-left: 8px;
    padding-right: 0;
}

.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon + .mdc-tab__text-label[dir=rtl], [dir=rtl] .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon + .mdc-tab__text-label {
    padding-left: 0;
    padding-right: 8px;
}

.mdc-tab-bar {
    width: 100%
}

.mdc-tab-indicator {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mdc-tab-indicator > .mdc-tab-indicator__content--underline {
    background-color: #fbda4b;
    background-color: var(--mdc-theme-primary, #fbda4b);
    height: 2px;
}

.mdc-tab-indicator > .mdc-tab-indicator__content--icon {
    color: #2d8c2d;
    color: var(--mdc-theme-secondary, #2d8c2d);
    height: 34px;
    font-size: 34px;
}

.mdc-tab-indicator__content {
    transform-origin: left;
    opacity: 0;
}

.mdc-tab-indicator__content--underline {
    align-self: flex-end;
    width: 100%
}

.mdc-tab-indicator__content--icon {
    align-self: center;
    margin: 0 auto;
}

.mdc-tab-indicator--active > .mdc-tab-indicator__content {
    opacity: 1;
}

.mdc-tab-indicator--sliding-activate > .mdc-tab-indicator__content {
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}

.mdc-tab-indicator--fading-activate > .mdc-tab-indicator__content, .mdc-tab-indicator--fading-deactivate > .mdc-tab-indicator__content {
    transition: opacity .15s linear;
}

.mdc-tab-indicator--fading-activate > .mdc-tab-indicator__content {
    transition-delay: .1s;
}

.mdc-tab-scroller {
    overflow-y: hidden;
}

.mdc-tab-scroller__test {
    position: absolute;
    top: -9999px;
    width: 100px;
    height: 100px;
    overflow-x: scroll;
}

.mdc-tab-scroller__scroll-area {
    -webkit-overflow-scrolling: touch;
    display: flex;
    overflow-x: hidden;
}

.mdc-tab-scroller__scroll-area::-webkit-scrollbar, .mdc-tab-scroller__test::-webkit-scrollbar {
    display: none;
}

.mdc-tab-scroller__scroll-area--scroll {
    overflow-x: scroll;
}

.mdc-tab-scroller__scroll-content {
    position: relative;
    display: flex;
    flex: 1 0 auto;
    transform: none;
    will-change: transform;
}

.mdc-tab-scroller--align-start .mdc-tab-scroller__scroll-content {
    justify-content: flex-start;
}

.mdc-tab-scroller--align-end .mdc-tab-scroller__scroll-content {
    justify-content: flex-end;
}

.mdc-tab-scroller--align-center .mdc-tab-scroller__scroll-content {
    justify-content: center;
}

.mdc-tab-scroller--animating .mdc-tab-scroller__scroll-area {
    -webkit-overflow-scrolling: auto;
}

.mdc-tab-scroller--animating .mdc-tab-scroller__scroll-content {
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}

.mdc-text-field-helper-text {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: .03333em;
    text-decoration: inherit;
    text-transform: inherit;
    margin: 0;
    transition: opacity .18s cubic-bezier(.4, 0, .2, 1);
    opacity: 0;
    will-change: opacity;
}

.mdc-text-field + .mdc-text-field-helper-text {
    margin-bottom: 8px;
}

.mdc-text-field-helper-text--persistent {
    transition: none;
    opacity: 1;
    will-change: auto;
}

.mdc-text-field--with-leading-icon .mdc-text-field__icon, .mdc-text-field--with-trailing-icon .mdc-text-field__icon {
    position: absolute;
    bottom: 16px;
    cursor: pointer;
}

.mdc-text-field__icon:not([tabindex]), .mdc-text-field__icon[tabindex="-1"] {
    cursor: default;
    pointer-events: none;
}

.mdc-text-field {
    display: inline-block;
    position: relative;
    margin-bottom: 8px;
    will-change: opacity, transform, color;
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input {
    border-bottom-color: rgba(0, 0, 0, .42);
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input:hover {
    border-bottom-color: rgba(0, 0, 0, .87);
}

.mdc-text-field .mdc-line-ripple {
    background-color: #fbda4b;
    background-color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input {
    color: rgba(0, 0, 0, .87);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: rgba(0, 0, 0, .6);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
    color: rgba(0, 0, 0, .6);
}

.mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-text {
    color: rgba(0, 0, 0, .6);
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--textarea) {
    border-bottom-color: rgba(0, 0, 0, .12);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon {
    color: rgba(0, 0, 0, .54);
}

.mdc-text-field .mdc-text-field__input {
    caret-color: #fbda4b;
    caret-color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-text-field__input {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 400;
    letter-spacing: .00937em;
    text-decoration: inherit;
    text-transform: inherit;
    width: 100%;
    height: 30px;
    padding: 20px 0 1px;
    transition: opacity .18s cubic-bezier(.4, 0, .2, 1);
    border: none;
    border-bottom: 1px solid;
    border-radius: 0;
    background: none;
    appearance: none;
}

.mdc-text-field__input::placeholder {
    transition: color .18s cubic-bezier(.4, 0, .2, 1);
    opacity: 1;
}

.mdc-text-field__input:focus {
    outline: none;
}

.mdc-text-field__input:invalid {
    box-shadow: none;
}

.mdc-text-field__input:-webkit-autofill + .mdc-floating-label {
    transform: translateY(-100%) scale(.75);
    cursor: auto;
}

.mdc-text-field--outlined {
    height: 56px;
    border: none;
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__idle {
    border-color: rgba(0, 0, 0, .24);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__path {
    stroke: rgba(0, 0, 0, .24);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline__idle, .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline__idle {
    border-color: rgba(0, 0, 0, .87);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline .mdc-notched-outline__path, .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline .mdc-notched-outline__path {
    stroke: rgba(0, 0, 0, .87);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__path {
    stroke: #fbda4b;
    stroke: var(--mdc-theme-primary, #fbda4b);
}

.mdc-text-field--outlined .mdc-floating-label--float-above {
    transform: translateY(-130%) scale(.75);
}

.mdc-text-field--outlined .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-text-field-outlined .25s 1;
}

.mdc-text-field--outlined .mdc-notched-outline, .mdc-text-field--outlined .mdc-notched-outline__idle {
    border-radius: 4px;
}

.mdc-text-field--outlined .mdc-text-field__input {
    display: flex;
    padding: 12px;
    border: none !important;
    background-color: transparent;
    z-index: 1;
}

.mdc-text-field--outlined .mdc-floating-label {
    left: 16px;
    right: auto;
    position: absolute;
    bottom: 20px;
}

.mdc-text-field--outlined .mdc-floating-label[dir=rtl], [dir=rtl] .mdc-text-field--outlined .mdc-floating-label {
    left: auto;
    right: 16px;
}

.mdc-text-field--outlined .mdc-text-field__icon {
    z-index: 2;
}

.mdc-text-field--outlined.mdc-text-field--focused .mdc-notched-outline__path {
    stroke-width: 2px;
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input {
    color: rgba(0, 0, 0, .6);
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__idle {
    border-color: rgba(0, 0, 0, .06);
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__path {
    stroke: rgba(0, 0, 0, .06);
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input {
    border-bottom: none;
}

.mdc-text-field--outlined.mdc-text-field--dense {
    height: 48px;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
    transform: translateY(-110%) scale(.923);
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-text-field-outlined-dense .25s 1;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__input {
    padding: 12px 12px 7px;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label {
    bottom: 16px;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__icon {
    top: 12px;
}

.mdc-text-field--box {
    --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;
    border-radius: 4px 4px 0 0;
    display: inline-flex;
    position: relative;
    height: 56px;
    margin-top: 16px;
    overflow: hidden;
}

.mdc-text-field--box:after, .mdc-text-field--box:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-text-field--box:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-text-field--box.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-text-field--box.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-text-field--box.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-text-field--box.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-text-field--box.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-text-field--box:after, .mdc-text-field--box:before {
    background-color: rgba(0, 0, 0, .87);
}

.mdc-text-field--box:hover:before {
    opacity: .04;
}

.mdc-text-field--box.mdc-ripple-upgraded--background-focused:before, .mdc-text-field--box:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-text-field--box:after, .mdc-text-field--box:before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

.mdc-text-field--box.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-text-field--box:not(.mdc-text-field--disabled) {
    background-color: #f5f5f5;
}

.mdc-text-field--box .mdc-floating-label--float-above {
    transform: translateY(-50%) scale(.75);
}

.mdc-text-field--box .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-text-field-box .25s 1;
}

.mdc-text-field--box .mdc-text-field__input {
    align-self: flex-end;
    box-sizing: border-box;
    height: 100%;
    padding: 20px 16px 0;
}

.mdc-text-field--box .mdc-floating-label {
    left: 16px;
    right: auto;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 48px);
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
}

.mdc-text-field--box .mdc-floating-label[dir=rtl], [dir=rtl] .mdc-text-field--box .mdc-floating-label {
    left: auto;
    right: 16px;
}

.mdc-text-field--box.mdc-text-field--disabled {
    background-color: #fafafa;
    border-bottom: none;
}

.mdc-text-field--box.mdc-text-field--disabled .mdc-text-field__input {
    border-bottom-color: rgba(0, 0, 0, .06);
}

.mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: rgba(0, 0, 0, .37);
}

.mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
    color: rgba(0, 0, 0, .37);
}

.mdc-text-field--box.mdc-text-field--dense .mdc-floating-label--float-above {
    transform: translateY(-70%) scale(.923);
}

.mdc-text-field--box.mdc-text-field--dense .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-text-field-box-dense .25s 1;
}

.mdc-text-field--box.mdc-text-field--dense .mdc-text-field__input {
    padding: 12px 12px 0;
}

.mdc-text-field--with-leading-icon .mdc-text-field__icon {
    left: 15px;
    right: auto;
}

.mdc-text-field--with-leading-icon .mdc-text-field__icon[dir=rtl], [dir=rtl] .mdc-text-field--with-leading-icon .mdc-text-field__icon {
    left: auto;
    right: 15px;
}

.mdc-text-field--with-leading-icon .mdc-text-field__input {
    padding-left: 48px;
    padding-right: 15px;
}

.mdc-text-field--with-leading-icon .mdc-text-field__input[dir=rtl], [dir=rtl] .mdc-text-field--with-leading-icon .mdc-text-field__input {
    padding-left: 15px;
    padding-right: 48px;
}

.mdc-text-field--with-leading-icon .mdc-floating-label {
    left: 48px;
    right: auto;
}

.mdc-text-field--with-leading-icon .mdc-floating-label[dir=rtl], [dir=rtl] .mdc-text-field--with-leading-icon .mdc-floating-label {
    left: auto;
    right: 48px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
    transform: translateY(-130%) translateX(-32px) scale(.75);
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl], [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
    transform: translateY(-130%) translateX(32px) scale(.75);
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon .25s 1;
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake, [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl .25s 1;
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
    transform: translateY(-110%) translateX(-21px) scale(.923);
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above[dir=rtl], [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
    transform: translateY(-110%) translateX(21px) scale(.923);
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense .25s 1;
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense[dir=rtl] .mdc-floating-label--shake, [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl .25s 1;
}

.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
    left: auto;
    right: 15px;
}

.mdc-text-field--with-trailing-icon .mdc-text-field__icon[dir=rtl], [dir=rtl] .mdc-text-field--with-trailing-icon .mdc-text-field__icon {
    left: 15px;
    right: auto;
}

.mdc-text-field--with-trailing-icon .mdc-text-field__input {
    padding-left: 15px;
    padding-right: 48px;
}

.mdc-text-field--with-trailing-icon .mdc-text-field__input[dir=rtl], [dir=rtl] .mdc-text-field--with-trailing-icon .mdc-text-field__input {
    padding-left: 48px;
    padding-right: 15px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon, .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
    bottom: 16px;
    transform: scale(.8);
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon {
    left: 12px;
    right: auto;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon[dir=rtl], [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon {
    left: auto;
    right: 12px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input {
    padding-left: 38px;
    padding-right: 12px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input[dir=rtl], [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input {
    padding-left: 12px;
    padding-right: 38px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label {
    left: 38px;
    right: auto;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label[dir=rtl], [dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label {
    left: auto;
    right: 38px;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
    left: auto;
    right: 12px;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon[dir=rtl], [dir=rtl] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
    left: 12px;
    right: auto;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input {
    padding-left: 12px;
    padding-right: 38px;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input[dir=rtl], [dir=rtl] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input {
    padding-left: 38px;
    padding-right: 12px;
}

.mdc-text-field--upgraded:not(.mdc-text-field--fullwidth):not(.mdc-text-field--box) {
    display: inline-flex;
    position: relative;
    align-items: flex-end;
    box-sizing: border-box;
    margin-top: 16px;
}

.mdc-text-field--upgraded:not(.mdc-text-field--fullwidth):not(.mdc-text-field--box):not(.mdc-text-field--textarea):not(.mdc-text-field--outlined) {
    height: 48px;
}

.mdc-text-field--dense {
    margin-top: 12px;
    margin-bottom: 4px;
}

.mdc-text-field--dense .mdc-floating-label--float-above {
    transform: translateY(-110%) scale(.923);
}

.mdc-text-field--dense .mdc-floating-label {
    font-size: .813rem;
}

.mdc-text-field__input:required + .mdc-floating-label:after {
    margin-left: 1px;
    content: "*"
}

.mdc-text-field--textarea {
    border-radius: 4px;
    display: flex;
    width: fit-content;
    height: auto;
    transition: none;
    border: 1px solid;
    overflow: hidden;
}

.mdc-text-field--textarea .mdc-floating-label {
    border-radius: 4px 4px 0 0;
}

.mdc-text-field--textarea .mdc-text-field__input {
    border-radius: 2px;
}

.mdc-text-field--textarea:not(.mdc-text-field--disabled), .mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
    border-color: rgba(0, 0, 0, .73);
}

.mdc-text-field--textarea .mdc-floating-label--float-above {
    transform: translateY(-50%) scale(.923);
}

.mdc-text-field--textarea .mdc-floating-label--shake {
    animation: mdc-floating-label-shake-float-above-textarea .25s 1;
}

.mdc-text-field--textarea .mdc-text-field__input {
    height: auto;
    margin: 0;
    padding: 32px 16px 16px;
    border: 1px solid transparent;
}

.mdc-text-field--textarea .mdc-floating-label {
    background-color: #fff;
    left: 1px;
    right: 0;
    margin-left: 8px;
    margin-right: 0;
    top: 18px;
    bottom: auto;
    margin-top: 2px;
    padding: 12px 8px 8px;
    line-height: 1.15;
    pointer-events: none;
}

.mdc-text-field--textarea .mdc-floating-label[dir=rtl], [dir=rtl] .mdc-text-field--textarea .mdc-floating-label {
    left: 0;
    right: 1px;
    margin-left: 0;
    margin-right: 8px;
}

.mdc-text-field--fullwidth {
    width: 100%
}

.mdc-text-field--fullwidth .mdc-text-field__input {
    resize: vertical;
}

.mdc-text-field--fullwidth:not(.mdc-text-field--textarea) {
    display: block;
    box-sizing: border-box;
    height: 56px;
    margin: 0;
    border: none;
    border-bottom: 1px solid;
    outline: none;
}

.mdc-text-field--fullwidth:not(.mdc-text-field--textarea) .mdc-text-field__input {
    width: 100%;
    height: 100%;
    padding: 0;
    resize: none;
    border: none !important;
}

.mdc-text-field--fullwidth.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--textarea) {
    border-bottom-color: #b00020;
}

.mdc-text-field--dense + .mdc-text-field-helper-text {
    margin-bottom: 4px;
}

.mdc-text-field--box + .mdc-text-field-helper-text, .mdc-text-field--outlined + .mdc-text-field-helper-text, .mdc-text-field--textarea + .mdc-text-field-helper-text {
    margin-right: 16px;
    margin-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(251, 218, 75, .87);
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
    color: rgba(251, 218, 75, .87);
}

.mdc-text-field--focused .mdc-text-field__input:required + .mdc-floating-label:after {
    color: #b00020;
}

.mdc-text-field--focused + .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg) {
    opacity: 1;
}

.mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled), .mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
    border-color: #fbda4b;
    border-color: var(--mdc-theme-primary, #fbda4b);
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input, .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input:hover {
    border-bottom-color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple {
    background-color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
    color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--invalid + .mdc-text-field-helper-text--validation-msg {
    color: #b00020;
}

.mdc-text-field--invalid .mdc-text-field__input {
    caret-color: #b00020;
}

.mdc-text-field--invalid.mdc-text-field--with-trailing-icon:not(.mdc-text-field--disabled) .mdc-text-field__icon {
    color: #b00020;
}

.mdc-text-field--invalid + .mdc-text-field-helper-text--validation-msg {
    opacity: 1;
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__idle, .mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled), .mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
    border-color: #b00020;
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__path {
    stroke: #b00020;
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline__idle, .mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline__idle {
    border-color: #b00020;
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__path, .mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline .mdc-notched-outline__path, .mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline .mdc-notched-outline__path {
    stroke: #b00020;
}

.mdc-text-field--disabled {
    pointer-events: none;
}

.mdc-text-field--disabled .mdc-text-field__input {
    border-bottom-color: rgba(35, 31, 32, .26);
    color: rgba(0, 0, 0, .37);
}

.mdc-text-field--disabled .mdc-floating-label {
    color: rgba(0, 0, 0, .37);
}

.mdc-text-field--disabled .mdc-text-field__input::placeholder {
    color: rgba(0, 0, 0, .37);
}

.mdc-text-field--disabled + .mdc-text-field-helper-text {
    color: rgba(0, 0, 0, .37);
}

.mdc-text-field--disabled .mdc-text-field__icon {
    color: rgba(0, 0, 0, .3);
}

.mdc-text-field--disabled:not(.mdc-text-field--textarea) {
    border-bottom-color: rgba(0, 0, 0, .12);
}

.mdc-text-field--disabled .mdc-text-field__input {
    border-bottom: 1px dotted;
}

.mdc-text-field--disabled .mdc-floating-label {
    cursor: default;
}

.mdc-text-field--textarea.mdc-text-field--disabled {
    border-color: rgba(35, 31, 32, .26);
    background-color: #f9f9f9;
    border-style: solid;
}

.mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__input:focus {
    border-color: rgba(35, 31, 32, .26);
}

.mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__input {
    border: 1px solid transparent;
}

.mdc-text-field--textarea.mdc-text-field--disabled .mdc-floating-label {
    background-color: #f9f9f9;
}

@keyframes mdc-floating-label-shake-float-above-text-field-box {
    0% {
        transform: translateX(0) translateY(-50%) scale(.75);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(4%) translateY(-50%) scale(.75);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(-4%) translateY(-50%) scale(.75);
    }

    to {
        transform: translateX(0) translateY(-50%) scale(.75);
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-box-dense {
    0% {
        transform: translateX(0) translateY(-70%) scale(.923);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(4%) translateY(-70%) scale(.923);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(-4%) translateY(-70%) scale(.923);
    }

    to {
        transform: translateX(0) translateY(-70%) scale(.923);
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined {
    0% {
        transform: translateX(0) translateY(-130%) scale(.75);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(4%) translateY(-130%) scale(.75);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(-4%) translateY(-130%) scale(.75);
    }

    to {
        transform: translateX(0) translateY(-130%) scale(.75);
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-dense {
    0% {
        transform: translateX(0) translateY(-110%) scale(.923);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(4%) translateY(-110%) scale(.923);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(-4%) translateY(-110%) scale(.923);
    }

    to {
        transform: translateX(0) translateY(-110%) scale(.923);
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon {
    0% {
        transform: translateX(-32px) translateY(-130%) scale(.75);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(calc(4% - 32px)) translateY(-130%) scale(.75);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(.75);
    }

    to {
        transform: translateX(-32px) translateY(-130%) scale(.75);
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense {
    0% {
        transform: translateX(-21px) translateY(-110%) scale(.923);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(calc(4% - 21px)) translateY(-110%) scale(.923);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(calc(-4% - 21px)) translateY(-110%) scale(.923);
    }

    to {
        transform: translateX(-21px) translateY(-110%) scale(.923);
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
    0% {
        transform: translateX(32px) translateY(-130%) scale(.75);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(calc(4% - -32px)) translateY(-130%) scale(.75);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(calc(-4% - -32px)) translateY(-130%) scale(.75);
    }

    to {
        transform: translateX(32px) translateY(-130%) scale(.75);
    }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl {
    0% {
        transform: translateX(21px) translateY(-110%) scale(.923);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(calc(4% - -21px)) translateY(-110%) scale(.923);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(calc(-4% - -21px)) translateY(-110%) scale(.923);
    }

    to {
        transform: translateX(21px) translateY(-110%) scale(.923);
    }
}

@keyframes mdc-floating-label-shake-float-above-textarea {
    0% {
        transform: translateX(0) translateY(-50%) scale(.923);
    }

    33% {
        animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
        transform: translateX(4%) translateY(-50%) scale(.923);
    }

    66% {
        animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
        transform: translateX(-4%) translateY(-50%) scale(.923);
    }

    to {
        transform: translateX(0) translateY(-50%) scale(.923);
    }
}

:root {
    --mdc-theme-primary: #fbda4b;
    --mdc-theme-secondary: #2d8c2d;
    --mdc-theme-background: #fff;
    --mdc-theme-surface: #fff;
    --mdc-theme-on-primary: #000;
    --mdc-theme-on-secondary: #fff;
    --mdc-theme-on-surface: #000;
    --mdc-theme-text-primary-on-background: rgba(0, 0, 0, 0.87);
    --mdc-theme-text-secondary-on-background: rgba(0, 0, 0, 0.54);
    --mdc-theme-text-hint-on-background: rgba(0, 0, 0, 0.38);
    --mdc-theme-text-disabled-on-background: rgba(0, 0, 0, 0.38);
    --mdc-theme-text-icon-on-background: rgba(0, 0, 0, 0.38);
    --mdc-theme-text-primary-on-light: rgba(0, 0, 0, 0.87);
    --mdc-theme-text-secondary-on-light: rgba(0, 0, 0, 0.54);
    --mdc-theme-text-hint-on-light: rgba(0, 0, 0, 0.38);
    --mdc-theme-text-disabled-on-light: rgba(0, 0, 0, 0.38);
    --mdc-theme-text-icon-on-light: rgba(0, 0, 0, 0.38);
    --mdc-theme-text-primary-on-dark: #fff;
    --mdc-theme-text-secondary-on-dark: hsla(0, 0%, 100%, 0.7);
    --mdc-theme-text-hint-on-dark: hsla(0, 0%, 100%, 0.5);
    --mdc-theme-text-disabled-on-dark: hsla(0, 0%, 100%, 0.5);
    --mdc-theme-text-icon-on-dark: hsla(0, 0%, 100%, 0.5);
}

.mdc-theme--primary {
    color: #fbda4b !important;
    color: var(--mdc-theme-primary, #fbda4b) !important;
}

.mdc-theme--secondary {
    color: #2d8c2d !important;
    color: var(--mdc-theme-secondary, #2d8c2d) !important;
}

.mdc-theme--background {
    background-color: #fff;
    background-color: var(--mdc-theme-background, #fff);
}

.mdc-theme--surface {
    background-color: #fff;
    background-color: var(--mdc-theme-surface, #fff);
}

.mdc-theme--on-primary {
    color: #000 !important;
    color: var(--mdc-theme-on-primary, #000) !important;
}

.mdc-theme--on-secondary {
    color: #fff !important;
    color: var(--mdc-theme-on-secondary, #fff) !important;
}

.mdc-theme--on-surface {
    color: #000 !important;
    color: var(--mdc-theme-on-surface, #000) !important;
}

.mdc-theme--text-primary-on-background {
    color: rgba(0, 0, 0, .87) !important;
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87)) !important;
}

.mdc-theme--text-secondary-on-background {
    color: rgba(0, 0, 0, .54) !important;
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, .54)) !important;
}

.mdc-theme--text-hint-on-background {
    color: rgba(0, 0, 0, .38) !important;
    color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, .38)) !important;
}

.mdc-theme--text-disabled-on-background {
    color: rgba(0, 0, 0, .38) !important;
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, .38)) !important;
}

.mdc-theme--text-icon-on-background {
    color: rgba(0, 0, 0, .38) !important;
    color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, .38)) !important;
}

.mdc-theme--text-primary-on-light {
    color: rgba(0, 0, 0, .87) !important;
    color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, .87)) !important;
}

.mdc-theme--text-secondary-on-light {
    color: rgba(0, 0, 0, .54) !important;
    color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, .54)) !important;
}

.mdc-theme--text-hint-on-light {
    color: rgba(0, 0, 0, .38) !important;
    color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, .38)) !important;
}

.mdc-theme--text-disabled-on-light {
    color: rgba(0, 0, 0, .38) !important;
    color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, .38)) !important;
}

.mdc-theme--text-icon-on-light {
    color: rgba(0, 0, 0, .38) !important;
    color: var(--mdc-theme-text-icon-on-light, rgba(0, 0, 0, .38)) !important;
}

.mdc-theme--text-primary-on-dark {
    color: #fff !important;
    color: var(--mdc-theme-text-primary-on-dark, #fff) !important;
}

.mdc-theme--text-secondary-on-dark {
    color: hsla(0, 0%, 100%, .7) !important;
    color: var(--mdc-theme-text-secondary-on-dark, hsla(0, 0%, 100%, .7)) !important;
}

.mdc-theme--text-hint-on-dark {
    color: hsla(0, 0%, 100%, .5) !important;
    color: var(--mdc-theme-text-hint-on-dark, hsla(0, 0%, 100%, .5)) !important;
}

.mdc-theme--text-disabled-on-dark {
    color: hsla(0, 0%, 100%, .5) !important;
    color: var(--mdc-theme-text-disabled-on-dark, hsla(0, 0%, 100%, .5)) !important;
}

.mdc-theme--text-icon-on-dark {
    color: hsla(0, 0%, 100%, .5) !important;
    color: var(--mdc-theme-text-icon-on-dark, hsla(0, 0%, 100%, .5)) !important;
}

.mdc-theme--primary-bg {
    background-color: #fbda4b !important;
    background-color: var(--mdc-theme-primary, #fbda4b) !important;
}

.mdc-theme--secondary-bg {
    background-color: #2d8c2d !important;
    background-color: var(--mdc-theme-secondary, #2d8c2d) !important;
}

.mdc-toolbar {
    background-color: #fbda4b;
    background-color: var(--mdc-theme-primary, #fbda4b);
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%
}

.mdc-toolbar, .mdc-toolbar .mdc-toolbar__icon {
    color: rgba(0, 0, 0, .87);
}

.mdc-toolbar .mdc-toolbar__icon:after, .mdc-toolbar .mdc-toolbar__icon:before {
    background-color: rgba(0, 0, 0, .87);
}

.mdc-toolbar .mdc-toolbar__icon:hover:before {
    opacity: .04;
}

.mdc-toolbar .mdc-toolbar__icon.mdc-ripple-upgraded--background-focused:before, .mdc-toolbar .mdc-toolbar__icon:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-toolbar .mdc-toolbar__icon:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-toolbar .mdc-toolbar__icon:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-toolbar .mdc-toolbar__icon.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-toolbar__row {
    display: flex;
    position: relative;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    min-height: 64px;
}

@media (max-width: 959px) and (orientation: landscape) {
    .mdc-toolbar__row {
        min-height: 48px;
    }
}

@media (max-width: 599px) {
    .mdc-toolbar__row {
        min-height: 56px;
    }
}

.mdc-toolbar__section {
    display: inline-flex;
    flex: 1;
    align-items: start;
    justify-content: center;
    box-sizing: border-box;
    min-width: 0;
    height: 100%;
    padding: 8px;
    z-index: 1;
}

@media (max-width: 959px) and (orientation: landscape) {
    .mdc-toolbar__section {
        padding: 0;
    }
}

@media (max-width: 599px) {
    .mdc-toolbar__section {
        padding: 4px 0;
    }
}

.mdc-toolbar__section--align-start {
    padding-left: 12px;
    padding-right: 0;
    justify-content: flex-start;
    order: -1;
}

.mdc-toolbar__section--align-start[dir=rtl], [dir=rtl] .mdc-toolbar__section--align-start {
    padding-left: 0;
    padding-right: 12px;
}

@media (max-width: 959px) and (orientation: landscape) {
    .mdc-toolbar__section--align-start {
        padding-left: 4px;
        padding-right: 0;
    }

    .mdc-toolbar__section--align-start[dir=rtl], [dir=rtl] .mdc-toolbar__section--align-start {
        padding-left: 0;
        padding-right: 4px;
    }
}

@media (max-width: 599px) {
    .mdc-toolbar__section--align-start {
        padding-left: 4px;
        padding-right: 0;
    }

    .mdc-toolbar__section--align-start[dir=rtl], [dir=rtl] .mdc-toolbar__section--align-start {
        padding-left: 0;
        padding-right: 4px;
    }
}

.mdc-toolbar__section--align-end {
    padding-left: 0;
    padding-right: 12px;
    justify-content: flex-end;
    order: 1;
}

.mdc-toolbar__section--align-end[dir=rtl], [dir=rtl] .mdc-toolbar__section--align-end {
    padding-left: 12px;
    padding-right: 0;
}

@media (max-width: 959px) and (orientation: landscape) {
    .mdc-toolbar__section--align-end {
        padding-left: 0;
        padding-right: 4px;
    }

    .mdc-toolbar__section--align-end[dir=rtl], [dir=rtl] .mdc-toolbar__section--align-end {
        padding-left: 4px;
        padding-right: 0;
    }
}

@media (max-width: 599px) {
    .mdc-toolbar__section--align-end {
        padding-left: 0;
        padding-right: 4px;
    }

    .mdc-toolbar__section--align-end[dir=rtl], [dir=rtl] .mdc-toolbar__section--align-end {
        padding-left: 4px;
        padding-right: 0;
    }
}

.mdc-toolbar__title {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 500;
    letter-spacing: .0125em;
    text-decoration: inherit;
    text-transform: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 24px;
    margin-right: 0;
    align-self: center;
    padding: 12px 0;
    line-height: 1.5rem;
    z-index: 1;
}

.mdc-toolbar__title[dir=rtl], [dir=rtl] .mdc-toolbar__title {
    margin-left: 0;
    margin-right: 24px;
}

.mdc-toolbar__icon, .mdc-toolbar__menu-icon {
    --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;
    display: flex;
    position: relative;
    align-items: start;
    justify-content: center;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: none;
    outline: none;
    background-color: transparent;
    fill: currentColor;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.mdc-toolbar__icon:after, .mdc-toolbar__icon:before, .mdc-toolbar__menu-icon:after, .mdc-toolbar__menu-icon:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-toolbar__icon:before, .mdc-toolbar__menu-icon:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-toolbar__icon.mdc-ripple-upgraded:before, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-toolbar__icon.mdc-ripple-upgraded:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-toolbar__icon.mdc-ripple-upgraded--unbounded:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-toolbar__icon.mdc-ripple-upgraded--foreground-activation:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-toolbar__icon.mdc-ripple-upgraded--foreground-deactivation:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-toolbar__icon:after, .mdc-toolbar__icon:before, .mdc-toolbar__menu-icon:after, .mdc-toolbar__menu-icon:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mdc-toolbar__icon.mdc-ripple-upgraded:after, .mdc-toolbar__icon.mdc-ripple-upgraded:before, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:before {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-toolbar__icon.mdc-ripple-upgraded:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-toolbar__menu-icon + .mdc-toolbar__title {
    margin-left: 8px;
    margin-right: 0;
}

.mdc-toolbar__menu-icon + .mdc-toolbar__title[dir=rtl], [dir=rtl] .mdc-toolbar__menu-icon + .mdc-toolbar__title {
    margin-left: 0;
    margin-right: 8px;
}

@media (max-width: 599px) {
    .mdc-toolbar__title {
        margin-left: 16px;
        margin-right: 0;
    }

    .mdc-toolbar__title[dir=rtl], [dir=rtl] .mdc-toolbar__title {
        margin-left: 0;
        margin-right: 16px;
    }
}

.mdc-toolbar--fixed {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
}

.mdc-toolbar--flexible {
    --mdc-toolbar-ratio-to-extend-flexible: 4;
}

.mdc-toolbar--flexible .mdc-toolbar__row:first-child {
    height: 256px;
    height: calc(64px * var(--mdc-toolbar-ratio-to-extend-flexible, 4));
}

@media (max-width: 599px) {
    .mdc-toolbar--flexible .mdc-toolbar__row: first-child {
        height: 224px;
        height: calc(56px * var(--mdc-toolbar-ratio-to-extend-flexible, 4));
    }
}

.mdc-toolbar--flexible .mdc-toolbar__row:first-child:after {
    position: absolute;
    content: ""
}

.mdc-toolbar--flexible-default-behavior .mdc-toolbar__title {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 500;
    letter-spacing: .0125em;
    text-decoration: inherit;
    text-transform: inherit;
    align-self: flex-end;
    line-height: 1.5rem;
}

.mdc-toolbar--flexible-default-behavior .mdc-toolbar__row:first-child:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity .2s ease;
    opacity: 1;
}

.mdc-toolbar--flexible-default-behavior.mdc-toolbar--flexible-space-minimized .mdc-toolbar__row:first-child:after {
    opacity: 0;
}

.mdc-toolbar--flexible-default-behavior.mdc-toolbar--flexible-space-minimized .mdc-toolbar__title {
    font-weight: 500;
}

.mdc-toolbar--waterfall.mdc-toolbar--fixed {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12);
    transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);
    will-change: box-shadow;
}

.mdc-toolbar--waterfall.mdc-toolbar--fixed.mdc-toolbar--flexible-space-minimized {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
}

.mdc-toolbar--waterfall.mdc-toolbar--fixed.mdc-toolbar--fixed-lastrow-only.mdc-toolbar--flexible-space-minimized {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12);
}

.mdc-toolbar--waterfall.mdc-toolbar--fixed.mdc-toolbar--fixed-lastrow-only.mdc-toolbar--fixed-at-last-row {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
}

.mdc-toolbar-fixed-adjust {
    margin-top: 64px;
}

@media (max-width: 959px) and (max-height: 599px) {
    .mdc-toolbar-fixed-adjust {
        margin-top: 48px;
    }
}

@media (max-width: 599px) {
    .mdc-toolbar-fixed-adjust {
        margin-top: 56px;
    }
}

.mdc-toolbar__section--shrink-to-fit {
    flex: none;
}

.mdc-top-app-bar {
    background-color: #fbda4b;
    background-color: var(--mdc-theme-primary, #fbda4b);
    color: rgba(0, 0, 0, .87);
    display: flex;
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    z-index: 4;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon {
    color: #000;
    color: var(--mdc-theme-on-primary, #000);
}

.mdc-top-app-bar .mdc-top-app-bar__action-item:after, .mdc-top-app-bar .mdc-top-app-bar__action-item:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:after, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:before {
    background-color: #000;
}

@supports not (-ms-ime-align:auto) {
    .mdc-top-app-bar .mdc-top-app-bar__action-item: after, .mdc-top-app-bar .mdc-top-app-bar__action-item:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:after, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:before {
        background-color: var(--mdc-theme-on-primary, #000);
    }
}

.mdc-top-app-bar .mdc-top-app-bar__action-item:hover:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:hover:before {
    opacity: .04;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-upgraded--background-focused:before, .mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):focus:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--background-focused:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):focus:before {
    transition-duration: 75ms;
    opacity: .12;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):after, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):after {
    transition: opacity .15s linear;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):active:after, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):active:after {
    transition-duration: 75ms;
    opacity: .16;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-upgraded, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16;
}

.mdc-top-app-bar__row {
    display: flex;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 64px;
}

.mdc-top-app-bar__section {
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 0;
    padding: 8px 12px;
    z-index: 1;
}

.mdc-top-app-bar__section--align-start {
    justify-content: flex-start;
    order: -1;
}

.mdc-top-app-bar__section--align-end {
    justify-content: flex-end;
    order: 1;
}

.mdc-top-app-bar__title {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    font-weight: 500;
    letter-spacing: .0125em;
    text-decoration: inherit;
    text-transform: inherit;
    padding-left: 20px;
    padding-right: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}

.mdc-top-app-bar__title[dir=rtl], [dir=rtl] .mdc-top-app-bar__title {
    padding-left: 0;
    padding-right: 20px;
}

.mdc-top-app-bar__action-item, .mdc-top-app-bar__navigation-icon {
    --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;
    display: flex;
    position: relative;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: none;
    outline: none;
    background-color: transparent;
    fill: currentColor;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.mdc-top-app-bar__action-item:after, .mdc-top-app-bar__action-item:before, .mdc-top-app-bar__navigation-icon:after, .mdc-top-app-bar__navigation-icon:before {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.mdc-top-app-bar__action-item:before, .mdc-top-app-bar__navigation-icon:before {
    transition: opacity 15ms linear;
    z-index: 1;
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded:before, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:before {
    transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:after {
    top: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center center;
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded--unbounded:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--unbounded:after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded--foreground-activation:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--foreground-activation:after {
    animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded--foreground-deactivation:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--foreground-deactivation:after {
    animation: mdc-ripple-fg-opacity-out .15s;
    transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-top-app-bar__action-item:after, .mdc-top-app-bar__action-item:before, .mdc-top-app-bar__navigation-icon:after, .mdc-top-app-bar__navigation-icon:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded:after, .mdc-top-app-bar__action-item.mdc-ripple-upgraded:before, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:before {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0);
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-top-app-bar--short {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    transition: width .25s cubic-bezier(.4, 0, .2, 1);
}

.mdc-top-app-bar--short[dir=rtl], [dir=rtl] .mdc-top-app-bar--short {
    right: 0;
    left: auto;
}

.mdc-top-app-bar--short .mdc-top-app-bar__row {
    height: 56px;
}

.mdc-top-app-bar--short .mdc-top-app-bar__section {
    padding: 4px;
}

.mdc-top-app-bar--short .mdc-top-app-bar__title {
    transition: opacity .2s cubic-bezier(.4, 0, .2, 1);
    opacity: 1;
}

.mdc-top-app-bar--short-collapsed {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    width: 56px;
    transition: width .3s cubic-bezier(.4, 0, .2, 1);
}

.mdc-top-app-bar--short-collapsed[dir=rtl], [dir=rtl] .mdc-top-app-bar--short-collapsed {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
}

.mdc-top-app-bar--short-collapsed .mdc-top-app-bar__title {
    display: none;
}

.mdc-top-app-bar--short-collapsed .mdc-top-app-bar__action-item {
    transition: padding .15s cubic-bezier(.4, 0, .2, 1);
}

.mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item {
    width: 112px;
}

.mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item .mdc-top-app-bar__section--align-end {
    padding-left: 0;
    padding-right: 12px;
}

.mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item .mdc-top-app-bar__section--align-end[dir=rtl], [dir=rtl] .mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item .mdc-top-app-bar__section--align-end {
    padding-left: 12px;
    padding-right: 0;
}

.mdc-top-app-bar--dense .mdc-top-app-bar__row {
    height: 48px;
}

.mdc-top-app-bar--dense .mdc-top-app-bar__section {
    padding: 0 4px;
}

.mdc-top-app-bar--dense .mdc-top-app-bar__title {
    padding-left: 12px;
    padding-right: 0;
}

.mdc-top-app-bar--dense .mdc-top-app-bar__title[dir=rtl], [dir=rtl] .mdc-top-app-bar--dense .mdc-top-app-bar__title {
    padding-left: 0;
    padding-right: 12px;
}

.mdc-top-app-bar--prominent .mdc-top-app-bar__row {
    height: 128px;
}

.mdc-top-app-bar--prominent .mdc-top-app-bar__title {
    align-self: flex-end;
    padding-bottom: 2px;
}

.mdc-top-app-bar--prominent .mdc-top-app-bar__action-item, .mdc-top-app-bar--prominent .mdc-top-app-bar__navigation-icon {
    align-self: flex-start;
}

.mdc-top-app-bar--fixed {
    transition: box-shadow .2s linear;
}

.mdc-top-app-bar--fixed-scrolled {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    transition: box-shadow .2s linear;
}

.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__row {
    height: 96px;
}

.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__section {
    padding: 0 12px;
}

.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__title {
    padding-left: 20px;
    padding-right: 0;
    padding-bottom: 9px;
}

.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__title[dir=rtl], [dir=rtl] .mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__title {
    padding-left: 0;
    padding-right: 20px;
}

.mdc-top-app-bar--fixed-adjust {
    padding-top: 64px;
}

.mdc-top-app-bar--dense-fixed-adjust {
    padding-top: 48px;
}

.mdc-top-app-bar--short-fixed-adjust {
    padding-top: 56px;
}

.mdc-top-app-bar--prominent-fixed-adjust {
    padding-top: 128px;
}

.mdc-top-app-bar--dense-prominent-fixed-adjust {
    padding-top: 96px;
}

@media (max-width: 599px) {
    .mdc-top-app-bar__row {
        height: 56px;
    }

    .mdc-top-app-bar__section {
        padding: 4px;
    }

    .mdc-top-app-bar--short {
        transition: width .2s cubic-bezier(.4, 0, .2, 1);
    }

    .mdc-top-app-bar--short-collapsed {
        transition: width .25s cubic-bezier(.4, 0, .2, 1);
    }

    .mdc-top-app-bar--short-collapsed .mdc-top-app-bar__section--align-end {
        padding-left: 0;
        padding-right: 12px;
    }

    .mdc-top-app-bar--short-collapsed .mdc-top-app-bar__section--align-end[dir=rtl], [dir=rtl] .mdc-top-app-bar--short-collapsed .mdc-top-app-bar__section--align-end {
        padding-left: 12px;
        padding-right: 0;
    }

    .mdc-top-app-bar--prominent .mdc-top-app-bar__title {
        padding-bottom: 6px;
    }

    .mdc-top-app-bar--fixed-adjust {
        padding-top: 56px;
    }
}

.mdc-typography {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

.mdc-typography--headline1 {
    font-size: 6rem;
    line-height: 6rem;
    letter-spacing: -.01563em;
}

.mdc-typography--headline1, .mdc-typography--headline2 {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    text-decoration: inherit;
    text-transform: inherit;
}

.mdc-typography--headline2 {
    font-size: 3.75rem;
    line-height: 3.75rem;
    letter-spacing: -.00833em;
}

.mdc-typography--headline3 {
    font-size: 3rem;
    line-height: 3.125rem;
    letter-spacing: normal;
}

.mdc-typography--headline3, .mdc-typography--headline4 {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    text-decoration: inherit;
    text-transform: inherit;
}

.mdc-typography--headline4 {
    font-size: 2.125rem;
    line-height: 2.5rem;
    letter-spacing: .00735em;
}

.mdc-typography--headline5 {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 700;
    letter-spacing: normal;
    text-decoration: inherit;
    text-transform: inherit;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.mdc-typography--headline6 {
    font-weight: 500;
    letter-spacing: .0125em;
}

.mdc-typography--headline6, .mdc-typography--subtitle1 {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: .875rem;
    text-decoration: inherit;
    text-transform: inherit;
}

.mdc-typography--subtitle1 {
    font-weight: 400;
    letter-spacing: .00937em;
}

.mdc-typography--subtitle2 {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 1.375rem;
    font-weight: 500;
    letter-spacing: .00714em;
    text-decoration: inherit;
    text-transform: inherit;
}

.mdc-typography--body1 {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: .03125em;
}

.mdc-typography--body1, .mdc-typography--body2 {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    text-decoration: inherit;
    text-transform: inherit;
}

.mdc-typography--body2 {
    font-size: .875rem;
    line-height: 1.25rem;
    letter-spacing: .01786em;
}

.mdc-typography--caption {
    font-size: .75rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: .03333em;
    text-decoration: inherit;
    text-transform: inherit;
}

.mdc-typography--button, .mdc-typography--caption {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

.mdc-typography--button {
    font-size: .875rem;
    line-height: 2.25rem;
    letter-spacing: .08929em;
}

.mdc-typography--button, .mdc-typography--overline {
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}

.mdc-typography--overline {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .75rem;
    line-height: 2rem;
    letter-spacing: .16667em;
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
}

article, aside, footer, header, nav, section {
    display: block;
}

h1 {
    font-size: 2em;
    margin: .67em 0;
}

figcaption, figure {
    display: block;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

main {
    display: block;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: inherit;
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

audio, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button, input, optgroup, select, textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

input {
    overflow: visible;
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

fieldset {
    padding: .35em .75em .625em;
}

legend {
    box-sizing: border-box;
    display: table;
    max-width: 100%;
    padding: 0;
    color: inherit;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

details {
    display: block;
}

summary {
    display: list-item;
}

menu {
    display: block;
}

canvas {
    display: inline-block;
}

[hidden], template {
    display: none;
}

*, :after, :before {
    box-sizing: border-box;
}

body {
    background-color: #f3f3f3;
    /*display: flex;*/
    min-height: 100vh;
}

hr {
    background-color: #e6e6e6;
    border: 0;
    display: block;
    height: 1px;
    margin: 15px 0;
}

@media (min-width: 940px) {
    hr {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

a {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    letter-spacing: .03125em;
    text-decoration: inherit;
    text-transform: inherit;
    text-decoration: underline;
    color: #757575;
}

a:focus, a:hover {
    text-decoration: none;
}

.float--left {
    float: left;
}

.float--right {
    float: right;
}

.float--none {
    float: none;
}

.content {
    display: flex;
}

@media (max-width: 939px) {
    .content {
        flex-direction: column;
    }
}

.content-wrap {
    padding: 15px;
}

@media (min-width: 1220px) {
    .content-wrap {
        flex-basis: calc(100% - 280px);
    }

    .content-wrap.content-wrap--login {
        margin-left: 280px;
    }
}

@media (min-width: 940px) {
    .content-wrap {
        padding: 20px;
    }
}

.content main {
    text-align: center;
}

@media (min-width: 940px) {
    .content main {
        flex-basis: calc(100% - 232px);
    }
}

body > svg {
    display: none;
}

ant-icon {
    display: inline-block;
    width: 1em;
}

ant-icon:not([name]) {
    text-indent: -999999px;
}

ant-icon svg {
    display: inline-block;
    fill: currentColor;
    height: 1em;
    vertical-align: -.15em;
    width: 1em;
}

.mdc-button.secondary-text-button:not(:disabled) {
    color: #2d8c2d;
}

.mdc-button.secondary-outlined-button:not(:disabled) {
    color: #2d8c2d;
    border-color: #2d8c2d;
    transition: background-color .28s cubic-bezier(.4, 0, .2, 1), color .28s cubic-bezier(.4, 0, .2, 1), box-shadow .28s cubic-bezier(.4, 0, .2, 1);
}

.mdc-button.secondary-outlined-button:not(:disabled).mdc-button--raised {
    background: transparent;
}

.mdc-button.secondary-outlined-button:not(:disabled):focus, .mdc-button.secondary-outlined-button:not(:disabled):hover {
    background-color: #2d8c2d;
    color: #fff;
}

.mdc-button.float--right {
    margin-top: 16px;
    margin-bottom: 8px;
}

@media (max-width: 479px) {
    .mdc-button {
        margin-bottom: 8px;
    }
}

.mdc-card__content {
    padding: 0 8px;
}

.content-card {
    text-align: left;
    padding: 15px 7px;
    margin-bottom: 15px;
}

@media (min-width: 940px) {
    .content-card {
        padding: 37px;
        margin-bottom: 20px;
    }
}

.content-card--centered {
    text-align: center;
}

.content-card--centered .mdc-typography--underline:after {
    left: 50%;
    transform: translateX(-50%);
}

.content-card__heading.mdc-typography--headline5 {
    margin-top: 0;
}

.content-card .mdc-layout-grid {
    padding: 0;
}

.mdc-typography--underline {
    position: relative;
}

.mdc-typography--underline:after {
    content: "";
    background: #b3b3b3;
    width: 40px;
    height: 2px;
    display: block;
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
}

.mdc-typography--lighter {
    color: #757575;
}

@media (min-width: 940px) {
    .mdc-typography--headline5 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }
}

.collapse {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    transition: max-height .5s cubic-bezier(.215, .61, .355, 1), opacity .5s cubic-bezier(.215, .61, .355, 1), visibility 0s linear .5s;
}

.collapse--active {
    opacity: 1;
    visibility: visible;
    transition: max-height .5s cubic-bezier(.215, .61, .355, 1), opacity .5s cubic-bezier(.215, .61, .355, 1), visibility 0s linear;
}

.collapse__inner {
    overflow: hidden;
}

.collapse__inner:after, .collapse__inner:before {
    display: block;
    content: "";
    clear: both;
}

.menu {
    height: 100vh;
}

.menu .mdc-drawer__drawer {
    position: fixed;
}

.mdc-drawer--persistent .mdc-drawer__drawer {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

.mdc-drawer--persistent .mdc-drawer__header:before {
    padding-top: 120px;
}

.mdc-drawer--persistent.mdc-drawer--open, .mdc-drawer--persistent .mdc-drawer__drawer {
    width: 280px;
}

.mdc-list-item--activated {
    background-color: #fbda4b;
}

.mdc-list-item--highlighted, .mdc-list-item:focus, .mdc-list-item:hover {
    border-left: 3px solid #fbda4b;
    padding-left: 13px;
}

.mdc-list-item .counter {
    background: #db2b39;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    position: absolute;
    left: 20px;
    top: 5px;
}

.mdc-list-item ant-icon {
    margin-right: 20px;
}

.logo {
    width: 166px;
    height: 65px;
    margin: auto;
    display: block;
}

.logo svg {
    width: 100%;
    fill: #2d8c2d;
}

@media (min-width: 940px) {
    .boxes {
        padding-left: 20px;
        flex-basis: 436px;
    }
}

.boxes__date {
    margin: 0;
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 700;
}

.boxes__contact {
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin: 0;
    font-weight: 500;
    position: relative;
}

.boxes__contact ant-icon {
    position: absolute;
    left: 0;
    color: #b3b3b3;
}

@media (min-width: 940px) {
    .boxes__contact ant-icon {
        left: -25px;
    }
}

.boxes__contact a {
    color: inherit;
    text-decoration: none;
}

.boxes__contact a:focus, .boxes__contact a:hover {
    text-decoration: underline;
}

.mdc-elevation--z0 {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12);
}

.mdc-elevation--z1 {
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
}

.mdc-elevation--z2 {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

.mdc-elevation--z3 {
    box-shadow: 0 3px 3px -2px rgba(0, 0, 0, .2), 0 3px 4px 0 rgba(0, 0, 0, .14), 0 1px 8px 0 rgba(0, 0, 0, .12);
}

.mdc-elevation--z4 {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
}

.mdc-elevation--z5 {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 5px 8px 0 rgba(0, 0, 0, .14), 0 1px 14px 0 rgba(0, 0, 0, .12);
}

.mdc-elevation--z6 {
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12);
}

.mdc-elevation--z7 {
    box-shadow: 0 4px 5px -2px rgba(0, 0, 0, .2), 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 1px rgba(0, 0, 0, .12);
}

.mdc-elevation--z8 {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
}

.mdc-elevation--z9 {
    box-shadow: 0 5px 6px -3px rgba(0, 0, 0, .2), 0 9px 12px 1px rgba(0, 0, 0, .14), 0 3px 16px 2px rgba(0, 0, 0, .12);
}

.mdc-elevation--z10 {
    box-shadow: 0 6px 6px -3px rgba(0, 0, 0, .2), 0 10px 14px 1px rgba(0, 0, 0, .14), 0 4px 18px 3px rgba(0, 0, 0, .12);
}

.mdc-elevation--z11 {
    box-shadow: 0 6px 7px -4px rgba(0, 0, 0, .2), 0 11px 15px 1px rgba(0, 0, 0, .14), 0 4px 20px 3px rgba(0, 0, 0, .12);
}

.mdc-elevation--z12 {
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 12px 17px 2px rgba(0, 0, 0, .14), 0 5px 22px 4px rgba(0, 0, 0, .12);
}

.mdc-elevation--z13 {
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, .2), 0 13px 19px 2px rgba(0, 0, 0, .14), 0 5px 24px 4px rgba(0, 0, 0, .12);
}

.mdc-elevation--z14 {
    box-shadow: 0 7px 9px -4px rgba(0, 0, 0, .2), 0 14px 21px 2px rgba(0, 0, 0, .14), 0 5px 26px 4px rgba(0, 0, 0, .12);
}

.mdc-elevation--z15 {
    box-shadow: 0 8px 9px -5px rgba(0, 0, 0, .2), 0 15px 22px 2px rgba(0, 0, 0, .14), 0 6px 28px 5px rgba(0, 0, 0, .12);
}

.mdc-elevation--z16 {
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12);
}

.mdc-elevation--z17 {
    box-shadow: 0 8px 11px -5px rgba(0, 0, 0, .2), 0 17px 26px 2px rgba(0, 0, 0, .14), 0 6px 32px 5px rgba(0, 0, 0, .12);
}

.mdc-elevation--z18 {
    box-shadow: 0 9px 11px -5px rgba(0, 0, 0, .2), 0 18px 28px 2px rgba(0, 0, 0, .14), 0 7px 34px 6px rgba(0, 0, 0, .12);
}

.mdc-elevation--z19 {
    box-shadow: 0 9px 12px -6px rgba(0, 0, 0, .2), 0 19px 29px 2px rgba(0, 0, 0, .14), 0 7px 36px 6px rgba(0, 0, 0, .12);
}

.mdc-elevation--z20 {
    box-shadow: 0 10px 13px -6px rgba(0, 0, 0, .2), 0 20px 31px 3px rgba(0, 0, 0, .14), 0 8px 38px 7px rgba(0, 0, 0, .12);
}

.mdc-elevation--z21 {
    box-shadow: 0 10px 13px -6px rgba(0, 0, 0, .2), 0 21px 33px 3px rgba(0, 0, 0, .14), 0 8px 40px 7px rgba(0, 0, 0, .12);
}

.mdc-elevation--z22 {
    box-shadow: 0 10px 14px -6px rgba(0, 0, 0, .2), 0 22px 35px 3px rgba(0, 0, 0, .14), 0 8px 42px 7px rgba(0, 0, 0, .12);
}

.mdc-elevation--z23 {
    box-shadow: 0 11px 14px -7px rgba(0, 0, 0, .2), 0 23px 36px 3px rgba(0, 0, 0, .14), 0 9px 44px 8px rgba(0, 0, 0, .12);
}

.mdc-elevation--z24 {
    box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
}

.mdc-elevation-transition {
    transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);
    will-change: box-shadow;
}

.content-wrap {
    width: 100%
}

.content-wrap header {
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 940px) {
    .content-wrap header {
        padding-top: .75rem;
    }
}

@media (min-width: 1220px) {
    .content-wrap header {
        flex-direction: row-reverse;
    }
}

.controls {
    margin: 0 0 0 auto;
}

.account, .controls {
    display: flex;
    align-items: center;
}

.account__data {
    color: inherit;
    text-decoration: none;
    text-align: right;
}

.account__data:focus p:first-child, .account__data:hover p:first-child {
    text-decoration: underline;
}

.account__name {
    font-size: .8125rem;
    line-height: .9375rem;
    font-weight: 500;
    margin: 0 0 2px;
}

.account__address {
    font-size: .75rem;
    line-height: .875rem;
    margin: 0;
}

.account__icon.mdc-toolbar__icon {
    color: #2d8c2d;
    font-size: 2.25rem;
    margin: 0 0 0 10px;
    padding: 3px;
}

.account__menu button {
    font-size: .625rem;
    height: 2.25rem;
    width: auto;
}

.account__menu button svg {
    width: 1em;
    height: 1em;
}

.account__menu .mdc-menu {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
}

.drawer-toggle {
    font-size: 1.62rem;
    padding: 10px;
}

@media (min-width: 1220px) {
    .drawer-toggle {
        display: none;
    }
}

.mdc-toolbar {
    background-color: #fff;
}

@media (min-width: 1220px) {
    .mdc-toolbar {
        box-shadow: none;
        position: static;
        width: auto;
        background-color: transparent;
    }

    .mdc-toolbar__section {
        padding: 0;
    }
}

.mdc-toolbar__section {
    padding-top: 0;
    padding-bottom: 0;
}

.mdc-toolbar__row {
    min-height: 54px;
}

.mdc-toolbar__title {
    display: flex;
    padding: 0;
    margin-left: 9px;
}

@media (min-width: 1220px) {
    .mdc-toolbar__title {
        display: none;
    }
}

.mdc-toolbar__title svg {
    height: 30px;
    fill: #2d8c2d;
}

.mdc-toolbar__icon {
    width: 46px;
    height: 46px;
}

.choices {
    position: relative;
    margin-bottom: 0;
    font-size: 16px;
}

.choices:focus {
    outline: none;
}

.choices:last-child {
    margin-bottom: 0;
}

.choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
    background-color: #eaeaea;
    cursor: not-allowed;
    user-select: none;
}

.choices.is-disabled .choices__item {
    cursor: not-allowed;
}

.choices[data-type*=select-one] {
    cursor: pointer;
}

.choices[data-type*=select-one] .choices__inner {
    padding-bottom: 7.5px;
}

.choices[data-type*=select-one] .choices__input {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    margin: 0;
}

.choices[data-type*=select-one] .choices__button {
    background-image: url('<svg viewBox="0 0 21 21" xmlns="http:/www.w3.org/2000/svg"><g fill="#000" fill-rule="evenodd"><path d="M2.592.044l18.364 18.364-2.548 2.548L.044 2.592z"></path><path d="M0 18.364L18.364 0l2.548 2.548L2.548 20.912z"></path></g></svg>');
    padding: 0;
    background-size: 8px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: .5;
}

.choices[data-type*=select-one] .choices__button:focus, .choices[data-type*=select-one] .choices__button:hover {
    opacity: 1;
}

.choices[data-type*=select-one] .choices__button:focus {
    box-shadow: 0 0 0 2px #00bcd4;
}

.choices[data-type*=select-one]:after {
    content: "";
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-top-color: #333;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none;
}

.choices[data-type*=select-one].is-open:after {
    border-color: transparent transparent #333;
    margin-top: -7.5px;
}

.choices[data-type*=select-one][dir=rtl]:after {
    left: 11.5px;
    right: auto;
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
    right: auto;
    left: 0;
    margin-left: 25px;
    margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner, .choices[data-type*=text] .choices__inner {
    cursor: text;
}

.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
    position: relative;
    display: inline-block;
    margin: 0 -4px 0 8px;
    padding-left: 16px;
    border-left: 1px solid #008fa1;
    background-image: url('<svg viewBox="0 0 21 21" xmlns="http:/www.w3.org/2000/svg"><g fill="#FFF" fill-rule="evenodd"><path d="M2.592.044l18.364 18.364-2.548 2.548L.044 2.592z"></path><path d="M0 18.364L18.364 0l2.548 2.548L2.548 20.912z"></path></g></svg>');
    background-size: 8px;
    width: 8px;
    line-height: 1;
    opacity: .75;
}

.choices[data-type*=select-multiple] .choices__button:focus, .choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=text] .choices__button:focus, .choices[data-type*=text] .choices__button:hover {
    opacity: 1;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding: 7.5px 7.5px 3.75px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    min-height: 44px;
    overflow: hidden;
}

.is-focused .choices__inner, .is-open .choices__inner {
    border-color: #b7b7b7;
}

.is-flipped.is-open .choices__inner, .is-open .choices__inner {
    border-radius: 0 0 0 0;
}

.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.choices__list--single {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    width: 100%
}

[dir=rtl] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px;
}

.choices__list--single .choices__item {
    width: 100%
}

.choices__list--multiple {
    display: inline;
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 0;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00bcd4;
    border: 1px solid #00a5bb;
    color: #fff;
    word-break: break-all;
}

.choices__list--multiple .choices__item[data-deletable] {
    padding-right: 5px;
}

[dir=rtl] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00a5bb;
    border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaa;
    border: 1px solid #919191;
}

.choices__list--dropdown {
    display: none;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    word-break: break-all;
}

.choices__list--dropdown.is-active {
    display: block;
}

.is-open .choices__list--dropdown {
    border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: .25rem .25rem 0 0;
}

.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 16px;
}

[dir=rtl] .choices__list--dropdown .choices__item {
    text-align: right;
}

@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 100px;
    }

    .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 16px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    [dir=rtl] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px;
    }

    [dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
        right: auto;
        left: 10px;
    }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
    opacity: .5;
}

.choices__item {
    cursor: default;
}

.choices__item--selectable {
    cursor: pointer;
}

.choices__item--disabled {
    cursor: not-allowed;
    user-select: none;
    opacity: .5;
}

.choices__heading {
    font-weight: 600;
    font-size: 16px;
    padding: 10px;
    border-bottom: 1px solid #f7f7f7;
    color: grey;
}

.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50%;
    cursor: pointer;
}

.choices__button:focus {
    outline: none;
}

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 16px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px;
}

.choices__input:focus {
    outline: 0;
}

[dir=rtl] .choices__input {
    padding-right: 2px;
    padding-left: 0;
}

.choices__placeholder {
    opacity: .5;
}

.date-picker {
    z-index: 1;
}

.date-picker__toggle {
    cursor: pointer !important;
}

.date-picker__container {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
    background-color: #fafafa;
    font-size: 1rem;
    left: 50%;
    line-height: 1rem;
    max-width: 320px;
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}

.date-picker__container--opened {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.date-picker__header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 5px 0 5px 15px;
}

.date-picker__controls {
    display: flex;
}

.date-picker__control {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.date-picker__week-days {
    display: flex;
}

.date-picker__week-days:after {
    display: block;
    content: "";
    clear: both;
}

.date-picker__week-day {
    align-items: center;
    display: flex;
    height: 42px;
    justify-content: center;
    width: 42px;
    font-weight: 500;
}

.date-picker__days {
    display: flex;
    flex-wrap: wrap;
    pointer-events: none;
}

.date-picker__day {
    align-items: center;
    display: flex;
    font-size: .75rem;
    height: 42px;
    justify-content: center;
    pointer-events: all;
    width: 42px;
    position: relative;
    cursor: pointer;
}

.date-picker__day--empty {
    pointer-events: none;
}

.date-picker__day:not(.date-picker__day--empty):before {
    transition: opacity .1s linear;
    z-index: -1;
    background-color: #2d8c2d;
}

.date-picker__day--selected:not(.date-picker__day--empty) {
    color: #fff;
}

.date-picker__day--selected:not(.date-picker__day--empty):before {
    background-color: #2d8c2d;
    opacity: 1 !important;
}

.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field {
    width: 100%;
    height: 40px;
}

.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: #2d8c2d;
}

.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
    color: #2d8c2d;
}

.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field .mdc-text-field__input {
    caret-color: #2d8c2d;
    padding-top: 0;
    height: auto;
}

.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field .mdc-text-field__icon {
    font-size: 1.125rem;
    top: 0;
    pointer-events: all;
    width: 40px;
    height: 40px;
    padding: 0;
    left: 0;
}

.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field .mdc-text-field__icon svg {
    width: 1em;
    height: 1em;
}

.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field--with-leading-icon .mdc-floating-label.mdc-floating-label--float-above {
    transform: translate(-48px, -100%) scale(.75);
}

.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field.mdc-text-field .mdc-line-ripple {
    background-color: #2d8c2d;
}

.mdc-select:not(.mdc-select--disabled) {
    background-image: none;
    height: 40px;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 8px;
}

.mdc-select:not(.mdc-select--disabled):not(.mdc-select--disabled) .mdc-floating-label, .mdc-select:not(.mdc-select--disabled):not(.mdc-select--disabled) .mdc-select__native-control:focus ~ .mdc-floating-label {
    color: #2d8c2d;
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control {
    padding-top: 15px;
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control:focus ~ .mdc-line-ripple {
    background-color: #2d8c2d;
}

.mdc-form-field {
    margin-top: 16px;
    margin-bottom: 8px;
}

@media (min-width: 940px) {
    .mdc-form-field + .mdc-form-field {
        padding-left: 20px;
    }
}

.choices {
    margin: 0;
    position: static;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .42);
}

.choices__inner {
    padding: 0 !important;
    border: 0;
    background: transparent;
}

.choices__list--dropdown {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
    background-color: #fafafa;
    border-color: #2d8c2d;
    top: 0;
    z-index: 10000;
}

.choices__list--single {
    padding: 6px 0 0;
}

.choices__item {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0;
    line-height: 1.5rem;
    color: rgba(0, 0, 0, .87);
}

.choices__item--selectable {
    padding-right: 10px !important;
}

.choices__item.is-highlighted {
    color: #fff;
    background-color: #2d8c2d !important;
}

.mdc-checkbox__checkmark-path {
    stroke: #fff;
}

.mdc-dialog {
    text-align: left;
}

.mdc-dialog__surface {
    margin-left: 15px;
    padding: 15px;
    max-height: calc(100vh - 30px);
}

@media (min-width: 940px) {
    .mdc-dialog__surface {
        padding: 20px;
        max-height: calc(100vh - 40px);
    }
}

.mdc-dialog header.mdc-dialog__header {
    padding-top: 0;
    padding-bottom: 15px;
    min-height: 55px;
}

@media (min-width: 940px) {
    .mdc-dialog header.mdc-dialog__header {
        padding-bottom: 24px;
    }
}

.mdc-dialog header.mdc-dialog__header .mdc-dialog__header__title {
    margin-bottom: 0;
}

.mdc-dialog__body {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: auto;
}

.mdc-dialog__footer {
    padding: 15px;
}

@media (min-width: 940px) {
    .mdc-dialog__footer {
        padding: 24px;
    }
}

.notification {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    color: #757575;
}

@media (min-width: 940px) {
    .notification {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.notification--warning {
    border-color: #f4c705;
    color: #f4c705;
}

.notification--error {
    border-color: #db2b39;
    color: #db2b39;
}

.notification p {
    margin: 0;
    display: flex;
}

.notification ant-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.dxgvHeader {
    font-weight: 700;
    font-size: 14px;
}

.dxgvGroupPanel, .dxgvHeader {
    background: transparent;
    padding: 10px;
    white-space: normal;
}

.dxgvDataRow td.dxgv {
    padding: 5px 10px;
}

.dxgvDataRowHover {
    background: #eee;
}

.dxgvFooter, .dxgvPagerBottomPanel {
    background: transparent;
}

.dxgvPagerBottomPanel {
    padding: 5px 10px 0;
}

.dxp-lead.dxp-summary {
    padding-left: 0;
    padding-top: 10px;
}

.dxpLite {
    font: inherit;
    font-size: 12px;
}

.dxpLite .dxp-num {
    color: #757575;
    text-decoration: none;
    font-weight: normal;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
}

.dxpLite .dxp-num:hover {
    background-color: #EDEDED;
    text-decoration: underline;
}

.dxpLite .dxp-current {
    background-color: #2d8c2d;
    color: #FFFFFF;
    text-decoration: none;
    margin-top: 0 !important;
}

.dxpLite .dxp-current:hover {
    background-color: #2d8c2d;
    text-decoration: none;
}

.dxp-button img {
    display: none;
}

.dxp-button:before {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http: //www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M14.71 15.88L10.83 12l3.88-3.88c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .38-.39.39-1.03 0-1.42z"/></svg>');
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dxp-button ~ .dxp-button {
    transform: scaleX(-1);
}

.dxp-button.dxp-disableButton {
    pointer-events: none;
    opacity: .5;
}

table.dxgvControl {
    font: inherit;
    font-size: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    border: 1px solid #ccc;
    border-radius: 6px;
    background: transparent;
}

.dxeHyperlink {
    font: inherit;
    font-size: inherit;
}

.dashboard, .dashboard_all {
    margin-bottom: 14px
}

.dashboard > .mdc-layout-grid__cell {
    display: none;
}

@media (min-width: 0px) {
    .dashboard > .mdc-layout-grid__cell: first-child {
        display: block;
    }
}

@media (min-width: 480px) {
    .dashboard > .mdc-layout-grid__cell:

nth-child(2) {
    display: block;
}
}

@media (min-width: 940px) {
    .dashboard > .mdc-layout-grid__cell {
        display: block;
    }
}

.dashboard__item {
    border-bottom: 2px solid #2d8c2d;
    position: relative;
}

.dashboard__title {
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin: 0 0 10px;
    font-weight: 500;
}

.dashboard__label {
    margin: 0 0 5px;
}

.dashboard__date {
    margin: 0 0 10px;
}

.dashboard__text {
    margin: 0 0 3px;
}

.dashboard__price {
    margin: 0;
    font-size: 2.5rem;
    line-height: 3rem;
}

.dashboard__link {
    position: absolute;
    padding: 0;
    right: 0;
    bottom: 3px;
    color: #2d8c2d;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .875rem;
}

.dashboard__button {
    margin-top: 20px;
}

.service-inquiries__grid {
    grid-gap: 15px;
}

body.login__wrap {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.login {
    margin-left: auto;
    margin-right: auto;
    max-width: 660px;
    position: relative;
    margin-top: 40px;
}

@media (min-width: 940px) {
    .login {
        padding-left: 147px;
        padding-right: 147px;
    }
}

.login__service {
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

@media (max-width: 479px) {
    .login__service {
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
}

.login__service img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.login__separator {
    background: #fff;
    display: inline-block;
    font-size: .75rem;
}

.login__separator:after, .login__separator:before {
    background: #757575;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
}

.login__separator:before {
    left: 155px;
    margin-top: 6px;
    right: calc(50% + 20px);
}

.login__separator:after {
    left: calc(50% + 20px);
    margin-top: -7px;
    right: 155px;
}

.login__button {
    margin-top: 12px;
    width: 100%
}

.login__info, .login__info a {
    font-size: .75rem;
}

/*--------------------------------------------------*/

.info {
    background-color: rgb(255, 255, 255);
    border-color: rgb(244, 199, 5);
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    box-sizing: border-box;
    color: rgb(244, 199, 5);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 20px;
    text-align: left;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.info img {
    display: none;
}

.info a.close {
    color: rgb(244, 199, 5);
    text-decoration: none;
}

.info a.close:hover {
    color: black;
}

.info p {
    padding: 0 15px 0 45px;
}

.info h4 {
    padding: 0 15px 0 45px;
}

.error {
    background-color: rgb(255, 255, 255);
    border-color: rgb(219, 43, 57);
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    box-sizing: border-box;
    color: rgb(219, 43, 57);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 20px;
    text-align: left;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}


.error img {
    display: none;
}

.error a.close {
    color: rgb(219, 43, 57);
    text-decoration: none;
}

.error a.close:hover {
    color: black;
}

.zmeneno {
    background-color: rgb(255, 255, 255);
    border-color: transparent;
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    box-sizing: border-box;
    color: #757575;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 20px;
    text-align: left;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.zmeneno img {
    display: none;
}

.zmeneno a.close {
    color: #757575;
    text-decoration: none;
}

.zmeneno a.close:hover {
    color: black;
}

.button-bad {
    background-color: darkred !important;
    color: white !important;
}

.button-good {
    background-color: dodgerblue !important;
    color: white !important;
}

a.button {
    color: #000;
    background-color: #fbda4b;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    will-change: transform, opacity;
    position: relative;
    outline: none;
    overflow: hidden;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);
    padding: 0 16px;
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .08929em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 64px;
    height: 36px;
    border: none;
    line-height: inherit;
    user-select: none;
    -webkit-appearance: none;
    vertical-align: middle;
    border-radius: 2px;
}

.button:hover {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    filter: brightness(96%);
}

.toolbar {
    width: 100%;
    margin-bottom: 14px;
}


.tab_xp .tab_header a {
    color: #000;
    line-height: 25px;
    text-decoration: none;
}

.tab_xp .tab_header a:hover {
    color: white;
}

.tab_xp .tab_header a.active {
    color: white;
}

.tab_xp .tab_tab {
    background: transparent;
    color: #2d8c2d;
    border-color: #2d8c2d;
    transition: background-color .28s cubic-bezier(.4, 0, .2, 1), color .28s cubic-bezier(.4, 0, .2, 1), box-shadow .28s cubic-bezier(.4, 0, .2, 1);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    will-change: transform, opacity;
    position: relative;
    outline: none;
    overflow: hidden;
    border-style: solid;
    padding: 0 14px;
    border-width: 2px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    line-height: 2.25rem;
    font-weight: 500;
    letter-spacing: .08929em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 64px;
    height: 36px;
    line-height: inherit;
    user-select: none;
    -webkit-appearance: none;
    vertical-align: middle;
    border-radius: 2px;
    margin-bottom: 6px;
}

.tab_xp .tab_header a:hover .tab_tab {
    background-color: #2d8c2d;
    color: #fff;


}

.tab_xp a.active .tab_tab {
    background-color: #2d8c2d;
    color: #fff;

}

.tab_xp a.active:hover .tab_tab {
    background-color: #2d8c2d;
    color: #fff;
}

.tab_xp .tab_body {
    padding-top: 12px;
    padding-bottom: 6px;
    border-top-color: currentColor;
    border-top-width: 0px;
    border-top-style: none;
    background-color: rgb(255, 255, 255);
}

td.label {
    height: 40px;
    text-align: left;
    font-weight: 500;
    padding-right: 20px;
}

.table_edit td.label:not(.editor) {
    padding-bottom: 10px;
    vertical-align: bottom;
}

.buttons {
    margin-top: 20px;
}

.buttons .button {
    margin-bottom: 6px;
}

.AspNet-FormView .content {
    display: block;
}

.toolbar .login__service img {
    margin-left: initial;
    margin-right: initial;
}

textarea {
    width: 100%;
    height: 200px;
    display: flex;
    transition: none;
    border: 1px solid grey;
    border-radius: 2px;
    overflow: hidden;
}

textarea:focus {
    outline: none !important;
    border: 2px solid #2d8c2d;
}

input[type="radio"] {
    background-color: white;
    border: 0;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: middle;
}

.detailtable {
    max-width: 800px;
    width: 100%;
}


div.AspNet-GridView {
}

div.AspNet-GridView table {
    border-collapse: collapse;
    margin-top: 0px;
}

div.AspNet-GridView td, div.AspNet-GridView th {
    border: 1px solid #c0c0c0;
    padding: 2px 5px 2px 5px;
}

div.AspNet-GridView .emptyData {
    text-align: center;
    background-color: white;
}

div.AspNet-GridView img {
    padding-left: 2px;
}

div.AspNet-GridView .left {
    text-align: left;
}

div.AspNet-GridView .center {
    text-align: center;
}

div.AspNet-GridView .right {
    text-align: right;
}

div.AspNet-GridView .justify {
    text-align: justify;
}

div.AspNet-GridView tr.Highlight {
    font-weight: bold;
}

div.AspNet-GridView th {
    cursor: pointer;
    padding: 4px 6px 5px 6px;
    border: solid 1px #c0c0c0;
    background-position: top;
    background-repeat: repeat-x;
    background-color: white;
    overflow: hidden;
    -moz-user-select: none;
    font-weight: normal;
    text-align: left;
}

div.AspNet-GridView th a {
    color: #333333;
    text-decoration: none;
}

tr.AspNet-GridView-Normal {
    background-color: White;
}


tr.AspNet-GridView-Alternate {
    background-color: White;
}

tr.AspNet-GridView-Group {
    background-color: Pink;
}

.AspNet-GridView-Selected {
    background-color: lemonchiffon !important;
}


div.AspNet-GridView a.disabled {
    color: silver;
}

div.AspNet-GridView a.disabled:hover {
    color: silver;
}

tr.AspNet-GridView-Pager {
    background-color: white;
    border: solid 1px #c0c0c0;
}

tr.AspNet-GridView-Pager hover {
    background-color: white;
}

div.AspNet-GridView-Pagination {
    float: left;
    padding-top: 4px;
    padding-bottom: 4px;
}

div.AspNet-GridView-ItemCount {
    float: right;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 10px;
    padding-left: 30px;
}

/* Ladici hlasky */
div.debug {
    padding: 10px;
    padding-top: 20px;
    clear: both;
}

/* ---------------------------------- dialog */
.ui-widget.ui-widget-content {
    box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
    background-color: var(--mdc-theme-background, #fff);
    display: inline-flex;
    flex-direction: column;
    width: calc(100% - 30px);
    min-width: 640px;
    max-width: 865px;
    border-radius: 2px;
    margin-left: 15px;
    transform: translateY(0) scale(1);
    opacity: 1;
}

.ui-widget-header {
    padding: 0 24px 24px !important;
    min-height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    border: none !important;
    background: none !important;
}

.ui-dialog-title {
    box-sizing: border-box;
    display: block;
    flex-basis: 0%;
    flex-grow: 1;
    flex-shrink: 1;
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-weight: 700;
    height: 32px;
    letter-spacing: normal;
    line-height: 32px;
    margin-bottom: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 40px !important;
    position: relative;
    text-align: left;
    text-decoration-color: rgb(0, 0, 0);
    text-decoration-line: none;
    text-decoration-style: solid;
    text-size-adjust: 100%;
    text-transform: none;
    visibility: visible;
    width: 762px;
    -webkit-font-smoothing: antialiased;
}

.ui-dialog-content {
    margin-top: 0;
    overflow: auto;
    color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, .54)) !important;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    letter-spacing: .03125em;
    padding: 0 24px 24px !important;
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-decoration: inherit;
    text-transform: inherit;
}

.ui-button:not(.ui-dialog-titlebar-close) {
    color: #2d8c2d !important;
    border-color: #2d8c2d !important;
    transition: background-color .28s cubic-bezier(.4, 0, .2, 1), color .28s cubic-bezier(.4, 0, .2, 1), box-shadow .28s cubic-bezier(.4, 0, .2, 1) !important;
    background: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    will-change: transform, opacity !important;
    position: relative !important;
    outline: none !important;
    overflow: hidden !important;
    border-style: solid !important;
    padding: 0 14px !important;
    border-width: 2px !important;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12) !important;
    font-family: Roboto, sans-serif !important;
    -moz-osx-font-smoothing: grayscale !important;
    -webkit-font-smoothing: antialiased !important;
    font-size: .875rem !important;
    font-weight: 500 !important;
    letter-spacing: .08929em !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    min-width: 64px !important;
    height: 36px !important;
    line-height: inherit !important;
    user-select: none !important;
    vertical-align: middle !important;
    border-radius: 2px !important;
}

.ui-button:hover {
    background-color: #2d8c2d !important;
    color: #fff !important;
    transition: background-color .28s cubic-bezier(.4, 0, .2, 1), color .28s cubic-bezier(.4, 0, .2, 1), box-shadow .28s cubic-bezier(.4, 0, .2, 1) !important;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12) !important;
}

.ui-dialog .ui-dialog-buttonpane {
    border: none;
}

.ui-dialog-titlebar-close {
    top: 26px !important;
    border: 2px solid #2d8c2d !important;
    border-radius: 2px !important;
}

/* --------------------------------------- */

.two-column .mdc-layout-grid__cell--span-4-desktop {
    font-weight: 500;
}

.two-column .mdc-layout-grid__cell--span-4-desktop:not(.editor) {
    display: inline-flex;
    align-items: flex-end;
    padding-bottom: 8px;
}

/* Youtube */
.youtube-window {
    width: 90%;
    border: 0px;
    height: 400px;
}

/* opravy pro IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .controls {
        margin: 0;
    }

    .mdc-toolbar__title svg {
        width: 86px;
    }
}

@media screen and (-ms-high-contrast: active) and (min-width: 1220px), (-ms-high-contrast: none) and (min-width: 1220px) {
    .mdc-toolbar__row {
        display: block;
    }

    .mdc-toolbar__row section:first-child {
        display: none;
    }
}

.mdc-drawer__drawer {
    display: none;
}

/* fix klipovani obsahu do navigace s debug oknem */
.display-flex {
    display: flex;
    width: 100%;
}

@media (min-width: 1220px) {
    div.debug {
        padding: 10px;
        padding-top: 20px;
        clear: both;
        margin-left: 280px;
    }
}
