* {
  box-sizing: border-box;
}

.action-button {
  --fab-color: #000000;
  --fab-icon-color: #ffffff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  font-size: 24px;
  line-height: 52px;
  width: 52px;
  height: 52px;
  background-color: var(--fab-color);
  color: var(--fab-icon-color);
  cursor: pointer;
  overflow: visible;
  z-index: 1000;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.action-button__toggle {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 52px;
  font-weight: 300;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.action-button__toggle i,
.action-button__toggle svg,
.action-button__toggle path {
  color: var(--fab-icon-color);
  fill: currentColor;
}

.action-button.is-open .action-button__toggle {
  transform: rotate(45deg);
}

.action-list {
  color: initial;
  font-size: initial;
  text-align: initial;
  line-height: initial;
  position: absolute;
  bottom: 62px;
  right: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  list-style: none;
  margin: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 6px;
}

.action-button.is-open .action-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.action-list-item {
  --action-color: #ff9800;
  --action-text-color: #ffffff;
  --action-icon-color: #ffffff;
  white-space: nowrap;
  background-color: var(--action-color);
}

.action-list-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--action-text-color);
  text-decoration: none;
  font-size: 15px;
  width: 100%;
  padding: 12px 16px;
}

.action-list-link:hover,
.action-list-link:focus {
  color: var(--action-text-color);
  text-decoration: none;
}

.action-list-link i {
  font-size: 20px;
  color: var(--action-icon-color);
}

.action-list-link--userway {
  cursor: pointer;
}

.action-list-link--userway svg,
.action-list-link--userway path {
  fill: currentColor;
}

.action-list-item + .action-list-item .action-list-link {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

div#block-uniandes-ing-uniandesfloatingactionbuttons {
  width: 52px;
  max-width: 52px;
}
