:root {
    --up-color: #039855;
    --down-color: #d92d20;
    --up-bg-color: #12b76a;
    --down-bg-color: #f04438;
    --finance-color: #005ce5;
    --accent: #ff8e23;
    --gray-color: #eaecf0;
    --gray-secondary-color: #fcfcfd;
    --dark-gray-color: #d0d5dd;
    --base-font-color: #101828;
    --base-secondary-font-color: #475467;
    --base-background-color: #ffffff;
    --base-background-backdrop: #fcfcfd;
    --placeholder: #475467;
    --base-button-color: #eaecf0;
}

html,
body {
    font-family: "Roboto";
    padding: 0 !important;
    margin: auto !important;
    color: var(--base-font-color) !important;
    font-size: 14px !important;
    line-height: 20px !important;
    width: 100% !important;
    background-color: #f9fafb;
}

.border {
    border: 1px solid var(--gray-color) !important;
}

.border-top {
    border-top: 1px solid var(--gray-color) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--gray-color) !important;
}

.border-left {
    border-left: 1px solid var(--gray-color) !important;
}

.border-right {
    border-right: 1px solid var(--gray-colorv) !important;
}

.material-text-finance {
    color: var(--finance-color);
}

.material-text-danger {
    color: var(--down-color) !important;
}

.material-text-success {
    color: var(--up-color) !important;
}

.material-text-warning {
    color: var(--accent) !important;
}

.material-text-secondary {
    color: var(--base-secondary-font-color) !important;
}

.mdc-typography-styles-headline1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
}

.mdc-typography-styles-headline2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.mdc-typography-styles-headline5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.mdc-typography-styles-headline6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.mdc-typography-styles-body1 {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.button-success {
    background: var(--up-bg-color);
    color: var(--base-background-color);
    border: none;
    border-radius: 6px;
    height: 28px;
}

.button-secondary {
    background: var(--dark-gray-color);
    color: var(--base-font-color);
    border: none;
    border-radius: 6px;
    height: 28px;
}

.button-danger {
    background: var(--down-bg-color);
    color: var(--base-background-color);
    border: none;
    border-radius: 6px;
    height: 28px;
}

.button-default {
    background: var(--base-button-color);
    color: var(--base-font-color);
    border: none;
    border-radius: 6px;
    height: 28px;
}

.button-finance {
    background: var(--finance-color);
    color: var(--base-background-color);
    border: none;
    border-radius: 6px;
    height: 28px;
}

.button-accent {
    background: var(--accent);
    color: var(--base-background-color);
    border: none;
    border-radius: 6px;
    height: 28px;
}

.button-gray {
    background: var(--dark-gray-color);
    border: none;
    border-radius: 6px;
    height: 28px;
}

/*#region AutoComplete*/
.autocomplete {
    background: var(--base-input-background-color) !important;
    position: relative;
    border: none !important;
    height: 30px;
}

.autocomplete input {
    width: 125px;
    border: none;
    font-weight: bold;
}

.autocomplete:focus-within {
    box-sizing: border-box;
    outline: 0;
    box-shadow: none;
    color: var(--material-font-color);
}

.autocomplete input:focus-within {
    outline: 0;
}

.autocomplete .empty-account {
    border: 1px solid var(--dn-color);
}

.autocomplete .option,
.nav-logo .option {
    max-height: 250px;
    overflow-y: scroll;
    background: var(--input-bg);
    border-radius: 4px;
    position: absolute;
    top: 30px;
    z-index: 2000;
    display: none;
    width: 160px;
}

.autocomplete .option.show,
.nav-logo .option.show {
    display: block;
}

.autocomplete-item {
    background: var(--input-bg);
    border-radius: 4px;
    color: var(--material-font-color);
    width: 100%;
    padding: 3px;
}

.autocomplete.show .autocomplete-item:focus {
    border: 1px solid var(--accent-focus);
    outline: 0;
    box-shadow: none;
}

.autocomplete-item:hover {
    background: var(--accent-hover);
    outline: none;
    color: var(--input-bg);
}

.autocomplete-item-hover {
    background: var(--accent-hover);
    outline: none;
    color: var(--input-bg);
}

.autocomplete-item-focus {
    background: var(--accent-focus);
    outline: none;
    color: var(--input-bg);
}