.node-box {
  position: relative;
  background-color: white;
}
.node-box__type {
  position: absolute;
  top: 0;
  left: 0;
  transition: border-color 0.3s;
  border-radius: 4px;
  font-size: 10px;
  padding: 0.2rem;
}
.node-box label {
  height: 100px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid #dee2e6;
  transition: border-color 0.3s;
  border-radius: 4px;
}
.node-box input[type=checkbox] {
  position: absolute;
  top: 10px;
  right: 10px;
}
.node-box input[type=checkbox]:checked + label, .node-box input[type=checkbox]:checked + label + .node-box__type {
  border-color: #4e73df;
}
.node-box:hover label, .node-box:hover .node-box__type {
  cursor: pointer;
  border-color: #4e73df;
}

.form-label {
  font-weight: bold;
}

.col-form-label {
  font-weight: bold;
}

.form-switch {
  padding-left: 2.5em;
}

.form-license {
  width: 125px;
  height: 150px;
}
.form-license:not(.form-license--disabled) label:hover {
  cursor: pointer;
  border-color: rgba(78, 115, 223, 0.5);
}
.form-license:not(.form-license--disabled) input[type=radio]:checked + label {
  border-color: #4e73df !important;
}

.ts-wrapper.multi .ts-control [data-value], .ts-wrapper.multi .ts-control [data-value].active {
  background-image: none !important;
}

.ts-wrapper.form-select.single .ts-control {
  padding: 0.25rem 0.5rem !important;
}
.ts-wrapper.form-select.single .ts-control:after {
  content: none;
}

.node {
  fill: #fff;
  stroke: #666;
  stroke-width: 2;
  cursor: default;
}
.node.draggable {
  cursor: grab;
}
.node.editable:not(.draggable--dragging) {
  cursor: pointer;
}
.node.draggable--dragging {
  cursor: grabbing;
}
.node .node__title {
  fill: #111111;
  text-anchor: middle;
}
.node .node__description {
  font-size: 0.8em;
  font-weight: normal;
  fill: gray;
  text-anchor: start;
}
.node.highlight rect {
  stroke: rgba(0, 0, 255, 0.4);
  stroke-width: 1;
}
.node--targeted {
  stroke: lightgreen;
  filter: drop-shadow(0px 0px 10px rgba(144, 238, 144, 0.5));
}
.node--active {
  stroke: black;
  stroke-width: 2;
  filter: drop-shadow(0px 0px 10px rgba(100, 100, 100, 0.8));
}
.node--ghost {
  fill: rgba(220, 220, 220, 0.8);
  stroke: #000;
  stroke-dasharray: 10, 10;
  opacity: 0.7;
  stroke-width: 3px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 255, 0.8));
  z-index: 1000;
}
.node--call {
  fill: #EAFFEA;
}
.node--logical {
  fill: #D5F1F4;
}
.node--start {
  fill: #EEEEEE;
}

.link .link__path {
  stroke: grey;
  fill: none;
  stroke-width: 2;
}
.link .link__path--transparent {
  stroke: transparent !important;
}
.link--active .link__path {
  stroke: black;
  stroke-width: 2;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.7));
}
.link .link__point {
  fill: lightgray;
  stroke: grey;
  stroke-width: 1;
  transition: none;
}
.link .link__point--hoverable:hover, .link .link__point--dragging {
  transition: all 0.3s ease;
  width: 14px;
  height: 14px;
  x: -1px;
  y: -1px;
  rx: 4;
}
.link .link__point--transparent {
  fill: transparent;
}
.link .link__point--dragging {
  fill: lightgray;
}
.link .link__point--success {
  fill: lightgreen;
}
.link .link__point--failure {
  fill: lightcoral;
}
.link .link__point--timeout {
  fill: lightcoral;
}
.link .link__condition {
  stroke: grey;
  fill: white;
}
.link .link__condition > rect {
  stroke-width: 2;
}
.link .link__condition > text {
  stroke: grey;
  text-anchor: middle;
}
.link__path.link__clickable-area {
  stroke-width: 16;
}
.link.clickable:hover {
  cursor: pointer;
}
.link.clickable:hover .link__path {
  stroke: rgba(0, 0, 255, 0.4);
}
.link.clickable:hover text {
  fill: rgba(0, 0, 255, 0.4) !important;
}

.draggable--dragging {
  cursor: grabbing;
}

.clickable:hover > rect {
  stroke: rgba(0, 0, 255, 0.5);
  stroke-width: 1;
}
.clickable--active > rect {
  stroke: black;
  stroke-width: 2;
}

#canvas {
  min-height: 100%;
  min-width: 100%;
}

.canvas {
  cursor: grab;
}
.canvas text {
  stroke: none;
  fill: #111111;
  font-family: Inter, sans-serif;
  dominant-baseline: text-before-edge;
}
.canvas .icon {
  fill: #111111;
  font-weight: 400;
}
.canvas hr {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.table-hover__hidden {
  display: none;
}
.table-hover tr {
  height: 55px;
}
.table-hover tr:hover .table-hover__hidden {
  display: inline-block;
}

.card-header {
  min-height: 64px;
}

.toolbox {
  cursor: grab;
  max-width: 200px;
}
.toolbox text {
  stroke: none;
  fill: #111111;
  font-family: Inter, sans-serif;
  dominant-baseline: text-before-edge;
}
.toolbox .icon {
  fill: #111111;
  font-weight: 400;
}
.toolbox hr {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.node .node-badge__text {
  font-size: 18px;
  dominant-baseline: middle;
  text-anchor: middle;
}

.form-collection__item {
  position: relative;
  transform-origin: top;
}
.form-collection__item--new {
  animation: slideDown 0.3s ease-out;
}
.form-collection__item--removing {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loader {
  display: none;
  z-index: 1000;
}

.turbo-progress-bar {
  visibility: hidden;
}

.turbo-progress-bar + body > .loader {
  display: flex;
}

.offcanvas {
  min-width: 500px;
}

.digit {
  border: 2px solid transparent;
}
.digit--required {
  border-left: 0;
  border-right: 0;
  border-top: 2px solid gray;
  border-bottom: 2px solid gray;
}
.digit--required:first-of-type {
  border-left: 2px solid gray;
  border-radius: 4px 0 0 4px;
}
.digit--last {
  border-right: 2px solid gray;
  border-radius: 0 4px 4px 0;
  position: relative;
}
.digit--last:after {
  content: "requis";
  position: absolute;
  top: -12px;
  right: -10px;
  font-size: 8px;
  font-weight: 300;
  color: white;
  background: gray;
  border-radius: 4px;
  height: 13px;
  width: 32px;
  text-align: center;
}
.digit--alone {
  border-left: 2px solid gray;
  border-right: 2px solid gray;
  border-radius: 4px !important;
}
.digit--alone:after {
  content: "requis";
  position: absolute;
  top: -12px;
  right: -10px;
  font-size: 8px;
  font-weight: 300;
  color: white;
  background: gray;
  border-radius: 4px;
  height: 13px;
  width: 32px;
  text-align: center;
}

.dialpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
  margin: 10px;
}
.dialpad .form-check {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialpad .form-check label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #adb5bd;
  background-color: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  text-align: center;
}
.dialpad .form-check input {
  display: none;
}
.dialpad .form-check input:checked + label {
  border-color: #0d6efd;
  color: #212529;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}

.btn--circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.modal-header {
  align-items: center;
}

.hidden {
  display: none;
}

#form-container turbo-frame {
  height: 100%;
}

.body--login {
  background-image: url("../images/security_bg-D6nuPxo.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.sidebar {
  background-image: url("../images/security_bg-D6nuPxo.jpg");
  background-size: cover;
  background-position: initial;
  background-repeat: no-repeat;
}

.page-header {
  background: linear-gradient(150deg, rgba(102, 126, 234, 0.85) 10%, rgba(118, 75, 162, 0.85) 90%), linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
}

/*# sourceMappingURL=app.output.css.map */
