@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100;200;300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Departure Mono';
    src: url('../fonts/Departure Mono/DepartureMono-Regular.woff2') format('woff2'),
    url('../fonts/Departure Mono/DepartureMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Martian Mono';
    letter-spacing: .08em;
    font-size: 0.6rem;
    background: #181818;
    color: #ffffff;
}

/* GENERAL */
.text-xxs {
    font-size: 0.5rem;
}

.font-departure-mono {
    font-family: 'Departure Mono';
}

.sidebar {
    background: #181818;
}

/*
 |--------------------------------------------
 | 2. ADDITIONAL CLASSES
 |--------------------------------------------
 |
 */
.form-floating > label {
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}
.form-floating > .form-control::placeholder { color:transparent; }
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label { transform: translateY(-1.5rem) translateX(-.35rem); }

.font-pacifico { font-family: 'Pacifico'; }

/*
 |--------------------------------------------
 | 2. CUSTOM SCROLL BAR
 |--------------------------------------------
 |
 */
.scrollable-vertical,
.scrollable-horizontal {
    -ms-scroll-chaining: none;
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth;
    -webkit-overscroll-behavior: contain;
    overscroll-behavior: contain;
}
/* scrollable vertical */
.scrollable-vertical {
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
    /* mobile smooth scroll */
    height: auto;
    max-height: 100%;
}
/*
    scrollable horizontal
    Do not use dropdowns inside
*/
.scrollable-horizontal {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    width: auto;
    white-space: nowrap;
    position: relative;
    z-index: 100;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollable-horizontal::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
}
.scrollable-horizontal::-webkit-scrollbar-track { -webkit-box-shadow: none !important; background: transparent !important; }
.scrollable-horizontal::-webkit-scrollbar-thumb {
    -webkit-box-shadow: none !important;
    background: transparent !important;
    width: 0px !important;
    height: 0px !important;
    outline: none !important;
}
.scrollable-horizontal::-webkit-scrollbar-button {
    background: transparent !important;
    width: 0px !important;
    height: 0px !important;
    outline: none !important;
}
@media only screen and (min-width: 768px)
{
    /* webkit scrollbar style */
    .scrollable-vertical { scrollbar-color: #121212 #eeeeee; scrollbar-width: thin; }
    .scrollable-vertical::-webkit-scrollbar-track,
    .scrollable-vertical::-webkit-scrollbar,
    .scrollable-vertical::-webkit-scrollbar-thumb { margin: 3px 0; border-radius: 0.35rem; }
    .scrollable-vertical::-webkit-scrollbar { width: 3px; }
    /* dark vertical : default */
    .scrollable-vertical:hover::-webkit-scrollbar { background-color: rgba(255, 255, 255, 0.2); }
    .scrollable-vertical:hover::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.8); }
    .scrollable-vertical:hover::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); background-color: rgba(255, 255, 255, 0.1); }
}