@import 'bootstrap-grid.min.css';
@import 'bootstrap-utilities.min.css';

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

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

* {
    box-sizing: border-box;
}

.spacer {
    flex-grow: 1;
}

iframe {
    display: block;
}

.number {
    font-weight: 600;
}

.text-right {
    text-align: right !important;
}

hr {
    width: 100%;
    display: block;
    height: 1px;
    border: 0;
    background-color: #333;
    margin: 0;
    padding: 0;
}

hr.gray {
    background-color: var(--button-separator);
    height: 1px;
}

.currency {
    font-size: 12px;
    color: var(--text-secondary)
}

.link {
    text-decoration: none;
    color: initial;
}

.link:hover {
    text-decoration: underline;
}


.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.text-primary {
    color: var(--text-primary)
}

.text-secondary {
    color: var(--text-secondary)
}

::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
}

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

::-webkit-scrollbar {
    width: 20px;
}