.navbar {
    background-color: white !important;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
}

a {
    color: #0d67ed;
}

a:hover {
    color: #f04b4c;
!important;
    text-decoration: none;
    cursor: pointer;
}

h1 {
    font-family: 'Josefin Sans', sans-serif;
    color: #0d67ed;
}

button {
    background-image: none;
    border-color: transparent;
    background-color: #0d67ed;
    color: white !important;
}

button:hover {
    background-image: none;
    border-color: transparent;
    background-color: #3d6098;
    color: white !important;
}

.btn-primary {
    background-image: none;
    border-color: transparent;
    background-color: #0d67ed;
}

.btn-primary:hover {
    background-image: none;
    border-color: transparent;
    background-color: #3d6098;
}

.alert-notification {
    background-image: none;
    border-color: transparent;
    background-color: #0d67ed;
}

.alert-notification > a {
    color: white;
}

.alert-notification:hover {
    background-color: #f04b4c !important;
    cursor: pointer;
}

.btn-danger {
    background-image: none;
    border-color: transparent;
    background-color: #f04b4c !important;
}

.btn-danger:hover {
    background-image: none;
    border-color: transparent;
    background-color: #8a0000 !important;
}

.red-cell {
    background-color: lightgrey !important;
}

/* color palette #0d67ed, #3d6098, #f04b4c, #e7e7e7 */

@media (max-width: 990px) {
    .navbar-header {
        float: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin: 7.5px -15px;
    }

    .navbar-nav > li {
        float: none;
    }

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

tr.projects-rows:hover {
    background-color: #dae0f1 !important;
    cursor: pointer;
}

table.fixed {
    table-layout: fixed;
}

table.fixed td {
    overflow: visible;
}

ul.tree li {
    list-style-type: none;
    position: relative;
}

ul.tree li ul {
    display: none;
}

ul.tree li.open > ul {
    display: block;
}

ul.tree li a {
    color: black;
    text-decoration: none;
}

ul.tree li a:before {
    height: 1em;
    padding: 0 .1em;
    font-size: .8em;
    display: block;
    position: absolute;
    left: -1.3em;
    top: .2em;
}

ul.tree li > a:not(:last-child):before {
    content: '+';
}

ul.tree li.open > a:not(:last-child):before {
    content: '-';
}

/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1600;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}


.modal-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border: 1px solid var(--textAndLines);
    width: 80%;
}

/* The Close Button */
.close {
    color: var(--error);
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align: right;
}

.close:hover,
.close:focus {
    color: var(--error);
    text-decoration: none;
    cursor: pointer;
}