@charset "UTF-8";
.designer-property {
  --zv-designer-property-header-height: 60px;
  --zv-designer-property-header-footer: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
}
.designer-property-header {
  height: var(--zv-designer-property-header-height);
  min-height: var(--zv-designer-property-header-height);
  max-height: var(--zv-designer-property-header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
.designer-property-body {
  position: relative;
  overflow: auto;
  flex-grow: 1;
}
.designer-property-body-segment {
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
}
.designer-property-body .check-list {
  display: block;
  position: relative;
}
.designer-property-body .check-list::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 4px;
  opacity: 0.5;
  border-radius: 0.3rem;
  border: 1px solid var(--bs-secondary);
  margin-bottom: -2px;
}
.designer-property-body .form-config {
  padding: 0;
  margin-bottom: 0.6rem;
  justify-content: space-between;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.designer-property-body .form-config .form-config-search {
  width: 246px;
  align-items: center;
  display: flex;
  padding-bottom: var(--zv-default-padded);
  padding-top: var(--zv-default-padded);
}
.designer-property-body .form-config .form-config-table {
  padding-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
  background-color: var(--bs-secondary-bg);
  border: solid var(--bs-border-color);
  border-width: 1px;
  border-radius: var(--zv-radius-lg);
  box-shadow: var(--bs-box-shadow-sm);
  margin-bottom: 1.5rem;
}
.designer-property-body .form-config .form-config-table .form-config-field-cell {
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  display: flex;
}
.designer-property-body-actionbtn {
  width: 100%;
  display: flex;
  gap: 1rem;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  margin-bottom: 1rem;
  border-radius: 10px;
}
.designer-property-body-actionbtn-options {
  width: 100%;
  padding-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.designer-property-body-actionbtn-default-preview {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  justify-content: center;
  align-content: center;
  display: flex;
  padding: 1rem;
  align-items: center;
  background-color: var(--bs-body-bg);
  width: 100%;
  border-top-right-radius: var(--bs-border-radius-lg);
  border-bottom-right-radius: var(--bs-border-radius-lg);
}
.designer-property-body-actionbtn-floating-control-buttons {
  position: absolute;
  right: 7px;
  margin-top: 7px;
  display: flex;
  text-align: right;
}
.designer-property-body-actionbtn-grip-area {
  align-items: center;
  display: flex;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  transition: 0.3s;
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  padding: 0.5rem !important;
}
.designer-property-body-actionbtn-grip-area:hover {
  background: rgb(239, 239, 239);
  cursor: grab;
}
.designer-property-body-actionbtn-colors {
  gap: 1rem;
  padding-bottom: 0.5rem;
}
.designer-property-body-actionbtn-btn-square {
  width: 26px;
  height: 26px;
  border-radius: 26px;
}
.designer-property-body-actionbtn-btn-square-icon {
  left: -8px;
  top: -6px;
  position: relative;
}
.designer-property-footer {
  height: var(--zv-designer-property-header-footer);
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: var(--zv-default-padded);
  background: var(--bs-secondary-bg);
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

/* Linha vertical que liga todos os nós */
.zeev-bpmn .diagram-container {
  position: relative;
}

.zeev-bpmn .diagram-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  width: 2px;
  background-color: var(--bs-border-color);
}

.zeev-bpmn .diagram-row .diagram-node {
  position: relative;
}

.zeev-bpmn .diagram-row .diagram-node::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  background-color: var(--bs-border-color);
  transform: translateY(-50%);
  z-index: 0;
}

.diagram-node::before {
  width: 32px;
  left: -16px;
}