div {
  position: relative;
}
div .multi-button {
  z-index: 0;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border-radius: 100%;
  width: 0rem;
  height: 0rem;
  opacity: 0;
  transform: translate(85%, -35%);
  transition: 0.25s cubic-bezier(0.25, 0, 0, 1);
}
div .multi-button button {
  display: grid;
  place-items: center;
  position: absolute;
  overflow: hidden;
  width: 2rem;
  height: 2rem;
  border: none;
  outline: none;
  border-radius: 100%;
  background: var(--logout-background);
  color: var(--logout-text);
  transform: translate(0%, 0%);
  cursor: pointer;
  transition: 0.25s cubic-bezier(0.25, 0, 0, 1),
    width 0.3s ease-in-out;
  box-shadow: 0 0 0rem -0.25rem var(--logout-background);
}
div .multi-button button * {
  display: inline;
  white-space: nowrap;
  position: relative;
  z-index: 500;
}
div .multi-button button i {
  padding-left: 0.2rem;
}
div .multi-button button p {
  font-size: 0.8em;
  margin-right: 5px;
  font-weight: 700;
}
div .multi-button button:hover {
  background: var(--logout-text);
  color: var(--logout-background);
  box-shadow: 0 0 1rem -0.25rem var(--logout-background-shadow);
  width: auto;
  border-radius: 20px;
  transition: width 0.3s ease-in-out;
}
div .multi-button button:first-child:nth-last-child(1):nth-child(1),
div .multi-button button:first-child:nth-last-child(1) ~ *:nth-child(1) {
  left: 25%;
  top: 25%;
}
div .multi-button button:first-child:nth-last-child(2):nth-child(1),
div .multi-button button:first-child:nth-last-child(2) ~ *:nth-child(1) {
  left: 37.5%;
  top: 18.75%;
}
div .multi-button button:first-child:nth-last-child(2):nth-child(2),
div .multi-button button:first-child:nth-last-child(2) ~ *:nth-child(2) {
  left: 18.75%;
  top: 37.5%;
}
div .multi-button button:first-child:nth-last-child(3):nth-child(1),
div .multi-button button:first-child:nth-last-child(3) ~ *:nth-child(1) {
  left: 50%;
  top: 15.625%;
}
div .multi-button button:first-child:nth-last-child(3):nth-child(2),
div .multi-button button:first-child:nth-last-child(3) ~ *:nth-child(2) {
  left: 25%;
  top: 25%;
}
div .multi-button button:first-child:nth-last-child(3):nth-child(3),
div .multi-button button:first-child:nth-last-child(3) ~ *:nth-child(3) {
  left: 15.625%;
  top: 50%;
}
div .multi-button button:first-child:nth-last-child(4):nth-child(1),
div .multi-button button:first-child:nth-last-child(4) ~ *:nth-child(1) {
  left: 62.5%;
  top: 18.75%;
}
div .multi-button button:first-child:nth-last-child(4):nth-child(2),
div .multi-button button:first-child:nth-last-child(4) ~ *:nth-child(2) {
  left: 37.5%;
  top: 18.75%;
}
div .multi-button button:first-child:nth-last-child(4):nth-child(3),
div .multi-button button:first-child:nth-last-child(4) ~ *:nth-child(3) {
  left: 18.75%;
  top: 37.5%;
}
div .multi-button button:first-child:nth-last-child(4):nth-child(4),
div .multi-button button:first-child:nth-last-child(4) ~ *:nth-child(4) {
  left: 18.75%;
  top: 62.5%;
}
div .container {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  /* background: var(--logout-background);
  color: var(--logout-text); */
}
div:hover .multi-button,
div .multi-button:focus-within {
  width: 10rem;
  height: 10rem;
  opacity: 1;
}
