.tabs {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tabs__row {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-grow: 0;
}

.tabs__contentWrapper {
  display: flex;
  flex: 1;
  position: relative;
}

.tabs__content {
  color: var(--grey05);
  padding: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  backdrop-filter: blur(16px);
  border-radius: 2px;
  box-shadow: var(--box-shadow) 0 2px 4px rgba(0, 0, 0, 0.1);
}
