a {
    text-decoration: none;
    color: inherit;
}

a:link,
a:visited,
a:active,
a:hover {
    color: var(--accent);
}

p {
    margin: 0;
}


.text0 {
    font-size: 50px;
    line-height: 55px;
    font-weight: bold;
}

.text1 {
    font-size: 32px;
    line-height: 39px;
    font-weight: 500;
}

.text2 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 300;
}

.text3 {
    font-size: 20px;
    line-height: 29px;
    font-weight: 300;
}

.text4 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
}

.text5 {
    font-size: 12px;
    font-weight: 300;
}



::-webkit-scrollbar {
    width: 8px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gray400);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 24px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray500);
    cursor: grabbing;
}

::-webkit-scrollbar-thumb:active {
    background: var(--gray500);
}

::-webkit-scrollbar-button,
::-webkit-scrollbar-corner {
    display: none;
}


button, .button, .button2 {
    color: var(--white);
    background-color: var(--accent);
    min-height: 40px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    padding: 0 16px;
    margin: 0;
    border: none;
    border-radius: 4px;
    white-space: nowrap;
    user-select: none;
    gap: 8px;
    cursor: pointer;
}

button:active, .button:active, .button2:active {
    color: var(--gray400);
    background: var(--gray200);
}

.button2 {
    background: none;
    outline: 2px solid var(--accent);
}

.button2:hover{
    background: var(--accent);
}


button[disabled],
.button[disabled],
.button2[disabled],
form[disabled] button,
form[disabled] .button,
form[disabled] .button2{
    color: var(--gray400) !important;
    background: var(--gray100) !important;
    cursor: default;
    pointer-events: none;
}


input,
textarea,
md-select,
md-autocomplete {
    color: var(--white);
    padding: 0 15px;
    outline: 2px solid var(--gray300);
    background: var(--gray100);
    border-radius: 4px;
    border: none;
    line-height: 40px;
    width: 100%;
    height: 40px;
}

input:focus,
textarea:focus,
md-select:focus,
md-autocomplete input:focus{
    outline: 2px solid var(--gray500);
}

input::placeholder,
textarea::placeholder,
md-select .md-select-value.md-select-placeholder{
    color: var(--gray300);
}


[ng-click],
[ui-sref] {
    cursor: pointer;
    user-select: none;
}

input[disabled], md-select[disabled] {
    background-color: var(--disabled) !important;
}