/*!
 * 
 *     Litepicker v1.5.7 (https://github.com/wakirin/Litepicker)
 *     Package: litepicker (https://www.npmjs.com/package/litepicker)
 *     License: MIT (https://github.com/wakirin/Litepicker/blob/master/LICENCE.md)
 *     Copyright 2019-2020 Rinat G.
 *     
 *     Hash: 6c5abdc252d9f485c1dc
 *     Generated on: 1592979309772
 *     
 */
:root {
  --litepickerBgColor: #fff;
  --litepickerMonthHeaderTextColor: #333;
  --litepickerMonthButton: #9e9e9e;
  --litepickerMonthButtonHover: #2196f3;
  --litepickerMonthWidth: calc(var(--litepickerDayWidth) * 7);
  --litepickerMonthWeekdayColor: #9e9e9e;
  --litepickerDayColor: #333;
  --litepickerDayColorHover: #2196f3;
  --litepickerDayIsTodayColor: #f44336;
  --litepickerDayIsInRange: #bbdefb;
  --litepickerDayIsLockedColor: #9e9e9e;
  --litepickerDayIsBookedColor: #9e9e9e;
  --litepickerDayIsStartColor: #fff;
  --litepickerDayIsStartBg: #2196f3;
  --litepickerDayIsEndColor: #fff;
  --litepickerDayIsEndBg: #2196f3;
  --litepickerDayWidth: 38px;
  --litepickerButtonCancelColor: #fff;
  --litepickerButtonCancelBg: #9e9e9e;
  --litepickerButtonApplyColor: #fff;
  --litepickerButtonApplyBg: #2196f3;
  --litepickerButtonResetBtn: #909090;
  --litepickerButtonResetBtnHover: #2196f3;
  --litepickerHighlightedDayColor: #333;
  --litepickerHighlightedDayBg: #ffeb3b;
}

.show-week-numbers {
  --litepickerMonthWidth: calc(var(--litepickerDayWidth) * 8);
}

.litepicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8em;
  display: none;
}

.litepicker .container__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.litepicker .container__months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--litepickerBgColor);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px #ddd;
  box-shadow: 0 0 5px #ddd;
  width: calc(var(--litepickerMonthWidth) + 10px);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.litepicker .container__months.columns-2 {
  width: calc(var(--litepickerMonthWidth) * 2 + 20px);
}

.litepicker .container__months.columns-3 {
  width: calc(var(--litepickerMonthWidth) * 3 + 30px);
}

.litepicker .container__months.columns-4 {
  width: calc(var(--litepickerMonthWidth) * 4 + 40px);
}

.litepicker .container__months.split-view .month-item-header .button-previous-month, .litepicker .container__months.split-view .month-item-header .button-next-month {
  visibility: visible;
}

.litepicker .container__months .month-item {
  padding: 5px;
  width: var(--litepickerMonthWidth);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.litepicker .container__months .month-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 500;
  padding: 10px 5px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--litepickerMonthHeaderTextColor);
}

.litepicker .container__months .month-item-header div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.litepicker .container__months .month-item-header div > .month-item-name {
  margin-right: 5px;
}

.litepicker .container__months .month-item-header div > .month-item-year {
  padding: 0;
}

.litepicker .container__months .month-item-header .reset-button {
  color: var(--litepickerButtonResetBtn);
}

.litepicker .container__months .month-item-header .reset-button > svg, .litepicker .container__months .month-item-header .reset-button > img {
  fill: var(--litepickerButtonResetBtn);
  pointer-events: none;
}

.litepicker .container__months .month-item-header .reset-button:hover {
  color: var(--litepickerButtonResetBtnHover);
}

.litepicker .container__months .month-item-header .reset-button:hover > svg {
  fill: var(--litepickerButtonResetBtnHover);
}

.litepicker .container__months .month-item-header .button-previous-month, .litepicker .container__months .month-item-header .button-next-month {
  visibility: hidden;
  text-decoration: none;
  color: var(--litepickerMonthButton);
  padding: 3px 5px;
  border-radius: 3px;
  -webkit-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
  cursor: default;
}

.litepicker .container__months .month-item-header .button-previous-month > svg, .litepicker .container__months .month-item-header .button-previous-month > img, .litepicker .container__months .month-item-header .button-next-month > svg, .litepicker .container__months .month-item-header .button-next-month > img {
  fill: var(--litepickerMonthButton);
  pointer-events: none;
}

.litepicker .container__months .month-item-header .button-previous-month:hover, .litepicker .container__months .month-item-header .button-next-month:hover {
  color: var(--litepickerMonthButtonHover);
}

.litepicker .container__months .month-item-header .button-previous-month:hover > svg, .litepicker .container__months .month-item-header .button-next-month:hover > svg {
  fill: var(--litepickerMonthButtonHover);
}

.litepicker .container__months .month-item-weekdays-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: var(--litepickerMonthWeekdayColor);
}

.litepicker .container__months .month-item-weekdays-row > div {
  padding: 5px 0;
  font-size: 85%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: var(--litepickerDayWidth);
  text-align: center;
}

.litepicker .container__months .month-item:first-child .button-previous-month {
  visibility: visible;
}

.litepicker .container__months .month-item:last-child .button-next-month {
  visibility: visible;
}

.litepicker .container__months .month-item.no-previous-month .button-previous-month {
  visibility: hidden;
}

.litepicker .container__months .month-item.no-next-month .button-next-month {
  visibility: hidden;
}

.litepicker .container__days {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-self: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.litepicker .container__days > div, .litepicker .container__days > a {
  padding: 5px 0;
  width: var(--litepickerDayWidth);
}

.litepicker .container__days .day-item {
  color: var(--litepickerDayColor);
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
  cursor: default;
}

.litepicker .container__days .day-item:hover {
  color: var(--litepickerDayColorHover);
  -webkit-box-shadow: inset 0 0 0 1px var(--litepickerDayColorHover);
  box-shadow: inset 0 0 0 1px var(--litepickerDayColorHover);
}

.litepicker .container__days .day-item.is-today {
  color: var(--litepickerDayIsTodayColor);
}

.litepicker .container__days .day-item.is-locked {
  color: var(--litepickerDayIsLockedColor);
}

.litepicker .container__days .day-item.is-locked:hover {
  color: var(--litepickerDayIsLockedColor);
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

.litepicker .container__days .day-item.is-booked {
  color: var(--litepickerDayIsBookedColor);
}

.litepicker .container__days .day-item.is-booked:hover {
  color: var(--litepickerDayIsBookedColor);
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

.litepicker .container__days .day-item.is-in-range {
  background-color: var(--litepickerDayIsInRange);
  border-radius: 0;
}

.litepicker .container__days .day-item.is-start-date {
  color: var(--litepickerDayIsStartColor);
  background-color: var(--litepickerDayIsStartBg);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.litepicker .container__days .day-item.is-start-date.is-flipped {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__days .day-item.is-end-date {
  color: var(--litepickerDayIsEndColor);
  background-color: var(--litepickerDayIsEndBg);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__days .day-item.is-end-date.is-flipped {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.litepicker .container__days .day-item.is-start-date.is-end-date {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__days .day-item.is-highlighted {
  color: var(--litepickerHighlightedDayColor);
  background-color: var(--litepickerHighlightedDayBg);
}

.litepicker .container__days .week-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #9e9e9e;
  font-size: 85%;
}

.litepicker .container__footer {
  text-align: right;
  padding: 10px 5px;
  margin: 0 5px;
  background-color: #fafafa;
  -webkit-box-shadow: inset 0px 3px 3px 0px #ddd;
  box-shadow: inset 0px 3px 3px 0px #ddd;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__footer .preview-date-range {
  margin-right: 10px;
  font-size: 90%;
}

.litepicker .container__footer .button-cancel {
  background-color: var(--litepickerButtonCancelBg);
  color: var(--litepickerButtonCancelColor);
  border: 0;
  padding: 3px 7px 4px;
  border-radius: 3px;
}

.litepicker .container__footer .button-cancel > svg, .litepicker .container__footer .button-cancel > img {
  pointer-events: none;
}

.litepicker .container__footer .button-apply {
  background-color: var(--litepickerButtonApplyBg);
  color: var(--litepickerButtonApplyColor);
  border: 0;
  padding: 3px 7px 4px;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
}

.litepicker .container__footer .button-apply:disabled {
  opacity: 0.7;
}

.litepicker .container__footer .button-apply > svg, .litepicker .container__footer .button-apply > img {
  pointer-events: none;
}

.litepicker .container__tooltip {
  position: absolute;
  margin-top: -4px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-size: 11px;
  pointer-events: none;
  visibility: hidden;
}

.litepicker .container__tooltip:before {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 5px);
  border-top: 5px solid rgba(0, 0, 0, 0.12);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
}

.litepicker .container__tooltip:after {
  position: absolute;
  bottom: -4px;
  left: calc(50% - 4px);
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.litepicker-open {
  overflow: hidden;
}

.litepicker-backdrop {
  display: none;
  background-color: #000;
  opacity: 0.3;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html,
body {
  position: relative;
  padding: 0;
  margin: 0;
}

body {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:before,
*:after {
  outline: none;
  box-sizing: border-box;
}

a {
  background-color: transparent;
}

input,
input[type=text],
input[type=email],
input[type=password],
textarea {
  line-height: inherit;
  font-family: inherit;
  font-size: 100%;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

table {
  border-spacing: 0;
}

td {
  vertical-align: top;
}

p {
  margin: 0;
}

img {
  display: block;
}

@font-face {
  font-family: "icons";
  src: url("data:application/x-font-ttf;charset=utf-8;base64,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") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  font-family: "icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-external-link:before {
  content: "\e94d";
}

.icon-colorize:before {
  content: "\e94b";
}

.icon-comment:before {
  content: "\e930";
}

.icon-back:before {
  content: "\e93e";
}

.icon-next:before {
  content: "\e93f";
}

.icon-delete-forever:before {
  content: "\e949";
}

.icon-account:before {
  content: "\e926";
}

.icon-copy-add:before {
  content: "\e946";
}

.icon-users:before {
  content: "\e947";
}

.icon-restore:before {
  content: "\e948";
}

.icon-settings:before {
  content: "\e911";
}

.icon-flip:before {
  content: "\e931";
}

.icon-logout:before {
  content: "\e933";
}

.icon-copy:before {
  content: "\e941";
}

.icon-bin:before {
  content: "\e942";
}

.icon-pdf:before {
  content: "\e943";
}

.icon-clipboard:before {
  content: "\e93c";
}

.icon-clipboard-check:before {
  content: "\e93d";
}

.icon-bookmark:before {
  content: "\e93a";
}

.icon-bookmark-outline:before {
  content: "\e93b";
}

.icon-file-check:before {
  content: "\e935";
}

.icon-camera:before {
  content: "\e936";
}

.icon-file-plus:before {
  content: "\e937";
}

.icon-camera-plus:before {
  content: "\e938";
}

.icon-calendar:before {
  content: "\e92a";
}

.icon-file-text:before {
  content: "\e92b";
}

.icon-edit:before {
  content: "\e905";
}

.icon-checkbox:before {
  content: "\e91b";
}

.icon-checkbox-checked:before {
  content: "\e91c";
}

.icon-folder:before {
  content: "\e91d";
}

.icon-checkbox-minus:before {
  content: "\e91e";
}

.icon-file:before {
  content: "\e91f";
}

.icon-radio-button-checked:before {
  content: "\e920";
}

.icon-radio-button:before {
  content: "\e921";
}

.icon-toggle-off:before {
  content: "\e922";
}

.icon-toggle-on:before {
  content: "\e923";
}

.icon-error:before {
  content: "\e900";
}

.icon-loop:before {
  content: "\e901";
}

.icon-denied:before {
  content: "\e914";
}

.icon-reload:before {
  content: "\e902";
}

.icon-square:before {
  content: "\e94c";
}

.icon-location-off:before {
  content: "\e92c";
}

.icon-location-on:before {
  content: "\e92d";
}

.icon-add:before {
  content: "\e903";
}

.icon-clear:before {
  content: "\e904";
}

.icon-filter-list:before {
  content: "\e906";
}

.icon-remove:before {
  content: "\e907";
}

.icon-location-check:before {
  content: "\e92e";
}

.icon-time:before {
  content: "\e924";
}

.icon-location:before {
  content: "\e932";
}

.icon-attachment:before {
  content: "\e939";
}

.icon-handle:before {
  content: "\e940";
}

.icon-cloud:before {
  content: "\e925";
}

.icon-download:before {
  content: "\e92f";
}

.icon-down:before {
  content: "\e908";
}

.icon-left:before {
  content: "\e909";
}

.icon-right:before {
  content: "\e90a";
}

.icon-up:before {
  content: "\e90b";
}

.icon-visibility:before {
  content: "\e928";
}

.icon-arrow-down:before {
  content: "\e915";
}

.icon-arrow-up:before {
  content: "\e916";
}

.icon-check:before {
  content: "\e90d";
}

.icon-fullscreen:before {
  content: "\e912";
}

.icon-fullscreen-exit:before {
  content: "\e913";
}

.icon-menu:before {
  content: "\e90c";
}

.icon-more:before {
  content: "\e90e";
}

.icon-subdirectory:before {
  content: "\e917";
}

.icon-arrow-left:before {
  content: "\e919";
}

.icon-arrow-right:before {
  content: "\e91a";
}

.icon-pie-chart:before {
  content: "\e90f";
}

.icon-star:before {
  content: "\e944";
}

.icon-star-outline:before {
  content: "\e945";
}

.icon-clear-all:before {
  content: "\e934";
}

.icon-home:before {
  content: "\e927";
}

.icon-info:before {
  content: "\e94a";
}

.icon-list:before {
  content: "\e918";
}

.icon-power-off:before {
  content: "\e910";
}

.icon-visibility-off:before {
  content: "\e929";
}

.icon-spinner:before {
  content: "\e981";
}

::-webkit-input-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

.placeholder {
  color: #888;
}

.textfield,
.textfield-button,
.select__wrapper {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border: 2px solid #ddd;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 32px;
  background: #fff;
  transition: border-color 0.2s, background-color 0.2s;
}
.textfield--button-height,
.textfield-button--button-height,
.select__wrapper--button-height {
  padding-top: 3px;
  padding-bottom: 3px;
}
@media (hover: hover) {
  .textfield:hover,
  .textfield-button:hover,
  .select__wrapper:hover {
    border-color: #ccc;
  }
}
.textfield.error,
.textfield-button.error,
.select__wrapper.error {
  border-color: #f00;
}
.textfield:focus, .textfield.active,
.textfield-button:focus,
.textfield-button.active,
.select__wrapper:focus,
.select__wrapper.active {
  border-color: #000;
}
.textfield[disabled], .textfield--disabled, .textfield--disabled *,
.textfield-button[disabled],
.textfield-button--disabled,
.textfield-button--disabled *,
.select__wrapper[disabled],
.select__wrapper--disabled,
.select__wrapper--disabled * {
  cursor: default !important;
  color: #ccc !important;
  border-color: #ddd !important;
}

input.textfield[type=date],
input.textfield[type=time] {
  height: 45px;
}

.textfield-button {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  color: #888;
}
.textfield-button--no-text {
  padding-right: 0;
}
.textfield-button--has-icon {
  padding-left: 50px;
}
.textfield-button--has-icon-right {
  padding-right: 50px;
}
@media (hover: hover) {
  .textfield-button:hover {
    color: #222;
    border-color: #000;
  }
  .textfield-button:hover .textfield-button-icon {
    color: #000;
  }
}

.textfield-button-icon {
  color: #ccc;
  transition: color 200ms;
  font-size: 24px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.textfield-button-icon--right {
  left: auto;
  right: 0;
}

textarea.textfield {
  line-height: 1.6;
  padding: 12px 12px;
}

.button {
  position: relative;
  border: 0;
  height: 42px;
  line-height: 42px;
  padding: 0 16px;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0 #c0c0c0;
}
@media (hover: hover) {
  .button:hover {
    text-decoration: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 4px #c0c0c0;
  }
}
.button--has-icon {
  padding-left: 42px;
}
.button--small {
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
}
.button[disabled] {
  background: #ddd;
  color: #aaa;
  box-shadow: none !important;
  cursor: default;
}

.button__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 24px;
}

.loading-bar,
.button[disabled].loading-bar {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0)) !important;
  background-size: 32px 32px !important;
  background-repeat: repeat !important;
  transition: background-position 60000s linear !important;
  background-position: 4000000px !important;
}

.jBox-wrapper.edit-issue__attachments-tooltip .jBox-container,
.jBox-wrapper.edit-issue__attachments-tooltip .jBox-pointer:after {
  border-color: #000;
}
.jBox-wrapper.edit-issue__attachments-tooltip .jBox-content {
  padding: 0;
}
.jBox-wrapper.edit-issue__attachments-tooltip .jBox-container,
.jBox-wrapper.edit-issue__attachments-tooltip .jBox-container {
  border-radius: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: Roboto, Arial, sans-serif;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.app__wrapper {
  display: none;
  height: 100%;
}
.app__wrapper.app-active {
  display: block;
}

.settings__wrapper {
  position: absolute;
  top: 50px;
  right: 0;
  border-top: 2px solid var(--primary-color);
  background: #000;
  padding: 0;
  color: #fff;
  display: none;
}
.settings-active .settings__wrapper {
  display: block;
}

.settings__button {
  line-height: 50px;
  height: 50px;
  display: flex;
  transition: background-color 0.2s;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
@media (hover: hover) {
  .settings__button:hover {
    background-color: #333;
    color: #fff;
    text-decoration: none;
  }
}
.app-public .settings__button--bookmarks {
  display: none;
}
.settings__button--bookmarks .settings__label {
  min-width: 180px;
  padding-right: 0;
}
.app-public .settings__button--project-details {
  display: none;
}

.settings__icon {
  line-height: 50px;
  height: 50px;
  width: 50px;
  text-align: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: color 200ms;
}
.settings__icon--zoom, .settings__icon--isolate, .settings__icon--bookmarks {
  color: #666;
}
.settings__icon--zoom.zoom-active, .settings__icon--zoom.isolate-active, .settings__icon--zoom.bookmark-active, .settings__icon--isolate.zoom-active, .settings__icon--isolate.isolate-active, .settings__icon--isolate.bookmark-active, .settings__icon--bookmarks.zoom-active, .settings__icon--bookmarks.isolate-active, .settings__icon--bookmarks.bookmark-active {
  color: #3c7;
}

.settings__label {
  flex: 1;
  padding: 0 24px 0 8px;
}

.viewcubeWrapper {
  display: none !important;
}

.project-details__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  display: none;
}
.project-details-open .project-details__wrapper {
  display: block;
}

.project-details__container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 520px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.project-details__header {
  display: flex;
  background: #e2e2e2;
}

.project-details__title {
  height: 46px;
  line-height: 46px;
  padding: 0 16px;
  font-weight: 500;
  flex: 1;
}

.project-details__close-button {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  transition: color 250ms, background-color 250ms;
}
@media (hover: hover) {
  .project-details__close-button:hover {
    background: #ccc;
  }
}

.project-details__content {
  padding: 16px;
}

.project-details__label {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 5px;
}

.project-details__value--node-id, .project-details__value--project-id, .project-details__value--project-id-api {
  font-family: monospace;
  word-break: break-all;
}

.jBox-Modal.modal-bim360 .jBox-container,
.jBox-Modal.modal-bim360 .jBox-content,
.jBox-Modal.modal-bim360 .jBox-title {
  border-radius: 0;
}
.jBox-Modal.modal-bim360 .jBox-container {
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.6);
}
.jBox-Modal.modal-bim360 .jBox-content {
  padding: 0;
}
.jBox-Modal.modal-bim360 .jBox-title {
  font-size: 18px;
  padding: 0;
  text-align: center;
  line-height: 50px;
  background: #eee;
  border-bottom: 2px solid #ddd;
}
.jBox-Modal.modal-bim360.modal-bim360--title-left .jBox-title {
  padding: 0 0 0 16px;
  text-align: left;
}
.jBox-Modal.modal-bim360.jBox-closeButton-title .show-issue-modal__edit-button,
.jBox-Modal.modal-bim360.jBox-closeButton-title .jBox-closeButton {
  text-align: center;
  width: 50px;
  font-size: 24px;
  color: #aaa;
  transition: color 0.2s, background-color 0.2s;
}
@media (hover: hover) {
  .jBox-Modal.modal-bim360.jBox-closeButton-title .show-issue-modal__edit-button:hover,
  .jBox-Modal.modal-bim360.jBox-closeButton-title .jBox-closeButton:hover {
    color: #222;
    background-color: #ccc;
  }
}
.jBox-Modal.modal-bim360.jBox-closeButton-title .show-issue-modal__edit-button {
  position: absolute;
  top: 0;
  right: 50px;
  bottom: 0;
  cursor: pointer;
}

.modal__content-wrapper {
  display: none;
}

.jBox-Notice.notice-bim360 .jBox-container {
  border-radius: 0;
  box-shadow: none;
}
.jBox-Notice.notice-bim360 .jBox-content {
  padding: 16px 32px;
  font-weight: 500;
  font-size: 16px;
}

#panel-content-datepicker-field {
  display: none;
}

#panel-content-datepicker {
  display: flex;
  justify-content: center;
  height: 100%;
}
#panel-content-datepicker .litepicker {
  font-family: Roboto, Arial, sans-serif;
  color: #222;
  font-size: 16px;
  padding: 0;
  height: 100%;
  background: #fff;
}
#panel-content-datepicker .litepicker .container__months {
  box-shadow: none;
  border-radius: 0;
  width: auto;
}
#panel-content-datepicker .litepicker .container__months .month-item-header {
  padding: 0;
  line-height: 42px;
}
#panel-content-datepicker .litepicker .container__months .month-item-header .month-item-name {
  font-weight: 500;
}
#panel-content-datepicker .litepicker .container__months .month-item-header .button-previous-month,
#panel-content-datepicker .litepicker .container__months .month-item-header .button-next-month {
  position: relative;
  width: 50px;
  height: 42px;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "icons" !important;
}
#panel-content-datepicker .litepicker .container__months .month-item-header .button-previous-month svg,
#panel-content-datepicker .litepicker .container__months .month-item-header .button-next-month svg {
  display: none;
}
@media (hover: hover) {
  #panel-content-datepicker .litepicker .container__months .month-item-header .button-previous-month:hover,
  #panel-content-datepicker .litepicker .container__months .month-item-header .button-next-month:hover {
    background: #ddd;
  }
}
#panel-content-datepicker .litepicker .container__months .month-item-header .button-previous-month:before,
#panel-content-datepicker .litepicker .container__months .month-item-header .button-next-month:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 42px;
  text-align: center;
  font-size: 24px;
  text-indent: 0;
  color: #000 !important;
}
#panel-content-datepicker .litepicker .container__months .month-item-header .button-previous-month:before {
  content: "\e909";
}
#panel-content-datepicker .litepicker .container__months .month-item-header .button-next-month:before {
  content: "\e90a";
}
#panel-content-datepicker .litepicker .container__months .month-item {
  padding: 0;
  width: 294px;
}
#panel-content-datepicker .litepicker .container__months .container__days *:nth-child(7n),
#panel-content-datepicker .litepicker .container__months .container__days *:nth-child(7n-1) {
  color: #aaa;
}
#panel-content-datepicker .litepicker .container__months .container__days .day-item {
  border-radius: 0;
  box-shadow: none !important;
  cursor: pointer;
  transition: none;
}
#panel-content-datepicker .litepicker .container__months .container__days .day-item.is-today {
  color: #fff;
  background: #000;
  font-weight: 500;
}
#panel-content-datepicker .litepicker .container__months .container__days .day-item.is-start-date, #panel-content-datepicker .litepicker .container__months .container__days .day-item.is-end-date {
  background: var(--primary-color);
  color: var(--text-color-highlighted);
}
#panel-content-datepicker .litepicker .container__months .container__days .day-item.is-in-range {
  background: var(--primary-color-light);
  color: #222;
}
#panel-content-datepicker .litepicker .container__months .container__days .day-item:hover {
  color: inherit;
  background: #ddd;
}
#panel-content-datepicker .litepicker .container__months .container__days > div,
#panel-content-datepicker .litepicker .container__months .container__days > a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  padding: 0;
  font-size: 14px;
}
#panel-content-datepicker .litepicker .container__months .month-item-weekdays-row > div {
  font-size: 12px;
  font-weight: 500;
  color: #222;
  padding: 2px 0 4px;
  line-height: 12px;
}

.signin__wrapper {
  display: none;
  width: 100%;
  height: 100%;
}
.signin__wrapper.app-active {
  display: block;
}

.signin__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.signin__logo {
  position: relative;
  height: 180px;
  width: 180px;
  margin: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.signin__textfield {
  display: none;
  width: 180px;
  margin: 8px auto 0;
}
.app-public .signin__textfield {
  display: block;
}
.app-require-button-click .signin__textfield {
  display: none;
}

.signin__button {
  display: block;
  margin: 8px auto 16px;
  width: 180px;
}

.signin__description {
  text-align: center;
  font-size: 14px;
  color: #888;
}
.signin__description b {
  font-weight: 500;
}

.signin__credits {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  line-height: 40px;
  color: #888;
  text-align: center;
}
.signin__credits a {
  color: #888;
  text-decoration: underline;
}
@media (hover: hover) {
  .signin__credits a:hover {
    color: #888;
    text-decoration: underline;
  }
}

.nav__wrapper {
  position: relative;
  height: 50px;
  background: #000;
  color: #fff;
  z-index: 20;
}

.nav__container {
  display: flex;
}

.nav__spacer {
  flex: 1;
}

.nav__icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.nav__icon.nav-icon-active {
  background-color: var(--primary-color);
  color: var(--text-color-highlighted);
}
@media (hover: hover) {
  .nav__icon:hover {
    background-color: var(--primary-color);
    color: var(--text-color-highlighted);
  }
}

.nav__toggle-projects {
  position: relative;
}
.app-public .nav__toggle-projects {
  display: none;
}
.nav__toggle-projects .nav__menu-icon--close {
  opacity: 0;
  transform: scale(0.8);
}
.nav__toggle-projects.projects-active .nav__menu-icon--open {
  opacity: 0;
  transform: scale(0.8);
}
.nav__toggle-projects.projects-active .nav__menu-icon--close {
  opacity: 1;
  transform: scale(1);
}

.nav__fullscreen {
  position: relative;
}
.is-mobile-device .nav__fullscreen {
  display: none;
}
.nav__fullscreen .nav__fullscreen-icon--exit {
  opacity: 0;
  transform: scale(0.8);
}
.nav__fullscreen.is-fullscreen .nav__fullscreen-icon--enter {
  opacity: 0;
  transform: scale(0.8);
}
.nav__fullscreen.is-fullscreen .nav__fullscreen-icon--exit {
  opacity: 1;
  transform: scale(1);
}

.nav__fullscreen-icon,
.nav__menu-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.nav__user {
  line-height: 50px;
  white-space: nowrap;
  padding: 0 16px 0 0;
}

.nav__refresh-tree {
  width: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s, width 0.2s;
}
.nav__refresh-tree.refresh-active {
  width: 50px;
  opacity: 1;
  transform: scale(1);
}

.projects__wrapper {
  position: absolute;
  z-index: 10;
  top: 50px;
  left: 0;
  width: 0;
  height: calc(100% - 50px);
  overflow: auto;
  background: #fff;
  border-right: 2px solid #ddd;
  transition: width 200ms;
  font-size: 14px;
  left: -2px;
}
.projects__wrapper.projects-active {
  width: 580px;
}

.projects__container {
  width: 578px;
  padding: 8px 0 18px 8px;
}

.jstree-default .jstree-node {
  min-height: 42px;
  line-height: 42px;
  margin-left: calc(42px / 2);
  min-width: 42px;
}

.jstree-default .jstree-leaf > .jstree-ocl {
  background: none;
  width: 42px;
  height: 42px;
  line-height: 42px;
}

.jstree-default .jstree-closed > .jstree-ocl,
.jstree-default .jstree-open > .jstree-ocl,
.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {
  background: none;
  width: 42px;
  height: 42px;
  line-height: 42px;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .jstree-default .jstree-closed > .jstree-ocl:hover,
  .jstree-default .jstree-open > .jstree-ocl:hover,
  .jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl:hover {
    background: #ddd;
  }
}
.jstree-default .jstree-closed > .jstree-ocl:before,
.jstree-default .jstree-open > .jstree-ocl:before,
.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl:before {
  font-family: "icons";
  font-style: normal;
  display: block;
  font-size: 24px;
  width: 42px;
  height: 42px;
  line-height: 42px;
}

.jstree-default .jstree-node,
.jstree-default .jstree-icon {
  background: none;
}

.jstree-default .jstree-closed > .jstree-ocl:before {
  content: "\e90a";
}

.jstree-default .jstree-open > .jstree-ocl:before {
  content: "\e908";
}

.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl:before {
  content: "\e981";
  font-size: 14px;
  animation: spinner 1.2s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.jstree-default .jstree-anchor {
  line-height: 42px;
  height: 42px;
  padding: 0 16px 0 0;
  transition: background-color 0.2s;
  cursor: inherit;
}
.jstree-default .jstree-anchor.jstree-clicked, .jstree-default .jstree-anchor:hover {
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.jstree-default .jstree-anchor.jstree-node-clickable {
  cursor: pointer;
}
.jstree-default .jstree-anchor.jstree-node-clickable.jstree-clicked, .jstree-default .jstree-anchor.jstree-node-clickable:hover {
  background: #ddd;
}
.jstree-default .jstree-anchor.jstree-node-clickable.jstree-clicked .icon-radio-button:before {
  content: "\e920";
}
.jstree-default .jstree-anchor > .jstree-icon {
  line-height: 42px;
  height: 42px;
  width: 28px;
  margin: 0 8px 0 0;
}
.jstree-default .jstree-anchor > .jstree-icon:before {
  line-height: 42px;
  height: 42px;
  font-size: 24px;
}

.jstree-default .jstree-icon.icon-radio-button {
  margin-left: 16px;
  width: 28px;
}

.content__wrapper {
  position: relative;
  z-index: 1;
  height: calc(100% - 50px - 50px);
  display: flex;
  transition: height 0.2s;
}
.panel-active--calendar .content__wrapper {
  height: calc(100% - 50px - 50px - 312px);
}
.app-public .content__wrapper {
  height: calc(100% - 50px) !important;
}

.content__view {
  position: relative;
  height: 100%;
  width: calc(100% - 330px);
}

.content__panel {
  position: relative;
  height: 100%;
  width: 330px;
  transition: width 0.2s;
  flex-shrink: 0;
  z-index: 1;
  border-left: 2px solid #ddd;
}

.calendar-panel__wrapper {
  position: relative;
  height: 50px;
  width: 100%;
  transition: height 0.2s;
}
.panel-active--calendar .calendar-panel__wrapper {
  height: calc(312px + 50px);
}
.app-public .calendar-panel__wrapper {
  display: none !important;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.panel__options {
  display: flex;
  background: #eee;
}

.panel__option {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}
.panel__option.panel-active {
  background: #ccc;
  cursor: unset;
}
.panel__option:not(.panel-active) {
  color: #aaa;
}
@media (hover: hover) {
  .panel__option:not(.panel-active):hover {
    background: #ccc;
    color: #222;
  }
}
.panel__option--calendar {
  color: #fff !important;
}
.panel__option--calendar.button-disabled {
  transition: none !important;
  color: #666 !important;
  background-color: transparent !important;
  cursor: default !important;
}
@media (hover: hover) {
  .panel__option--calendar:hover:not(.button-disabled) {
    background-color: var(--primary-color) !important;
    color: var(--text-color-highlighted) !important;
  }
}
.panel__option--calendar:before {
  display: inline-block;
  transition: transform 0.2s;
}
.panel-active--calendar .panel__option--calendar:before {
  transform: rotate(180deg);
}

.app-public #panel-option-protocols {
  display: none;
}

.panel__options-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 50px;
  padding: 0 0 0 16px;
  flex: 1;
}

.calendar-panel__options {
  background: #000;
  color: #fff;
  height: 50px;
  display: flex;
}
.calendar-panel__options .panel__option {
  flex-shrink: 0;
}
.app-public .calendar-panel__options {
  display: none !important;
}

.panel__content {
  display: none;
  height: calc(100% - 50px);
  width: 100%;
  overflow: auto;
}
.panel__content.panel-active {
  display: block;
}

.panel__empty {
  padding: 80px 0;
  color: #aaa;
  text-align: center;
  font-size: 16px;
}

.panel-content-loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  display: none;
}
.panel-content-loading.panel-loading-active {
  display: block;
}
.panel-content-loading.panel__empty {
  padding-top: 130px;
}

.calendar-panel__options-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 50px;
  padding: 0 16px;
  flex: 1;
}

.calendar-panel__content {
  background: #eee;
  display: flex;
  height: 312px;
}

.calendar-panel__datepicker {
  height: 100%;
  width: 294px;
  flex-shrink: 0;
}

.calendar-panel__rows {
  position: relative;
  flex: 1;
}
.calendar-panel__rows .panel__empty {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

#panel-content-tree,
#panel-content-chart__node-list {
  padding: 8px;
}

#panel-content-chart__node-list.chart-active > .category-tree__wrapper:not(.chart-active-current) {
  display: none;
}

.category-tree__title-container {
  display: flex;
}

.category-tree__children-toggler,
.category-tree__visibility-toggler,
.category-tree__color-selector {
  position: relative;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  flex-shrink: 0;
  font-size: 24px;
}
.category-tree__children-toggler.icon-right:before,
.category-tree__visibility-toggler.icon-right:before,
.category-tree__color-selector.icon-right:before {
  display: inline-block;
  transition: transform 0.2s;
}
.category-tree__children-toggler.icon-right, .category-tree__children-toggler.icon-checkbox, .category-tree__children-toggler.icon-checkbox-checked,
.category-tree__visibility-toggler.icon-right,
.category-tree__visibility-toggler.icon-checkbox,
.category-tree__visibility-toggler.icon-checkbox-checked,
.category-tree__color-selector.icon-right,
.category-tree__color-selector.icon-checkbox,
.category-tree__color-selector.icon-checkbox-checked {
  cursor: pointer;
}
@media (hover: hover) {
  .category-tree__children-toggler.icon-right:hover, .category-tree__children-toggler.icon-checkbox:hover, .category-tree__children-toggler.icon-checkbox-checked:hover,
  .category-tree__visibility-toggler.icon-right:hover,
  .category-tree__visibility-toggler.icon-checkbox:hover,
  .category-tree__visibility-toggler.icon-checkbox-checked:hover,
  .category-tree__color-selector.icon-right:hover,
  .category-tree__color-selector.icon-checkbox:hover,
  .category-tree__color-selector.icon-checkbox-checked:hover {
    background: #ddd;
  }
}

.category-tree__color-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.category-tree__children-toggler.children-active:before {
  transform: rotate(90deg);
}

.category-tree__title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  line-height: 42px;
  text-overflow: ellipsis;
}

.category-tree__children {
  display: none;
  padding: 0 0 0 calc(42px / 2);
}
.category-tree__children.category-tree-active {
  display: block;
}
.category-tree__children.category-tree-limit > .category-tree__wrapper:nth-child(n+26) {
  display: none;
}

.category-tree__show-all-children {
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  color: #888;
  padding: 0 0 0 16px;
  margin: 0 0 0 26px;
  cursor: pointer;
}
@media (hover: hover) {
  .category-tree__show-all-children:hover {
    background: #ddd;
    color: #000;
  }
}

.category-tree__calendar-data-container,
.category-tree__calendar-data-title-container {
  flex-shrink: 0;
  line-height: 18px;
  padding: 12px 0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
  display: none;
}
.calendar-tree-active .category-tree__calendar-data-container,
.calendar-tree-active .category-tree__calendar-data-title-container {
  display: block;
}

.category-tree__calendar-data-title-container {
  padding-bottom: 0;
  padding-top: 7px;
  align-self: flex-start;
}

.category-tree__calendar-data-container[data-content=startShouldIs], .category-tree__calendar-data-container[data-content=endShouldIs],
.category-tree__calendar-data-title-container[data-content=startShouldIs],
.category-tree__calendar-data-title-container[data-content=endShouldIs] {
  width: 75px;
}
.category-tree__calendar-data-container[data-content=durationShouldIs],
.category-tree__calendar-data-title-container[data-content=durationShouldIs] {
  width: 40px;
}
.category-tree__calendar-data-container[data-content=differenceDuration],
.category-tree__calendar-data-title-container[data-content=differenceDuration] {
  width: 40px;
}
.category-tree__calendar-data-container[data-content=amount],
.category-tree__calendar-data-title-container[data-content=amount] {
  width: 70px;
}
.category-tree__calendar-data-container[data-content=status],
.category-tree__calendar-data-title-container[data-content=status] {
  width: 70px;
  padding-right: 4px;
}

.category-tree__calendar-data-title-visibility-toggler {
  width: 42px;
  margin-right: 8px;
}

.viewer-buttons {
  position: absolute;
  right: calc(100% + 2px);
  top: 0;
  display: flex;
}
.viewer-buttons.buttons-disabled {
  display: none;
}

.viewer-button {
  color: #000;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .viewer-button:hover {
    background: var(--primary-color);
    color: var(--text-color-highlighted);
  }
}
.viewer-button.icon-flip.flip-active {
  transform: scaleX(-1);
}

.bookmarks__container {
  width: 578px;
  padding: 16px 16px 0 18px;
}
.bookmarks__container.no-bookmarks, .app-public .bookmarks__container {
  display: none;
}

.bookmarks__list {
  padding: 0 0 16px;
  margin: 0 0 16px;
  border-bottom: 2px solid #ddd;
}

.bookmarks__title {
  font-weight: bold;
}

.bookmark__container {
  position: relative;
  display: flex;
  height: 42px;
  line-height: 42px;
}

.bookmark__button {
  padding: 0 8px 0 4px;
  display: flex;
  flex: 1;
  transition: background-color 200ms, color 200ms;
  cursor: pointer;
  width: calc(100% - 42px - 42px);
}
@media (hover: hover) {
  .bookmark__button:hover {
    background-color: #ddd;
  }
}

.bookmark__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.bookmark__icon,
.bookmark__edit-button,
.bookmark__remove-button {
  width: 42px;
  text-align: center;
  font-size: 24px;
  flex-shrink: 0;
  color: #ccc;
  transition: background-color 200ms, color 200ms, opacity 200ms;
  cursor: pointer;
}
@media (hover: hover) {
  .bookmark__icon:hover,
  .bookmark__edit-button:hover,
  .bookmark__remove-button:hover {
    color: #000;
    background-color: #ddd;
  }
}

.bookmark__icon {
  color: #000;
}

.bookmark__edit-button,
.bookmark__remove-button {
  opacity: 0;
}
.bookmark__container:hover .bookmark__edit-button,
.bookmark__container:hover .bookmark__remove-button {
  opacity: 1;
}

.bookmark_edit-name-container {
  padding: 16px;
}
.bookmark_edit-name-container .textfield {
  display: block;
  width: 488px;
  text-align: center;
  margin: 0 0 8px;
}
.bookmark_edit-name-container .button {
  display: block;
  padding-left: 80px;
  padding-right: 80px;
  margin: auto;
}

#panel-content-map {
  display: none;
  padding: 8px;
}
#panel-content-map.map-active {
  display: block;
}

.map-select__wrapper {
  display: flex;
}

.map-select__radio-button {
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
}
@media (hover: hover) {
  .map-select__radio-button:hover {
    background: #ddd;
  }
}

.map-select__title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 42px;
}

.calendar-tree__time {
  margin: 16px 8px 0;
  border-top: 2px solid #ddd;
  font-size: 14px;
  color: #888;
  padding: 8px 0 0;
}

.calendar-tree__container:first-child .calendar-tree__time {
  margin-top: 0;
}

#panel-content-schedule {
  padding: 8px;
  max-height: 100%;
  overflow: auto;
}
#panel-content-schedule .panel__empty {
  padding: 40px 0;
}

#panel-content-chart__node-list .category-tree__title,
#panel-content-schedule .category-tree__title {
  white-space: normal;
  line-height: 22px;
  padding: 10px 0;
  font-size: 14px;
}

#panel-content-chart__node-list .category-tree__wrapper .category-tree__children {
  padding-left: 0;
}

.property-list__wrapper {
  padding: 8px 16px 16px;
  font-size: 14px;
  word-break: break-word;
}

.property__container {
  margin: 8px 0 0;
}
.property__container:first-child {
  margin-top: 0;
}
.property__container--title {
  margin-top: 24px;
}
.property__container a {
  color: #888;
  text-decoration: none;
}
@media (hover: hover) {
  .property__container a:hover {
    text-decoration: underline;
  }
}
.property__container--link b {
  font-weight: 500;
  word-break: break-word;
}

.issues__wrapper {
  display: flex;
  height: calc(100% - 8px);
  flex-direction: column;
  margin: 8px 0 0;
}

.issues__issues {
  flex: 1;
  overflow: auto;
}

.issues__footer {
  flex-shrink: 0;
  padding: 16px;
  display: flex;
  justify-content: space-between;
}

.issues__create-button {
  display: block;
  width: 100%;
  text-align: left;
  flex: 1;
}

.issues__reload-button,
.issues__pushpins-button,
.issues__download-button,
.issues__filter-button {
  padding: 0;
  width: 42px;
  margin: 0 0 0 6px;
  flex-shrink: 0;
}

.issues__download-button {
  display: none;
}
.is-admin .issues__download-button {
  display: block;
}

.issues__filter-button {
  display: none;
}

.issues__container {
  margin: 16px;
  padding: 8px 16px;
  border-left: 2px solid #ccc;
  background: #eee;
  transition: border-color 0.2s;
  cursor: pointer;
  position: relative;
}
.issues__container:first-child {
  margin-top: 8px;
}
.issues__container:last-child {
  margin-bottom: 0;
}
@media (hover: hover) {
  .issues__container:hover {
    border-color: #000;
  }
}

.issues__title {
  line-height: 1.4;
}

.issues__created {
  color: #888;
  font-size: 12px;
}

.issues__has-pushpin {
  position: absolute;
  top: 8px;
  right: 4px;
  font-size: 16px;
  height: 16px;
  line-height: 16px;
  width: 16px;
  text-align: center;
}

.protocol-list__wrapper {
  padding: 0 16px;
}

.protocol-list__protocol-wrapper {
  padding: 16px 0;
  border-bottom: 2px solid #ddd;
}
.protocol-list__protocol-wrapper:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.protocol-list__protocol-header {
  position: relative;
  padding: 0 0 8px;
  min-height: 42px;
  display: flex;
}

.protocol-list__protocol-title {
  flex: 1;
  padding: 0 8px 0 0;
  align-self: center;
  line-height: 1.4;
}

.protocol-list__add-inspection-button {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  overflow: hidden;
  transition: background-color 200ms, color 200ms;
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
}
@media (hover: hover) {
  .protocol-list__add-inspection-button:hover {
    color: #fff;
    background: #000;
  }
}

.inspection-button__wrapper {
  background: #eee;
  border-left: 2px solid #ccc;
  transition: border-color 200ms, background-color 200ms;
  padding: 8px 16px;
  margin: 0 0 8px;
  cursor: pointer;
}
.inspection-button__wrapper.no-inspections {
  cursor: default;
  border-left: 0;
  text-align: center;
  color: #aaa;
  background: #eee !important;
}
.inspection-button__wrapper:last-child {
  margin-bottom: 0;
}
@media (hover: hover) {
  .inspection-button__wrapper:hover {
    background: #ddd;
    border-color: #000;
  }
}

.inspection-button__wrapper-outer {
  position: relative;
  padding: 0 42px 0 0;
}

.protocol-list__ispections-wrapper {
  position: relative;
}

.inspection-button__date {
  font-size: 14px;
  color: #aaa;
}

.protocol-list__add-button {
  width: 100%;
}

.inspection-button__pdf-link,
.inspection-button__push-pins {
  position: absolute;
  right: 0;
  width: 42px;
  text-align: center;
  font-size: 24px;
  background: #eee;
  transition: background-color 250ms, color 250ms;
  cursor: pointer;
  color: #aaa;
  overflow: hidden;
  font-size: 18px;
}
@media (hover: hover) {
  .inspection-button__pdf-link:hover,
  .inspection-button__push-pins:hover {
    background: #000;
    color: #fff !important;
  }
}
.inspection-button__pdf-link:before,
.inspection-button__push-pins:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.inspection-button__pdf-link {
  top: 0;
  height: 32px;
}

.inspection-button__push-pins {
  bottom: 0;
  height: 32px;
}
.push-pins-active .inspection-button__push-pins {
  color: #000;
}

.inspection-button__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.protocol-modal__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.protocol-modal__section {
  display: none;
  flex: 1;
  flex-direction: column;
  height: calc(100% - 48px);
}
.protocol-modal__section.section-active {
  display: flex;
}

.protocol-modal__nav-wrapper {
  display: flex;
  padding: 8px 16px 0;
}

.protocol-modal__nav-button {
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: color 200ms, border-color 250ms;
  cursor: pointer;
  width: 50%;
  border-bottom: 2px solid #ccc;
}
.protocol-modal__nav-button.button-active {
  border-color: #000;
}
@media (hover: hover) {
  .protocol-modal__nav-button:hover {
    border-color: #000;
  }
}

.protocol-modal__input-wrapper input {
  display: block;
  width: 100%;
}

.protocol-modal__input-row {
  margin: 0 0 16px;
}
.protocol-modal__input-row:last-child {
  margin-bottom: 0;
}
.protocol-modal__input-row[data-items="2"] {
  display: flex;
  justify-content: space-between;
}
.protocol-modal__input-row[data-items="2"] .protocol-modal__input-wrapper {
  width: calc(50% - 4px);
}
.protocol-modal__input-row--inspectors .protocol-modal__input-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 0 8px;
}
.protocol-modal__input-row--inspectors .protocol-modal__input-wrapper input {
  width: calc(50% - 4px - 4px - 22.5px);
}
.protocol-modal__input-row--inspectors .edit-protocol__inspectors_signature-button {
  width: 45px;
  height: 45px;
  line-height: 41px;
  text-align: center;
  font-size: 24px;
  overflow: visible;
  padding: 0;
}
.protocol-modal__input-row--inspectors .edit-protocol__inspectors_signature-button.has-signature {
  color: #000;
}

.protocol-modal__input-label {
  font-weight: 500;
  font-weight: 500;
  margin: 0 0 4px;
}

#edit-protocol__description {
  display: block;
  width: 100%;
  resize: none;
}

#edit-protocol__save-button {
  display: block;
  width: 100%;
}

.protocol-modal__items-wrapper,
.protocol-modal__form-wrapper {
  flex: 1;
  padding: 16px;
  overflow: auto;
}

.protocol-modal__footer {
  padding: 16px 0;
  flex-shrink: 0;
  margin: 0 16px;
  border-top: 2px solid #ddd;
}

#add-protocol-item-button {
  display: block;
  width: 100%;
}

.edit-protocol__add-inspector-button {
  display: flex;
  line-height: 30px;
  cursor: pointer;
  margin: -8px 0 0;
}
.edit-protocol__add-inspector-button i {
  display: inline-block;
  flex-shrink: 0;
  line-height: 30px;
  font-size: 17px;
  width: 22px;
  text-align: center;
}
.edit-protocol__add-inspector-button span {
  font-size: 14px;
}

.category-issues__category-wrapper {
  margin: 0 0 16px;
}
.category-issues__category-wrapper:last-child {
  margin-bottom: 0;
}

.category-issues__category-title {
  font-weight: 500;
  margin: 0 0 8px;
}

.issue-button__wrapper {
  background: #eee;
  border-left: 2px solid #ccc;
  transition: border-color 200ms, background-color 200ms;
  padding: 8px 16px;
  margin: 0 0 8px;
  cursor: pointer;
}
.issue-button__wrapper:last-child {
  margin-bottom: 0;
}
@media (hover: hover) {
  .issue-button__wrapper:hover {
    background: #ddd;
    border-color: #000;
  }
}

.category-issues__no-issues.panel__empty {
  text-align: left;
  padding: 0;
}

.signature-pad__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000;
  z-index: 20002;
  display: none;
}
.signature-pad__wrapper.signature-pad-active {
  display: block;
}

.signature-pad__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 340px;
}

.signature-pad__canvas {
  width: 600px;
  height: 340px;
}

.signature-pad__container {
  background: #fff;
}

.signature-pad__clear-button,
.signature-pad__close-button {
  width: 42px;
  height: 42px;
  font-size: 24px;
  color: #fff;
  transition: color 250ms;
  line-height: 42px;
  text-align: center;
  position: absolute;
  bottom: 100%;
  cursor: pointer;
}
@media (hover: hover) {
  .signature-pad__clear-button:hover,
  .signature-pad__close-button:hover {
    color: var(--primary-color);
  }
}

.signature-pad__clear-button {
  left: 0;
}

.signature-pad__close-button {
  right: 0;
}

.signature-pad__save-button {
  display: inline-block;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}

#protocol-item-modal-content {
  height: 100%;
}

.protocol-item-modal__content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.protocol-item-modal__content .textfield,
.protocol-item-modal__content .textfield-button {
  width: 100%;
  margin: 0 0 8px;
}
.protocol-item-modal__content textarea.textfield {
  resize: none;
}
.protocol-item-modal__content .button {
  display: block;
  width: 100%;
  margin: 0;
}

.protocol-item-modal__header,
.protocol-item-modal__footer {
  flex-shrink: 0;
}

.protocol-item-modal__header {
  padding: 16px 0 8px;
  margin: 0 16px;
  border-bottom: 2px solid #ddd;
}

.protocol-item-modal__footer {
  padding: 16px 0;
  margin: 0 16px;
  border-top: 2px solid #ddd;
}

.protocol-item-modal__options {
  flex: 1;
  padding: 8px 0;
  margin: 0 16px;
  overflow: auto;
}

.protocol-item-modal__buttons-container {
  display: flex;
  justify-content: space-between;
}

#protocol-item-modal__components-button {
  width: calc(50% - 4px);
  flex-shrink: 0;
  color: #888;
  cursor: pointer;
}
#protocol-item-modal__components-button:hover {
  color: #222;
}

#protocol-item-modal__pushpin-button {
  padding-left: 50px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  width: calc(50% - 4px);
}
@media (hover: hover) {
  #protocol-item-modal__pushpin-button:hover {
    border-color: #000;
  }
  #protocol-item-modal__pushpin-button:hover .protocol-item-modal__pushpin-icon,
  #protocol-item-modal__pushpin-button:hover .protocol-item-modal__pushpin-text {
    color: #000;
  }
}

.protocol-item-modal__pushpin-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 0;
  color: #ccc;
}
.push-pin-added .protocol-item-modal__pushpin-icon, .attachment-added .protocol-item-modal__pushpin-icon {
  color: #000;
}

.protocol-item-modal__pushpin-text {
  color: #888;
}

.protocol-item-modal__add-attachments-indicator {
  display: none;
}
.protocol-item-modal__add-attachments-indicator.add-attachments-active {
  display: block;
}
@media (hover: hover) {
  .protocol-item-modal__add-attachments-indicator:hover .protocol-item-modal__add-attachments-count {
    color: #888 !important;
  }
}

.protocol-item-modal__camera-button,
.protocol-item-modal__attachments,
.protocol-item-modal__add-attachments-indicator {
  width: auto !important;
  margin-left: 8px !important;
  flex-shrink: 0;
}

.protocol-item-modal__camera-button {
  display: none;
}
.is-mobile-device .protocol-item-modal__camera-button {
  display: block;
}

.protocol-item-modal__attachments {
  display: none;
  padding-left: 44px !important;
  padding-right: 20px !important;
}
.protocol-item-modal__attachments.attachment-tooltip-open {
  border-color: #000;
}
.protocol-item-modal__attachments.attachments-active {
  display: block;
}
@media (hover: hover) {
  .protocol-item-modal__attachments:hover .protocol-item-modal__attachments-count {
    color: #888 !important;
  }
}

.protocol-item-modal__option-wrapper {
  background: #eee;
  margin: 8px 0;
}

.protocol-item-modal__option-header {
  border-left: 2px solid #ccc;
  transition: border-color 200ms, background-color 200ms;
  cursor: pointer;
  display: flex;
}
@media (hover: hover) {
  .protocol-item-modal__option-header:hover {
    background: #ddd;
    border-color: #000;
  }
}
.option-active .protocol-item-modal__option-header {
  border-color: #000;
  background: #ddd;
}

.protocol-item-modal__option-title {
  padding: 8px 16px;
  flex: 1;
}

.protocol-item-modal__option-toggle-icon {
  flex-shrink: 0;
  width: 40px;
  pointer-events: none;
  align-self: center;
  font-size: 24px;
  transition: transform 200ms;
  text-align: center;
}
.option-active .protocol-item-modal__option-toggle-icon {
  transform: rotate(-180deg);
}

.protocol-item-modal__option-content {
  display: none;
  border-left: 2px solid #ccc;
  padding: 12px 16px;
}
.protocol-item-modal__option-content--text input, .protocol-item-modal__option-content--number input {
  width: 100%;
  margin: 0 !important;
}

.protocol-item-modal__value-container {
  cursor: pointer;
  display: flex;
  align-self: center;
  position: relative;
}
.protocol-item-modal__value-container--color {
  padding-left: 12px;
}
.protocol-item-modal__value-container--color:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
}
.protocol-item-modal__value-container--green:after {
  background: #2bd960;
}
.protocol-item-modal__value-container--yellow:after {
  background: #fff000;
}
.protocol-item-modal__value-container--orange:after {
  background: #ffb400;
}
.protocol-item-modal__value-container--red:after {
  background: #ff0033;
}
.protocol-item-modal__value-container--blue:after {
  background: #1a8cff;
}
.protocol-item-modal__value-container--purple:after {
  background: #a800ff;
}
.protocol-item-modal__value-container--pink:after {
  background: #ff00ff;
}
.protocol-item-modal__value-container--black:after {
  background: #000;
}
.protocol-item-modal__value-container--gray:after {
  color: #ccc;
}

.protocol-item-modal__value-toggler {
  font-size: 24px;
  margin: 0 8px 0 0;
  align-self: center;
}

.protocol-item-modal__value-title {
  align-self: center;
}

.create-issue__modal-content {
  padding: 8px;
}
.create-issue__modal-content .textfield,
.create-issue__modal-content .textfield-button {
  width: 100%;
  margin: 0 0 8px;
}
.create-issue__modal-content textarea.textfield {
  resize: none;
}
.create-issue__modal-content .button {
  display: block;
  width: 100%;
  margin: 0;
}

.issue-category-select__wrapper,
.protocol-category-select__wrapper {
  position: relative;
  z-index: 10;
  padding: 0 !important;
  margin: 0 0 8px;
}
@media (hover: hover) {
  .issue-category-select__wrapper:hover, .issue-category-select__wrapper:hover .issue-category-select__options, .issue-category-select__wrapper:hover .protocol-category-select__options,
  .protocol-category-select__wrapper:hover,
  .protocol-category-select__wrapper:hover .issue-category-select__options,
  .protocol-category-select__wrapper:hover .protocol-category-select__options {
    border-color: #000;
  }
}

.issue-category-select__container,
.protocol-category-select__container {
  cursor: pointer;
  display: flex;
}

.issue-category-select__placeholder,
.issue-category-select__selection,
.protocol-category-select__placeholder,
.protocol-category-select__selection {
  flex: 1;
  padding: 6px 16px;
}

.issue-category-select__toggler,
.protocol-category-select__toggler {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  flex-shrink: 0;
  font-size: 24px;
}

.type-selected .issue-category-select__placeholder,
.type-selected .protocol-category-select__placeholder {
  display: none;
}

.issue-category-select__selection,
.protocol-category-select__selection {
  display: none;
}
.type-selected .issue-category-select__selection,
.type-selected .protocol-category-select__selection {
  display: block;
}

.issue-category-select__option-title,
.protocol-category-select__option-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  margin: 16px 0 8px;
}
.issue-category-select__option-title:first-child,
.protocol-category-select__option-title:first-child {
  margin-top: 8px;
}

.issue-category-select__option-button,
.protocol-category-select__option-button {
  padding: 0 0 0 16px;
  line-height: 32px;
  transition: background-color 0.2s;
  cursor: pointer;
}
@media (hover: hover) {
  .issue-category-select__option-button:hover,
  .protocol-category-select__option-button:hover {
    background: #eee;
  }
}

.issue-category-select__options,
.protocol-category-select__options {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: -2px;
  right: -2px;
  background: #fff;
  max-height: 290px;
  overflow: auto;
  border: 2px solid #ddd;
  padding: 0 16px 8px;
  transition: border-color 0.2s;
}
.options-expanded .issue-category-select__options,
.options-expanded .protocol-category-select__options {
  display: block;
}

.protocol-category-select__options {
  padding: 8px 0;
}

.edit-issue__add-attachments-wrapper {
  display: none;
}
.edit-issue__add-attachments-wrapper.feature-attachments-enabled {
  display: flex;
}

.protocol-item-modal__add-attachments-wrapper {
  display: flex;
}

.edit-issue__add-attachments-indicator,
.protocol-item-modal__add-attachments-indicator {
  display: none;
}
.edit-issue__add-attachments-indicator.add-attachments-active,
.protocol-item-modal__add-attachments-indicator.add-attachments-active {
  display: block;
}
@media (hover: hover) {
  .edit-issue__add-attachments-indicator:hover .edit-issue__add-attachments-count,
  .edit-issue__add-attachments-indicator:hover .protocol-item-modal__add-attachments-count,
  .protocol-item-modal__add-attachments-indicator:hover .edit-issue__add-attachments-count,
  .protocol-item-modal__add-attachments-indicator:hover .protocol-item-modal__add-attachments-count {
    color: #888 !important;
  }
}

.edit-issue__camera-button,
.edit-issue__attachments,
.edit-issue__add-attachments-indicator,
.protocol-item-modal__camera-button,
.protocol-item-modal__attachments,
.protocol-item-modal__add-attachments-indicator {
  width: auto !important;
  margin-left: 8px !important;
  flex-shrink: 0;
}

.edit-issue__camera-button,
.protocol-item-modal__camera-button {
  display: none;
}
.is-mobile-device .edit-issue__camera-button,
.is-mobile-device .protocol-item-modal__camera-button {
  display: block;
}

.edit-issue__attachments,
.protocol-item-modal__attachments {
  display: none;
  padding-left: 44px !important;
  padding-right: 20px !important;
}
.edit-issue__attachments.attachment-tooltip-open,
.protocol-item-modal__attachments.attachment-tooltip-open {
  border-color: #000;
}
.edit-issue__attachments.attachments-active,
.protocol-item-modal__attachments.attachments-active {
  display: block;
}
@media (hover: hover) {
  .edit-issue__attachments:hover .edit-issue__attachments-count,
  .edit-issue__attachments:hover .protocol-item-modal__add-attachments-count,
  .protocol-item-modal__attachments:hover .edit-issue__attachments-count,
  .protocol-item-modal__attachments:hover .protocol-item-modal__add-attachments-count {
    color: #888 !important;
  }
}

#create-issue__modal-pushpin-button {
  padding-left: 50px;
  position: relative;
  cursor: pointer;
}
@media (hover: hover) {
  #create-issue__modal-pushpin-button:hover {
    border-color: #000;
  }
  #create-issue__modal-pushpin-button:hover .create-issue__modal-pushpin-icon,
  #create-issue__modal-pushpin-button:hover .create-issue__modal-pushpin-text {
    color: #000;
  }
}

.create-issue__modal-pushpin-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 0;
  color: #ccc;
}
.push-pin-added .create-issue__modal-pushpin-icon, .attachment-added .create-issue__modal-pushpin-icon {
  color: #000;
}

.create-issue__modal-pushpin-text {
  color: #888;
}

.show-issue-modal__wrapper {
  position: relative;
  padding: 16px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.show-issue-modal__title {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 8px;
  padding: 0;
  flex-shrink: 0;
}

.show-issue-modal__subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 8px;
  padding: 0;
  flex-shrink: 0;
}

.show-issue-modal__attachments,
.show-issue-modal__description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
  padding: 0;
  flex-shrink: 0;
}
.show-issue-modal__attachments--empty, .show-issue-modal__attachments--loading,
.show-issue-modal__description--empty,
.show-issue-modal__description--loading {
  color: #aaa;
  font-style: italic;
}

.show-issue-modal__created {
  color: #888;
  font-size: 14px;
  flex-shrink: 0;
  margin: 0 0 8px;
}

.show-issue-modal__comments-title {
  flex-shrink: 0;
  padding: 8px 16px;
  background: #ccc;
}

.show-issue-modal__comments {
  flex: 1;
  border: 2px solid #ccc;
  border-top: 0;
  padding: 8px 16px;
  background: #eee;
}

.show-issue-modal__comments-first-notice.panel__empty {
  color: #222;
}

.show-issue-modal__comments-add {
  flex-shrink: 0;
  border: 2px solid #ccc;
  border-top: 0;
  border-bottom: 0;
  background: #eee;
  padding: 8px;
  display: flex;
}
.show-issue-modal__comments-add button {
  flex-shrink: 0;
  margin: 0 0 0 8px;
  width: 42px;
  padding: 0;
  box-shadow: 0 0 0 1px #eee, 0 0 0 0 #c0c0c0;
}
@media (hover: hover) {
  .show-issue-modal__comments-add button:hover {
    box-shadow: 0 0 0 1px #eee, 0 0 0 4px #c0c0c0;
  }
}
.show-issue-modal__comments-add input {
  display: block;
  flex: 1;
}

.show-issue-modal__comment-wrapper {
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 2px solid #ccc;
}
.show-issue-modal__comment-wrapper:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.show-issue-modal__comment-created {
  color: #888;
  font-size: 14px;
  flex-shrink: 0;
}

.show-issue-modal__comment-author {
  font-weight: 500;
  margin: 2px 0;
}

.components__notice,
.pushpin__notice,
.components__selected-button {
  position: absolute;
  z-index: 5;
  top: calc(50px + 16px);
  left: 50%;
  transform: translateX(-50%);
  margin-left: -165px;
  background: #000;
  color: #fff;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
  font-weight: 500;
  display: none;
}
.components__notice.pushpin-notice-active, .components__notice.components-notice-active, .components__notice.components-selected-button-active,
.pushpin__notice.pushpin-notice-active,
.pushpin__notice.components-notice-active,
.pushpin__notice.components-selected-button-active,
.components__selected-button.pushpin-notice-active,
.components__selected-button.components-notice-active,
.components__selected-button.components-selected-button-active {
  display: block;
}

.components__selected-button {
  top: auto;
  bottom: 140px;
  cursor: pointer;
  background: var(--primary-color);
}

.show-issue-modal__attachments {
  display: flex;
  flex-wrap: wrap;
  margin: -4px -4px 20px;
}

.show-issue-modal__attachment {
  padding: 4px;
}
.show-issue-modal__attachment > a {
  display: block;
  text-decoration: none !important;
}
@media (hover: hover) {
  .show-issue-modal__attachment > a:hover .show-issue-modal__attachment-file {
    box-shadow: inset 0 0 0 2px rgb(0, 0, 0);
  }
  .show-issue-modal__attachment > a:hover .show-issue-modal__attachment-name {
    color: #000;
  }
}

.show-issue-modal__attachment-file {
  width: 74px;
  height: 74px;
  background: #eee;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  transition: box-shadow 200ms, color 200ms;
  color: #ccc;
  text-align: center;
  line-height: 74px;
  font-size: 47px;
}
.show-issue-modal__attachment-file--image {
  background: center center no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.show-issue-modal__attachment-name {
  width: 74px;
  padding: 0 4px;
  font-size: 12px;
  margin: 4px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #999;
  transition: color 200ms;
}

.edit-attachment__container {
  display: flex;
  padding: 8px 0;
  margin: 0 8px;
  border-bottom: 2px solid #ddd;
}
.edit-attachment__container:last-child {
  border-bottom: 0;
}

.edit-attachment__file {
  flex-shrink: 0;
  align-self: center;
  width: 46px;
  height: 46px;
  color: #ccc;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  background: #eee;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.edit-attachment__file--image {
  background: center center no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.edit-attachment__filename {
  flex: 1;
  align-self: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 46px;
  margin: 0 16px;
  font-size: 14px;
}

.edit-attachment__button {
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
}

.show-issue-modal__attachments-content--empty {
  padding: 8px;
  line-height: 46px;
  color: #aaa;
  text-align: center;
  font-style: italic;
}

#panel-content-chart__charts-select-container {
  padding: 8px;
  position: relative;
}
#panel-content-chart__charts-select-container select {
  width: 100%;
  line-height: 38px;
  height: 42px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  display: block;
  font-size: 16px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: none;
  position: relative;
  z-index: 1;
  padding: 0 52px 0 12px;
}
#panel-content-chart__charts-select-container .icon-down {
  pointer-events: none;
  z-index: 2;
  width: 42px;
  height: 42px;
  line-height: 42px;
  position: absolute;
  right: 8px;
  top: 8px;
  text-align: center;
  font-size: 24px;
}

#panel-content-chart__charts-canvas-container {
  position: relative;
  display: none;
}
#panel-content-chart__charts-canvas-container.chart-active {
  display: block;
}

#panel-content-chart__charts-canvas {
  width: 100%;
  height: 180px;
}

/* Element CSS */
#target {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  background: #7d0;
  box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.2), inset -1px -1px 0 0 rgba(0, 0, 0, 0.05);
}

/* Animation CSS */
[class^=animated-],
[class*=" animated-"] {
  animation-fill-mode: both;
}

@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.8) rotate(-4deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.2) rotate(4deg);
  }
  40%, 60%, 80% {
    transform: scale(1.2) rotate(-4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.animated-tada {
  animation: tada 1s;
}

@keyframes tadaSmall {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-2deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(2deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.animated-tadaSmall {
  animation: tadaSmall 1s;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animated-flash {
  animation: flash 0.5s;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-6px);
  }
  40%, 80% {
    transform: translateX(6px);
  }
}
.animated-shake {
  animation: shake 0.4s;
}

@keyframes pulseUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.animated-pulseUp {
  animation: pulseUp 0.25s;
}

@keyframes pulseDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
.animated-pulseDown {
  animation: pulseDown 0.25s;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.animated-popIn {
  animation: popIn 0.25s;
}

@keyframes popOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}
.animated-popOut {
  animation: popOut 0.25s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animated-fadeIn {
  animation: fadeIn 0.2s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.animated-fadeOut {
  animation: fadeOut 0.2s;
}

.edit-issue__screenshot-wrapper {
  margin: 0 0 8px;
}

.edit-issue__screenshot-container {
  display: flex;
}

.edit-issue__screenshot-button {
  flex: 1;
}

.edit-issue__screenshot-preview {
  flex-shrink: 0;
  margin: 0 8px 0 0;
  width: 52px;
  height: 52px;
  background: #eee no-repeat center center/cover;
}

.taking-screenshot__button {
  position: fixed;
  bottom: calc((100vh - 600px) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20002;
  display: none;
}

body.taking-screenshot #protocol-modal,
body.taking-screenshot #protocol-modal-overlay,
body.taking-screenshot #protocol-item-modal {
  visibility: hidden !important;
  pointer-events: none !important;
}
body.taking-screenshot .adsk-control,
body.taking-screenshot .nav__wrapper,
body.taking-screenshot .projects__wrapper,
body.taking-screenshot .calendar-panel__wrapper {
  display: none !important;
}
body.taking-screenshot .taking-screenshot__button {
  display: block;
}
body.taking-screenshot .content__wrapper {
  height: 100%;
}
body.taking-screenshot .content__view {
  width: 100%;
  height: 100%;
}
body.taking-screenshot .content__panel {
  display: none;
}
body.taking-screenshot .adsk-viewing-viewer,
body.taking-screenshot .content__view {
  background: #000;
}
body.taking-screenshot .adsk-viewing-viewer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 600px !important;
  width: 600px !important;
}
/*# sourceMappingURL=main.css.map */
