body {
    font-family: 'Roboto', sans-serif;
    font-size: .875rem;
}
a {
    color: #1CBAC8;
}
a:hover,
a:active {
    color: #188A98;
    text-decoration: none;
}

.page-link {
    color: #1CBAC8;
}
.page-link:hover,
.page-link:active {
    color: #188A98;
    text-decoration: none;
}

.btn-primary {
    color: #FFFFFF;
    background-color: #1CBAC8;
    border-color: #1CBAC8;
}
.btn-primary:hover,
.btn-primary:active {
    color: #FFFFFF;
    background-color: #188A98;
    border-color: #188A98;
}

.feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

/*
 * Sidebar
 */

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 60px 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 60px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sidebar-sticky {
        position: -webkit-sticky;
        position: sticky;
    }
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #999;
}

.sidebar .nav-link.active {
    color: #1CBAC8;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

.secondary-branding {
    position: absolute;
    bottom: 25px;
    left: 0px;
    width:100%;
}
.secondary-branding img,
.secondary-branding svg {
    max-width: 50%;
}

.nav-link[data-toggle].collapsed:after {
    /*content: "\25be";*/
    content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='grey' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    height: 16px; width: 16px;
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    color: #a1a1a1;
}
.nav-link[data-toggle]:not(.collapsed):after {
    /*content: "\25b4";*/
    content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='grey' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-up'><polyline points='18 15 12 9 6 15'></polyline></svg>");
    height: 16px; width: 16px;
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    color: #a1a1a1;
}

#navbarMobile ul.navbar-nav {
    max-height: calc(100vh - 42px);
    overflow-y: auto;
}

.navbar-dark .navbar-toggler {
    border: none;
}

/*
 * Content
 */

[role="main"] {
    padding-top: 48px; /* Space for fixed navbar */
}

.card-footer {
    border-top: none;
}

.card-columns {
    column-count: 1;
}
@media (min-width: 576px) {
    .card-columns {
        column-count: 2;
    }
}
@media (min-width: 768px) {
    .card-columns {
        column-count: 3;
    }
}
@media (min-width: 1200px) {
    .card-columns {
        column-count: 5;
    }
}

.table .thead-dark th {
    color: #FFFFFF;
    background-color: #5B646C;
    border-color: #5B646C;
}

.table .oi {
    font-size: 0.75rem;
}
.table .oi.oi-circle-check {
    color: #39af79;
}
.table .oi.oi-circle-x {
    color: #d30205;
}

/*
 * Navbar
 */

.navbar-brand {
    /*padding-top: .75rem;
    padding-bottom: .75rem;*/
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}
.navbar-brand img,
.navbar-brand svg {
    max-height: 40px;
    width: 250px;
}

.navbar .form-control {
    padding: .75rem 1rem;
    border-width: 0;
    border-radius: 0;
}

.form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

/*
 * Auth forms
 */

.form-wrapper {
    height: calc(100vh - 60px);
    /*margin-top: 75px;*/
}
.form-div {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}