@mixin transitionAll() {
  transition: all .5s ease-out;
}

.ui.grid {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.app-content {
  height: 100%;
}

.wrapper {
  height: 100%;
  position: relative;
  font-family: "proxima-nova", "open-sans", sans-serif !important;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
  -webkit-box-orient: vertical;
}

.main {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: stretch; /* Safari */
  align-items: stretch;
  //min-height: calc(100vh - 48px);
  height: 100%;
}

.sidebar {
  background-color: #F2F3F7;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  // width: 200px;
  max-height: calc(100vh - 40px);

  //transition: all .5s ease-out;
  &.collapse {
    transform: translateX(-100%);
    overflow-y: hidden !important;
    background: #fff;
  }
}

.sidebar-collapse {
  margin-right: -160px;
  background-color: #fff;
}

.custom-sidebar {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 250px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;

  //transition: all .5s ease-out;
  &.collapse {
    transform: translateX(-100%);
  }
}


.breadcrumbs {
  color: $blue-cloud-burst-54;
  margin: 16px 10px 12px 10px;
  line-height: 1.67;
  font-family: "open-sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  a {
    color: $blue-cloud-burst-54;
  }
}

.btn-toggle {
  position: absolute;
  top: 42px;
  left: 2px;
}

.togglebar {
  background-color: #ffffff;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50px;
  &.push {
    margin-left: -200px;
  }
}

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

.perf-profiler {
  z-index: 10000;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 50px;
  top: 20px;
  padding: 10px;
  background: #bada55;
  border: 2px solid black;
  text-align: center;
}

.perf-profiler > h1 {
  font-size: 1.5em;
}

.perf-profiler > button {
  display: block;
  margin-top: 10px;
  padding: 5px;
}

// ::-webkit-scrollbar {
//   width: 8px;
//   height: 8px;
//   background-color: #bfbfbf;
// }

// ::-webkit-scrollbar-track {
//   -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
//   background-color: #F7F7F7;
// }

// ::-webkit-scrollbar-thumb {
//   background-color: #bfbfbf;
// }

.cap-loader-box {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
  text-align: center;

  .loader-image {
    width: 80px;
    margin-top: 20%;
  }
}