:root {
    /*Background*/
    --bg-1: #090A0F; /**/
    --bg-2: #111827;
    --bg-3: #0F1833;
    --bg-4: #1A2545;
    --bg-5: #17273f; /* #E2D2B9 */
    --bg-5-rgb: 13, 13, 13;

    --text-primary: #9ba9c0;
    --text-secondary: #c5c5c5;

    --brand-1: #4590C9; /*#00F5D4*/
    --brand-1-rgb: 69, 144, 201;
    --brand-2: #2F5299; /*#ff6b35;*/
    --brand-2-rgb: 47, 82, 152;
    --brand-3: #7C5CFF;
    --brand-4: #3865A0;
    --brand-4-rgb: 56, 101, 160;

    --brand-green: #10B981;
    --brand-green-rgb: 16, 185, 129;
    --brand-orange: #F59E0C;
    --brand-orange-rgb: 245, 158, 12;
    --brand-red: #F43F5E;
    --brand-purple: #A855F7;
    --brand-purple-rgb: 168, 85, 247;

    /*Alerts / Admin Colors*/
    --green: #198754;
    --green-80: rgba(25, 135, 84, .8);
    --green-70: rgba(25, 135, 84, .7);

    --yellow: rgb(255, 193, 7);
    --yellow-90: rgba(255, 193, 7, .9);
    --yellow-70: rgba(255, 193, 7 ,.7);
    --yellow-10: rgba(255, 193, 7 ,.1);

    --orange: rgb(253, 126, 20);
    --orange-70: rgba(253, 126, 20, .7);

    --red: rgb(220, 53, 69);
    --red-80: rgba(220, 53, 69, .8);
    --red-70: rgba(220, 53, 69 ,.7);
    --red-10: rgba(220, 53, 69 ,.1);

    --blue: rgb(11, 202, 240);
    --blue-90: rgba(11, 202, 240, .9);
    --blue-80: rgba(11, 202, 240, .8);
    --blue-70: rgba(11, 202, 240, .7);
    --blue-10: rgba(11, 202, 240, .1);

    --grey: rgb(173, 181, 189);
    --grey-70: rgba(173, 181, 189, .7);

    --grey-dark: rgb(118, 123, 128);
    --grey-dark-70: rgb(118, 123, 128, .7);
}

/*generic*/
body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    background-color: var(--bg-1);
    color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700 !important;
    color: white;
}

ol li {
    list-style: decimal;
}

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

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

.text-regular {
    font-size: 1rem;
    line-height: 1rem;
}

.text-sm {
    font-size: .8rem;
}

/*Page Headers*/
.hero-container {
    padding-top: 90px;
}

@media(min-width: 768px) {
    .hero-container {
        padding-top: 90px;
    }
}

.hover-m-left, .hover-m-right, .hover-target {
    transition: all .3s ease;
}

.hover-m-left:hover .hover-target {
    margin-left: 10px;
}

.hover-m-right:hover .hover-target {
    margin-right: 10px;
}

/*Dropdown Menu*/
.dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--bg-2);
}

.dropdown-toggle::after {
    display: none !important;
}

/*Bootstrap Overwrites*/
.container {
    max-width: 1450px;
}

a {
    color: var(--text-primary) !important;
    text-decoration: none;
}

.card {
    border-radius: 16px;
    background-color: var(--bg-2);
    color: var(--text-primary);
    transition: all .3s ease;

    &:hover {
        transform: translateY(-3px);
    }
}

.nav.nav-pills {
    background-color: var(--bg-3);

    .nav-link.active {
        background-color: var(--bg-5);
        border-radius: 12px;
    }
}
