/* BankFlow - CSS Reset & Base */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--bf-font-family);
    font-size: var(--bf-text-base);
    line-height: 1.6;
    color: var(--bf-text);
    background-color: var(--bf-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--bf-transition), color var(--bf-transition);
}

a {
    color: var(--bf-primary);
    text-decoration: none;
    transition: color var(--bf-transition);
}

a:hover {
    color: var(--bf-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    border-collapse: collapse;
    width: 100%;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* 스크롤바 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--bf-scrollbar);
    border-radius: var(--bf-radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bf-scrollbar-hover);
}
