/*
  RULES
  type-mode IE text-color NOT color-text
*/
/* DROPDOWN BUTTONS */
.dropdown-menu.show {
  top: 100% !important;
  display: block;
  position: absolute !important;
}

.form-floating {
  overflow: hidden;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.disabled {
  pointer-events: none;
  opacity: 0.6;
}

a * {
  pointer-events: none;
}

* {
  font-family: var(--font-family, "arial");
}

body {
  padding: 0;
  margin: 0;
}

.scroll-container {
  max-height: 300px;
  overflow: auto;
  padding-right: 5px;
}

.action-zone {
  background: black;
  border-radius: 50%;
  margin: 10px;
  height: 20px;
  width: 20px;
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  transform: scale(1);
  animation: pulse 2s infinite;
  cursor: pointer;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

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