/* allow vendor prefixes and disable max length */
/* allow vendor prefixes and disable max length */
/* ==========================================================================
   Variables, mixins, silent classes etc.
   ========================================================================== */
/* ==========================================================================
   Variables
   ========================================================================== */
.gd-sidebar-container {
  position: sticky;
  top: 0;
  width: 230px;
  height: 100vh;
  border-right: 1px solid var(--gd-palette-complementary-3, #dde4eb);
}
.gd-sidebar-container--resizable {
  min-width: 230px;
  width: 100%;
}

.gd-resizable-sidebar {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
.gd-resizable-sidebar--dragging, .gd-resizable-sidebar:has(.gd-resizable-sidebar__handle:focus) {
  z-index: 9999;
}
.gd-resizable-sidebar__handle {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(calc(var(--drag-x, 0) - 50%));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  background: transparent;
  border: 0;
  cursor: col-resize;
  touch-action: none;
}
.gd-resizable-sidebar__handle:focus {
  outline: none;
}
.gd-resizable-sidebar__handle:disabled {
  cursor: initial;
}
.gd-resizable-sidebar__handle--dragging {
  opacity: 1;
}
.gd-resizable-sidebar--resizable:hover .gd-resizable-sidebar__handle, .gd-resizable-sidebar--resizable:focus-within .gd-resizable-sidebar__handle {
  opacity: 1;
}
.gd-resizable-sidebar__handle-grip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 25px;
  padding: 5px 3px;
  background: var(--gd-palette-complementary-0);
  border: 1px solid var(--gd-palette-complementary-5);
  border-radius: 2px;
}
.gd-resizable-sidebar--dragging .gd-resizable-sidebar__handle-grip, .gd-resizable-sidebar__handle:focus .gd-resizable-sidebar__handle-grip {
  border: 2px solid #14b2e2;
  border-radius: 3px;
}
.gd-resizable-sidebar--dragging .gd-resizable-sidebar__handle-grip::after, .gd-resizable-sidebar__handle:focus .gd-resizable-sidebar__handle-grip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 2px;
  background: #14b2e2;
  box-shadow: 0 0 0 4px var(--gd-palette-primary-base-t85, rgba(20, 178, 226, 0.15));
}

.add-item-panel {
  padding: 0 7px;
}

.add-item-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  height: 47px;
  padding: 0 10px 0 50px;
  border: 1px solid rgba(201, 213, 224, 0);
  border-radius: 2px;
  font-size: 12px;
  line-height: 14px;
  color: var(--gd-palette-complementary-8, #464e56);
  cursor: pointer;
}
.add-item-placeholder.disabled {
  color: var(--gd-palette-complementary-5, #b0beca);
  cursor: default;
  user-select: none;
}
.add-item-placeholder:hover:not(.disabled) {
  border-color: var(--gd-palette-complementary-5-from-theme, rgba(201, 213, 224, 0.5));
  box-shadow: 0 1px 3px 0 var(--gd-shadow-color-from-theme, rgba(20, 56, 93, 0.09)), 0 2px 9px 0 var(--gd-shadow-color-from-theme, rgba(20, 56, 93, 0.15));
  background: var(--gd-palette-complementary-0-t10, rgba(255, 255, 255, 0.95));
}
.add-item-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  flex: 0 0 auto;
  width: 50px;
  background-repeat: no-repeat;
  background-position: center;
}
.add-item-placeholder.add-panel-item {
  padding: 0 10px 0 0;
}
.add-item-placeholder.add-panel-item .add-panel-item__text {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.add-item-placeholder.add-panel-item svg {
  margin: 0 14px;
}
.add-item-placeholder.add-panel-item::before {
  content: none;
}
.add-item-placeholder.add-panel-item:hover .gd-add-item-placeholder-help-trigger {
  display: block;
  cursor: help;
}
.add-item-placeholder.add-panel-item .gd-add-item-placeholder-help-trigger {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: 5px;
  font-weight: normal;
}
.add-item-placeholder.add-panel-item span {
  flex: 0 0 auto;
}
.add-item-placeholder span {
  flex: 1 1 auto;
}

.gd-visualizations-related-header {
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100%;
  padding: 5px 0 5px 10px;
  font-size: 12px;
  line-height: 12px;
  color: var(--gd-palette-complementary-6, #94a1ad);
}

.gd-container-tooltip {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  max-width: 260px;
}
.gd-container-tooltip__image {
  background-image: url("@gooddata/sdk-ui-dashboard/esm/assets/flexible-layouts-tooltip.gif");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  aspect-ratio: 44/27;
}
.gd-container-tooltip__actions {
  padding-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: baseline;
}

/*# sourceMappingURL=sidebar.css.map */
