.navi-btn {
  all: unset;
  position: relative;
  display: flex;
  border-radius: 200px;
  height: fit-content;
  width: fit-content;
  padding: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  z-index: 1;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;

  user-select:           none;
  -webkit-touch-callout: none;
  -webkit-user-select:   none;
  -khtml-user-select:    none;
  -moz-user-select:      none;
  -ms-user-select:       none;
} .navi-btn:hover {
  transform: scale(1.01);
  cursor: pointer;
  box-shadow: 0px 0px 10px var(--shadow-color);
} .navi-btn .icon {
  display: flex;
  align-items: center;
  height: var(--title2-text);
  width: 100%;
} .navi-btn .icon img {
  width: 100%;
  height: 100%;
} .navi-btn .label {
  display: flex;
  height: fit-content;
  width: auto;
  justify-content: center;
  align-items: center;
} .navi-btn .label h3 {
  all: unset;
  color: inherit;
  font-size: var(--btn-text);
  font-weight: bold;
  padding-left: 8px;
  padding-right: 8px;
}

.navi-btn--floating {
  margin-left: -10px;
  background-color: var(--background-color);
}


@media (max-width: 600px) {
  .navi-btn--floating {
    position: fixed;
    bottom: 0;
    right: 0;
    margin-bottom: calc(104px);
    margin-right: 15px;
    box-shadow: 0px 0px 10px var(--shadow-color);
  }
}