* {
    margin: 0;
    padding: 0;
}

html, body {
    background-color: #F2F5F9;
    color: #333;
    font-family: "Inter", arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", arial, sans-serif;
}

a:hover {
    text-decoration: none;
}

/* Navigation top - No sidebar */

nav.nav-top {
    background-color: #0360AD;
    color: #c4daff;
    display: flex;
    justify-content: start;
    align-items: center;
    border-bottom: 2px solid #2E9D2C;
}

.nav-top-item {
    font-size: .95rem;
    margin: .4rem;
    padding: .5rem .7rem;
    color: inherit;
    text-decoration: inherit;
}

.nav-top-item:hover, .nav-top-item.active {
    background: #075696;
    border-radius: 5px;
    color: inherit;
    text-decoration: inherit;
}

.nav-top-item span {
    display: inline-block;
    margin-left: .4rem;
}

.nav-top-item-logo {
    display: flex;
    align-items: center;
}

.nav-top-item-logo svg {
    margin-right: 10px;
    font-size: 1.5rem;
}

@media (max-width: 799px) {
    nav.nav-top {
        display: none;
    }
    main.content-main {
        margin-top: 3.6rem;
    }
}

/* Navigation sticky - Sidebar */

#burger-menu {
    visibility: hidden;
    transition: visibility .5s ease-in-out;
}

#burger-menu.nav-burger-opened {
    visibility: visible;
}

nav.nav-burger-sticky {
    z-index: 1039;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3.6rem;
    font-size: 2rem;
    background-color: #0360AD;
    color: #eee;
    border-bottom: 2px solid #2E9D2C;
}

.nav-burger {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}

.nav-burger-sticky-menu {
    display: flex;
    flex-wrap: inherit;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 100%;
}

.nav-burger-sticky a {
    color: inherit;
    text-decoration: none;
}

.nav-burger-sticky-menu svg {
    cursor: pointer;
}

.burger-sticky-logo {
    font-size: .8rem;
}

.burger-sticky-logo .fa-heartbeat {
    color: #0360AD;
    font-size: 2rem;
}

.nav-burger-drawer {
    --burger-drawer-width: 280px;
    border-right: 1px solid #e0e0e0;
    background: #fff;
    width: var(--burger-drawer-width);
    transform: translateX(calc(0px - var(--burger-drawer-width)));
    flex-basis: var(--burger-drawer-width);
    flex-shrink: 0;
    transition: transform .15s ease-in-out;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1038;
}

.nav-burger.nav-burger-opened .nav-burger-drawer {
    transform: translateX(0);
    transition: transform .15s ease-in-out;
}

.nav-burger-filler {
    opacity: 0;
    width: 100vh;
    height: 100vh;
    transition: opacity .15s ease-in-out;
}

.nav-burger-opened .nav-burger-filler {
    opacity: .65;
    background: black;
}

.nav-burger-menu {
    padding-top: 3.6rem;
    flex-grow: 1;
    overflow-y: auto;
}

.nav-burger-items-header {
    padding: 2.5rem 1.5rem 0 1.5rem;
}

.nav-burger-items-body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-burger-items-body .nav-burger-item {
    display: flex;
    align-items: center;
    min-height: 2rem;
    padding: .75rem 1.5rem;
    position: relative;
    line-height: 1;
    color: #616161;
}

.nav-burger-items-body .nav-burger-item:hover, .nav-burger-items-body .nav-burger-item.active {
    background: #F0F0F0;
    text-decoration: none;
}

.nav-burger-item-icon {
    display: inline-block;
    min-width: 2rem;
    text-align: center;
    margin-right: .5rem;
    margin-left: -.5rem;
}

.nav-burger-footer {
    border-top: 1px solid #e0e0e0;
    background: #f5f5f5;
    flex-shrink: 0;
    padding: 1rem 1.5rem 1rem;
    display: flex;
    align-items: center;
}

.nav-burger-footer-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

@media (min-width: 800px) {
    .nav-burger, nav.nav-burger-sticky {
        display: none;
    }
}

/* Container */

.container {
    margin: 1rem 2rem;
}

.container-minimal {
    max-width: 450px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
}

.minimal-logo {
    text-align: center;
    font-size: 6rem;
    color: #0360AD;
}

.minimal-logo a {
    color: inherit;
}

.minimal-logo a:hover {
    color: #086bff;
}

/* Other */

.heading {
    background: #fff;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #dde0e3;
    font-size: 1.5rem;
}

.table {
    border: 1px solid #dde0e3;
    border-radius: 5px;
    margin-top: 1rem;
}

table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 5px;
}

thead {
    text-transform: uppercase;
    color: #747474;
}

tr {
    border-bottom: 1px solid #dde0e3;
}

tbody, tfoot {
    background: #fff;
    border-radius: 10px;
}

th, td {
    padding: .9rem .5rem;
    text-align: left;
}

tr:last-child td {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-bold {
    font-weight: bold;
}

span.spacing-x {
    display: inline-block;
    margin-left: .5rem;
}

.inline-block {
    display: inline-block;
}

.actions {
    text-align: center;
}

.actions a {
    color: inherit;
    text-decoration: inherit;
    font-size: 1.1rem;
}

.uk-card-hover.card-actions .actions {
    margin-left: 10px;
    visibility: hidden;
    transition: opacity .3s ease-in;
    opacity: 0;
}

.uk-card-hover.card-actions:hover .actions {
    visibility: visible;
    opacity: 1;
}

/* Pill */
.pill {
    padding: 1.2rem 0;
}

.pill > span:not(.pill-divider) {
    padding: 1rem;
}

.pill a.pill-action {
    color: inherit;
    padding: 1rem;
}

.pill a.pill-action:last-of-type {
    margin-right: .5rem;
}

/* Flash Message */
.flash-message {
    margin: 1rem;
    border-radius: 12px;
}

@media screen and (max-width: 799px) {
    .flash-message {
        margin-top: 5rem;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.label-additional {
    flex-grow: 1;
    font-size: smaller;
    text-align: right;
}

/* Ui Kit Extensions */
@media screen and (min-width: 640px) {
    .uk-display-inline-block\@m {
        display: inline-block;
    }
}

.uk-margin-x {
    margin-left: 20px!important;
    margin-right: 20px!important;
}

/* Burger sidebar navigation is broken when the UiKit position: relative is set */
.uk-card {
    position: inherit !important;
}

/* End Ui Kit Extensions */
