.dz-drag-hover {
  background-color: #74b39a;
  color: #fff;
}

.dz-progress {
  background-color: #74b39a;
  height: 1em;
}

.autoComplete_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}

.autoComplete_wrapper > ul {
  background-color: #fff;
  border: 1px solid rgba(33, 33, 33, 0.07);
  border-radius: 0.6rem;
  box-shadow: 0 3px 6px rgba(149, 157, 165, 0.15);
  box-sizing: border-box;
  left: 0;
  list-style: none;
  margin: 0.5rem 0 0 0;
  max-height: 226px;
  outline: none;
  overflow-y: scroll;
  padding: 0;
  position: absolute;
  right: 0;
  transition: opacity 0.15s ease-in-out;
  z-index: 1;
}

.autoComplete_wrapper > ul[hidden],
.autoComplete_wrapper > ul:empty {
  display: block;
  opacity: 0;
  transform: scale(0);
}

.autoComplete_wrapper > ul > li.autoComplete_result {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 0.35rem;
  color: #212121;
  font-size: 1rem;
  margin: 0.3rem;
  overflow: hidden;
  padding: 0.3rem 0.5rem;
  text-align: left;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.autoComplete_wrapper > ul > li.autoComplete_result:hover {
  background-color: #74b39a;
  cursor: pointer;

  .autoComplete_highlight {
    color: #ffffff;
  }
}

.autoComplete_highlight {
  background-color: transparent;
  color: #74b39a;
  font-weight: 600;
}

.autoComplete_image {
  display: inline-block !important;
  height: 50px;
  margin-right: 8px;
  vertical-align: middle;
  width: 50px;
}

.arrow {
  height: 5rem;
  position: relative;
  width: 80px;
  z-index: 1;
}

.arrow::after {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(44, 47, 49, 0.5),
    rgba(44, 47, 49, 0)
  );
  clip-path: polygon(0 0, 60% 0, 80% 50%, 60% 100%, 0 100%, 20% 50%);
  content: "";
  height: 100%;
  position: absolute;
  right: -10px;
  top: 0;
  width: 110px;
  z-index: -1; /* Ensure the shadow is behind the arrow */
}

input[type="submit"] {
  &:disabled {
    opacity: 0.2;
  }
}

button {
  &:hover {
    cursor: pointer;
  }
}

.field_with_errors {
  input {
    outline: 1px solid red;
  }
}

.chart-container {
  min-height: 600px;
  position: relative;
}

.chart-container svg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
