html {
  overflow: hidden;
}

.items-container {
  background-color: transparent;
  border-radius: 0px 24px 0px 0px;
  position: absolute;
  padding: 12px;
  bottom: 0px;
  left: 0px;
}

@media (max-width: 979px) {
  .items-container {
    /* bottom: -192; */
    display: none;
    /* flex-direction: column; */
  }
}

.items-container:hover .items {
  bottom: 0px;
}

.items {
  font-family: "SF-Text", sans-serif;
  background-color: rgba(211, 211, 211, 0.25);
  backdrop-filter: blur(12px);
  border: 1px solid rgb(190, 190, 190);
  border-radius: 16px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  padding: 0px 12px;
  position: relative;
  bottom: -92px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  transition: bottom 0.2s ease-in-out;
  text-shadow: 0 0 2px #ffffff43;
}

.Status {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.items a {
  background-color: rgba(211, 211, 211, 0.75);
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  border: 1px solid rgb(190, 190, 190);
  border-radius: 12px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: rgb(94, 94, 94);
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out;
}

.items a:hover {
  background-color: rgb(190, 190, 190);
  border: 1px solid rgb(150, 150, 150);
}
