:root {
    --body-font:Inter, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --black900: #1A1A1A;
    --black800: #333;
    --black500: rgba(0, 0, 0, 0.4);
    --black400: #BDBDBD;
    --black200: rgba(0, 0, 0, 0.08);
    --blue100: #E6F6FF;
    --red600: #E12D39;
    --accent: #179DE3;
}

* {
    -webkit-font-smoothing: unset !important;
    -webkit-text-stroke: unset !important;
    font-family: var(--body-font);
}

html,
body {
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    letter-spacing: -0.006em;
    margin: 0;
    padding: 0;
}

button {
    font-size: 14px;
    padding: 6px 16px;
    background: #179DE3;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    text-align: center;
    color: white;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button,
li {
    cursor: pointer;
}

span {
    cursor: default;
}

.logo {
    display: flex;
    flex-direction: row;
    column-gap: 8px;
    align-items: center;
    cursor: pointer;
}

.logo img {
    width: 24px;
    height: 24px;
}

.logo__name {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
}


