/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html,
body {
  height: 100%;
}
/**
 * Application config
 */
.app {
  color: #34495e;
  font-size: 12px;
  font-family: Normal, sans-serif;
  visibility: visible !important;
  position: relative;
}
.app__wrap {
  height: 100%;
}
.app__menu {
  width: 180px;
  background: #d5d7da;
  border-right: 1px solid #bbb;
  height: 100vh;
  float: left;
}
.app__logo {
  width: 80%;
  margin: 10px 10%;
}
.app__content {
  height: 100vh;
}
.app__content-wrap {
  height: 100%;
}
.app__internal-page {
  margin-left: 180px;
  height: calc(100% - 1em);
  padding: .5em;
}
.chat {
  position: absolute;
  background: white;
  border: 1px solid #bbb;
  right: 2px;
  bottom: 2px;
  overflow: hidden;
  width: 15px;
  height: 15px;
}
.chat__control {
  height: 15px;
  cursor: pointer;
}
.chat__control:before {
  content: '';
  position: absolute;
  margin: 0;
  padding: 0;
  height: 0;
  width: 0;
  top: 2px;
  left: 2px;
  border-left: 8px solid #ddd;
  border-bottom: 8px solid transparent;
}
.chat__messages {
  float: left;
  width: 300px;
  overflow-y: auto;
}
.chat__messages .message {
  margin: 10px;
  float: left;
  clear: both;
  max-width: 200px;
  word-wrap: break-word;
}
.chat__messages .message__buble {
  padding: 10px;
  background: #c2e9ff;
}
.chat__messages .message__buble b {
  font-weight: 900;
  margin-right: 10px;
}
.chat__messages .message__time {
  margin-top: 5px;
}
.chat__messages .message__self {
  float: right;
}
.chat__messages .message__self .message__buble {
  background: #b9ffc1;
}
.chat__messages .message__self .message__time {
  text-align: right;
}
.chat__messages .message__control {
  margin-top: 10px;
}
.chat__input {
  float: left;
  height: 10px;
  width: 300px;
}
.chat__input > input {
  width: 100%;
  height: 100%;
}
.chat__list {
  float: right;
  width: 200px;
}
.chat__crew {
  padding: 5px 10px;
  border-bottom: 1px solid #bbb;
  cursor: pointer;
  position: relative;
}
.chat__crew.active {
  background: #e3e4e6;
}
.chat__crew:last-child {
  border-bottom: none;
}
.chat__new-message {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: red;
}
.chat.open {
  height: auto;
  width: 202px;
}
.chat.open.messages {
  width: 502px;
}
.chat.open .chat__control::before {
  border-left: none;
  border-bottom: none;
  border-right: 8px solid #ddd;
  border-top: 8px solid transparent;
}
.header {
  background: #e3e4e6;
  border-bottom: 1px solid #bbb;
}
.header__tab {
  border-right: 1px solid #bbb;
  display: inline-block;
  padding: 1em;
  cursor: pointer;
  background: #eaecef;
  margin-left: 0;
  margin-bottom: -1px;
  border-bottom: solid 1px #bbb;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header__tab:hover {
  background: #f8f9fa;
}
.header__tab--right {
  float: right;
}
.menu__item {
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom: solid 1px #CCC;
  cursor: pointer;
  background: #e3e4e6;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
  font-weight: 700;
  color: #555;
  padding: 15px 20px;
  text-decoration: none;
}
.menu__item:hover {
  background: #F6F6F6;
}
.paginate > div {
  float: left;
  width: 20px;
  margin-left: 5px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border: 1px solid cornflowerblue;
  border-radius: 3px;
  cursor: pointer;
}
.paginate > div.active {
  border: 1px solid indianred;
}
.table {
  margin: .5rem;
  width: calc(100% - 1em - 4px);
}
.table thead th {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #EFEFF1;
  padding: 1px 5px;
  color: #123d5b;
  border: solid 1px #dadada;
  font-weight: 400;
  border-top: none;
}
.dashboard {
  height: 100%;
  border: solid 1px #bbb;
}
.dashboard__content {
  padding: .5em;
  height: calc(100% - 4.5em - 2px);
  margin-top: -1px;
}
.dashboard .legend_item {
  display: inline-block;
  width: 20px;
  height: 10px;
}
.dashboard .legend_item.new {
  border-color: #97B0F8;
  background-color: #D5DDF6;
}
.dashboard .vis-item.crow,
.dashboard .legend_item.crow {
  border-color: #f2ff0b;
  background-color: #fffdb1;
}
.dashboard .vis-item.started,
.dashboard .legend_item.started {
  border-color: #ff38fc;
  background-color: #a8358e;
}
.dashboard .vis-item.done,
.dashboard .legend_item.done {
  border-color: #31ff18;
  background-color: #78e076;
}
.dashboard .vis-item.rated,
.dashboard .legend_item.rated {
  border-color: #16710b;
  background-color: #366435;
  color: white;
}
.dashboard .vis-item.cancel,
.dashboard .legend_item.cancel {
  border-color: #f88379;
  background-color: #f6cfcf;
}
.dashboard .vis-item.vis-selected,
.dashboard .legend_item.vis-selected {
  border-color: #FFC200;
  background-color: #FFF785;
}
.edit-user {
  height: 100%;
  border: solid 1px #bbb;
}
.login {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  margin-left: -250px;
  height: auto;
  border: solid 1px #bbb;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -o-transform: translate3d(0, -50%, 0);
  background: #fff;
}
.login__header {
  font-size: 2em;
  text-align: left;
  padding: .4em;
  font-family: Accented, sans-serif;
  display: flex;
  justify-content: space-between;
  color: #1a5a86;
  font-weight: 400;
}
.login__body {
  width: 450px;
  margin: 0 auto;
  padding: 1em;
}
.login__row {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: .5em;
}
.login__label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
.login__input {
  display: flex;
  align-items: center;
  border: solid 1px #bbb;
  height: 1.8em;
  overflow: hidden;
  white-space: nowrap;
  padding: .1em .2em;
  width: 18em;
}
.login__buttons {
  text-align: right;
  border-top: solid 1px #dbdbdb;
  padding: 1em;
}
.login__buttons > input {
  background: #62cb31;
  border: none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  text-overflow: ellipsis;
  padding: .6em 1em;
  font-size: 1em;
}
.map {
  height: 100%;
  border: solid 1px #bbb;
  position: relative;
}
.map__stat {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  width: 300px;
  line-height: 1.5em;
  z-index: 9999;
  background: white;
}
.map #map {
  top: 0;
}
.requests-list {
  height: 100%;
  border: solid 1px #bbb;
}
.requests-list__table {
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(100% - 4.5em - 2px);
}
.user {
  height: 100%;
  border: solid 1px #bbb;
}
.user__chat {
  margin: 1em;
  height: 80%;
}
.user__chat .message {
  margin: 10px;
  float: left;
  clear: both;
}
.user__chat .message__buble {
  padding: 10px;
  background: #c2e9ff;
}
.user__chat .message__buble b {
  font-weight: 900;
  margin-right: 10px;
}
.user__chat .message__time {
  margin-top: 5px;
}
.user__chat .message__self {
  float: right;
}
.user__chat .message__self .message__buble {
  background: #b9ffc1;
}
.user__chat .message__self .message__time {
  text-align: right;
}
.user__chat .message__control {
  margin-top: 10px;
}
.user__messages {
  width: 40%;
  height: calc(100% - 40px);
  border: 1px solid green;
  overflow-y: scroll;
}
.user-edit {
  height: 100%;
  border: solid 1px #bbb;
}
.users-list {
  height: 100%;
  border: solid 1px #bbb;
}
.users-list__table {
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(100% - 4.5em - 2px);
}
/*# sourceMappingURL=site.css.map */