@namespace xlink 'http://www.w3.org/1999/xlink';

:root {
    --mdc-theme-primary: #22A569;
    --mdc-theme-secondary: #22A569;
    --mdc-theme-text-disabled-on-light: #BBB;
    --background-eee: #eee;
    --background-button: #dadada;
    --back-colored: #f1f1f1;
    --background-body: #F9F9F9;
    --text-on-button: #000;
    --text-light: #444;
    --snackbar-link-color: #81c784;
    --snackbar-primary-color: #22A569;
    --snackbar-primary-trans: #22a56a2f;
    --snackbar-border-radius: 0px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --mdc-theme-primary: #51A37D;
        --mdc-theme-secondary: #51A37D;
        --mdc-theme-error: #cf6679;
        --mdc-theme-surface: #252525;
        --background-eee: #222;
        --background-button: #323232;
        --back-colored: #181818;
        --background-body: #0F0F0F;
        --text-on-button: #fff;
        --text-light: #bbb;
    }
}

/* BLOCKS */

* {
    box-sizing: border-box;
    outline-offset: 4px;
    outline-color: var(--mdc-theme-primary);
}

.button {
    position: relative;
    padding: 0 32px;
    height: 42px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-color: var(--background-button);
    color: var(--text-on-button);
    border: none;
    border-radius: 2px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    font-family: Jost, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.1s ease-in, box-shadow 0.1s ease-in;
    overflow: hidden;
}

.button.shiny::before,
.button.shiny::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 100%;
    transform: skewX(-22deg);
    background-color: #fff2;
    animation: shiny 3s cubic-bezier(.92, .32, .58, .84) infinite;
}

.button.shiny::after {
    background-color: #fff1;
    width: 42px;
}

@keyframes shiny {
    from {
        left: -100%;
    }

    to {
        left: 110%;
    }
}

.button svg {
    fill: var(--text-on-button);
    height: 22px;
    width: auto;
}

.button,
.button span {
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
}

.button.block {
    width: 100%;
}

.button.colored {
    background-color: var(--mdc-theme-primary);
    color: #fff;
}

.button.colored svg {
    fill: var(--text-on-button);
}

.button.flat {
    background-color: transparent;
    color: var(--text-light);
    box-shadow: none;
}

.button.flat:hover {
    background-color: var(--back-colored);
    color: var(--text-on-button);
}

.button:hover {
    filter: brightness(0.9);
}

.button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0);
}

.button[disabled] {
    opacity: .7;
    pointer-events: none;
}

.menu {
    position: relative;
    width: fit-content;
}

.menu dialog {
    padding: 0;
    margin: 0;
    width: max-content;
    z-index: 99;
    border: none;
    background-color: var(--back-colored);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform-origin: top left;
}

.menu.bottom.left dialog {
    left: unset;
    right: 0;
    top: 100%;
    transform-origin: top right;
}

.menu.top.right dialog {
    top: unset;
    bottom: 100%;
    left: 0;
    transform-origin: bottom left;
}

.menu.top.left dialog {
    top: unset;
    left: unset;
    bottom: 100%;
    right: 0;
    transform-origin: bottom right;
}

.menu.left.aside dialog {
    right: 100%;
}

.menu.right.aside dialog {
    left: 100%;
}

.menu dialog[open] {
    animation: showMenu .3s cubic-bezier(0, .62, .11, .82);
}

.menu .content {
    padding: 16px;
}

.menu ul li {
    min-width: 170px;
}

.menu ul a,
.menu ul button {
    padding: 0;
    font-weight: inherit;
    text-transform: inherit;
    font-size: inherit;
    background-color: var(--surface);
}

@keyframes showMenu {
    0% {
        transform: scaleX(0) scaleY(0);
    }

    30% {
        transform: scaleX(.8) scaleY(.2);
    }

    100% {
        transform: scaleX(1) scaleY(1);
    }
}

.loader {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 4px solid var(--mdc-theme-primary);
    clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    animation: 1.6s to-loader linear infinite;
    background: none !important;
}

.loader.small {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

.loader.large {
    width: 56px;
    height: 56px;
    border-width: 5px;
}

.loader.white {
    border-color: #ffffff !important;
}

@keyframes to-loader {
    0% {
        transform: rotate(0deg);
        clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }

    20% {
        clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
    }

    30% {
        clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
    }

    40% {
        clip-path: polygon(50% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
    }

    50% {
        clip-path: polygon(50% 50%, 50% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
    }

    60% {
        clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
    }

    70% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%, 0% 50%);
    }

    80% {
        clip-path: polygon(50% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 50%);
    }

    90% {
        transform: rotate(360deg);
        clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
    }

    100% {
        clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
    }
}

/* DEFAULT */

span:not(.material-icons-sharp):not(.mdc-button__ripple),
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
a:not(.material-icons-sharp),
small,
.mdc-text-field__input,
.mdc-html-select {
    font-family: 'Jost', Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
    /*font-weight: normal;*/
}

h1,
h2,
h3,
h4 {
    font-weight: 500 !important;
}

.secondary {
    color: var(--mdc-theme-secondary)
}

.primary {
    color: var(--mdc-theme-primary)
}

.mdc-list-item__primary-text {
    font-weight: 600;
}

body {
    margin: 0;
    display: flex;
    height: 100vh;
    background-color: var(--background-body);
}

.grey {
    color: grey;
}

.dot-banner {
    padding: 8px 16px;
    background: var(--mdc-theme-primary);
    color: #fff;
}

.dot-banner p {
    font-size: 18px;
}

.mdc-drawer-app-content {
    flex: auto;
    overflow: auto;
    position: relative;
}

.mdc-drawer .mdc-list-item--activated,
.mdc-drawer .mdc-list-item--activated .mdc-list-item__graphic {
    color: var(--mdc-theme-primary);
}

.main-content {
    overflow: auto;
    height: 100%;
}

.app-bar {
    position: absolute;
}

.mdc-top-app-bar {
    background-color: #fff;
}

.mdc-top-app-bar {
    z-index: 4;
}

.mdc-colored--light {
    background-color: #66BB6A;
    color: white;
}

.responsive-img {
    max-width: 100%;
    height: auto;
}

.padding {
    padding: 16px;
}

.img-avatar {
    border-radius: 50%;
}

.row {
    margin-top: 24px;
}

.material-icons-sharp.align {
    vertical-align: -25%;
}

.secondary-background {
    background-color: var(--mdc-theme-secondary);
}

.error {
    background-color: var(--mdc-theme-error);
}

.error p,
.error i {
    color: black !important;
}

.error-raised {
    background-color: var(--mdc-theme-error) !important;
}

.mdc-fab:not(.relative-fab) {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 6;
}

.relative-fab {
    margin: 16px;
}

.relative {
    position: relative;
    height: -webkit-fill-available;
}

.mdc-text-field__icon {
    margin-left: 1rem;
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: var(--mdc-theme-primary);
}

i.align {
    vertical-align: -25%;
}

.alert {
    padding: 1px;
    padding-left: 8px;
    margin: 16px;
    border-radius: 0.5rem;
    background-color: #b9f6ca;
    color: #1b5e20;
}

.index-alert {
    display: block;
    text-decoration: none;
}

.index-alert:hover {
    opacity: 0.8;
}

.index-alert__img {
    width: 100%;
    height: auto;
}

.index-alert__text {
    padding: 16px;
    background-color: var(--mdc-theme-primary);
    color: #fff;
}

.content,
.abjs {
    display: none;
}

.content--active {
    display: block;
}

.badge {
    padding: 2px 4px 2px 4px;
    background-color: var(--mdc-theme-primary);
    color: white;
    font-weight: 600;
    font-size: small;
    /*width: 58px;*/
    display: inline;
}

.btn-anim {
    transform: scale(1.2);
}

.black,
i.black,
.material-icons-sharp.black,
div.black p,
.black i,
.black button {
    color: black !important;
}

.brown,
p.brown,
i.brown,
.brown a {
    color: #613E11 !important;
}

.material-icons-sharp.brown {
    color: #F3A54A !important;
}

.white {
    color: white !important;
}

a.link {
    color: var(--mdc-theme-primary);
}

a.link:visited {
    color: grey;
}

pre {
    padding: 16px;
    border: 1px solid grey;
}

.scrolling-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
}

.scrolling-wrapper .scrolling-item {
    display: inline-block;
    white-space: normal;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.scrolling-wrapper--gap .scrolling-item {
    margin-right: 16px;
}

a.black {
    text-decoration: none;
}

a.black:hover {
    text-decoration: underline;
}

img.rounded {
    border-radius: 10px;
}

a img:hover {
    filter: brightness(0.9);
}

.mdc-chip--colored {
    background-color: var(--mdc-theme-primary) !important;
    color: #fff;
}

.mdc-chip--outlined {
    border: 1px solid var(--mdc-theme-primary);
    background: transparent;
}

.chips-section {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    height: 32px;
    scrollbar-width: none;
}

.chips-section::-webkit-scrollbar {
    display: none;
}

.chips-section--snap {
    scroll-snap-type: x mandatory;
}

.snappad {
    scroll-snap-align: start;
    min-width: 16px;
}

.chips-section .mdc-chip {
    margin-right: 8px;
    scroll-snap-align: start;
}

.stepper-top {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: var(--background-eee);
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    user-select: none;
    z-index: 2;
}

.stepper-top__count {
    padding: 0 16px;
    font-size: 16px;
    font-weight: 500;
}

.stepper-top__label {
    color: #666;
}

.stepper-bottom {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: var(--background-eee);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    z-index: 2;
}

.stepper-bottom__progress {
    position: absolute;
    top: 0;
}

.stepper-bottom__link {
    text-transform: uppercase;
    text-decoration: none;
    color: #666;
    display: flex;
    padding: 0 16px;
    font-weight: 500;
    cursor: pointer;
}

.stepper-bottom__link--disabled {
    pointer-events: none;
    color: #66666670;
}

.stepper-steps {
    height: 100%;
    overflow-y: scroll;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    display: block;
}

.stepper-steps__panel {
    width: 100%;
    height: 100%;
    white-space: initial;
    display: inline-block;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    vertical-align: top;
}

.os-review--inline {
    width: fit-content;
    display: inline-block;
    position: relative;
    vertical-align: sub;
}

.os-review__line {
    display: flex;
}

.os-review__line--filled {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

i.os-review__line-star {
    font-size: 16px;
}

.os-review__line--filled .os-review__line-star {
    color: #fbbc04 !important;
}

i.os-review__line-star {
    color: rgba(150, 150, 150, 0.2) !important;
}

.mdc-html-select {
    -webkit-appearance: none;
    outline: none;
    height: 56px;
    padding: 0 16px;
    background-color: rgb(150 150 150 / 10%);
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.42);
    background: url(https://i.imgur.com/BPTEJuy.png) no-repeat right 10px top 50%/24px 24px;
    font-size: 14px;
    font-weight: 500;
}

.mdc-html-select:hover {
    background-color: rgb(150 150 150 / 20%);
    border-bottom-color: rgba(0, 0, 0, 0.87);
}

.mdc-html-select:focus {
    border-bottom: 3px solid var(--mdc-theme-primary);
}

.mdc-list>a {
    text-decoration: none;
    color: inherit;
}

.user-banner {
    overflow: hidden;
    width: 100%;
    height: 175px;
}

.user-banner img {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    object-fit: cover;
    filter: blur(2px);
}

.empty-state {
    width: 100%;
    text-align: center;
}

.empty-state>i {
    margin: 5rem;
    font-size: 15rem;
    color: grey !important;
}

.mdc-icon-button:disabled,
.mdc-button[disabled] {
    pointer-events: inherit;
    cursor: not-allowed;
    color: var(--text-on-button) !important;
    pointer-events: none;
}

.mdc-button--raised[disabled] {
    background: rgba(150, 150, 150, 0.20);
}

.back-colored {
    background-color: var(--back-colored, #f1f1f1);
}

.search-input {
    border: 1px solid grey;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.search-input::placeholder {
    color: grey;
}

details.mdc summary::marker {
    display: none;
}

details.mdc summary {
    list-style: none;
}

summary {
    user-select: none;
    cursor: pointer;
}

.os-comments {
    margin-top: 16px;
    position: relative;
    display: flex;
    gap: 16px;
}

.os-comments__avatar {
    margin-top: 8px;
    border-radius: 50%;
}

.os-comments__text-name {
    font-weight: 500;
    color: #222;
}

.os-comments__text-date {
    font-weight: 400;
}

.os-comments__text-content {
    margin: 4px 0;
}

.mdc-simple-menu--open-from-top-right {
    left: auto !important;
    right: 0;
    transform-origin: right !important;
}

.show-feature {
    position: relative;
    z-index: 7;
}

.show-feature>.inner {
    background-color: var(--mdc-theme-primary);
    position: absolute;
    top: 0;
    padding: 8px;
    width: 250px;
}

.show-feature>.inner .show-feature-text::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent var(--mdc-theme-primary) transparent;
}

.show-feature>.inner .mdc-button,
.show-feature>.inner p,
.show-feature>.inner h4 {
    color: white !important;
}

.mdc-dialog__content.captcha-dialog-container {
    display: grid;
    grid-template-columns: 1fr 430px;
    padding-bottom: 0 !important;
    align-items: center;
    gap: 48px;
    width: min-content;
    max-width: 100vw;
    padding: 42px;
}

.mdc-dialog__surface.captcha-dialog-surface {
    max-width: 100%;
}

.captcha-dialog-container img {
    width: 100%;
}

.captcha-dialog-container div {
    padding-bottom: 20px;
}

.mdc-dialog__container.publish-modal__container {
    width: 100vw;
}

.mdc-dialog__surface.publish-modal__surface {
    position: absolute;
    bottom: 0;
    max-width: 100%;
    width: 100%;
}

.publish-modal__container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.publish-modal__container .images {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.publish-modal__container .images img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

@media screen and (max-width: 600px) {
    .mdc-dialog__surface.captcha-dialog-surface {
        position: absolute;
        bottom: 0;
        max-width: 100%;
        width: 100%;
    }

    .captcha-dialog-container {
        padding: 16px;
        width: 100%;
        display: flex;
        gap: 12px;
        flex-direction: column-reverse;
    }

    .captcha-dialog-container img {
        width: 100%;
        margin-top: 64px;
    }

    .publish-modal__grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 64px;
    }
}

.file-area {
    width: 100%;
    height: 190px;
    position: relative;
}

.file-area input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.file-area .file-dummy {
    height: 100%;
    width: auto;
    display: grid;
    place-items: center;
    border: 2px dashed var(--mdc-theme-primary);
    border-radius: 4px;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.file-area .file-dummy .default {
    color: var(--mdc-theme-primary);
}

.file-area .file-dummy .success {
    display: none;
}

.file-area:hover .file-dummy {
    background: rgba(255, 255, 255, 0.1);
}

.file-area input[type=file]:focus+.file-dummy {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline: -webkit-focus-ring-color auto 5px;
}

.file-area input[type=file]:valid+.file-dummy {
    border-color: var(--background-eee);
}

.file-area input[type=file]:valid+.file-dummy .success {
    display: inline-block;
}

.file-area input[type=file]:valid+.file-dummy .default {
    display: none;
}

ins.adsbygoogle a.notice {
    color: #999;
    text-decoration: none;
    margin-left: 8px;
    letter-spacing: 0;
    font-size: 14px;
}

ins.adsbygoogle a.notice i {
    font-size: 14px;
}

.repaint-card {
    display: block;
    position: relative;
    padding: 0 !important;
    height: 230px;
    width: 100%;
    background-color: grey;
    border-radius: 1px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.20);
}

.row .repaint-card {
    margin-bottom: 16px;
}

.repaint-card:hover .repaint-card__imgbox-gradient {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .5) 25%, rgba(0, 0, 0, .5) 100%);
}

.repaint-card:hover .repaint-card__text-label .up {
    text-decoration: underline;
}

.repaint-card__chips {
    position: absolute;
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    left: 22px;
    top: 22px;
    right: 0;
    z-index: 1;
}

.repaint-card__chips::-webkit-scrollbar {
    display: none;
}

.repaint-card__chip {
    height: 32px;
    padding: 0 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    font-size: 14px;
    background-color: #1115;
    color: #eee;
    backdrop-filter: blur(4px);
}

.repaint-card__imgbox {
    position: relative;
    height: 230px;
    width: 100%;
}

.repaint-card__imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}

.repaint-card__imgbox-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .5) 20%, rgba(0, 0, 0, 0) 30%);
}

.repaint-card__text {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
}

.repaint-card__text-label {
    color: #fff;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
}

.repaint-card__text-label .up {
    font-size: 22px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
}

.repaint-card__text-label .down {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.repaint-card--dark .repaint-card__text-label {
    color: #000;
}

.repaint-card--dark .repaint-card__chip {
    color: rgba(0, 0, 0, 0.8);
}

.terms-links--abs {
    position: absolute;
    bottom: 0;
    padding: 8px;
}

.terms-links--btm {
    padding: 24px;
    background: var(--background-eee);
}

.terms-links a {
    margin-right: 8px;
    font-size: 13px;
    text-decoration: none;
    color: #666;
}

.terms-links--abs a {
    display: block;
}

.terms-links a:hover {
    color: var(--mdc-theme-primary);
    text-decoration: underline;
}

.circular-loader {
    background: transparent;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-left: 2px solid transparent;
    animation: circular-loader 1s ease infinite;
}

.circular-loader--icon {
    border: 4px solid #fff;
    border-left: 4px solid transparent;
}

.circular-loader--grey {
    border-color: #666;
    border-left-color: transparent;
}

.circular-loader--colored {
    border-color: var(--mdc-theme-primary);
    border-left-color: transparent;
}

@keyframes circular-loader {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg);
    }
}

.transparent {
    background-color: transparent !important;
}

.keyboard {
    background-color: rgb(150 150 150 / 25%);
    border: 1px solid rgb(150 150 150 / 45%);
    border-radius: 4px;
    padding: 0 4px;
}

.show-more-link {
    color: var(--mdc-theme-primary) !important;
    cursor: pointer;
}

.show-more-link:hover {
    text-decoration: underline;
}

progress {
    width: 100%;
    height: 5px;
    appearance: none;
}

progress::-webkit-progress-bar {
    background: var(--background-eee);
}

progress::-webkit-progress-value {
    background-color: var(--mdc-theme-primary);
    transition: width 350ms ease;
}

progress:not([value]) {
    animation: progressIndeterminate 1.5s ease infinite;
}

progress:not([value])::-webkit-progress-bar {
    background-color: var(--mdc-theme-primary);
}

@keyframes progressIndeterminate {
    40% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    60% {
        opacity: 1;
    }
}

a.disabled {
    pointer-events: none;
    cursor: not-allowed;
    color: #999 !important;
}

.np {
    padding: 0;
}

.npt {
    padding-top: 0;
}

.nmt {
    margin-top: 0;
}

.mdc-button:not(.mdc-button--raised):hover {
    background-color: #77777720;
}

.mdc-button--fullwidth {
    width: 100%;
}

.mdc-button--stroked .mdc-button__icon {
    color: var(--mdc-theme-primary) !important;
}

@media only screen and (max-width : 601px) {
    .row .col.s0 {
        display: none;
    }

    .mdc-search-bar {
        background-color: transparent !important;
        border-radius: 0px !important;
    }

    .mdc-search-bar .mdc-line-ripple {
        display: none;
    }

    .hideOnMobile {
        display: none;
    }
}

@media only screen and (max-width : 993px) {
    .row .col.m0 {
        display: none;
    }
}

@media only screen and (max-width : 1600px) {
    .row .col.l0 {
        display: none;
    }
}

.row .col.xl0 {
    display: none;
}

@media only screen and (min-width: 600px) {
    ::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
    }

    ::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 0px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

@media only screen and (min-width: 766px) {
    body {
        display: flex;
        height: 100vh;
    }

    .mdc-drawer-app-content {
        flex: auto;
        overflow: auto;
    }

    .main-content {
        height: 100%;
        overflow: auto;
    }
}

@media (prefers-color-scheme: light) {
    #app-bar .mdc-icon-button {
        color: #555;
    }
}

@media (prefers-color-scheme: dark) {
    .mdc-card--outlined {
        border-color: #333;
    }

    .mdc-list-divider {
        border-bottom-color: #666;
    }

    .mdc-card,
    .mdc-drawer,
    .mdc-dialog__surface,
    .mdc-menu,
    select,
    #app-bar,
    .mdc-chip:not(.mdc-chip--colored) {
        background-color: #252525 !important;
    }

    .back-colored {
        background-color: var(--back-colored) !important;
    }

    .mdc-button--raised,
    .mdc-button--raised i,
    i.mdc-fab__icon,
    span.mdc-fab__icon,
    .mdc-fab__label span,
    .badge {
        color: black !important;
    }

    .mdc-drawer__content .material-icons-sharp.mdc-list-item__graphic {
        color: #aaa !important;
    }

    .mdc-button--outlined .material-icons-sharp,
    a.mdc-button--outlined {
        color: var(--mdc-theme-primary) !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    li,
    span,
    p,
    a.black,
    .stepper-top__count,
    .mdc-typography--headline6,
    .mdc-text-field:not(.mdc-text-field--invalid) label,
    .mdc-switch+label,
    .mdc-checkbox,
    .material-icons-sharp,
    .material-icons-sharp-outlined,
    input,
    textarea,
    .mdc-notched-outline,
    select {
        color: #fff !important;
    }

    summary,
    a,
    .mdc-form-field>label,
    li::marker {
        color: #ddd !important;
    }

    small,
    ::placeholder {
        color: #999 !important;
    }

    .mdc-text-field:not(.mdc-text-field--invalid) .mdc-notched-outline div,
    .mdc-text-field:not(.mdc-text-field--invalid) .mdc-notched-outline span,
    input:not(:checked)+.mdc-checkbox__background {
        border-color: grey !important;
    }

    .mdc-text-field:not(.mdc-text-field--invalid) .mdc-floating-label--float-above {
        color: var(--mdc-theme-primary) !important;
    }

    .black.adaptive {
        color: white !important;
    }

    hr {
        height: 1px;
        border-width: 0;
        color: #272727;
        background-color: #272727;
    }

    .mdc-chip--colored .mdc-chip__text {
        color: #222 !important;
    }

    .mdc-text-field--filled {
        background-color: rgb(150 150 150 / 10%) !important;
    }

    .mdc-text-field--filled:hover {
        background-color: rgb(150 150 150 / 20%);
    }

    .mdc-text-field--filled .mdc-line-ripple::before {
        border-bottom-color: #888 !important;
    }
}

/* sharp theme */
.mdc-card,
.mdc-dialog__surface,
.search-input,
.mdc-menu,
.mdc-button,
.mdc-notched-outline__leading,
.mdc-notched-outline__trailing,
.mdc-button__ripple {
    border-radius: 0 !important;
}

.mdc-button.mdc-button--outlined {
    border: solid 2px var(--mdc-theme-primary);
    height: 48px;
}

.mdc-text-field.mdc-text-field--filled {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.mdc-text-field.mdc-text-field--filled .mdc-line-ripple::before {
    border-bottom-width: 2px;
}

.mdc-text-field.mdc-text-field--filled .mdc-line-ripple::after {
    border-bottom-width: 3px;
}

/* tac material */
#tarteaucitronBack {
    display: none
}

#tarteaucitronRoot button {
    padding: 4px 8px;
    border: none;
    background: 0 0;
    cursor: pointer;
    border-radius: var(--snackbar-border-radius);
    font-family: Jost, Arial;
    font-weight: 500;
    font-size: 16px
}

#tarteaucitronRoot button:hover {
    background: rgba(150, 150%, 150%, 5%)
}

.tarteaucitronHidden {
    display: none
}

#tarteaucitronAlertBig {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 12px;
    max-width: 540px;
    background-color: #202124;
    box-shadow: 0 1px 3px 0 rgb(60 64 67 / 30%), 0 4px 8px 3px rgb(60 64 67 / 15%);
    z-index: 9
}

#tarteaucitronDisclaimerAlert {
    display: block;
    padding: 24px;
    color: #fff;
    font-family: Roboto, Arial;
    font-size: 14px;
    line-height: normal
}

#tarteaucitronCloseAlert,
#tarteaucitronRoot .tarteaucitronCTAButton {
    float: right;
    margin-bottom: 8px;
    color: var(--snackbar-link-color, #669df6);
    z-index: 100
}

#tarteaucitronRoot #tarteaucitronPrivacyUrl {
    position: absolute;
    top: 64px;
    left: 24px;
    padding: 0;
    color: #fff;
    font-family: Roboto, Arial;
    font-size: 14px;
    line-height: normal
}

#tarteaucitronRoot #tarteaucitronPrivacyUrl:hover {
    background: 0 0;
    text-decoration: underline
}

.tarteaucitronCTAButton.tarteaucitronAllow {
    margin-right: 16px
}

#tarteaucitron {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    font-family: Roboto, Arial;
    z-index: 99
}

#tarteaucitronRoot #tarteaucitronClosePanel {
    position: fixed;
    top: 8px;
    right: 8px;
    padding: 8px 12px;
    color: #000
}

#tarteaucitronRoot #tarteaucitronPrivacyUrlDialog {
    padding: 0;
    font-family: Roboto, Arial
}

#tarteaucitronServices {
    padding: 0;
    margin: 16px auto;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%)
}

#tarteaucitronRoot #tarteaucitronAllAllowed {
    color: #fff;
    background-color: var(--snackbar-primary-color);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2)
}

#tarteaucitronRoot #tarteaucitronAllDenied {
    color: var(--snackbar-primary-color)
}

#tarteaucitronRoot #tarteaucitronAllAllowed,
#tarteaucitronRoot #tarteaucitronAllDenied {
    padding: 8px 24px
}

#tarteaucitron ul .tarteaucitronAllow,
#tarteaucitron ul .tarteaucitronDeny {
    padding: 4px 16px;
    border: 1px solid #dadce0;
    border-radius: 18px;
    color: var(--snackbar-primary-color);
    font-size: .875rem;
    letter-spacing: .0107142857em;
    font-weight: 500
}

#tarteaucitronMainLineOffset {
    padding: 24px;
    border-bottom: 1px solid #ddd
}

.tarteaucitronLine:not(.tarteaucitronMainLine) {
    margin: 0 24px;
    padding: 24px 0
}

.tarteaucitronDetails.tarteaucitronInfoBox {
    display: none;
    margin: 16px 24px;
    color: var(--snackbar-primary-color);
    font-family: Jost, Arial;
    font-weight: 500
}

#tarteaucitronServices_mandatory .tarteaucitronAsk {
    margin-top: 0
}

#tarteaucitronRoot #tarteaucitronServices_mandatory .tarteaucitronAsk button {
    margin-left: 0
}

#tarteaucitron ul {
    list-style-type: none;
    padding: 0;
    margin: 0
}

#tarteaucitronRoot #tarteaucitronServicesTitle_mandatory button {
    margin-left: -8px
}

#tarteaucitronRoot .tarteaucitronTitle button {
    padding: 8px 0
}

li {
    margin-bottom: 0
}

li .tarteaucitronAsk {
    margin-top: 16px
}

.tarteaucitronTitle {
    position: sticky;
    top: 0;
    padding: 12px 24px;
    background: rgba(255, 255%, 255%, 92%);
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    z-index: 99
}

.tarteaucitronTitle button {
    color: #000
}

.tarteaucitronSelfLink {
    margin: 24px
}

.tarteaucitronSelfLink img {
    opacity: .5
}

.tarteaucitronSelfLink img:hover {
    opacity: 1
}

ul li ul li:not(:first-child) {
    border-top: 1px solid #dadce0;
    padding-top: 16px
}

.tarteaucitronH1,
.tarteaucitronH2,
.tarteaucitronH3 {
    display: block;
    font-family: Jost, Arial;
    font-weight: 500;
    margin: 16px 0
}

.tarteaucitronH1 {
    font-size: 24px;
    margin-top: 32px
}

.tarteaucitronH2 {
    font-size: 18px
}

.tarteaucitronH3 {
    display: block;
    margin-bottom: 12px;
    margin-top: 6px
}

.tarteaucitronName {
    color: #3c4043;
    letter-spacing: .01428571em;
    font-family: Roboto, Arial, sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.25rem
}

.tarteaucitronName a {
    color: var(--snackbar-primary-color);
    text-decoration: none
}

.tarteaucitronName a:hover {
    text-decoration: underline
}

.tarteaucitronIsAllowed .tarteaucitronAllow,
.tarteaucitronIsDenied .tarteaucitronDeny {
    background-color: var(--snackbar-primary-trans) !important;
    border-color: var(--snackbar-primary-color) !important;
    filter: brightness(.8)
}

@media screen and (min-width:700px) {
    #tarteaucitronAlertBig {
        left: 24px;
        bottom: 24px;
        border-radius: var(--snackbar-border-radius)
    }

    ::-webkit-scrollbar {
        width: 7px;
        height: 7px
    }

    ::-webkit-scrollbar-thumb {
        background: #aaa;
        border-radius: 8px
    }
}

@media screen and (max-width:700px) {
    #tarteaucitronServices {
        margin: 0;
        border-radius: 0;
        height: 100% !important
    }
}