* {
    margin: var(--spacing-0);
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-y: unset;
    font-family: var(--font-family);
    font-size: var(--font-size-component-md);
}
body,
html {
    height: 100%;
    overflow: hidden;
}

b {
    font-weight: var(--font-weight-medium);
}

input, textarea, select {
    border: 1px solid #ADB1B3;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    padding: var(--spacing-6) var(--spacing-12);
    background-color: #F8F6F4;
    color: inherit;

    font-size: var(--font-size-component-md);
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 20px;
}

input:focus, textarea:focus, select:focus {
    box-shadow:  0 0 0 2px #7BC8FE;
    outline: none;
}

input.error:focus, textarea.error:focus {
    box-shadow: none;
    outline: none;
}

input[type=radio] {
    margin-right: var(--spacing-40);
    margin-left: var(--spacing-2);
}

select::-ms-expand {
    display: none;
}

select {
    min-width: 200px;
    background-color: #F8F6F4 !important;
    background: url(/app/static/graphics/chevron-down-c79c593dfbc4855cb9b3a7a3f46a838b.svg);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: var(--spacing-32);
    font-weight: var(--font-weight-regular);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

select:open {
    background: url(/app/static/graphics/chevron-up-d155df43d45fb342964eb133199f631a.svg);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}
