:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6d49cb;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #919191;
  --gray-dark: #4f4f4f;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-: Arial, "Noto Sans", sans-serif;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  height: 100%;
}

.content-wrapper {
  width: 100%;
  transition: padding 0.3s;
  margin-top: 60px;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .content-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
}

a {
  cursor: pointer;
}

p {
  word-wrap: break-word;
}

.disabled,
.disable-input input,
.disable-input textarea,
.disable-input select,
.disable-input .bootstrap-select {
  pointer-events: none;
}

.enabled,
.enabled-input input {
  pointer-events: auto;
}

.inline {
  display: flex;
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.no-bullet {
  list-style: none;
  padding: 0;
  margin: 0;
}

textarea.no-resize {
  resize: none;
}

.flex-container > div + div {
  padding-left: 15px;
}

img.rounded-corners {
  border-radius: 4px;
}

.dense-form-group .form-group {
  margin-bottom: 5px;
}

.text-title {
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
}

.no-border {
  border: none;
}

.circle {
  border-radius: 50% !important;
}

/* Row */
.row-margin-5 > .row,
.row.row-margin-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}
.row-margin-10 > .row,
.row.row-margin-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.row-margin-15 > .row,
.row.row-margin-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

/* Fix Bootstrap 3 height problem */
/* https://stackoverflow.com/questions/22310912/bootstrap-row-with-columns-of-different-height */
.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}
.row.display-flex > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Column */
/* This will allow to center odd column */
@media (max-width: 767px) {
  .col-xs-center {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-sm-center {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .col-md-center {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .col-lg-center {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Flex row -- dense column */
@media screen and (min-width: 768px) {
  .row.flex-row > div[class^="col-sm"]:first-child,
  .row.flex-row > div[class^="col-md"]:first-child,
  .row.flex-row > div[class^="col-lg"]:first-child {
    padding-right: 0;
  }
  .row.flex-row > div[class^="col-sm"] + div[class^="col-sm"]:not(:last-child),
  .row.flex-row > div[class^="col-md"] + div[class^="col-md"]:not(:last-child),
  .row.flex-row > div[class^="col-lg"] + div[class^="col-lg"]:not(:last-child) {
    padding-left: 15px;
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .row.flex-row > div[class^="col-md"]:first-child,
  .row.flex-row > div[class^="col-lg"]:first-child {
    padding-right: 0;
  }
  .row.flex-row > div[class^="col-md"] + div[class^="col-md"]:not(:last-child),
  .row.flex-row > div[class^="col-lg"] + div[class^="col-lg"]:not(:last-child) {
    padding-left: 15px;
    padding-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .row.flex-row > div[class^="col-lg"]:first-child {
    padding-right: 0;
  }
  .row.flex-row > div[class^="col-lg"] + div[class^="col-lg"]:not(:last-child) {
    padding-left: 15px;
    padding-right: 0;
  }
}

/* Row with adjusted columns */
.row.row-adjust > div[class^="col-"] + div[class^="col-"] {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .row.row-adjust > div[class^="col-"] + div[class^="col-"] {
    margin-top: 0;
  }
}

/* Navigation bar */
.navbar {
  margin-bottom: 0;
}
.navbar-styled {
  font-size: 15px;
}
.navbar-styled .navbar-brand {
  padding: 5px 60px 5px 40px;
  height: auto;
  font-size: 16px;
  text-align: center;
}
.navbar-styled .navbar-brand .brand-text {
  font-family: "Noto Sans", sans-serif;
  color: #0072bc;
  font-weight: 800;
  letter-spacing: 1px;
  width: 100%;
}
.navbar-styled .navbar-nav > li > a {
  padding: 10px 15px;
}
.navbar-styled .navbar-nav > li > .dropdown-menu {
  margin-top: 4px;
  border-radius: 4px;
}
.navbar-styled .navbar-toggle {
  margin-top: 13px;
  margin-bottom: 13px;
}
@media (min-width: 992px) {
  .navbar-styled .navbar-nav {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .navbar-styled .navbar-nav > li {
    margin-left: 2px;
    margin-right: 2px;
  }
  .navbar-styled .navbar-nav > li > a {
    border-radius: 6px;
  }
}
/* Adjust max-width if menu has changed */
@media (min-width: 992px) and (max-width: 1104px) {
  .navbar-styled .navbar-nav > li > a {
    padding: 10px;
  }
}

/* Expand navigation bar collapse breakpoint */
/* https://stackoverflow.com/questions/19827605/change-bootstrap-navbar-collapse-breakpoint-without-using-less/36289507#36289507 */
@media (max-width: 991px) {
  .navbar-styled .navbar-header {
    float: none;
  }
  .navbar-styled .navbar-left,
  .navbar-styled .navbar-right {
    float: none !important;
  }
  .navbar-styled .navbar-toggle {
    display: block;
  }
  .navbar-styled .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-styled .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  .navbar-styled .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-styled .navbar-nav {
    float: none !important;
    margin-top: 7.5px;
  }
  .navbar-styled .navbar-nav > li {
    float: none;
  }
  .navbar-styled .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-styled .collapse.in {
    display: block !important;
  }
  .navbar-styled .container-fluid > .navbar-collapse,
  .navbar-styled .container-fluid > .navbar-header,
  .navbar-styled .container > .navbar-collapse,
  .navbar-styled .container > .navbar-header {
    margin-right: -15px;
    margin-left: -15px;
  }
}

/* Navigation tab */
.nav-tabs-bordered > li > a,
.nav-tabs-bordered > li > a:hover {
  border: 1px solid #ddd;
}
.nav-tabs-bordered > li.pull-right > a {
  margin-right: 0;
  margin-left: 2px;
}

/* Button */
@media screen and (max-width: 767px) {
  .btn-responsive {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
  }
}

/* Section */
.section {
  display: inline-block;
  width: 100%;
  padding: 15px;
  margin-top: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
}

/* Bootstrap callout */
.bs-callout {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-radius: 3px;
}
.bs-callout > h4,
.bs-callout > h5 {
  margin-top: 0;
  margin-bottom: 5px;
}
.bs-callout p:last-child {
  margin-bottom: 0;
}
.bs-callout code {
  border-radius: 3px;
}
.bs-callout + .bs-callout {
  margin-top: -5px;
}

/* Materialized input */
.mat-label {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #9e9e9e;
  height: 20px;
  transform: translateY(20px);
  transition: all 0.2s;
  margin-bottom: 0px;
}
.mat-input {
  position: relative;
  background: transparent;
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
}
.mat-div {
  position: relative;
}
.mat-div:after,
.mat-div:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e2e2e2;
  bottom: -2px;
  left: 0;
  transition: all 0.2s;
}
.mat-div::after {
  background-color: #66afe9;
  transform: scaleX(0);
}
.is-active::after {
  transform: scaleX(1);
}
.is-active .mat-label {
  color: #66afe9;
}
.is-completed .mat-label {
  font-size: 12px;
  transform: translateY(0);
}

/* Materialized switch */
.material-switch > input[type="checkbox"] {
  display: none;
}
.material-switch > label {
  cursor: pointer;
  height: 0px;
  position: relative;
  width: 40px;
}
.material-switch {
  margin-top: 5px;
}
.material-switch > label::before {
  background: rgb(0, 0, 0);
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  content: "";
  height: 16px;
  margin-top: -8px;
  position: absolute;
  opacity: 0.3;
  transition: all 0.4s ease-in-out;
  width: 40px;
}
.material-switch > label::after {
  background: rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  content: "";
  height: 24px;
  left: -4px;
  margin-top: -8px;
  position: absolute;
  top: -4px;
  transition: all 0.3s ease-in-out;
  width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
  background: inherit;
  opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
  background: inherit;
  left: 20px;
}

/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch-sm {
  width: 52px;
  height: 30px;
}
.switch-xs {
  width: 36px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch > .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch > .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch-sm > .slider:before {
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
}
.switch-xs > .slider:before {
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 4px;
}
.switch > input:checked + .slider {
  background-color: #2196f3;
}
.switch > input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
.switch > input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.switch-sm > input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}
.switch-xs > input:checked + .slider:before {
  -webkit-transform: translateX(14px);
  -ms-transform: translateX(14px);
  transform: translateX(14px);
}
.switch > .slider.round {
  border-radius: 34px;
}
.switch-sm > .slider.round {
  border-radius: 30px;
}
.switch-xs > .slider.round {
  border-radius: 22px;
}
.slider.round:before {
  border-radius: 50%;
}

/* Toggle */
.toggle-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.toggle-container i {
  display: inline-block;
  position: relative;
  top: -9px;
  color: #777;
}
.toggle-container label {
  font-size: 13px;
  color: #333;
  font-weight: 500;
}
.toggle-mode {
  display: inline-block;
  margin: 0px;
  position: relative;
}
.toggle-mode > .toggle-mode-btn {
  margin: 0px;
  width: 140px;
  height: 34px;
  background: #e0e0e0;
  border-color: #aaa;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: block;
}
.toggle-mode > .toggle-mode-btn.round {
  border-radius: 26px;
}
.toggle-mode > .toggle-mode-btn:before {
  content: attr(data-on);
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  top: 9px;
  right: 20px;
}
.toggle-mode > .toggle-mode-btn:after {
  content: attr(data-off);
  width: 70px;
  height: 26px;
  background: #fff;
  border-radius: 4px;
  position: absolute;
  left: 4px;
  top: 4px;
  text-align: center;
  line-height: normal;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #333;
  padding: 5px 0px;
}
.toggle-mode > .toggle-mode-btn.round:after {
  border-radius: 26px;
}
.toggle-mode input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.toggle-mode input[type="checkbox"]:checked + .toggle-mode-btn:after {
  content: attr(data-on);
  left: 66px;
  background: #777;
  color: #fff;
}
.toggle-mode input[type="checkbox"]:checked + .toggle-mode-btn:before {
  content: attr(data-off);
  right: auto;
  left: 20px;
}

/* Simple input */
input.simple {
  display: block;
  width: 100%;
  border-width: 0 0 1px 0;
  border-color: #ccc;
  outline: none;
}
input.simple:focus {
  border-style: dashed;
  border-color: #999;
}

/* Required label */
label.required:after {
  content: "*";
  color: #d95447;
  margin-left: 2px;
}

/* Modal */
.modal {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal-width-400 {
    width: 400px;
  }
  .modal-width-full {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .modal-width-800 {
    width: 800px;
  }
  .modal-width-full {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .modal-width-1000 {
    width: 1000px;
  }
  .modal-width-full {
    width: 1170px;
  }
}
.modal-header,
.modal-footer {
  padding: 12px;
}
.modal-title {
  font-size: 15px;
  font-weight: 500;
}
/* Vertical align modal */
@media only screen and (min-width: 768px) {
  .modal {
    text-align: center;
  }
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
  .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }

  /* Uncomment this if you want modal to fade from center
  .modal.fade .modal-dialog {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .modal.fade.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    //-webkit-transform: translate3d(0, -300px, 0);
    //transform: translate3d(0, -300px, 0);
    opacity: 1;
  }
  */
}

/* Number spinner */
/* Chrome, Safari, Edge, Opera */
input.no-spinner[type="number"]::-webkit-outer-spin-button,
input.no-spinner[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input.no-spinner[type="number"] {
  -moz-appearance: textfield;
}

/* Toolbar */
.toolbar {
  margin-top: 20px;
  margin-bottom: 20px;
}
.toolbar-adjust {
  margin-right: 0;
}
@media (min-width: 992px) {
  .toolbar-adjust {
    margin-right: 36px;
  }
  .toolbar > div + div {
    padding-left: 5px;
    padding-right: 5px;
  }
  .toolbar > div:last-child {
    padding-right: 15px;
  }
  .toolbar-adjust > div:last-child {
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .toolbar-adjust {
    margin-right: 51px;
  }
}

/* Table */
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  vertical-align: middle;
}
.table > thead > tr > th,
.table > thead > tr > td {
  text-align: center;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 1px;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 1px solid #ddd;
}
.table img.photo {
  width: 60px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 1px solid #ddd;
  }
  .table-responsive
    > .table-bordered:not(.table-item-delete)
    > thead
    > tr
    > th:last-child,
  .table-responsive
    > .table-bordered:not(.table-item-delete)
    > tbody
    > tr
    > th:last-child,
  .table-responsive
    > .table-bordered:not(.table-item-delete)
    > tfoot
    > tr
    > th:last-child,
  .table-responsive
    > .table-bordered:not(.table-item-delete)
    > thead
    > tr
    > td:last-child,
  .table-responsive
    > .table-bordered:not(.table-item-delete)
    > tbody
    > tr
    > td:last-child,
  .table-responsive
    > .table-bordered:not(.table-item-delete)
    > tfoot
    > tr
    > td:last-child {
    border-right: 1px solid #ddd;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 1px solid #ddd;
  }
}
.table-item-delete {
  border: none;
}
.table-item-delete thead th:last-child {
  width: 51px;
}
.table-item-delete thead th:last-child,
.table-item-delete tbody td:last-child {
  background: none !important;
  border: none !important;
}

/* Vertical align row */
/* https://stackoverflow.com/questions/20547819/vertical-align-with-bootstrap-3 */
.vertical-align {
  display: flex;
  align-items: center;
}
/* Extra small devices (767px and down) */
@media (max-width: 767px) {
  .row.vertical-align {
    display: block; /* Turn off the flexible box layout */
  }
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .row.vertical-align {
    display: flex;
    align-items: center;
  }
}

/* Checkbox and radio */
.flex-checkbox,
.flex-radio {
  display: flex;
  position: relative;
}
.flex-checkbox label,
.flex-radio label {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  width: unset;
  padding-left: 20px;
}
.flex-checkbox input[type="checkbox"],
.flex-radio input[type="radio"] {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0;
  margin: auto 0 auto -20px;
  line-height: normal;
  outline-offset: 0;
  box-sizing: border-box;
}
.checkbox-md label,
.radio-md label {
  padding-left: 22px;
}
.checkbox-md input[type="checkbox"],
.radio-md input[type="radio"] {
  width: 15px;
  height: 15px;
  margin-left: -22px;
}
.checkbox-lg label,
.radio-lg label {
  padding-left: 24px;
}
.checkbox-lg input[type="checkbox"],
.radio-lg input[type="radio"] {
  width: 17px;
  height: 17px;
  margin-left: -24px;
}
.checkbox.no-label label,
.radio.no-label label {
  padding-left: 13px;
}
.checkbox.no-label input[type="checkbox"],
.radio.no-label input[type="radio"] {
  margin-left: -13px;
}
.checkbox-md.no-label label,
.radio-md.no-label label {
  padding-left: 15px;
}
.checkbox-md.no-label input[type="checkbox"],
.radio-md.no-label input[type="radio"] {
  margin-left: -15px;
}
.checkbox-lg.no-label label,
.radio-lg.no-label label {
  padding-left: 17px;
}
.checkbox-lg.no-label input[type="checkbox"],
.radio-lg.no-label input[type="radio"] {
  margin-left: -17px;
}
.form-group .checkbox,
.form-group .radio {
  margin-top: 7px;
  margin-bottom: 7px;
}
.input-group-addon .checkbox,
.input-group-addon .radio {
  margin-top: 0;
  margin-bottom: 0;
}
.input-group-addon .checkbox label,
.input-group-addon .radio label {
  line-height: 1.42857143;
}
.form-group .abc-checkbox,
.form-group .abc-radio {
  margin-top: 6px;
  margin-bottom: 6px;
}
.abc-checkbox.no-label {
  padding-left: 13px;
}
.abc-checkbox.no-label input[type="checkbox"] {
  margin-left: -13px;
}
.abc-checkbox.no-label label::before,
.abc-checkbox.no-label label::after {
  margin-left: -15px;
}

/* Alert */
.alert {
  padding: 10px 15px;
}

/* Overlay */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

/* Select2 */
.select2 {
  width: 100% !important;
}

/* remove X from locked tag */
.locked-tag .select2-selection__choice__remove {
  display: none !important;
}

/* Hide all selected tags from drop down list */
.select2-results__option[aria-selected="true"] {
  display: none;
}

/* Fix placeholder width issue */
/* https://github.com/select2/select2/issues/291 */
.select2-container .select2-search__field {
  width: 100% !important;
}

/* Fix HTML5 Required attribute does not show validation message */
/* https://github.com/snapappointments/bootstrap-select/issues/514#issuecomment-215144140 */
.btn-group.bootstrap-select select {
  width: 1px !important;
}

/* Pagination */
.pagination-dense > li > a,
.pagination-dense > li > span {
  padding: 6px 10px;
}

/* File Input */
.fileinput .fileinput-filename {
  cursor: pointer;
  background-color: #fff;
}

/* Bootstrap Treeview */
.treeview.treeview-flex .list-group-item {
  display: flex;
  align-items: center;
}
.treeview.treeview-flex span.badge {
  margin-left: auto;
}
.treeview.treeview-flex span.icon {
  width: auto;
}

/* Datepicker */
.input-group > input.datepicker,
.input-group > input.datepicker-past,
.input-group > input.datepicker-future,
.input-group > input.yearpicker {
  cursor: pointer;
  background-color: #fff;
}
