:root {
    --primaryBlue: #008daf;
    --dangerRed: #fa896b;
    --lightDangerRed: #feede9;
    --successGreen: #00a389;
    --lightSuccessGreen: #d9f1ed;
    --grey: #a9a9a9;
    --lightGrey: #e9e9e9;
    --beige: #fbf6f1;
    --black: #000000;
    --white: #ffffff;
    --yellow15: #fed50026;
    scroll-behavior: auto !important;
}

/* RESET **********************************************************************/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}

/* pages at least 100vh of height */
main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* MISCELLANEOUS **************************************************************/

body {
    font-family: "Mulish", sans-serif;
    background-color: var(--beige);
    color: var(--black);
}

.container {
    max-width: 2000px !important;
}

h1 {
    font-weight: 900;
    font-size: 48px;
}

hr {
    opacity: 1;
    border-color: var(--lightGrey);
}

.h-100 {
    height: 100%;
}

/* prevent content from overflowing */
.main-content {
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
}

.dropdown-menu {
    border-radius: 0;
    border-color: var(--lightGrey);
}

/* change default icon for dropdowns, arrow down */
.dropdown-toggle::after {
    border: none !important;
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
    content: "\f078" !important;
    font-weight: 300 !important;
    vertical-align: unset;
}

.vertical-separator {
    display: inline-block;
    height: 28px;
    width: 1px;
    background-color: #d3d4d5;
}

/* bg colors */
.bg-primary {
    background-color: var(--primaryBlue) !important;
}

.bg-secondary {
    background-color: var(--beige) !important;
}

/* text colors */
.text-muted {
    color: var(--grey) !important;
}

.text-primary {
    color: var(--primaryBlue) !important;
}

/* text styles */
.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-48 {
    font-size: 48px !important;
}

.w300 {
    font-weight: 300;
}

.w800 {
    font-weight: 800;
}

.w900 {
    font-weight: 900;
}

.w1000 {
    font-weight: 1000;
}

.input-group.form-control {
    padding: 0 12px 0 0;
}

.input-group.form-control input {
    width: 100%;
}

.active>.page-link,
.page-link.active {
    background-color: var(--primaryBlue) !important;
}

.page-link {
    color: var(--primaryBlue);
}

.handle-error {
    color: var(--dangerRed) !important;
}

.nav-tabs a.nav-link {
    color: var(--primaryBlue) !important;
}

.nav-tabs a.nav-link.disabled {
    color: var(--grey) !important;
}

.nav-tabs a.nav-link.active {
    color: var(--black) !important;
}

.pagination .page-item .page-link {
    border-radius: 0 !important;
}

.img-thumbnail-size {
    width: 100px;
    height: 50px;
    object-fit: cover;
    object-position: center;
}

.img-thumbnail-for-icons {
    background-color: #f0f0f0 !important;
}

.breadcrumbs {
    list-style: none;
    overflow: hidden;
    padding-left: 0;
}

.breadcrumbs li {
    float: left;
}

.breadcrumbs .divider {
    margin-right: 5px;
}

/* Small devices (landscape phones, 576px and up) *****************************/
@media (min-width: 576px) {
    .main-content {
        padding-left: 32px;
        padding-right: 32px;
    }
}