/*@@@ custom icon font @@@*/
/* Rules for sizing the icon. */
.material-icons {
  vertical-align: middle;
}

.material-icons.md-14 {
  font-size: 14px;
}

.material-icons.md-16 {
  font-size: 16px;
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
    color: rgb(255, 255, 255);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/*@@@ ============= @@@*/
/*@@@ ====STYLE==== @@@*/
/*@@@ ============= @@@*/
html, body {
  height: 100%;
  min-height: 100%;
}

body {
    overflow: hidden;
}

.spacing {
  height: 1rem;
  display: block;
}

.roundedRadius {
  border-radius: 1000px;
}

.custom-badge {
  font-size: xx-small;
  vertical-align: middle;
}

/*@@@ HEADER @@@*/
#header {
  background-color: #fff;
  box-shadow: 1px 0 2px #999;
  justify-content: flex-start;
  min-height: 58px;
}
#header .navbar-brand {
  font-family: inherit;
  font-size: 1.25rem;
}
#header .btn {
  border-radius: 25px;
}
#header .toggle-menu {
  cursor: pointer;
}
#header .toggle-menu:focus {
  outline: none;
  box-shadow: none;
}
#header .right-area {
  flex-grow: 1;
  text-align: right;
}
#header .right-area.dropdown.show .dropdown-menu {
  display: block;
}

/*@@@ MAIN @@@*/
body.haveSearch {
  background-color: #343a40;
  overflow: hidden;
}

#main {
  min-height: 100%;
    height: calc(100vh - 4rem);
  background-color: #fff;
  transform: perspective(1000px);
  transition: transform 0.6s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
#main.showSearch {
  transform: perspective(1000px) translate3d(0, 50vh, 0) rotate3d(1, 0, 0, 30deg);
  pointer-events: none;
}

#content {
  min-height: calc(100vh - 58px);
    height: calc(100vh - 4rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}
#content #left-sidebar {
  transform: translateX(-350px);
  opacity: 0;
  background: #fff;
  z-index: 1;
    overflow-y: auto;
}
#content #main-content {
  width: 100%;
  margin-left: -350px;
    overflow: auto;
}

#left-sidebar {
  width: 350px;
  transition: all 0.15s;
}

#main-content {
  position: relative;
  width: calc(100% - 350px);
  background-color: #f8f9fa;
  box-shadow: inset 1px 0 1px white;
}

body.sidebar-float #left-sidebar {
  position: fixed;
  min-height: calc(100vh - 58px);
  background-color: #fff;
  z-index: 999;
  transform: translateX(-350px);
}

body.toggle-menu #content #left-sidebar {
  transform: translateX(0);
  box-shadow: 1px 0 20px #ababab;
  opacity: 1;
}
body.toggle-menu #content #main-content {
  width: 100%;
}

/*@@@ LEFT SIDEBAR*/
#left-sidebar #menu {
  top: 58px;
}
#left-sidebar #menu ul {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
}
#left-sidebar #menu ul li {
  padding: 25px 5px 25px 30px;
  border-left: 8px solid transparent;
  transition: all 0.3s;
}
#left-sidebar #menu ul li a {
  color: #6c757d;
  display: block;
}
#left-sidebar #menu ul li a .material-icons {
  float: left;
}
#left-sidebar #menu ul li a span {
  padding-left: 20px;
}
#left-sidebar #menu ul li a:hover {
  text-decoration: underline;
}
#left-sidebar #menu ul li.active {
  background-color: #e9ecef;
}
#left-sidebar #menu ul li.active {
    border-color: rgb(38, 84.5, 224);
}
#left-sidebar #menu ul li.active ul {
  display: block;
}
#left-sidebar #menu ul li ul {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 85%;
  display: none;
}
#left-sidebar #menu ul li ul li {
  padding: 5px 5px 5px 45px;
  border: none;
  position: relative;
}
#left-sidebar #menu ul li ul li.active {
  font-weight: 700;
}
#left-sidebar #menu ul li ul li.active:before {
  content: " ";
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: #14328C;
  position: absolute;
  left: 22px;
  top: 10px;
}
#left-sidebar #menu ul li ul li.active a {
  color: #14328C;
}

/*@@@ LEFT CONTENT @@@*/
#left-content {
  width: 500px;
  height: calc(100vh - 58px);
  overflow-y: auto;
}
#left-content .label-filter label {
  display: none;
}

/*@@@ MAIN CONTENT @@@*/
#main-content header {
  padding: 30px 15px;
}
#main-content header h1, #main-content header h2, #main-content header h3, #main-content header h4, #main-content header h5, #main-content header h6 {
  margin: 0;
}
#main-content header .pull-right .btn {
  margin-top: -10px;
}
#main-content section {
  padding: 0 15px;
}
#main-content .function-filter {
  margin-bottom: 15px;
}

/*@@@ LABEL FILTER @@@*/
.label-filter {
  font-size: 0.8rem;
  background-color: #fff;
  margin: 0 0 20px 0;
}
.label-filter a.label-item {
  text-align: center;
  padding: 15px 5px;
  border-bottom: solid 3px;
  color: inherit;
}
.label-filter a.label-item label {
  color: #343a40;
  margin: 0;
}
.label-filter a.label-item:nth-child(1) {
  color: #dee2e6;
}
.label-filter a.label-item:nth-child(1).active {
  background-color: #dee2e6;
}
.label-filter a.label-item:nth-child(2) {
  color: #28a745;
}
.label-filter a.label-item:nth-child(2).active {
  background-color: #28a745;
}
.label-filter a.label-item:nth-child(3) {
  color: #dc3545;
}
.label-filter a.label-item:nth-child(3).active {
  background-color: #dc3545;
}
.label-filter a.label-item:nth-child(4) {
  color: #17a2b8;
}
.label-filter a.label-item:nth-child(4).active {
  background-color: #17a2b8;
}
.label-filter a.label-item:nth-child(5) {
  color: #ffc107;
}
.label-filter a.label-item:nth-child(5).active {
  background-color: #ffc107;
}
.label-filter a.label-item:nth-child(6) {
  color: #14328C;
}
.label-filter a.label-item:nth-child(6).active {
  background-color: #14328C;
}
.label-filter a.label-item.active label {
  color: #fff;
}
.label-filter a.label-item.active .badge {
  background-color: transparent;
}
.label-filter a.label-item:hover {
  text-decoration: none;
}

/*@@@ GRID STYLE @@@*/
.grid {
  font-size: 0.9rem;
  width: 100%;
  margin: 0 0 15px 0;
}
.grid .grid-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 5px;
  background-color: #fff;
  border: solid 1px #eee;
  font-size: 0.8rem;
  line-height: 2rem;
  transition: background-color 0.3s;
}
.grid .grid-row:not(.header):hover {
    background-color: rgb(237.15, 237.15, 237.15);
}
.grid .grid-column {
  padding: 5px;
  vertical-align: middle;
  position: relative;
}
.grid .grid-column img {
  float: left;
  margin-right: 5px;
}
.grid .grid-column img ~ .text-overflow {
  width: calc(100% - 37px);
}
.grid .grid-column:first-child {
  padding-left: 10px;
}
.grid .header {
  font-weight: 700;
  font-family: inherit;
  background-color: #dee2e6;
  color: #fff;
  font-size: 0.9rem;
}
.grid .text-overflow {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.grid .text-normal {
  line-height: 1.2;
}
.grid .badge {
  font-size: 90%;
}
.grid .status.new {
  box-shadow: inset 4px 0 0 #28a745;
}
.grid .status.new.header {
  background-color: #28a745;
}
.grid .status.unscheduled {
  box-shadow: inset 4px 0 0 #dc3545;
}
.grid .status.unscheduled.header {
  background-color: #dc3545;
}
.grid .status.scheduled {
  box-shadow: inset 4px 0 0 #17a2b8;
}
.grid .status.scheduled.header {
  background-color: #17a2b8;
}
.grid .status.pause {
  box-shadow: inset 4px 0 0 #ffc107;
}
.grid .status.pause.header {
  background-color: #ffc107;
}
.grid .status.in-progress {
  box-shadow: inset 4px 0 0 #14328C;
}
.grid .status.in-progress.header {
  background-color: #14328C;
}
.grid .status.completed {
  box-shadow: inset 4px 0 0 #dee2e6;
}
.grid .status.completed.header {
  background-color: #dee2e6;
}
.grid .place-holder .grid-column .masked {
  left: 10px;
  right: 10px;
  position: absolute;
  height: 8px;
  top: 50%;
  margin-top: -4px;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 1000px 104px;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
}
.grid .place-holder:hover {
  background-color: #fff !important;
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

.grid.block-style .header, .grid.block-style .footer {
  display: none !important;
}
.grid.block-style .grid-row {
  display: block;
  padding: 10px;
  line-height: 1.2rem;
  border: solid 1px #ddd;
}
.grid.block-style .grid-column {
  width: 100% !important;
  padding: 0;
}
.grid.block-style .grid-column img ~ .text-overflow {
  padding-top: 5px;
}
.grid.block-style .grid-column .btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block !important;
  width: auto;
  min-width: 120px;
}

.grid.list-style .header {
  background-color: transparent;
  color: #dee2e6;
  border-bottom: solid 1px #dee2e6 !important;
}
.grid.list-style .header.sub {
  border-bottom-color: white !important;
  font-size: 1.2rem;
}
.grid.list-style .grid-row {
  background-color: transparent;
  border: none;
}

/*@@@ Filter @@@*/
.modal-footer ~ .modal-body {
  padding-top: 0;
}

.col-w-border {
  border: solid 1px #ddd;
}
.col-w-border label.with-border {
  border-bottom: solid 1px #ddd;
  font-weight: 700;
  font-family: 500;
  margin: 0 -15px 1rem;
  display: block;
  padding: 10px 15px;
}
.col-w-border ul.list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.col-w-border ul.list li {
  cursor: pointer;
  padding: 7px 0;
  position: relative;
}
.col-w-border ul.list li span {
  display: block;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.col-w-border ul.list li i.badge {
  font-weight: 300;
  font-size: 1rem;
  font-style: normal;
  display: block;
  text-align: center;
  opacity: 0.8;
}
.col-w-border ul.list li i.material-icons {
  position: absolute;
  right: 0;
  top: 10px;
}

/*@@@ LOGIN @@@*/
#loginPage {
  background: url("../images/_bgacs.png") center no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
  width: 100%;
}
#loginPage #loginWrap {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 500px;
  margin: 0 auto;
}
#loginPage #loginWrap #loginLogo {
  max-width: 360px;
  margin: 0 auto 20px auto;
}
#loginPage #loginWrap #loginFrame {
    box-shadow: 1px 1px 2px rgb(178.5, 178.5, 178.5);
  border: solid 1px #cccccc;
  background: #fff;
  border-radius: 0.25rem;
  padding: 20px;
}
#loginPage #loginWrap h1 span {
  font-weight: 300;
}
#loginPage #loginWrap .simpleInput {
  padding-left: 0;
  padding-right: 0;
}
/*@@@ SCHEDULE PAGE @@@*/
.schedule-page #map {
  height: 450px;
  padding: 0 15px;
}
.schedule-page #map iframe {
  width: 100%;
  height: 450px;
}
.schedule-page #schedule-view {
  position: absolute;
  top: 450px;
  bottom: 0;
  left: 15px;
  right: 15px;
  padding-top: 1rem;
}

/*@@@ Custom modal @@@*/
.modal-fixed {
  max-width: 90%;
  min-height: calc(100% - 3.5rem);
  height: calc(100% - 3.5rem);
}
.modal-fixed .modal-content {
  height: 100%;
  min-height: 100%;
}
.modal-fixed .modal-content .modal-body {
  padding: 0;
  width: 100%;
}
.modal-fixed .modal-content .modal-body .scroll-content {
  overflow-y: auto;
  overflow-x: hidden;
  top: 94px;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  position: absolute;
}

.comment {
  position: relative;
  background: #e9ecef;
  border-radius: 0.4em;
  min-height: 40px;
  padding: 10px;
  display: inline-block;
  margin-bottom: 15px;
}

.comment:after {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right-color: #e9ecef;
  border-left: 0;
  margin-top: -5px;
  margin-left: -5px;
}

/*@@@ custom k-scheduler @@@*/
.k-scheduler {
  font-size: 0.8rem;
}
.k-scheduler .k-scheduler-toolbar {
  background-color: #14328C !important;
}
.k-scheduler .k-scheduler-toolbar .k-state-selected {
  background-color: #fff !important;
  border-bottom-color: #fff !important;
}
.k-scheduler .k-scheduler-toolbar .k-state-selected a {
  color: #000 !important;
}
.k-scheduler .k-scheduler-toolbar .k-state-hover {
    background-color: rgb(38, 84.5, 224) !important;
}
.k-scheduler .k-scheduler-toolbar .k-state-hover a {
    background-color: rgb(38, 84.5, 224) !important;
}
.k-scheduler .k-scheduler-toolbar .k-lg-date-format {
  max-width: inherit !important;
}
.k-scheduler .k-scheduler-toolbar .selectDropdown select {
  color: #000 !important;
}
.k-scheduler .k-scheduler-toolbar .selectDropdown .chosen-results li {
  color: #000;
}
.k-scheduler .k-scheduler-toolbar .selectDropdown .chosen-results li:hover {
  color: #fff;
}
.k-scheduler .k-header {
  background-color: #14328C !important;
}
.k-scheduler .k-header .k-link, .k-scheduler .k-header li {
  border-color: #14328C !important;
}
.k-scheduler .k-scrollbar-h tr + tr .k-scheduler-times {
  border-color: #e6e6e6;
}
.k-scheduler .k-scheduler-header-wrap {
  border-color: #e6e6e6;
}

.event-template {
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.k-scheduler-timelineMonthview .event-template.alert {
  padding: 0;
  text-indent: -99999px;
}

.k-calendar .k-state-focused {
  background-color: #efefef;
}

.k-calendar .k-state-selected, .k-calendar .k-state-selected.k-state-hover {
  border-color: transparent;
  background-color: #ff4350;
}

.k-calendar td {
  border-width: 0px;
  border-radius: 0;
}

/*@@@ custom kendo grid @@@*/
.k-grid .k-grid-header th.k-header {
  padding: 10px;
  font-weight: 400;
  font-size: 12px;
}

.k-grid .k-grid-header .k-link {
  color: #fff !important;
}

.k-grid .k-grid-header .k-header {
  color: #fff;
}

.k-grid .k-grid-content td, .k-grid .k-grid-content-locked td {
  line-height: 14px;
  padding: 10px;
}
.k-grid .k-grid-content td div.actions a, .k-grid .k-grid-content-locked td div.actions a {
  display: inline-block;
}
.k-grid .k-grid-content td div.actions a i.fa, .k-grid .k-grid-content-locked td div.actions a i.fa {
  font-size: 20px;
}
.k-grid .k-grid-content td div.actions ~ button, .k-grid .k-grid-content td div.actions button, .k-grid .k-grid-content-locked td div.actions ~ button, .k-grid .k-grid-content-locked td div.actions button {
  display: none;
}

/* Full width layout*/
body.full-width #content #main-content {
  width: 100%;
  margin-left: -350px;
}
body.full-width #content #left-sidebar {
  transform: translateX(-350px);
  opacity: 0;
  background: #fff;
  z-index: 1;
}
body.full-width.toggle-menu #content #left-sidebar {
  transform: translateX(0px);
  opacity: 1;
}

/*@@@ large style for tablet @@@*/
@media (max-width: 1199.98px) {
  .hide-ipad {
    display: none;
  }
  .show-ipad {
    display: inline-block !important;
  }
  .btn-ipad {
    border-radius: 3px;
    padding: 5px 10px;
    display: inline-block;
    line-height: 1.5;
  }
  .btn-ipad.btn-ipad-success {
    background-color: #28a745;
    color: #fff !important;
  }
  .btn-ipad.btn-ipad-danger {
    background-color: #dc3545;
    color: #fff !important;
  }
  .btn-ipad.btn-ipad-danger i {
    color: #fff !important;
  }
  #content #main-content {
    width: 100%;
    margin-left: -350px;
  }
  #content #left-sidebar {
    transform: translateX(-350px);
    opacity: 0;
    background: #fff;
    z-index: 1;
  }
  body.toggle-menu #content #left-sidebar {
    transform: translateX(0px);
    opacity: 1;
    box-shadow: 1px 0 20px #ababab;
  }
  .form-radio {
    margin-bottom: 5px;
    margin-right: 5px;
  }
  .form-radio label {
    border: solid 2px #14328C;
    border-radius: 50px;
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
    padding: 5px;
  }
  .form-radio label [type=radio]:checked,
  .form-radio label [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
  }
  .form-radio label [type=radio]:checked + span,
  .form-radio label [type=radio]:not(:checked) + span {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #14328C;
  }
  .form-radio label [type=radio]:checked + span:before,
  .form-radio label [type=radio]:not(:checked) + span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #14328C;
    border-radius: 100%;
    background: #fff;
  }
  .form-radio label [type=radio]:checked + span:after,
  .form-radio label [type=radio]:not(:checked) + span:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #14328C;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .form-radio label [type=radio]:not(:checked) + span:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  .form-radio label [type=radio]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .k-grid {
    background-color: transparent;
    border: none;
  }
  .k-grid .k-grid-header {
    display: none;
  }

    .k-grid .k-grid-content, .k-grid .k-grid-content-locked {
    overflow: inherit;
    background-color: transparent;
  }

    .k-grid .k-grid-content table, .k-grid .k-grid-content-locked table {
    display: block;
    background-color: transparent;
    border: none;
  }

    .k-grid .k-grid-content table tbody, .k-grid .k-grid-content-locked table tbody {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

    .k-grid .k-grid-content table tr, .k-grid .k-grid-content-locked table tr {
    position: relative;
    display: block;
    width: 32%;
    margin-right: 1.1%;
    border: solid 1px #ebebeb;
    border-radius: 3px;
    margin-bottom: 5px;
    margin-top: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #fff;
    overflow: hidden;
  }

    .k-grid .k-grid-content table tr td, .k-grid .k-grid-content-locked table tr td {
    display: block;
    border-bottom: none;
    padding-top: 5px;
    padding-bottom: 5px;
  }

    .k-grid .k-grid-content table tr td:before, .k-grid .k-grid-content-locked table tr td:before {
    content: attr(data-header) ": ";
    font-size: 0.8rem;
    font-weight: bold;
  }

    .k-grid .k-grid-content table tr td.noHeader:before, .k-grid .k-grid-content-locked table tr td.noHeader:before {
    display: none;
  }

    .k-grid .k-grid-content table tr td .actions, .k-grid .k-grid-content-locked table tr td .actions {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transform: translateY(200px);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }

    .k-grid .k-grid-content table tr td .actions a, .k-grid .k-grid-content-locked table tr td .actions a {
    display: block;
    box-sizing: border-box;
    width: 49%;
    margin-bottom: 5px;
    padding: 3px 10px;
    background-color: #fff;
    border-radius: 3px;
  }

    .k-grid .k-grid-content table tr td .actions a i.fa, .k-grid .k-grid-content-locked table tr td .actions a i.fa {
    font-size: 28px;
    float: left;
    margin-right: 3px;
    width: 28px;
  }

    .k-grid .k-grid-content table tr td .actions a:after, .k-grid .k-grid-content-locked table tr td .actions a:after {
    content: attr(title);
    line-height: 28px;
    display: inline-block;
    float: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: calc(100% - 31px);
    overflow: hidden;
  }

    .k-grid .k-grid-content table tr td .actions a strong, .k-grid .k-grid-content-locked table tr td .actions a strong {
    display: none;
  }

    .k-grid .k-grid-content table tr td .actions.show, .k-grid .k-grid-content-locked table tr td .actions.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

    .k-grid .k-grid-content table tr td .actions ~ button, .k-grid .k-grid-content table tr td .actions button, .k-grid .k-grid-content-locked table tr td .actions ~ button, .k-grid .k-grid-content-locked table tr td .actions button {
    display: block;
    box-sizing: border-box;
  }

    .k-grid .k-grid-content table[role=treegrid] tr, .k-grid .k-grid-content-locked table[role=treegrid] tr {
    width: 100%;
    margin-right: 0;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row td.k-hierarchy-cell, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row td.k-hierarchy-cell {
    width: 100%;
    order: 999;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row td.k-hierarchy-cell.hide-plus, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row td.k-hierarchy-cell.hide-plus {
    display: none;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row td.k-hierarchy-cell:before, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row td.k-hierarchy-cell:before {
    content: "";
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row td.k-hierarchy-cell .k-icon, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row td.k-hierarchy-cell .k-icon {
    width: 100%;
    position: relative;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row td.k-hierarchy-cell .k-icon:after, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row td.k-hierarchy-cell .k-icon:after {
    content: attr(data-header);
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    background-color: #fff;
    line-height: 16px;
    left: 16px;
    width: calc(100% - 16px);
    text-align: left;
    color: #495057;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row td:not(.k-hierarchy-cell), .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row td:not(.k-hierarchy-cell) {
    width: 50%;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row td:not(.k-hierarchy-cell):nth-child(even), .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row td:not(.k-hierarchy-cell):nth-child(even) {
    border-right: solid 1px #ebebeb;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row ~ tr.k-detail-row, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row ~ tr.k-detail-row {
    margin-top: -10px;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-hierarchy-cell, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-hierarchy-cell {
    display: none;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-detail-cell:before, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-detail-cell:before {
    display: none;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-detail-cell .k-grid .k-grid-content table tr td:first-child:before, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-detail-cell .k-grid .k-grid-content table tr td:first-child:before {
    content: attr(data-header) ": ";
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-detail-cell .k-grid .k-grid-content table tr, .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-detail-cell .k-grid .k-grid-content table tr {
    width: 49%;
    margin-right: 2%;
  }

    .k-grid .k-grid-content table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-detail-cell .k-grid .k-grid-content table tr:nth-child(even), .k-grid .k-grid-content-locked table[role=treegrid] tr.k-master-row ~ tr.k-detail-row .k-detail-cell .k-grid .k-grid-content table tr:nth-child(even) {
    margin-right: 0;
  }
}

/*# sourceMappingURL=style.css.map */
#left-sidebar::-webkit-scrollbar {
    /*visibility: hidden;*/
    /*border-radius: 3px;*/
    /*background-color: red;*/
    /*width: 6px;*/
    /*visibility: hidden;*/
    /*-webkit-appearance: none;*/
    /*height: 6px;*/
    /*background-color: transparent;*/
}