[v-cloak] {
    display: none;
}

* {
    box-sizing: border-box;
    font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
}

a {
    color: #406080;
}

body, html {
    background: #f7f7f7;
    font-family: sans-serif;
}

body {
    margin: 0;
    line-height: 1.4;
    font-size: 0.8rem;
    color: #73879c;
}

footer {
    padding: 0.5rem 1rem;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

h2 {
    color: #73879c;
    font-size: 180%;
}

h3 {
    color: #65acdc;
    font-size: 140%;
}

h4 {
    display: block;
    background: #e3ebf1;
    border-radius: 0.3rem;
    padding: 0.5rem;
    font-weight: bold;
    font-size: 110%;
    color: #6a8497;
}

h5 {
    display: block;
    border: 1px solid #e3ebf1;
    border-radius: 0.3rem;
    padding: 0.5rem;
    font-weight: bold;
}

hr {
    margin: 0 0 0.5rem;
    border: 0;
    border-top: 1px solid #dfe5ea;
}

hr.fade {
    border: 0;
    height: 1px;
    background: radial-gradient(circle, #dfe5ea 0%, transparent 100%);
}

img.thumb:hover {
    border-color: #ccc;
}

img.thumb {
    width: 100%;
    max-width: fit-content;
    margin-bottom: 0.2rem;
    border: 1px solid #eaeaea;
}

input {
    color: #73879c;
    padding: 0.5rem;
}

input[disabled], input[readonly] {
    color: #999;
    background-color: #f4f4f4;
    cursor: no-drop;
}

input[type=text], input[type='password'], select {
    height: calc(1.5em + 0.75rem + 2px);
}

input[type=range] {
    width: 100%;
    margin: 6.3px 0;
    background-color: transparent;
    -webkit-appearance: none;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    background: #ededed;
    border: 0.3px solid #cccccc;
    border-radius: 1.3px;
    width: 100%;
    height: 7.4px;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    margin-top: -6.6px;
    width: 20px;
    height: 20px;
    background: #73879c;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 10px;
    cursor: pointer;
    -webkit-appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #fafafa;
}

input[type=range]::-moz-range-track {
    background: #ededed;
    border: 0.3px solid #cccccc;
    border-radius: 1.3px;
    width: 100%;
    height: 7.4px;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #73879c;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 10px;
    cursor: pointer;
}

label {
    font-weight: bold;
    margin-bottom: 0.2rem;
    user-select: none;
}

p {
    margin: 0 0 0.5rem 0;
}

select:not([multiple]) {
    color: #73879c;
}

select[disabled] {
    background-color: #f4f4f4;
    cursor: no-drop;
}

textarea {
    resize: vertical;
}

ul {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]:before, [data-tooltip]:after {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

[data-tooltip]:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-bottom: 0.3rem;
    padding: 0.5rem;
    width: max-content;
    border-radius: 0.3rem;
    background-color: #333;
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 0.7rem;
    transform: translateX(-50%);
    max-width: 10rem;
}

[data-tooltip]:after {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #333;
    border-top: 0.3rem solid #333;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: "";
    line-height: 0;
}

[data-tooltip]:hover:before, [data-tooltip]:hover:after {
    visibility: visible;
    opacity: 0.9;
    font-weight: normal;
}

.alert {
    padding: 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.3rem;
    margin-bottom: 0.5rem;
}

.alert > *:last-child {
    margin-bottom: 0;
}

.alert-danger {
    border-color: #d9534f;
}

.alert-danger, .alert-danger a {
    color: #d9534f;
}

.alert-danger-solid {
    background: #d9534f;
}

.alert-danger-solid, .alert-danger-solid a {
    color: #fff;
}

.alert-default {
    border-color: #e4e4e4;
}

.alert-info {
    border-color: #75c0ca;
}

.alert-info, .alert-info a {
    color: #75c0ca;
}

.alert-info-solid {
    background: #75c0ca;
}

.alert-info-solid, .alert-info-solid a {
    color: #fff;
}

.alert-success {
    border-color: #52af92;
}

.alert-success, .alert-success a {
    color: #52af92;
}

.alert-success-solid {
    background: #52af92;
}

.alert-success-solid, .alert-danger-solid a {
    color: #fff;
}

.alert-warning {
    border-color: #f39c12;
}

.alert-warning, .alert-warning a {
    color: #f39c12;
}

.alert-warning-solid {
    background: #f39c12;
}

.alert-warning-solid, .alert-warning-solid a {
    color: #fff;
}

.badge {
    display: inline-block;
    text-align: center;
    border-radius: 0.2rem;
    padding: 0.1rem 0.3rem;
    color: #fff;
    font-size: 80%;
    font-weight: bold;
    white-space: nowrap;
    margin-bottom: 0.05rem;
}

.badge-danger {
    background: #d9534f;
}

.badge-default {
    background: #73879c;
}

.badge-info {
    background: #75c0ca;
}

.badge-secondary {
    background: #777;
}

.badge-success {
    background: #52af92;
}

.badge-warning {
    background: #f0ad4e;
}

.breadcrumbs {
    list-style: none;
    padding: 0.5rem;
    align-self: center;
    margin: 0 0 0.5rem;
    background: #ececec;
    border-radius: 0.3rem;
}

.breadcrumbs > li {
    display: inline;
}

.breadcrumbs a {
    font-weight: 500;
}

.breadcrumbs ul {
    background: #e4e4e4;
    list-style: none;
    margin: 0;
    border-radius: 0.3rem;
}

.breadcrumbs ul > li {
    display: inline-block;
}

.breadcrumbs > li:not(:last-child)::after {
    content: '\0000bb';
    margin: 0 0.2rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #eee;
    padding: 0.5rem;
    color: #666 !important;
    background-color: #fafafa;
    font-size: 100%;
    line-height: 1.3;
    border-radius: 0.3rem;
    outline: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
}

.btn[disabled], .btn[disabled]:hover {
    background: #e4e4e4;
    border-color: #d0d0d0;
    color: #c3c3c3 !important;
    -webkit-user-drag: none;
}

.btn-sm {
    padding: 0.2rem 0.3rem;
}

.btn:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn:hover {
    border-color: #d4d4d4;
}

.btn-danger {
    color: #fff !important;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-danger:hover {
    background-color: #c9302c;
    border-color: #ac2925;
}

.btn-outline-danger {
    color: #d9534f !important;
    border-color: #d43f3a;
}

.btn-outline-danger:hover {
    color: #c9302c !important;
    border-color: #ac2925;
}

.btn-info {
    background-color: #75c0ca;
    border-color: #7cc6d0;
    color: #fff !important;
}

.btn-info:hover {
    background-color: #8ad1da;
    border-color: #7cc6d0;
}

.btn-item {
    display: grid;
    justify-items: center;
    align-content: flex-start;
    text-align: center;
    word-break: break-word;
    overflow: hidden;
}

.btn-item > *:not(:last-child) {
    margin-bottom: 0.2rem;
}

.btn-primary {
    background: #52af92;
    color: #fff !important;
    border-color: #52af92;
}

.btn-primary:hover {
    background-color: #1fd4b1;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff !important;
    border-color: #6c757d;
}

.btn-secondary:hover {
    border-color: #545b62;
    background-color: #5a6268;
}

.btn-warning {
    color: #fff !important;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warning:hover {
    background-color: #ec971f;
    border-color: #d58512;
}

.container {
    padding: 1rem 1rem 3rem 1rem;
}

.content {
    background: #fff;
    padding: 0.5rem 0.5rem 0 0.5rem;
    border-radius: 0.3rem;
    border: 1px solid #e4e4e4;
    overflow: hidden;
    box-shadow: 0 2px 10px 0 rgba(210, 210, 210, 0.50);
}

.form-check label {
    cursor: pointer;
    user-select: none;
    font-weight: normal;
}

.form-check label:hover input[type=checkbox] + span {
    border-color: #bbb;
}

.form-check input[type=checkbox] {
    display: none;
}

.form-check input[type=checkbox] + span {
    display: inline-block;
    border: 2px solid #eaeaea;
    border-radius: 0.3rem;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: baseline;
    color: transparent;
    font-size: 100%;
    line-height: 1.3rem;
    background: #fff;
}

.form-check input[type=checkbox]:disabled + span {
    background: #eaeaea;
}

.form-check input[type=checkbox]:checked + span {
    color: #52af92;
    font-weight: bold;
    text-align: center;
}

.form-control {
    width: 100%;
    background-color: #fff;
    border: 1px solid #dde2e8;
    border-radius: 0.3rem;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-group {
    margin-bottom: 0.5rem;
}

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

.img-circle {
    border-radius: 50%;
}

.layout-columns {
    display: flex;
    flex-wrap: wrap;
}

.layout-columns > * {
    margin-right: 0.5rem;
}

.layout-nav {
    display: grid;
    grid-template-columns:13rem auto;
}

.layout-nav.collapsed {
    grid-template-columns:5rem auto;
}

.layout-main-side, .layout-main-side-unresp {
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns:1fr auto;
}

.layout-side-main, .layout-side-main-unresp {
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns:auto 1fr;
}

.layout-one-col {
    display: grid;
    grid-template-columns:1fr;
    grid-gap: 0.5rem;
    align-content: baseline;
    flex-grow: 1;
}

.layout-two-col {
    display: grid;
    grid-template-columns:1fr 1fr;
    grid-gap: 0.5rem;
    align-content: flex-start;
}

.layout-three-col {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    grid-gap: 0.5rem;
}

.layout-four-col {
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-gap: 0.5rem;
}

.list {
    padding: 0 0 0 1em;
}

.list > li {
    margin-bottom: 0 0 0.5rem 0.5rem;
}

.list > li:last-child {
    margin-bottom: 0;
}

.gg-2 {
    grid-gap: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.nav-bottom {
    position: fixed;
    bottom: 0;
}

.nav-bottom .icons {
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    background: #172d44;
}

.nav-bottom .icons a {
    text-align: center;
    font-size: 150%;
    padding: 0.2rem;
}

.nav-bottom .icons a:hover {
    background: #425567;
}

.nav-guide {
    display: grid;
    padding: 0;
    grid-template-columns:repeat(auto-fill, 5rem);
    margin: 0 0 0.5rem;
}

.nav-guide .line {
    height: 0.3rem;
    background: #efefef;
}

.nav-guide li {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    align-self: flex-start;
    align-items: center;
}

.nav-guide li .item {
    width: 3rem;
    height: 3rem;
}

.nav-guide li .circle {
    display: flex;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    background: #efefef;
    border-radius: 2.5rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    width: 100%;
    height: 100%;
}

.nav-guide li .circle:hover {
    background-color: #f5f5f5;
    text-decoration: underline;
}

.nav-guide li.active .circle {
    background-color: #34495e;
    color: #fff;
}

.nav-guide li.complete .circle {
    background-color: #52af92;
    color: #fff;
}

.nav-guide li.complete .circle:hover {
    background-color: #1fd4b1;
}

.nav-guide li.complete .line {
    background-color: #52af92;
}

.nav-guide li .text {
    text-align: center;
    grid-column: 1/4;
    margin-top: 0.5rem;
}

.nav-menu {
    background: #2a3f54;
    color: #fff;
    padding-bottom: 100px;
}

.nav-menu .title {
    font-size: 160%;
    padding: 0.7rem;
    color: #fff;
}

.nav-menu .title a {
    color: #ecf0f1;
    text-decoration: none;
}

.nav-menu .location {
    padding: 0.5rem;
    background: #213040;
    font-size: 120%;
    font-weight: bold;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul.top > li {
    border-right: 0.3rem solid transparent;
    user-select: none;
}

.nav-menu ul.top > li.active {
    border-color: #52af92;
}

.nav-menu ul.top > li.active > a {
    background: rgba(255, 255, 255, 0.05);
    text-shadow: rgba(0, 0, 0, 0.25) 0 -1px 0;
    background: linear-gradient(#334556, #2C4257), #2A3F54;
    box-shadow: rgba(0, 0, 0, 0.25) 0 1px 0, inset rgba(255, 255, 255, 0.16) 0 1px 0;
}

.nav-menu ul.top > li > a {
    display: block;
    padding: 0.5rem 0.7rem;
    color: #e7e7e7;
    font-weight: 500;
    border-top: 1px solid #213040;
    text-decoration: none;
}

.nav-menu ul.top > li:hover > a {
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    text-decoration: underline;
}

.nav-menu ul.main > li {
    border-right: 0.3rem solid transparent;
    user-select: none;
}

.nav-menu ul.main > li.active {
    border-color: #52af92;
}

.nav-menu ul.main > li.open > a {
    background: rgba(255, 255, 255, 0.05);
    text-shadow: rgba(0, 0, 0, 0.25) 0 -1px 0;
    background: linear-gradient(#334556, #2C4257), #2A3F54;
    box-shadow: rgba(0, 0, 0, 0.25) 0 1px 0, inset rgba(255, 255, 255, 0.16) 0 1px 0;
}

.nav-menu ul.main > li > a {
    display: grid;
    grid-template-columns:2.9rem auto 2.9rem;
    padding: 0.7rem 0;
    color: #e7e7e7;
    font-weight: 500;
    text-decoration: none;
}

.nav-menu ul.main > li:hover > a {
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    text-decoration: underline;
}

.nav-menu ul.main > li > a .chevron {
    font-size: 80%;
    text-align: center;
    align-self: center;
}

.nav-menu ul.main > li > a .text {
    align-self: center;
}

.nav-menu ul.main > li > a .icon {
    text-align: center;
}

.nav-menu ul.main > li > ul {
    overflow: hidden;
    transition: height 0.4s ease-out;
}

.nav-menu ul.main > li > ul > li {
    background-image: url("/static/base/nav.svg");
    background-repeat: no-repeat;
    background-size: 2.3rem;
    background-position-x: 0.5rem;
}

.nav-menu ul.main > li > ul > li > a {
    display: block;
    padding: 0.6rem 0.5rem 0.6rem 3rem;
    cursor: pointer;
    text-decoration: none;
    color: #ddd;
    font-size: 90%;
    font-weight: 500;
}

.nav-menu ul.main > li > ul > li:hover > a {
    text-decoration: underline;
    background: rgba(255, 255, 255, 0.05);
}

.nav-menu ul.main > li > ul > li.active > a {
    background: rgba(255, 255, 255, 0.05);
}

.nav-pagination {
    display: inline-flex;
    padding: 0;
    border-radius: 0.3rem;
    background: #fafafa;
    border: 1px solid #eaeaea;
}

.nav-pagination li {
    display: inline-block;
}

.nav-pagination li a {
    display: inline-block;
    text-decoration: none;
    padding: 0.5rem;
}

.nav-pagination li:last-child a {
    border-right: none;
}

.nav-pagination li.disabled a {
    color: #666;
    cursor: inherit;
}

.nav-pagination li:not(.disabled) a {
    text-decoration: underline;
}

.nav-pagination li:not(.disabled) a:hover {
    background-color: #eaeaea;
}

.nav-pills {
    margin: 0 0 0.2rem;
    list-style: none;
    padding: 0;
}

.nav-pills > li {
    display: inline-block;
}

.nav-pills > li > a {
    display: inline-block;
    padding: 0.3rem 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.3rem;
    text-decoration: none;
}

.nav-pills > li {
    margin-bottom: 0.2rem;
}

.nav-pills > li.active > a {
    border: 1px solid #73879c;
    color: #73879c;
}

.nav-pills > li:not(.active) > a:hover {
    border: 1px solid #efefef;
    text-decoration: underline;
}

.nav-pills-top {
    border: 1px solid #c6d7ea;
    padding: 0.3rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    background: #ebf5fb;
}

.nav-pills-top > li {
    margin-bottom: 0;
}

.nav-right {
    overflow-x: auto;
    min-height: 100vh;
}

.nav-side {
    user-select: none;
    list-style: none;
    padding: 0;
    border: 1px solid #eee;
    border-radius: 0.3rem;
    margin-top: 0;
}

.nav-side > li {
    display: flex;
    border-bottom: 1px solid #eee;
}

.nav-side > li:last-child {
    border-bottom: 0;
}

.nav-side > li > a {
    padding: 0.7rem;
    cursor: pointer;
    flex-grow: 1;
}

.nav-side > li.active > a {
    background: #e3edf1;
}

.nav-side > li:not(.active) > a:hover {
    background: #f3f3f3;
}

.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
    border-bottom: 1px solid #e4e4e4;
    user-select: none;
}

.nav-tabs > li {
    display: flex;
}

.nav-tabs > li:not(.active) {
    padding: 0.5rem 0;
}

.nav-tabs > li:not(.active):hover {
    background: #ececec;
    border-radius: 0.3rem 0.3rem 0 0;
}

.nav-tabs > li:not(.active) > a {
    padding: 0.1rem 0.8rem;
    border-left: 1px solid #ddd;
}

.nav-tabs > li.active + li > a {
    border-left-color: transparent;
}

.nav-tabs > li > a {
    border: 1px solid transparent;
}

.nav-tabs > li > a:hover {
    text-decoration: underline;
}

.nav-tabs > li {
    margin-bottom: -1px;
}

.nav-tabs > li.active > a {
    padding: 0.6rem 0.8rem;
    border-radius: 0.3rem 0.5rem 0 0;
    text-decoration: none;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    border: 1px solid #e4e4e4;
    border-bottom: 1px solid #fff;
    background: #fff;
}

.nav-tabs-top {
    background: #f3f3f3;
    padding: 0.2rem 0 0 0.2rem;
    border-radius: 0.3rem 0.3rem 0 0;
}

.nav-top {
    position: static;
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    background: #ededed;
    border-bottom: 1px solid #d9dee4;
    user-select: none;
    -moz-user-select: none;
}

.nav-top .title {
    display:grid;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 140%;
}

.nav-top .dropdown {
    display: grid;
    grid-template-columns:1fr;
    cursor: pointer;
    font-weight: bold;
    align-items: center;
    padding: 0.5rem 1rem;
}

.nav-top .dropdown:hover {
    background: #d9dee4;
}

.nav-top .dropdown .text {
    color: #515356;
    font-weight: 500;
}

.nav-top .dropdown > ul {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 0 0 0.3rem 0.3rem;
    border: 1px solid #d9dee4;
    min-width: 12rem;
    max-width: 100vw;
    max-height: 25rem;
    overflow-y: auto;
    z-index: 999;
}

.nav-top .dropdown > ul.open {
    display: block;
    animation: fadeInDown 0.5s both;
}

.nav-top .dropdown > ul > li > a {
    display: block;
    text-decoration: none;
    font-weight: normal;
    line-height: 1em;
    padding: 0.8rem;
}

.nav-top .dropdown > ul > li > a:hover {
    background: #eee;
}

.nav-top .dropdown .alarm-or-alert {
    background: #f7f7f7;
    margin: 0.3rem;
    font-size: 90%;
    padding: 0.7rem 0.7rem 0.2rem 0.8rem;
}

.nav-top .dropdown .alarm-or-alert:hover {
    color: #262626;
}

.nav-top .hamburger {
    color: #5a738e;
    align-self: center;
    padding: 1rem;
}

.nav-top .hamburger:hover {
    background: #d9dee4;
    cursor: pointer;
}

.notify {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 1;
    animation: fadeOut 2s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(50, 50, 50, 0.5);
    border-radius: 0.3rem;
    color: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

.notify-danger {
    background: #d60000;
}

.notify-success {
    background: #26b99a;
}

.switch {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 3.2rem;
    user-select: none;
}

.switch-checkbox {
    display: none;
}

.switch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 1.6rem;
    border-radius: 1.6rem;
    background-color: #efefef;
    transition: background-color 0.2s ease-in;
}

.switch-label:before {
    content: "";
    display: block;
    width: 1.4rem;
    height: 1.35rem;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.6rem;
    border: 2px solid #e3e3e3;
    border-radius: 1.6rem;
    transition: all 0.1s ease-in-out 0s;
}

.switch-checkbox:checked + .switch-label {
    background-color: #52af92;
}

.switch-checkbox:checked + .switch-label, .switch-checkbox:checked + .switch-label:before {
    border-color: #52af92;
}

.switch-checkbox:checked + .switch-label:before {
    right: 0;
}

.table {
    width: 100%;
    font-size: 90%;
    border-radius: 0.3rem;
}

.table thead {
    background: #e3ebf1;
}

.table th {
    text-align: left;
}

.table td, .table th {
    padding: 0.5rem;
}

.table td .btn {
    white-space: nowrap;
}

.table tbody > tr > th {
    background: #eef2f5;
}

.table-bordered {
    border: 1px solid #eaeaea;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-striped > tbody > tr:nth-child(even) {
    background: #f9f9f9;
}

.text-danger {
    color: #d9534f;
}

.text-info {
    color: #75c0ca;
}

.text-title {
    font-size: 200%;
    color: #bbb;
}

.text-secondary {
    color: #777;
}

.text-success {
    color: #52af92;
}

.text-warning {
    color: #f0ad4e;
}

.text-light {
    color: #aaa;
}

.text-lg {
    font-size: 130%;
}

.text-hg {
    font-size: 200%;
}

.tile {
    padding: 0.5rem;
    border-radius: 0.3rem;
    border: 1px solid #eee;
}

.tile > *:last-child {
    margin-bottom: 0;
}

.tile-thumb {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit !important;
    border: 1px solid #eaeaea;
    padding: 0.5rem;
    border-radius: 0.3rem;
}

.timeline {
    display: inline-grid;
    grid-template-columns:min-content 1fr;
    grid-gap: 0.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.timeline dt {
    background: #eee;
    color: #666;
    padding: 0.5rem;
    margin: 0;
    border-radius: 0.5rem;
    white-space: nowrap;
    text-align: right;
    align-self: baseline;
}

.timeline dt:after {
    content: ' \025B8';
}

.timeline dd {
    align-self: center;
    margin: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -1.5rem, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.nav-menu.collapsed .title {
    display: none;
}

.nav-menu.collapsed .location {
    display: none;
}

.nav-menu.collapsed > ul.top {
    display: none;
}

.nav-menu.collapsed > ul.main > li > ul {
    position: absolute;
    padding-left: 0;
    z-index: 999;
}

.nav-menu.collapsed > ul.main > li > ul > li > a {
    background: #3e5367;
    font-size: 80%;
    padding-left: 0.5rem;
}

.nav-menu.collapsed > ul.main > li > ul > li > a:hover {
    background: #576b7d;
}

.nav-menu.collapsed > ul.main > li > a {
    grid-template-columns:1fr;
    grid-template-rows:auto auto;
    background: #2a3f54;
    padding: 0.7rem 0.2rem;
}

.nav-menu.collapsed > ul.main > li > a .icon {
    text-align: center;
    margin-right: 0;
    margin-bottom: 0.5rem;
    font-size: 140%;
}

.nav-menu.collapsed > ul.main > li > a .text {
    text-align: center;
    font-size: 80%;
}

.nav-menu.collapsed > ul.main > li > a .chevron {
    display: none;
}

.nav-bottom.collapsed {
    display: none;
}

@media (max-width: 800px) {
    .container {
        padding: 0.5rem;
    }

    .form-inline > .form-group {
        display: block;
    }

    .layout-nav:not(.collapsed) {
        grid-template-columns:auto;
    }

    .layout-centered {
        display: grid;
        grid-template-columns:auto;
    }

    .layout-main-side {
        grid-template-columns:1fr;
    }

    .layout-side-main {
        grid-template-columns:1fr;
    }

    .nav-bottom:not(.collapsed) {
        display: none;
    }

    .nav-menu:not(.collapsed) {
        display: none;
    }

    .nav-side > ul {
        display: flex;
        margin-right: 0;
    }

    .nav-side > ul > li {
        border-bottom: 0;
        border-right: 1px solid #eee;
    }

    .nav-side > ul > li:last-child {
        border-right: 0;
    }
}

@media (max-width: 600px) {
    .layout-two-col {
        grid-template-columns:auto;
    }

    .layout-three-col {
        grid-template-columns:1fr;
    }

    .layout-four-col {
        grid-template-columns:1fr 1fr;
    }
}
