
@import "colors";
html, body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  // background: $color-app-bg;
  background: $color-app-bg;
}

.app-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.scrollable {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  // -moz-appearance: none !important;
}

.scrollable-vertical {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  // -moz-appearance: none !important;
}

::-webkit-scrollbar {
  width: 6px;

}

::-webkit-scrollbar-track {
  border: 0;
}

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: $color-primary-400;
}

::-webkit-scrollbar-thumb:hover {
  @media #{$medium-up} {
    background-color: $color-primary-600;
  }
}



.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.selectable
{
  cursor: pointer;
}

.content {
  height: 100%;
  width: 100%;
  min-height: 100%;
  max-height: 100%;
  display: block;
  position: absolute;
  float: left;
  overflow: hidden;

  //prepare animation
  -webkit-transition: all 1s cubic-bezier(1.000, 0.010, 0.625, 1.000);
  -moz-transition: all 1s cubic-bezier(1.000, 0.010, 0.625, 1.000);
  -o-transition: all 1s cubic-bezier(1.000, 0.010, 0.625, 1.000);
  transition: all 1s cubic-bezier(1.000, 0.010, 0.625, 1.000); /* custom */

  &.condensed {
    padding-top: 56px;

    &.extra-condensed {
      padding-top: 128px !important;
    }
  }

  .view-container {
    height: 100%;
    width: 100%;
  }


}

.no-overflow {
  overflow-y: hidden !important;
}

.view
{
  display: flex;
  flex-shrink: 0;
  flex:1 auto;
  z-index: 20;
}
