.thieffry-menu {
  position: relative;
  display: flex;
  flex-direction: row;
}

.thieffry-menu-title {
  font-size: inherit;
}

.thieffry-menu-burger {
  display: none;
  cursor: pointer;
}

.thieffry-menu-items {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  height: 100%;
}

.thieffry-menu-items>* {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thieffry-menu-items svg {
  height: 1em;
  width: 1em;
}

.thieffry-menu-items>*:last-child {
  padding-right: 0.5rem;
}

/*
@media (max-width: 768px) {
  .thieffry-menu.responsive .thieffry-menu-burger {
    display: block;
  }

  .thieffry-menu.responsive .thieffry-menu-items {
    flex-direction: column;
    gap: unset;
  }

  .thieffry-menu.responsive .thieffry-menu-items {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .thieffry-menu.responsive .thieffry-menu-items.responsive {
    display: flex;
  }
}
*/