.dropdown {
  position: relative;
}

.dropdown__toggle {
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0.15em 0.5rem;
  color: var(--color-fg);
}

.dropdown__toggle--pressed {
  /* z-index: 40; */
}

.dropdown__title {
  margin-right: 0.25rem;
}

.dropdown__menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  background: hsl(199, 51%, 42%);
  text-shadow: var(--bright-text-shadow);
  margin: 0;
  padding: 2.2em 0 0.5rem 0;
  z-index: 30;
  list-style: none;
  border-radius: 0.75rem;
  box-shadow: 0 0.1rem 0.55rem hsla(0, 0%, 0%, 0.45);

  > li {
    padding: 0 0.5rem;

    > form {
      display: block;
    }

    > a,
    > form > button {
      text-decoration: none;
      display: block;
      padding: 0.25rem 0.65rem;
      font-weight: 500;
      width: 100%;
      text-align: left;
      border-radius: 0.55rem;
      line-height: 1.4rem;
      color: white;

      &:hover {
        background-color: hsla(0, 0%, 0%, 0.2);
        color: white;
      }

      &.text-danger:hover {
        background-color: var(--color-bg-danger);
        color: white;
      }
    }
  }

  > li:first-child {
    padding-top: 0.5rem;
  }
}

.dropdown__divider,
.dropdown__menu > li:first-child {
  border-top: 1px solid hsla(0, 0%, 0%, 10%);
}

.dropdown__divider {
  margin: 0.5rem 0;
  height: 0px;
}

.dropdown--lg {
  .dropdown__toggle {
    transform: scale(1.2);
  }
}
