/* ****************** */
/* *     COLORS     * */
/* ****************** */
/* Variables in workspace-view.ts layout */
/* Colors */
/* Color Palette */
/* Fonts */
/* line 4, ../../../src/main/angular/app/picturedoc.scss */
[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

/* line 11, ../../../src/main/angular/app/picturedoc.scss */
html, body, div, td, th, span {
  font-family: 'RobotoDraft', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 18, ../../../src/main/angular/app/picturedoc.scss */
input, textarea, select {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

/* line 24, ../../../src/main/angular/app/picturedoc.scss */
body {
  background: #e9e9e9;
}

/* line 28, ../../../src/main/angular/app/picturedoc.scss */
html, body {
  width: 100%;
  height: 100%;
}

/* line 33, ../../../src/main/angular/app/picturedoc.scss */
.page {
  position: fixed;
  left: 0px;
  top: 48px;
  width: 100%;
  bottom: 0px;
  overflow: auto;
}

/* line 44, ../../../src/main/angular/app/picturedoc.scss */
.page.withMenu {
  top: 92px;
}

/* line 48, ../../../src/main/angular/app/picturedoc.scss */
.page.withTabbedPane {
  top: 83px;
}

/* line 52, ../../../src/main/angular/app/picturedoc.scss */
.page.withMenu.withTabbedPane {
  top: 127px;
}

/* line 56, ../../../src/main/angular/app/picturedoc.scss */
.popup {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}

/* line 70, ../../../src/main/angular/app/picturedoc.scss */
input, select, textarea {
  outline: none;
  display: block;
  background-color: #fff;
  width: 100%;
  border: 1px solid #d9d9d9;
  margin: 0 0 20px;
  padding: 10px 15px;
  font-size: 14px;
  box-sizing: border-box;
  font-weight: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
/* line 84, ../../../src/main/angular/app/picturedoc.scss */
input:focus, select:focus, textarea:focus {
  border: 1px solid #33b5e5;
  color: #333333;
}

/* line 90, ../../../src/main/angular/app/picturedoc.scss */
textarea {
  resize: vertical;
}

/* line 94, ../../../src/main/angular/app/picturedoc.scss */
select {
  background-image: url("../images/select-arrow.png");
  background-position: 97% center;
  background-repeat: no-repeat;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 103, ../../../src/main/angular/app/picturedoc.scss */
button {
  cursor: pointer;
  background: #33b5e5;
  width: 100%;
  border: 0;
  padding: 10px 15px;
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
/* line 113, ../../../src/main/angular/app/picturedoc.scss */
button:hover {
  background-color: #178ab4;
}
/* line 117, ../../../src/main/angular/app/picturedoc.scss */
button.disabled, button.disabled:hover {
  background-color: #d9d9d9;
  cursor: not-allowed;
}
