@import url("https://fonts.googleapis.com/css?family=Archivo");

@font-face {
    font-family: roboto;
    src: url("/fonts/roboto-regular.ttf");
}

* {
    font-family: roboto;
}

body {
    font-size: .875rem;
}

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

.archivo {
    font-family: "archivo" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "archivo" !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "archivo" !important;
}

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

.noteitem {
    background: #eee;
    border-radius: 10px;
}

.noteitemlight {
    background: white;
    border-radius: 10px;
}

/*
* Sidebar
*/

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}

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

.sidebar .nav-link {
    font-weight: 500;
    color: #7b7a7a;
    font-size: 20px;
}

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

.sidebar .nav-link.active {
    color: white;
}

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

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

/*
* Navbar
*/

.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;

    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.navbar .navbar-toggler {
    top: .25rem;
    right: 1rem;
}

.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);
}

.btn-primary {
    background-color: #212529 !important;
    border: none !important;
}

.btn-primary-reverted {
    background-color: white !important;
    color: #212529;
    border: solid 1px gray !important;
}

.bg-primary {
    background-color: #212529 !important;
    color: white !important;
}

.bg-main {
    background-color: #212529 !important;
}

.nav-link.active {
    color: white !important;
}

button.bg-primary {
    background-color: #212529 !important;
    color: white;
}

a.bg-primary {
    background-color: #212529 !important;
    color: white;
}

.nav-link {
    color: rgba(255, 254, 254, 0.615) !important;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(17, 146, 245) !important;
}

#search:focus {
    background-color: #212529 !important;
    color: white;
}

#search {
    background-color: #212529 !important;
    color: white
}

span.page-link {
    background-color: #212529 !important;
    color: white !important;
}

button.page-link {
    background-color: #212529 !important;
    color: white !important;
}

.form-check-input:focus {
    border-color: #ffffff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(17, 146, 245) !important;
}

.form-check-input:checked {
    background-color: rgb(17, 146, 245) !important;
    border-color: rgb(17, 146, 245) !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ANIMATIONS */
.scale-in-center {
    -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.icon {
    height: 20px;
    width: 20px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@-webkit-keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}


[x-cloak] { display: none !important; }