/* src/styles.scss */
.cdk-drag {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.cdk-drag .cdk-drag-handle {
  visibility: hidden;
  padding: 0 15px 0 3px;
}
.cdk-drag:hover .cdk-drag-handle {
  visibility: visible;
  color: #999;
}
.cdk-drag .cdk-drag-disabled:hover .cdk-drag-handle {
  visibility: hidden;
}
.cdk-drag-placeholder {
  color: transparent !important;
  background: #eee !important;
}
.cdk-drag-placeholder:hover {
  box-shadow: none;
}
.cdk-drag-placeholder * {
  color: transparent !important;
  visibility: hidden;
  box-shadow: none;
}
.cdk-drag-preview {
  box-sizing: border-box;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.08);
  background: white !important;
}
.cdk-drag-animating {
  transition: none;
}
.gantt {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  color: #333;
  opacity: 0;
}
.gantt svg {
  overflow: visible !important;
}
.gantt .gantt-side {
  border-right: 1px solid #eee;
  position: relative;
  z-index: 3;
  box-shadow: 12px 0 16px -10px rgba(0, 0, 0, 0.15);
}
.gantt .gantt-side .gantt-side-header {
  box-sizing: border-box;
  height: 44px;
}
.gantt .gantt-side .gantt-side-container {
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
}
.gantt .gantt-side .gantt-side-container .gantt-table {
  height: 100%;
}
.gantt .gantt-side .gantt-side-container::-webkit-scrollbar {
  display: none;
}
.gantt .gantt-container {
  flex: 1;
  position: relative;
  display: flex;
  overflow: hidden;
  background-color: #fafafa;
}
.gantt .gantt-scrollbar {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
}
.gantt .gantt-scrollbar .gantt-table-scrollbar.with-scrollbar {
  overflow-x: scroll;
}
.gantt .gantt-scrollbar .gantt-main-scrollbar {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
}
.gantt .gantt-main-container {
  width: 100%;
  height: calc(100% - 44px);
  flex: 1;
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  background-color: #fafafa;
}
.gantt .gantt-main-container .gantt-main-groups,
.gantt .gantt-main-container .gantt-main-items {
  overflow: hidden;
  min-height: 100%;
}
.gantt .gantt-main-container .gantt-group {
  height: 44px;
  background: rgba(243, 243, 243, 0.5);
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}
.gantt .gantt-main-container .gantt-item {
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.gantt .gantt-main-container .gantt-item.gantt-main-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt .gantt-normal-viewport {
  display: flex;
}
.gantt .gantt-virtual-scroll-viewport {
  position: absolute;
  left: 0;
  top: 44px;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: auto;
}
.gantt .gantt-virtual-scroll-viewport.with-footer .gantt-table-body {
  padding-bottom: 44px;
}
.gantt .gantt-virtual-scroll-viewport.with-footer .gantt-main-groups,
.gantt .gantt-virtual-scroll-viewport.with-footer .gantt-main-items {
  padding-bottom: 44px;
}
.gantt .gantt-virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper {
  width: 100%;
  min-width: unset;
  display: flex;
  min-height: 100%;
}
.gantt .gantt-virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper .gantt-container .gantt-main-container {
  height: 100%;
  top: 0;
  overflow-y: hidden;
}
.gantt .gantt-virtual-scroll-viewport.gantt-normal-viewport .cdk-virtual-scroll-content-wrapper {
  height: 100%;
}
.gantt .gantt-virtual-scroll-viewport.gantt-normal-viewport .cdk-virtual-scroll-spacer {
  display: none;
}
.gantt .gantt-virtual-scroll-viewport.gantt-normal-viewport .gantt-container .gantt-main-container {
  overflow-y: auto;
}
.gantt-header {
  display: flex;
  overflow: hidden;
  height: 100%;
}
.gantt-header .gantt-container-header {
  flex: 1;
  overflow: hidden;
  background-color: #fafafa;
}
.gantt-footer {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: white;
  border-top: 1px solid #eee;
}
.gantt-footer .gantt-table-footer {
  height: 44px;
  border-right: 1px solid #eee;
  box-shadow: 12px 0 16px -10px rgba(0, 0, 0, 0.15);
}
.gantt-footer .gantt-container-footer {
  height: 44px;
  overflow-x: auto;
  overflow-y: hidden;
  flex: 1;
}
.gantt-footer .gantt-container-footer::-webkit-scrollbar {
  display: none;
}
.gantt-table-header {
  text-align: center;
  background: #fff;
  height: 44px;
  line-height: 44px;
  box-shadow: 12px 0 16px -10px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 3;
  border-right: 1px solid #eee;
  display: flex;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.gantt-table-header .gantt-table-header-container {
  display: flex;
}
.gantt-table-header .gantt-table-column {
  overflow: hidden;
  border-right: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.gantt-table-header .gantt-table-column:last-child {
  border-right: none;
}
.gantt-table-header-first-level-group {
  background: rgba(243, 243, 243, 0.5);
}
.gantt-table-header-with-group .gantt-table-column:first-child {
  padding: 0 15px 0 32px;
}
.gantt-table-header .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.gantt-table-header .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gantt-table-header:hover {
  background-color: #fafafa;
}
.gantt-table-header-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-header-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-header .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.gantt-table-header .gantt-table-column:last-child {
  border-right: none;
}
.gantt-table-header .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gantt-table-header .gantt-expand-icon {
  display: inline-block;
  width: 20px;
  color: #aaa;
}
.gantt-table-header .gantt-drag-handle {
  width: 1rem;
  padding: 0 5px 0 0;
  display: flex;
  align-items: center;
  margin-left: -10px;
}
.gantt-table-header:hover {
  background-color: #fafafa;
}
.gantt-table-header-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-header-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-header .gantt-table-column {
  font-weight: 400;
  z-index: 1;
}
.gantt-table-body {
  display: block;
}
.gantt-table-body .gantt-table-group {
  display: flex;
  height: 44px;
  background: rgba(243, 243, 243, 0.5);
  padding: 0 10px;
  align-items: center;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.gantt-table-body .gantt-table-group .gantt-table-group-title {
  cursor: pointer;
}
.gantt-table-body .gantt-table-group .gantt-table-group-title .expand-icon {
  color: #aaa;
  margin-right: 6px;
}
.gantt-table-body .gantt-table-item {
  display: flex;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.gantt-table-body .gantt-table-item .gantt-table-column {
  overflow: hidden;
  border-right: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.gantt-table-body .gantt-table-item .gantt-table-column:last-child {
  border-right: none;
}
.gantt-table-body .gantt-table-item-first-level-group {
  background: rgba(243, 243, 243, 0.5);
}
.gantt-table-body .gantt-table-item-with-group .gantt-table-column:first-child {
  padding: 0 15px 0 32px;
}
.gantt-table-body .gantt-table-item .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.gantt-table-body .gantt-table-item .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gantt-table-body .gantt-table-item:hover {
  background-color: #fafafa;
}
.gantt-table-body .gantt-table-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body .gantt-table-item-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body .gantt-table-item .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.gantt-table-body .gantt-table-item .gantt-table-column:last-child {
  border-right: none;
}
.gantt-table-body .gantt-table-item .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gantt-table-body .gantt-table-item .gantt-expand-icon {
  display: inline-block;
  width: 20px;
  color: #aaa;
}
.gantt-table-body .gantt-table-item .gantt-drag-handle {
  width: 1rem;
  padding: 0 5px 0 0;
  display: flex;
  align-items: center;
  margin-left: -10px;
}
.gantt-table-body .gantt-table-item:hover {
  background-color: #fafafa;
}
.gantt-table-body .gantt-table-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body .gantt-table-item-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body .gantt-expand-icon {
  display: inline-block;
  width: 20px;
  color: #aaa;
}
.gantt-table-empty {
  height: 100%;
  position: relative;
}
.gantt-table-empty .gantt-table-body-container {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 22px;
}
.gantt-table-empty .gantt-table-body-container .empty-icon svg {
  height: 78px;
  width: 78px;
}
.gantt-table-empty .gantt-table-body-container .empty-text {
  color: #cacaca;
}
.table-resize-handle,
.column-resize-handle {
  width: 3px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: ew-resize;
  height: 5000px;
}
.table-resize-handle:hover,
.column-resize-handle:hover {
  background: #6698ff;
}
.column-resize-handle {
  height: unset;
  z-index: 1;
}
.table-resize-auxiliary-line {
  width: 3px;
  background: #6698ff;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  height: 5000px;
}
.cdk-drag-preview.gantt-table-item {
  box-sizing: border-box;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.08);
  opacity: 0.9;
  display: flex;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column {
  overflow: hidden;
  border-right: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column:last-child {
  border-right: none;
}
.cdk-drag-preview.gantt-table-item-first-level-group {
  background: rgba(243, 243, 243, 0.5);
}
.cdk-drag-preview.gantt-table-item-with-group .gantt-table-column:first-child {
  padding: 0 15px 0 32px;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cdk-drag-preview.gantt-table-item:hover {
  background-color: #fafafa;
}
.cdk-drag-preview.gantt-table-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.cdk-drag-preview.gantt-table-item-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.cdk-drag-preview.gantt-table-item .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column:last-child {
  border-right: none;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cdk-drag-preview.gantt-table-item .gantt-expand-icon {
  display: inline-block;
  width: 20px;
  color: #aaa;
}
.cdk-drag-preview.gantt-table-item .gantt-drag-handle {
  width: 1rem;
  padding: 0 5px 0 0;
  display: flex;
  align-items: center;
  margin-left: -10px;
}
.cdk-drag-preview.gantt-table-item:hover {
  background-color: #fafafa;
}
.cdk-drag-preview.gantt-table-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.cdk-drag-preview.gantt-table-item-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body.gantt-table-draggable .cdk-drag-placeholder {
  display: none !important;
}
.gantt-table-body.gantt-table-draggable .cdk-drag-placeholder + .cdk-drop-list {
  display: none !important;
}
.gantt-table-body.gantt-table-draggable .cdk-drag-disabled.gantt-table-item .gantt-drag-handle svg {
  display: none;
}
.gantt-table-body.gantt-table-draggable.gantt-table-dragging .gantt-table-item:hover {
  background: unset;
}
.gantt-table-body.gantt-table-draggable.gantt-table-dragging .gantt-table-item:hover .gantt-drag-handle {
  visibility: hidden !important;
}
.gantt-table-body.gantt-table-draggable .drag-item-hide {
  display: none !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-inside .gantt-table-column {
  height: 100%;
  border-top: 2px dashed #6698ff !important;
  border-bottom: 2px dashed #6698ff !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-inside .gantt-table-column:first-child {
  border-left: 2px dashed #6698ff !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-inside .gantt-table-column:last-child {
  border-right: 2px dashed #6698ff !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-before {
  background: #f5f5f5 !important;
  border-top: 2px solid #6698ff !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-after {
  background: #f5f5f5 !important;
  border-bottom: 2px solid #6698ff !important;
}
.gantt-calendar {
  display: block;
  height: 100%;
  overflow: hidden;
}
.gantt-calendar svg {
  position: relative;
  z-index: 2;
  background-color: #fff;
  overflow: visible;
}
.gantt-calendar line {
  shape-rendering: crispEdges;
}
.gantt-calendar .primary-line {
  stroke: #ddd;
}
.gantt-calendar .gantt-calendar-today-overlay {
  position: relative;
  z-index: 1;
}
.gantt-calendar .gantt-calendar-today-overlay .today-rect {
  width: 35px;
  height: 24px;
  position: absolute;
  background: #ff9f73;
  color: #fff;
  text-align: center;
  border-radius: 4px;
}
.gantt-calendar .gantt-calendar-today-overlay .today-line {
  position: absolute;
  width: 3px;
  background: #ff9f73;
  transform: scaleX(0.5);
  transform-origin: 100% 0;
  margin-left: -2px;
}
.gantt-calendar-header {
  position: relative;
  z-index: 2;
  height: 44px;
}
.gantt-calendar-header .gantt-calendar-today-overlay {
  z-index: 2;
}
.gantt-calendar-header .header-line {
  stroke: #eee;
}
.gantt-calendar-header .primary-text {
  fill: #888;
  font-size: 14px;
}
.gantt-calendar-header .secondary-text {
  fill: #333;
  font-size: 14px;
}
.gantt-calendar-header .secondary-text-weekend {
  fill: #aaa;
}
.gantt-calendar-header .primary-text,
.gantt-calendar-header .secondary-text {
  text-anchor: middle;
}
.gantt-calendar-grid {
  position: absolute;
  width: 100%;
}
.gantt-calendar-grid .gantt-calendar-grid-main {
  background-color: transparent;
}
.gantt-calendar-grid .secondary-line {
  stroke-dasharray: 2px 5px;
  stroke: #cacaca;
}
.gantt-calendar-grid .secondary-backdrop {
  fill: rgba(243, 243, 243, 0.5);
}
.gantt-drag-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: none;
  overflow: hidden;
}
.gantt-drag-mask {
  position: absolute;
  top: 44px;
  z-index: 1;
  height: 100%;
  display: none;
  background: rgba(102, 152, 255, 0.05);
}
.gantt-drag-mask .date-range {
  width: 100%;
  min-width: 120px;
  top: -23px;
  background: #6698ff;
  line-height: 23px;
  border-radius: 4px;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  box-sizing: border-box;
}
.gantt-link-drag-container {
  width: 100%;
  height: 1px;
  overflow: visible !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
.gantt-link-drag-container .link-dragging-line {
  stroke: #6698ff;
  stroke-width: 2px;
}
.gantt-bar {
  position: absolute;
  border-radius: 4px;
  z-index: 2;
  background: #fff;
}
.gantt-bar .gantt-bar-layer {
  width: calc(100% + 32px);
  height: calc(100% + 42px);
  position: absolute;
  border-radius: 4px;
  left: -16px;
  top: -21px;
  display: none;
}
.gantt-bar .gantt-bar-layer .drag-handles {
  background: #fff;
  width: 100%;
  height: calc(100% - 16px * 2);
  position: absolute;
  border-radius: 4px;
  top: 16px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}
.gantt-bar .gantt-bar-layer .drag-handles .handle {
  width: 15px;
  height: 100%;
  position: absolute;
  cursor: col-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gantt-bar .gantt-bar-layer .drag-handles .handle:before,
.gantt-bar .gantt-bar-layer .drag-handles .handle:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #cacaca;
}
.gantt-bar .gantt-bar-layer .drag-handles .handle::before {
  margin-right: 2px;
}
.gantt-bar .gantt-bar-layer .drag-handles .handle:first-child {
  left: 0;
}
.gantt-bar .gantt-bar-layer .drag-handles .handle:last-child {
  right: 0;
}
.gantt-bar .gantt-bar-layer .link-handles .handle {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.gantt-bar .gantt-bar-layer .link-handles .handle:first-child {
  left: 0;
  top: 0;
}
.gantt-bar .gantt-bar-layer .link-handles .handle:last-child {
  right: 0;
  bottom: 0;
}
.gantt-bar .gantt-bar-layer .link-handles .handle .point {
  color: #6698ff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6698ff;
  transition: 0.3 ease;
}
.gantt-bar .gantt-bar-layer .link-handles .handle .point:hover {
  width: 12px;
  height: 12px;
}
.gantt-bar .gantt-bar-border {
  width: calc(100% + 5px * 2);
  height: calc(100% + 5px * 2);
  position: absolute;
  border-radius: 4px;
  left: -5px;
  top: -5px;
  display: none;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.gantt-bar .gantt-bar-content {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: #6698ff;
  overflow: hidden;
  box-sizing: border-box;
}
.gantt-bar .gantt-bar-content .gantt-bar-content-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.gantt-bar-active {
  z-index: 1000;
}
.gantt-bar-active .gantt-bar-layer {
  display: block;
  z-index: 1;
}
.gantt-bar-active .gantt-bar-content {
  z-index: 1;
  box-shadow: none;
}
.gantt-bar-active .cdk-drag {
  transition: none;
}
.gantt-bar-single-drop-active .gantt-bar-border {
  display: block;
}
.gantt-bar-single-drop-active .gantt-bar-content {
  box-shadow: none;
}
.gantt-bar-draggable-drag {
  z-index: 1001;
}
.gantt-bar-drop-active {
  z-index: 1000;
}
.gantt-bar-drop-active .gantt-bar-layer {
  display: block;
  z-index: 1;
}
.gantt-bar-drop-active .gantt-bar-content {
  z-index: 1;
  box-shadow: none;
}
.gantt-bar-drop-active .cdk-drag {
  transition: none;
}
.gantt-bar-drop-active .gantt-bar-layer .link-handles .handle {
  width: 26px;
  height: 100%;
}
.gantt-bar-drop-active .gantt-bar-layer .link-handles .handle:first-child {
  left: -21px;
}
.gantt-bar-drop-active .gantt-bar-layer .link-handles .handle:last-child {
  right: -21px;
}
.gantt-bar-drop-active .gantt-bar-layer .link-handles .handle:hover .point {
  width: 12px;
  height: 12px;
}
.gantt-range {
  position: absolute;
  z-index: 2;
}
.gantt-range .gantt-range-main {
  height: 10px;
  background: #dfdfdf;
  border: 1px solid #888;
  border-radius: 4px 4px 0 0;
  box-sizing: border-box;
  position: relative;
}
.gantt-range .gantt-range-main .gantt-range-main-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #888;
}
.gantt-range .gantt-range-triangle {
  width: 0;
  height: 0;
  border-top: 7px solid #888;
  position: absolute;
  top: 10px;
}
.gantt-range .gantt-range-triangle.left {
  border-right: 6px solid transparent;
  left: 0;
}
.gantt-range .gantt-range-triangle.right {
  border-left: 6px solid transparent;
  right: 0;
}
.gantt-icon {
  font-size: 1rem;
  line-height: 0;
}
.gantt-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  background-repeat: no-repeat;
}
.gantt-links-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.gantt-links-overlay svg {
  overflow: visible;
  z-index: 2;
  position: absolute;
}
.link-dragging-container {
  width: 100%;
  height: 1px;
  overflow: visible !important;
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 2000;
}
.link-dragging-container .link-dragging-line {
  stroke: #6698ff;
  stroke-width: 2px;
}
.gantt-baseline {
  position: absolute;
  z-index: 2;
}
.gantt-baseline .baseline-content {
  height: 8px;
  border-radius: 2px;
  background-color: #cacaca;
}
.gantt-toolbar {
  position: absolute;
  top: 60px;
  right: 20px;
  z-index: 1000;
}
.gantt-toolbar .toolbar-views {
  display: inline-flex;
}
.gantt-toolbar .toolbar-views .toolbar-view {
  padding: 0 15px;
  cursor: pointer;
  flex: 0 1 auto;
  border: 1px solid #ddd;
  margin-left: -1px;
  position: relative;
  background-color: #ffffff;
}
.gantt-toolbar .toolbar-views .toolbar-view.active {
  color: #6698ff;
  border-color: #6698ff;
  z-index: 1;
}
.gantt-toolbar .toolbar-views .toolbar-view:first-child {
  border-radius: 4px 0 0 4px;
}
.gantt-toolbar .toolbar-views .toolbar-view:last-child {
  border-radius: 0 4px 4px 0;
}
.gantt-loader-overlay {
  position: absolute;
  width: 100%;
  height: calc(100% - 40px);
  top: 40px;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1001;
}
.gantt-loader-wrapper {
  position: absolute;
  padding-top: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.gantt-loader-loading {
  display: inline-block;
  position: relative;
  height: 8px;
  border-radius: 4px;
  transform: translateX(-18px);
}
.gantt-loader-loading:before,
.gantt-loader-loading:after {
  content: "";
  display: block;
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 4px;
}
.gantt-loader-loading:before {
  animation: gantt-loader-loading-ellipsis-b 1s ease-in-out infinite;
  background: #6698ff;
  opacity: 0.4;
}
.gantt-loader-loading:after {
  animation: gantt-loader-loading-ellipsis-a 1s ease-in-out infinite;
  background: #6698ff;
  opacity: 0.8;
}
.gantt-loader-loading-spot {
  position: absolute;
  left: 13px;
  height: 8px;
  width: 8px;
  background: #6698ff;
  border-radius: 4px;
}
@keyframes gantt-loader-loading-ellipsis-b {
  0% {
    left: 0;
    transform: scale(1.1);
  }
  50% {
    left: 25px;
    transform: scale(1);
  }
  100% {
    left: 0;
    transform: scale(1.1);
  }
}
@keyframes gantt-loader-loading-ellipsis-a {
  0% {
    left: 25px;
    transform: scale(1.1);
  }
  50% {
    left: 0;
    transform: scale(1);
  }
  100% {
    left: 25px;
    transform: scale(1.1);
  }
}
html,
body {
  font-size: 14px;
}
.card-photo {
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
  -webkit-box-shadow: 9px 11px 12px -10px rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 9px 11px 12px -10px rgba(0, 0, 0, 0.26);
  box-shadow: 9px 11px 12px -10px rgba(0, 0, 0, 0.26);
}
.card-photo.danger {
  border: 2px solid #ff0000;
  -webkit-box-shadow: 9px 11px 12px -10px rgba(255, 0, 0, 0.7);
  -moz-box-shadow: 9px 11px 12px -10px rgba(255, 0, 0, 0.7);
  box-shadow: 9px 11px 12px -10px rgba(255, 0, 0, 0.7);
}
.card-photo.success {
  border: 2px solid #008000;
  -webkit-box-shadow: 9px 11px 12px -10px rgba(0, 128, 0, 0.7);
  -moz-box-shadow: 9px 11px 12px -10px rgba(0, 128, 0, 0.7);
  box-shadow: 9px 11px 12px -10px rgba(0, 128, 0, 0.7);
}
.card-photo.success::before {
  content: attr(status);
  position: absolute;
  background-color: #008000;
  color: #fff;
  width: 300px;
  font-size: 25px;
  padding: 10px;
  text-align: center;
  top: 50px;
  left: -70px;
  transform: rotateZ(-45deg);
  font-weight: bold;
  z-index: 1;
}
.card-photo.danger::before {
  content: attr(status);
  position: absolute;
  background-color: #ff0000;
  color: #fff;
  width: 300px;
  font-size: 25px;
  padding: 10px;
  text-align: center;
  top: 50px;
  left: -70px;
  transform: rotateZ(-45deg);
  font-weight: bold;
  z-index: 1;
}
.card-image {
  position: relative;
  cursor: pointer;
}
.card-image i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  font-size: 100px;
  opacity: 0.3;
}
.card-controls {
  padding: 10px;
}
.card-controls .btn {
  padding: 6px 5px;
}
.buttons {
  text-align: right;
}
.text small {
  color: rgba(0, 0, 0, 0.4);
}
.self-primary {
  color: #0000ff;
  border-color: #0000ff;
}
.self-primary:hover {
  color: #fff;
  background-color: #0000ff;
}
.self-danger {
  color: #ff0000;
  border-color: #ff0000;
}
.self-danger:hover {
  color: #fff;
  background-color: #ff0000;
}
.self-success {
  color: #008000;
  border-color: #008000;
}
.self-success:hover {
  color: #fff;
  background-color: #008000;
}
.self-primary.btn-default[disabled]:hover,
.self-danger.btn-default[disabled]:hover,
.self-success.btn-default[disabled]:hover {
  color: grey;
}
.noFiltersActive {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2em;
}
.multiselect-dropdown span.selected-item {
  max-width: fit-content !important;
}
svg:focus {
  outline: none;
}
.content-main-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 24px;
  width: calc(100% - 48px);
}
.content-main-page .link-page {
  font-size: 20px;
  font-weight: 900;
}
.content-main-page .link-page > i {
  margin-right: 10px;
}
.content-main-page > p-card > .p-card-content-page {
  box-shadow: none !important;
  padding: 18px 40px;
}
.content-main-page > p-card > .p-card-content-page.header {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.content-main-page > p-card > .p-card-content-page > .p-card-body {
  padding: unset !important;
}
.content-main-page:last-child {
  margin-bottom: 40px;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #003c71 transparent #0071bb transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
.p-timeline-event:nth-child(odd) .p-timeline-event-content .history-card-content {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.p-timeline-event:nth-child(even) .p-timeline-event-content .history-card-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  justify-content: space-between;
}
.p-inputtext {
  width: 100%;
}
.p-input-icon-left {
  width: 100%;
}
.p-accordionpanel-active .p-accordioncontent .p-accordioncontent-content {
  color: inherit;
}
.p-accordionpanel-active .p-accordioncontent .p-accordioncontent-content.ng-animating {
  overflow: hidden;
}
.p-accordionpanel-active .p-accordioncontent .p-accordioncontent-content:not(.ng-animating) {
  overflow: visible !important;
}
.p-accordionpanel:not(.p-accordionpanel-active) .p-accordioncontent .p-accordioncontent-content {
  overflow: hidden;
}
p-accordion-content {
  overflow: visible !important;
}
[data-pc-section=hiddenInput] {
  visibility: hidden;
}
.p-radiobutton-input[disabled] {
  visibility: hidden;
}
.p-checkbox-input[disabled] {
  visibility: hidden;
}
.control-autoComplete {
  width: 100%;
  font-size: 14px;
}
.p-dropdown {
  width: 100%;
}
.p-dropdown .p-dropdown-clear-icon {
  margin-top: -0.7rem;
}
.p-tag {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}
.p-tabs {
  --p-tabs-active-bar-height: 2px;
  --p-tabs-active-bar-bottom: -2px;
  --p-tabs-tablist-border-width: 0 0 2px 0;
  --p-tabs-tab-border-width: 0 0 2px 0;
  --p-tabs-tab-margin: 0 0 -2px 0;
}
.p-tablist {
  overflow-x: auto;
  scrollbar-width: thin;
}
.p-tooltip {
  max-width: fit-content !important;
}
.p-checkbox-input[type=checkbox] {
  width: 100%;
  height: 100%;
  margin-top: 0;
}
.p-radiobutton-input[type=radio] {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-datepicker-day-cell .p-disabled {
  color: var(--p-surface-400);
}
a {
  color: #3b82f6;
}
a:hover,
a:focus {
  color: #326fd1;
}
a:hover.p-ripple,
a:focus.p-ripple {
  text-decoration: none;
}
ul.menu-root li a + ul:not(:empty):before {
  font: normal normal normal 14px/1 "Font Awesome 7 Pro" !important;
}
section.menu .search:before {
  font: normal normal normal 14px/1 "Font Awesome 7 Pro" !important;
}
.p-selectbutton {
  --p-togglebutton-checked-background: #e2e8f0;
  --p-togglebutton-background: #e2e8f0;
  --p-togglebutton-border-color: #e2e8f0;
  --p-togglebutton-checked-border-color: #e2e8f0;
  --p-togglebutton-hover-background: #d8dee7;
}
p-autoComplete {
  --p-autocomplete-invalid-border-color: #a94442;
}
p-datePicker {
  --p-inputtext-invalid-border-color: #a94442;
}
p-togglebutton {
  --p-togglebutton-padding: 0.3rem 0.4rem;
}
.p-datatable-tbody > tr.p-datatable-row-selected > td {
  background: #e6f2fa;
  color: #000000;
}
p-toast .toast-layout {
  top: 12px !important;
  right: 12px !important;
}
p-toast .toast-layout .p-toast-summary {
  line-height: 1 !important;
}
@media (max-width: 920px) {
  p-toast .toast-layout {
    width: calc(100% - 10px) !important;
    top: 5px !important;
    right: 5px !important;
    left: 5px !important;
  }
}
.custom-galleria .p-galleria-items {
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
.custom-galleria .p-galleria-items .p-galleria-item {
  width: auto;
  height: auto;
}
.custom-galleria .p-galleria-items .p-galleria-item .img {
  transition: transform 0.15s;
}

/* node_modules/primeicons/primeicons.css */
@font-face {
  font-family: "primeicons";
  font-display: block;
  src: url("./media/primeicons.eot");
  src:
    url("./media/primeicons.eot?#iefix") format("embedded-opentype"),
    url("./media/primeicons.woff2") format("woff2"),
    url("./media/primeicons.woff") format("woff"),
    url("./media/primeicons.ttf") format("truetype"),
    url("./media/primeicons.svg?#primeicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.pi {
  font-family: "primeicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pi:before {
  --webkit-backface-visibility:hidden;
  backface-visibility: hidden;
}
.pi-fw {
  width: 1.28571429em;
  text-align: center;
}
.pi-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
@media (prefers-reduced-motion: reduce) {
  .pi-spin {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.pi-folder-plus:before {
  content: "\ea05";
}
.pi-receipt:before {
  content: "\ea06";
}
.pi-asterisk:before {
  content: "\ea07";
}
.pi-face-smile:before {
  content: "\ea08";
}
.pi-pinterest:before {
  content: "\ea09";
}
.pi-expand:before {
  content: "\ea0a";
}
.pi-pen-to-square:before {
  content: "\ea0b";
}
.pi-wave-pulse:before {
  content: "\ea0c";
}
.pi-turkish-lira:before {
  content: "\ea0d";
}
.pi-spinner-dotted:before {
  content: "\ea0e";
}
.pi-crown:before {
  content: "\ea0f";
}
.pi-pause-circle:before {
  content: "\ea10";
}
.pi-warehouse:before {
  content: "\ea11";
}
.pi-objects-column:before {
  content: "\ea12";
}
.pi-clipboard:before {
  content: "\ea13";
}
.pi-play-circle:before {
  content: "\ea14";
}
.pi-venus:before {
  content: "\ea15";
}
.pi-cart-minus:before {
  content: "\ea16";
}
.pi-file-plus:before {
  content: "\ea17";
}
.pi-microchip:before {
  content: "\ea18";
}
.pi-twitch:before {
  content: "\ea19";
}
.pi-building-columns:before {
  content: "\ea1a";
}
.pi-file-check:before {
  content: "\ea1b";
}
.pi-microchip-ai:before {
  content: "\ea1c";
}
.pi-trophy:before {
  content: "\ea1d";
}
.pi-barcode:before {
  content: "\ea1e";
}
.pi-file-arrow-up:before {
  content: "\ea1f";
}
.pi-mars:before {
  content: "\ea20";
}
.pi-tiktok:before {
  content: "\ea21";
}
.pi-arrow-up-right-and-arrow-down-left-from-center:before {
  content: "\ea22";
}
.pi-ethereum:before {
  content: "\ea23";
}
.pi-list-check:before {
  content: "\ea24";
}
.pi-thumbtack:before {
  content: "\ea25";
}
.pi-arrow-down-left-and-arrow-up-right-to-center:before {
  content: "\ea26";
}
.pi-equals:before {
  content: "\ea27";
}
.pi-lightbulb:before {
  content: "\ea28";
}
.pi-star-half:before {
  content: "\ea29";
}
.pi-address-book:before {
  content: "\ea2a";
}
.pi-chart-scatter:before {
  content: "\ea2b";
}
.pi-indian-rupee:before {
  content: "\ea2c";
}
.pi-star-half-fill:before {
  content: "\ea2d";
}
.pi-cart-arrow-down:before {
  content: "\ea2e";
}
.pi-calendar-clock:before {
  content: "\ea2f";
}
.pi-sort-up-fill:before {
  content: "\ea30";
}
.pi-sparkles:before {
  content: "\ea31";
}
.pi-bullseye:before {
  content: "\ea32";
}
.pi-sort-down-fill:before {
  content: "\ea33";
}
.pi-graduation-cap:before {
  content: "\ea34";
}
.pi-hammer:before {
  content: "\ea35";
}
.pi-bell-slash:before {
  content: "\ea36";
}
.pi-gauge:before {
  content: "\ea37";
}
.pi-shop:before {
  content: "\ea38";
}
.pi-headphones:before {
  content: "\ea39";
}
.pi-eraser:before {
  content: "\ea04";
}
.pi-stopwatch:before {
  content: "\ea01";
}
.pi-verified:before {
  content: "\ea02";
}
.pi-delete-left:before {
  content: "\ea03";
}
.pi-hourglass:before {
  content: "\e9fe";
}
.pi-truck:before {
  content: "\ea00";
}
.pi-wrench:before {
  content: "\e9ff";
}
.pi-microphone:before {
  content: "\e9fa";
}
.pi-megaphone:before {
  content: "\e9fb";
}
.pi-arrow-right-arrow-left:before {
  content: "\e9fc";
}
.pi-bitcoin:before {
  content: "\e9fd";
}
.pi-file-edit:before {
  content: "\e9f6";
}
.pi-language:before {
  content: "\e9f7";
}
.pi-file-export:before {
  content: "\e9f8";
}
.pi-file-import:before {
  content: "\e9f9";
}
.pi-file-word:before {
  content: "\e9f1";
}
.pi-gift:before {
  content: "\e9f2";
}
.pi-cart-plus:before {
  content: "\e9f3";
}
.pi-thumbs-down-fill:before {
  content: "\e9f4";
}
.pi-thumbs-up-fill:before {
  content: "\e9f5";
}
.pi-arrows-alt:before {
  content: "\e9f0";
}
.pi-calculator:before {
  content: "\e9ef";
}
.pi-sort-alt-slash:before {
  content: "\e9ee";
}
.pi-arrows-h:before {
  content: "\e9ec";
}
.pi-arrows-v:before {
  content: "\e9ed";
}
.pi-pound:before {
  content: "\e9eb";
}
.pi-prime:before {
  content: "\e9ea";
}
.pi-chart-pie:before {
  content: "\e9e9";
}
.pi-reddit:before {
  content: "\e9e8";
}
.pi-code:before {
  content: "\e9e7";
}
.pi-sync:before {
  content: "\e9e6";
}
.pi-shopping-bag:before {
  content: "\e9e5";
}
.pi-server:before {
  content: "\e9e4";
}
.pi-database:before {
  content: "\e9e3";
}
.pi-hashtag:before {
  content: "\e9e2";
}
.pi-bookmark-fill:before {
  content: "\e9df";
}
.pi-filter-fill:before {
  content: "\e9e0";
}
.pi-heart-fill:before {
  content: "\e9e1";
}
.pi-flag-fill:before {
  content: "\e9de";
}
.pi-circle:before {
  content: "\e9dc";
}
.pi-circle-fill:before {
  content: "\e9dd";
}
.pi-bolt:before {
  content: "\e9db";
}
.pi-history:before {
  content: "\e9da";
}
.pi-box:before {
  content: "\e9d9";
}
.pi-at:before {
  content: "\e9d8";
}
.pi-arrow-up-right:before {
  content: "\e9d4";
}
.pi-arrow-up-left:before {
  content: "\e9d5";
}
.pi-arrow-down-left:before {
  content: "\e9d6";
}
.pi-arrow-down-right:before {
  content: "\e9d7";
}
.pi-telegram:before {
  content: "\e9d3";
}
.pi-stop-circle:before {
  content: "\e9d2";
}
.pi-stop:before {
  content: "\e9d1";
}
.pi-whatsapp:before {
  content: "\e9d0";
}
.pi-building:before {
  content: "\e9cf";
}
.pi-qrcode:before {
  content: "\e9ce";
}
.pi-car:before {
  content: "\e9cd";
}
.pi-instagram:before {
  content: "\e9cc";
}
.pi-linkedin:before {
  content: "\e9cb";
}
.pi-send:before {
  content: "\e9ca";
}
.pi-slack:before {
  content: "\e9c9";
}
.pi-sun:before {
  content: "\e9c8";
}
.pi-moon:before {
  content: "\e9c7";
}
.pi-vimeo:before {
  content: "\e9c6";
}
.pi-youtube:before {
  content: "\e9c5";
}
.pi-flag:before {
  content: "\e9c4";
}
.pi-wallet:before {
  content: "\e9c3";
}
.pi-map:before {
  content: "\e9c2";
}
.pi-link:before {
  content: "\e9c1";
}
.pi-credit-card:before {
  content: "\e9bf";
}
.pi-discord:before {
  content: "\e9c0";
}
.pi-percentage:before {
  content: "\e9be";
}
.pi-euro:before {
  content: "\e9bd";
}
.pi-book:before {
  content: "\e9ba";
}
.pi-shield:before {
  content: "\e9b9";
}
.pi-paypal:before {
  content: "\e9bb";
}
.pi-amazon:before {
  content: "\e9bc";
}
.pi-phone:before {
  content: "\e9b8";
}
.pi-filter-slash:before {
  content: "\e9b7";
}
.pi-facebook:before {
  content: "\e9b4";
}
.pi-github:before {
  content: "\e9b5";
}
.pi-twitter:before {
  content: "\e9b6";
}
.pi-step-backward-alt:before {
  content: "\e9ac";
}
.pi-step-forward-alt:before {
  content: "\e9ad";
}
.pi-forward:before {
  content: "\e9ae";
}
.pi-backward:before {
  content: "\e9af";
}
.pi-fast-backward:before {
  content: "\e9b0";
}
.pi-fast-forward:before {
  content: "\e9b1";
}
.pi-pause:before {
  content: "\e9b2";
}
.pi-play:before {
  content: "\e9b3";
}
.pi-compass:before {
  content: "\e9ab";
}
.pi-id-card:before {
  content: "\e9aa";
}
.pi-ticket:before {
  content: "\e9a9";
}
.pi-file-o:before {
  content: "\e9a8";
}
.pi-reply:before {
  content: "\e9a7";
}
.pi-directions-alt:before {
  content: "\e9a5";
}
.pi-directions:before {
  content: "\e9a6";
}
.pi-thumbs-up:before {
  content: "\e9a3";
}
.pi-thumbs-down:before {
  content: "\e9a4";
}
.pi-sort-numeric-down-alt:before {
  content: "\e996";
}
.pi-sort-numeric-up-alt:before {
  content: "\e997";
}
.pi-sort-alpha-down-alt:before {
  content: "\e998";
}
.pi-sort-alpha-up-alt:before {
  content: "\e999";
}
.pi-sort-numeric-down:before {
  content: "\e99a";
}
.pi-sort-numeric-up:before {
  content: "\e99b";
}
.pi-sort-alpha-down:before {
  content: "\e99c";
}
.pi-sort-alpha-up:before {
  content: "\e99d";
}
.pi-sort-alt:before {
  content: "\e99e";
}
.pi-sort-amount-up:before {
  content: "\e99f";
}
.pi-sort-amount-down:before {
  content: "\e9a0";
}
.pi-sort-amount-down-alt:before {
  content: "\e9a1";
}
.pi-sort-amount-up-alt:before {
  content: "\e9a2";
}
.pi-palette:before {
  content: "\e995";
}
.pi-undo:before {
  content: "\e994";
}
.pi-desktop:before {
  content: "\e993";
}
.pi-sliders-v:before {
  content: "\e991";
}
.pi-sliders-h:before {
  content: "\e992";
}
.pi-search-plus:before {
  content: "\e98f";
}
.pi-search-minus:before {
  content: "\e990";
}
.pi-file-excel:before {
  content: "\e98e";
}
.pi-file-pdf:before {
  content: "\e98d";
}
.pi-check-square:before {
  content: "\e98c";
}
.pi-chart-line:before {
  content: "\e98b";
}
.pi-user-edit:before {
  content: "\e98a";
}
.pi-exclamation-circle:before {
  content: "\e989";
}
.pi-android:before {
  content: "\e985";
}
.pi-google:before {
  content: "\e986";
}
.pi-apple:before {
  content: "\e987";
}
.pi-microsoft:before {
  content: "\e988";
}
.pi-heart:before {
  content: "\e984";
}
.pi-mobile:before {
  content: "\e982";
}
.pi-tablet:before {
  content: "\e983";
}
.pi-key:before {
  content: "\e981";
}
.pi-shopping-cart:before {
  content: "\e980";
}
.pi-comments:before {
  content: "\e97e";
}
.pi-comment:before {
  content: "\e97f";
}
.pi-briefcase:before {
  content: "\e97d";
}
.pi-bell:before {
  content: "\e97c";
}
.pi-paperclip:before {
  content: "\e97b";
}
.pi-share-alt:before {
  content: "\e97a";
}
.pi-envelope:before {
  content: "\e979";
}
.pi-volume-down:before {
  content: "\e976";
}
.pi-volume-up:before {
  content: "\e977";
}
.pi-volume-off:before {
  content: "\e978";
}
.pi-eject:before {
  content: "\e975";
}
.pi-money-bill:before {
  content: "\e974";
}
.pi-images:before {
  content: "\e973";
}
.pi-image:before {
  content: "\e972";
}
.pi-sign-in:before {
  content: "\e970";
}
.pi-sign-out:before {
  content: "\e971";
}
.pi-wifi:before {
  content: "\e96f";
}
.pi-sitemap:before {
  content: "\e96e";
}
.pi-chart-bar:before {
  content: "\e96d";
}
.pi-camera:before {
  content: "\e96c";
}
.pi-dollar:before {
  content: "\e96b";
}
.pi-lock-open:before {
  content: "\e96a";
}
.pi-table:before {
  content: "\e969";
}
.pi-map-marker:before {
  content: "\e968";
}
.pi-list:before {
  content: "\e967";
}
.pi-eye-slash:before {
  content: "\e965";
}
.pi-eye:before {
  content: "\e966";
}
.pi-folder-open:before {
  content: "\e964";
}
.pi-folder:before {
  content: "\e963";
}
.pi-video:before {
  content: "\e962";
}
.pi-inbox:before {
  content: "\e961";
}
.pi-lock:before {
  content: "\e95f";
}
.pi-unlock:before {
  content: "\e960";
}
.pi-tags:before {
  content: "\e95d";
}
.pi-tag:before {
  content: "\e95e";
}
.pi-power-off:before {
  content: "\e95c";
}
.pi-save:before {
  content: "\e95b";
}
.pi-question-circle:before {
  content: "\e959";
}
.pi-question:before {
  content: "\e95a";
}
.pi-copy:before {
  content: "\e957";
}
.pi-file:before {
  content: "\e958";
}
.pi-clone:before {
  content: "\e955";
}
.pi-calendar-times:before {
  content: "\e952";
}
.pi-calendar-minus:before {
  content: "\e953";
}
.pi-calendar-plus:before {
  content: "\e954";
}
.pi-ellipsis-v:before {
  content: "\e950";
}
.pi-ellipsis-h:before {
  content: "\e951";
}
.pi-bookmark:before {
  content: "\e94e";
}
.pi-globe:before {
  content: "\e94f";
}
.pi-replay:before {
  content: "\e94d";
}
.pi-filter:before {
  content: "\e94c";
}
.pi-print:before {
  content: "\e94b";
}
.pi-align-right:before {
  content: "\e946";
}
.pi-align-left:before {
  content: "\e947";
}
.pi-align-center:before {
  content: "\e948";
}
.pi-align-justify:before {
  content: "\e949";
}
.pi-cog:before {
  content: "\e94a";
}
.pi-cloud-download:before {
  content: "\e943";
}
.pi-cloud-upload:before {
  content: "\e944";
}
.pi-cloud:before {
  content: "\e945";
}
.pi-pencil:before {
  content: "\e942";
}
.pi-users:before {
  content: "\e941";
}
.pi-clock:before {
  content: "\e940";
}
.pi-user-minus:before {
  content: "\e93e";
}
.pi-user-plus:before {
  content: "\e93f";
}
.pi-trash:before {
  content: "\e93d";
}
.pi-external-link:before {
  content: "\e93c";
}
.pi-window-maximize:before {
  content: "\e93b";
}
.pi-window-minimize:before {
  content: "\e93a";
}
.pi-refresh:before {
  content: "\e938";
}
.pi-user:before {
  content: "\e939";
}
.pi-exclamation-triangle:before {
  content: "\e922";
}
.pi-calendar:before {
  content: "\e927";
}
.pi-chevron-circle-left:before {
  content: "\e928";
}
.pi-chevron-circle-down:before {
  content: "\e929";
}
.pi-chevron-circle-right:before {
  content: "\e92a";
}
.pi-chevron-circle-up:before {
  content: "\e92b";
}
.pi-angle-double-down:before {
  content: "\e92c";
}
.pi-angle-double-left:before {
  content: "\e92d";
}
.pi-angle-double-right:before {
  content: "\e92e";
}
.pi-angle-double-up:before {
  content: "\e92f";
}
.pi-angle-down:before {
  content: "\e930";
}
.pi-angle-left:before {
  content: "\e931";
}
.pi-angle-right:before {
  content: "\e932";
}
.pi-angle-up:before {
  content: "\e933";
}
.pi-upload:before {
  content: "\e934";
}
.pi-download:before {
  content: "\e956";
}
.pi-ban:before {
  content: "\e935";
}
.pi-star-fill:before {
  content: "\e936";
}
.pi-star:before {
  content: "\e937";
}
.pi-chevron-left:before {
  content: "\e900";
}
.pi-chevron-right:before {
  content: "\e901";
}
.pi-chevron-down:before {
  content: "\e902";
}
.pi-chevron-up:before {
  content: "\e903";
}
.pi-caret-left:before {
  content: "\e904";
}
.pi-caret-right:before {
  content: "\e905";
}
.pi-caret-down:before {
  content: "\e906";
}
.pi-caret-up:before {
  content: "\e907";
}
.pi-search:before {
  content: "\e908";
}
.pi-check:before {
  content: "\e909";
}
.pi-check-circle:before {
  content: "\e90a";
}
.pi-times:before {
  content: "\e90b";
}
.pi-times-circle:before {
  content: "\e90c";
}
.pi-plus:before {
  content: "\e90d";
}
.pi-plus-circle:before {
  content: "\e90e";
}
.pi-minus:before {
  content: "\e90f";
}
.pi-minus-circle:before {
  content: "\e910";
}
.pi-circle-on:before {
  content: "\e911";
}
.pi-circle-off:before {
  content: "\e912";
}
.pi-sort-down:before {
  content: "\e913";
}
.pi-sort-up:before {
  content: "\e914";
}
.pi-sort:before {
  content: "\e915";
}
.pi-step-backward:before {
  content: "\e916";
}
.pi-step-forward:before {
  content: "\e917";
}
.pi-th-large:before {
  content: "\e918";
}
.pi-arrow-down:before {
  content: "\e919";
}
.pi-arrow-left:before {
  content: "\e91a";
}
.pi-arrow-right:before {
  content: "\e91b";
}
.pi-arrow-up:before {
  content: "\e91c";
}
.pi-bars:before {
  content: "\e91d";
}
.pi-arrow-circle-down:before {
  content: "\e91e";
}
.pi-arrow-circle-left:before {
  content: "\e91f";
}
.pi-arrow-circle-right:before {
  content: "\e920";
}
.pi-arrow-circle-up:before {
  content: "\e921";
}
.pi-info:before {
  content: "\e923";
}
.pi-info-circle:before {
  content: "\e924";
}
.pi-home:before {
  content: "\e925";
}
.pi-spinner:before {
  content: "\e926";
}

/* node_modules/leaflet/dist/leaflet.css */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.leaflet-tile::selection {
  background: transparent;
}
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}
.leaflet-container img.leaflet-tile {
  mix-blend-mode: plus-lighter;
}
.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  touch-action: none;
  touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}
.leaflet-pane {
  z-index: 400;
}
.leaflet-tile-pane {
  z-index: 200;
}
.leaflet-overlay-pane {
  z-index: 400;
}
.leaflet-shadow-pane {
  z-index: 500;
}
.leaflet-marker-pane {
  z-index: 600;
}
.leaflet-tooltip-pane {
  z-index: 650;
}
.leaflet-popup-pane {
  z-index: 700;
}
.leaflet-map-pane canvas {
  z-index: 100;
}
.leaflet-map-pane svg {
  z-index: 200;
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-control {
  float: left;
  clear: both;
}
.leaflet-right .leaflet-control {
  float: right;
}
.leaflet-top .leaflet-control {
  margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
  margin-left: 10px;
}
.leaflet-right .leaflet-control {
  margin-right: 10px;
}
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
svg.leaflet-zoom-animated {
  will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}
.leaflet-interactive {
  cursor: pointer;
}
.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  pointer-events: auto;
}
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}
.leaflet-container a {
  color: #0078A8;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-container {
  font-family:
    "Helvetica Neue",
    Arial,
    Helvetica,
    sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}
.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font:
    bold 18px "Lucida Console",
    Monaco,
    monospace;
  text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  background-image: url("./media/layers.png");
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url("./media/layers-2x.png");
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}
.leaflet-default-icon-path {
  background-image: url("./media/marker-icon.png");
}
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}
.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff;
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}
.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}
.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font:
    16px/24px Tahoma,
    Verdana,
    sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}
.leaflet-popup-scrolled {
  overflow: auto;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}
.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}
@media print {
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* node_modules/@gerencial/gantt/styles/index.scss */
.cdk-drag {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.cdk-drag .cdk-drag-handle {
  visibility: hidden;
  padding: 0 15px 0 3px;
}
.cdk-drag:hover .cdk-drag-handle {
  visibility: visible;
  color: #999;
}
.cdk-drag .cdk-drag-disabled:hover .cdk-drag-handle {
  visibility: hidden;
}
.cdk-drag-placeholder {
  color: transparent !important;
  background: #eee !important;
}
.cdk-drag-placeholder:hover {
  box-shadow: none;
}
.cdk-drag-placeholder * {
  color: transparent !important;
  visibility: hidden;
  box-shadow: none;
}
.cdk-drag-preview {
  box-sizing: border-box;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.08);
  background: white !important;
}
.cdk-drag-animating {
  transition: none;
}
.gantt {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  color: #333;
  opacity: 0;
}
.gantt svg {
  overflow: visible !important;
}
.gantt .gantt-side {
  border-right: 1px solid #eee;
  position: relative;
  z-index: 3;
  box-shadow: 12px 0 16px -10px rgba(0, 0, 0, 0.15);
}
.gantt .gantt-side .gantt-side-header {
  box-sizing: border-box;
  height: 44px;
}
.gantt .gantt-side .gantt-side-container {
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
}
.gantt .gantt-side .gantt-side-container .gantt-table {
  height: 100%;
}
.gantt .gantt-side .gantt-side-container::-webkit-scrollbar {
  display: none;
}
.gantt .gantt-container {
  flex: 1;
  position: relative;
  display: flex;
  overflow: hidden;
  background-color: #fafafa;
}
.gantt .gantt-scrollbar {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
}
.gantt .gantt-scrollbar .gantt-table-scrollbar.with-scrollbar {
  overflow-x: scroll;
}
.gantt .gantt-scrollbar .gantt-main-scrollbar {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
}
.gantt .gantt-main-container {
  width: 100%;
  height: calc(100% - 44px);
  flex: 1;
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  background-color: #fafafa;
}
.gantt .gantt-main-container .gantt-main-groups,
.gantt .gantt-main-container .gantt-main-items {
  overflow: hidden;
  min-height: 100%;
}
.gantt .gantt-main-container .gantt-group {
  height: 44px;
  background: rgba(243, 243, 243, 0.5);
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}
.gantt .gantt-main-container .gantt-item {
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.gantt .gantt-main-container .gantt-item.gantt-main-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt .gantt-normal-viewport {
  display: flex;
}
.gantt .gantt-virtual-scroll-viewport {
  position: absolute;
  left: 0;
  top: 44px;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: auto;
}
.gantt .gantt-virtual-scroll-viewport.with-footer .gantt-table-body {
  padding-bottom: 44px;
}
.gantt .gantt-virtual-scroll-viewport.with-footer .gantt-main-groups,
.gantt .gantt-virtual-scroll-viewport.with-footer .gantt-main-items {
  padding-bottom: 44px;
}
.gantt .gantt-virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper {
  width: 100%;
  min-width: unset;
  display: flex;
  min-height: 100%;
}
.gantt .gantt-virtual-scroll-viewport .cdk-virtual-scroll-content-wrapper .gantt-container .gantt-main-container {
  height: 100%;
  top: 0;
  overflow-y: hidden;
}
.gantt .gantt-virtual-scroll-viewport.gantt-normal-viewport .cdk-virtual-scroll-content-wrapper {
  height: 100%;
}
.gantt .gantt-virtual-scroll-viewport.gantt-normal-viewport .cdk-virtual-scroll-spacer {
  display: none;
}
.gantt .gantt-virtual-scroll-viewport.gantt-normal-viewport .gantt-container .gantt-main-container {
  overflow-y: auto;
}
.gantt-header {
  display: flex;
  overflow: hidden;
  height: 100%;
}
.gantt-header .gantt-container-header {
  flex: 1;
  overflow: hidden;
  background-color: #fafafa;
}
.gantt-footer {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: white;
  border-top: 1px solid #eee;
}
.gantt-footer .gantt-table-footer {
  height: 44px;
  border-right: 1px solid #eee;
  box-shadow: 12px 0 16px -10px rgba(0, 0, 0, 0.15);
}
.gantt-footer .gantt-container-footer {
  height: 44px;
  overflow-x: auto;
  overflow-y: hidden;
  flex: 1;
}
.gantt-footer .gantt-container-footer::-webkit-scrollbar {
  display: none;
}
.gantt-table-header {
  text-align: center;
  background: #fff;
  height: 44px;
  line-height: 44px;
  box-shadow: 12px 0 16px -10px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 3;
  border-right: 1px solid #eee;
  display: flex;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.gantt-table-header .gantt-table-header-container {
  display: flex;
}
.gantt-table-header .gantt-table-column {
  overflow: hidden;
  border-right: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.gantt-table-header .gantt-table-column:last-child {
  border-right: none;
}
.gantt-table-header-first-level-group {
  background: rgba(243, 243, 243, 0.5);
}
.gantt-table-header-with-group .gantt-table-column:first-child {
  padding: 0 15px 0 32px;
}
.gantt-table-header .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.gantt-table-header .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gantt-table-header:hover {
  background-color: #fafafa;
}
.gantt-table-header-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-header-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-header .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.gantt-table-header .gantt-table-column:last-child {
  border-right: none;
}
.gantt-table-header .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gantt-table-header .gantt-expand-icon {
  display: inline-block;
  width: 20px;
  color: #aaa;
}
.gantt-table-header .gantt-drag-handle {
  width: 1rem;
  padding: 0 5px 0 0;
  display: flex;
  align-items: center;
  margin-left: -10px;
}
.gantt-table-header:hover {
  background-color: #fafafa;
}
.gantt-table-header-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-header-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-header .gantt-table-column {
  font-weight: 400;
  z-index: 1;
}
.gantt-table-body {
  display: block;
}
.gantt-table-body .gantt-table-group {
  display: flex;
  height: 44px;
  background: rgba(243, 243, 243, 0.5);
  padding: 0 10px;
  align-items: center;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.gantt-table-body .gantt-table-group .gantt-table-group-title {
  cursor: pointer;
}
.gantt-table-body .gantt-table-group .gantt-table-group-title .expand-icon {
  color: #aaa;
  margin-right: 6px;
}
.gantt-table-body .gantt-table-item {
  display: flex;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.gantt-table-body .gantt-table-item .gantt-table-column {
  overflow: hidden;
  border-right: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.gantt-table-body .gantt-table-item .gantt-table-column:last-child {
  border-right: none;
}
.gantt-table-body .gantt-table-item-first-level-group {
  background: rgba(243, 243, 243, 0.5);
}
.gantt-table-body .gantt-table-item-with-group .gantt-table-column:first-child {
  padding: 0 15px 0 32px;
}
.gantt-table-body .gantt-table-item .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.gantt-table-body .gantt-table-item .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gantt-table-body .gantt-table-item:hover {
  background-color: #fafafa;
}
.gantt-table-body .gantt-table-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body .gantt-table-item-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body .gantt-table-item .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.gantt-table-body .gantt-table-item .gantt-table-column:last-child {
  border-right: none;
}
.gantt-table-body .gantt-table-item .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gantt-table-body .gantt-table-item .gantt-expand-icon {
  display: inline-block;
  width: 20px;
  color: #aaa;
}
.gantt-table-body .gantt-table-item .gantt-drag-handle {
  width: 1rem;
  padding: 0 5px 0 0;
  display: flex;
  align-items: center;
  margin-left: -10px;
}
.gantt-table-body .gantt-table-item:hover {
  background-color: #fafafa;
}
.gantt-table-body .gantt-table-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body .gantt-table-item-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body .gantt-expand-icon {
  display: inline-block;
  width: 20px;
  color: #aaa;
}
.gantt-table-empty {
  height: 100%;
  position: relative;
}
.gantt-table-empty .gantt-table-body-container {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 22px;
}
.gantt-table-empty .gantt-table-body-container .empty-icon svg {
  height: 78px;
  width: 78px;
}
.gantt-table-empty .gantt-table-body-container .empty-text {
  color: #cacaca;
}
.table-resize-handle,
.column-resize-handle {
  width: 3px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: ew-resize;
  height: 5000px;
}
.table-resize-handle:hover,
.column-resize-handle:hover {
  background: #6698ff;
}
.column-resize-handle {
  height: unset;
  z-index: 1;
}
.table-resize-auxiliary-line {
  width: 3px;
  background: #6698ff;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  height: 5000px;
}
.cdk-drag-preview.gantt-table-item {
  box-sizing: border-box;
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.08);
  opacity: 0.9;
  display: flex;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column {
  overflow: hidden;
  border-right: 1px solid #eee;
  box-sizing: border-box;
  position: relative;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column:last-child {
  border-right: none;
}
.cdk-drag-preview.gantt-table-item-first-level-group {
  background: rgba(243, 243, 243, 0.5);
}
.cdk-drag-preview.gantt-table-item-with-group .gantt-table-column:first-child {
  padding: 0 15px 0 32px;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cdk-drag-preview.gantt-table-item:hover {
  background-color: #fafafa;
}
.cdk-drag-preview.gantt-table-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.cdk-drag-preview.gantt-table-item-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.cdk-drag-preview.gantt-table-item .gantt-table-column {
  display: flex;
  padding: 0 15px;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column:last-child {
  border-right: none;
}
.cdk-drag-preview.gantt-table-item .gantt-table-column-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cdk-drag-preview.gantt-table-item .gantt-expand-icon {
  display: inline-block;
  width: 20px;
  color: #aaa;
}
.cdk-drag-preview.gantt-table-item .gantt-drag-handle {
  width: 1rem;
  padding: 0 5px 0 0;
  display: flex;
  align-items: center;
  margin-left: -10px;
}
.cdk-drag-preview.gantt-table-item:hover {
  background-color: #fafafa;
}
.cdk-drag-preview.gantt-table-item-active {
  background-color: rgba(102, 152, 255, 0.1);
}
.cdk-drag-preview.gantt-table-item-active:hover {
  background-color: rgba(102, 152, 255, 0.1);
}
.gantt-table-body.gantt-table-draggable .cdk-drag-placeholder {
  display: none !important;
}
.gantt-table-body.gantt-table-draggable .cdk-drag-placeholder + .cdk-drop-list {
  display: none !important;
}
.gantt-table-body.gantt-table-draggable .cdk-drag-disabled.gantt-table-item .gantt-drag-handle svg {
  display: none;
}
.gantt-table-body.gantt-table-draggable.gantt-table-dragging .gantt-table-item:hover {
  background: unset;
}
.gantt-table-body.gantt-table-draggable.gantt-table-dragging .gantt-table-item:hover .gantt-drag-handle {
  visibility: hidden !important;
}
.gantt-table-body.gantt-table-draggable .drag-item-hide {
  display: none !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-inside .gantt-table-column {
  height: 100%;
  border-top: 2px dashed #6698ff !important;
  border-bottom: 2px dashed #6698ff !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-inside .gantt-table-column:first-child {
  border-left: 2px dashed #6698ff !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-inside .gantt-table-column:last-child {
  border-right: 2px dashed #6698ff !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-before {
  background: #f5f5f5 !important;
  border-top: 2px solid #6698ff !important;
}
.gantt-table-body.gantt-table-draggable .drop-position-after {
  background: #f5f5f5 !important;
  border-bottom: 2px solid #6698ff !important;
}
.gantt-calendar {
  display: block;
  height: 100%;
  overflow: hidden;
}
.gantt-calendar svg {
  position: relative;
  z-index: 2;
  background-color: #fff;
  overflow: visible;
}
.gantt-calendar line {
  shape-rendering: crispEdges;
}
.gantt-calendar .primary-line {
  stroke: #ddd;
}
.gantt-calendar .gantt-calendar-today-overlay {
  position: relative;
  z-index: 1;
}
.gantt-calendar .gantt-calendar-today-overlay .today-rect {
  width: 35px;
  height: 24px;
  position: absolute;
  background: #ff9f73;
  color: #fff;
  text-align: center;
  border-radius: 4px;
}
.gantt-calendar .gantt-calendar-today-overlay .today-line {
  position: absolute;
  width: 3px;
  background: #ff9f73;
  transform: scaleX(0.5);
  transform-origin: 100% 0;
  margin-left: -2px;
}
.gantt-calendar-header {
  position: relative;
  z-index: 2;
  height: 44px;
}
.gantt-calendar-header .gantt-calendar-today-overlay {
  z-index: 2;
}
.gantt-calendar-header .header-line {
  stroke: #eee;
}
.gantt-calendar-header .primary-text {
  fill: #888;
  font-size: 14px;
}
.gantt-calendar-header .secondary-text {
  fill: #333;
  font-size: 14px;
}
.gantt-calendar-header .secondary-text-weekend {
  fill: #aaa;
}
.gantt-calendar-header .primary-text,
.gantt-calendar-header .secondary-text {
  text-anchor: middle;
}
.gantt-calendar-grid {
  position: absolute;
  width: 100%;
}
.gantt-calendar-grid .gantt-calendar-grid-main {
  background-color: transparent;
}
.gantt-calendar-grid .secondary-line {
  stroke-dasharray: 2px 5px;
  stroke: #cacaca;
}
.gantt-calendar-grid .secondary-backdrop {
  fill: rgba(243, 243, 243, 0.5);
}
.gantt-drag-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: none;
  overflow: hidden;
}
.gantt-drag-mask {
  position: absolute;
  top: 44px;
  z-index: 1;
  height: 100%;
  display: none;
  background: rgba(102, 152, 255, 0.05);
}
.gantt-drag-mask .date-range {
  width: 100%;
  min-width: 120px;
  top: -23px;
  background: #6698ff;
  line-height: 23px;
  border-radius: 4px;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  box-sizing: border-box;
}
.gantt-link-drag-container {
  width: 100%;
  height: 1px;
  overflow: visible !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
.gantt-link-drag-container .link-dragging-line {
  stroke: #6698ff;
  stroke-width: 2px;
}
.gantt-bar {
  position: absolute;
  border-radius: 4px;
  z-index: 2;
  background: #fff;
}
.gantt-bar .gantt-bar-layer {
  width: calc(100% + 32px);
  height: calc(100% + 42px);
  position: absolute;
  border-radius: 4px;
  left: -16px;
  top: -21px;
  display: none;
}
.gantt-bar .gantt-bar-layer .drag-handles {
  background: #fff;
  width: 100%;
  height: calc(100% - 16px * 2);
  position: absolute;
  border-radius: 4px;
  top: 16px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}
.gantt-bar .gantt-bar-layer .drag-handles .handle {
  width: 15px;
  height: 100%;
  position: absolute;
  cursor: col-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gantt-bar .gantt-bar-layer .drag-handles .handle:before,
.gantt-bar .gantt-bar-layer .drag-handles .handle:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #cacaca;
}
.gantt-bar .gantt-bar-layer .drag-handles .handle::before {
  margin-right: 2px;
}
.gantt-bar .gantt-bar-layer .drag-handles .handle:first-child {
  left: 0;
}
.gantt-bar .gantt-bar-layer .drag-handles .handle:last-child {
  right: 0;
}
.gantt-bar .gantt-bar-layer .link-handles .handle {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.gantt-bar .gantt-bar-layer .link-handles .handle:first-child {
  left: 0;
  top: 0;
}
.gantt-bar .gantt-bar-layer .link-handles .handle:last-child {
  right: 0;
  bottom: 0;
}
.gantt-bar .gantt-bar-layer .link-handles .handle .point {
  color: #6698ff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6698ff;
  transition: 0.3 ease;
}
.gantt-bar .gantt-bar-layer .link-handles .handle .point:hover {
  width: 12px;
  height: 12px;
}
.gantt-bar .gantt-bar-border {
  width: calc(100% + 5px * 2);
  height: calc(100% + 5px * 2);
  position: absolute;
  border-radius: 4px;
  left: -5px;
  top: -5px;
  display: none;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.gantt-bar .gantt-bar-content {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: #6698ff;
  overflow: hidden;
  box-sizing: border-box;
}
.gantt-bar .gantt-bar-content .gantt-bar-content-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.gantt-bar-active {
  z-index: 1000;
}
.gantt-bar-active .gantt-bar-layer {
  display: block;
  z-index: 1;
}
.gantt-bar-active .gantt-bar-content {
  z-index: 1;
  box-shadow: none;
}
.gantt-bar-active .cdk-drag {
  transition: none;
}
.gantt-bar-single-drop-active .gantt-bar-border {
  display: block;
}
.gantt-bar-single-drop-active .gantt-bar-content {
  box-shadow: none;
}
.gantt-bar-draggable-drag {
  z-index: 1001;
}
.gantt-bar-drop-active {
  z-index: 1000;
}
.gantt-bar-drop-active .gantt-bar-layer {
  display: block;
  z-index: 1;
}
.gantt-bar-drop-active .gantt-bar-content {
  z-index: 1;
  box-shadow: none;
}
.gantt-bar-drop-active .cdk-drag {
  transition: none;
}
.gantt-bar-drop-active .gantt-bar-layer .link-handles .handle {
  width: 26px;
  height: 100%;
}
.gantt-bar-drop-active .gantt-bar-layer .link-handles .handle:first-child {
  left: -21px;
}
.gantt-bar-drop-active .gantt-bar-layer .link-handles .handle:last-child {
  right: -21px;
}
.gantt-bar-drop-active .gantt-bar-layer .link-handles .handle:hover .point {
  width: 12px;
  height: 12px;
}
.gantt-range {
  position: absolute;
  z-index: 2;
}
.gantt-range .gantt-range-main {
  height: 10px;
  background: #dfdfdf;
  border: 1px solid #888;
  border-radius: 4px 4px 0 0;
  box-sizing: border-box;
  position: relative;
}
.gantt-range .gantt-range-main .gantt-range-main-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #888;
}
.gantt-range .gantt-range-triangle {
  width: 0;
  height: 0;
  border-top: 7px solid #888;
  position: absolute;
  top: 10px;
}
.gantt-range .gantt-range-triangle.left {
  border-right: 6px solid transparent;
  left: 0;
}
.gantt-range .gantt-range-triangle.right {
  border-left: 6px solid transparent;
  right: 0;
}
.gantt-icon {
  font-size: 1rem;
  line-height: 0;
}
.gantt-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  background-repeat: no-repeat;
}
.gantt-links-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.gantt-links-overlay svg {
  overflow: visible;
  z-index: 2;
  position: absolute;
}
.link-dragging-container {
  width: 100%;
  height: 1px;
  overflow: visible !important;
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 2000;
}
.link-dragging-container .link-dragging-line {
  stroke: #6698ff;
  stroke-width: 2px;
}
.gantt-baseline {
  position: absolute;
  z-index: 2;
}
.gantt-baseline .baseline-content {
  height: 8px;
  border-radius: 2px;
  background-color: #cacaca;
}
.gantt-toolbar {
  position: absolute;
  top: 60px;
  right: 20px;
  z-index: 1000;
}
.gantt-toolbar .toolbar-views {
  display: inline-flex;
}
.gantt-toolbar .toolbar-views .toolbar-view {
  padding: 0 15px;
  cursor: pointer;
  flex: 0 1 auto;
  border: 1px solid #ddd;
  margin-left: -1px;
  position: relative;
  background-color: #ffffff;
}
.gantt-toolbar .toolbar-views .toolbar-view.active {
  color: #6698ff;
  border-color: #6698ff;
  z-index: 1;
}
.gantt-toolbar .toolbar-views .toolbar-view:first-child {
  border-radius: 4px 0 0 4px;
}
.gantt-toolbar .toolbar-views .toolbar-view:last-child {
  border-radius: 0 4px 4px 0;
}
.gantt-loader-overlay {
  position: absolute;
  width: 100%;
  height: calc(100% - 40px);
  top: 40px;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1001;
}
.gantt-loader-wrapper {
  position: absolute;
  padding-top: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.gantt-loader-loading {
  display: inline-block;
  position: relative;
  height: 8px;
  border-radius: 4px;
  transform: translateX(-18px);
}
.gantt-loader-loading:before,
.gantt-loader-loading:after {
  content: "";
  display: block;
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 4px;
}
.gantt-loader-loading:before {
  animation: gantt-loader-loading-ellipsis-b 1s ease-in-out infinite;
  background: #6698ff;
  opacity: 0.4;
}
.gantt-loader-loading:after {
  animation: gantt-loader-loading-ellipsis-a 1s ease-in-out infinite;
  background: #6698ff;
  opacity: 0.8;
}
.gantt-loader-loading-spot {
  position: absolute;
  left: 13px;
  height: 8px;
  width: 8px;
  background: #6698ff;
  border-radius: 4px;
}
@keyframes gantt-loader-loading-ellipsis-b {
  0% {
    left: 0;
    transform: scale(1.1);
  }
  50% {
    left: 25px;
    transform: scale(1);
  }
  100% {
    left: 0;
    transform: scale(1.1);
  }
}
@keyframes gantt-loader-loading-ellipsis-a {
  0% {
    left: 25px;
    transform: scale(1.1);
  }
  50% {
    left: 0;
    transform: scale(1);
  }
  100% {
    left: 25px;
    transform: scale(1.1);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
