.tabs {
  position: fixed;
  bottom: 1rem;
  display: flex;
  align-items: center;
  background: hsla(0, 0%, 100%, 0.75);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  z-index: 10;
  inset-inline: 0;
  margin-inline: auto;
  min-width: min-content;
  max-width: max-content;
  box-sizing: border-box;
  height: 4rem;
  box-shadow: #00000040 1px 1px 6px 0px;
}

.tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(43, 42, 42);
  z-index: 12;
  height: 2.5rem;
  width: 24svw;
  padding: 0.25rem;
  background: transparent;
  border: rgba(63, 63, 63, 0.61);
}

.tab-button.active {
  color: rgb(61, 61, 61);
  transition: 1000ms;
}

.glider {
  position: absolute;
  background-color: rgb(239 252 255 / 50%);
  border-radius: 50px;
  transition: transform 0.25s ease-out, width 0.25s ease-out;
  z-index: 11;
  height: 4rem;
  box-shadow: #00000040 1px 1px 6px 0px;
  justify-self: start;
}