.sidebar {
  position: absolute;
  left: var(--left-side-space);
  top: calc(2 * var(--header-top-space) + var(--header-height));
  width: var(--content-width);
  height: calc(100vh - var(--header-top-space) - 1.5 * var(--header-height));
  max-height: 1300px;
  padding-bottom: 5px;
  z-index: 5;
  border-radius: var(--content-border-radius);
  background-color: var(--content-bg-color);
  transition: 0.5s;
}
.sidebar__content-container {
  height: var(--details-content-height);
  overflow-y: scroll;
}
.sidebar--hide {
  transform: translateX(-150%);
}
.sidebar__header {
  padding-right: 5%;
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sidebar__title {
  font-size: var(--sidebar-title-font-size);
  font-weight: normal;
  text-align: center;
}

.sidebar__tabs-container {
  display: flex;
}

.sidebar ::-webkit-scrollbar {
  width: 10px;
  height: 0px;
}
.sidebar ::-webkit-scrollbar-thumb {
  background: var(--border-light);
}

.sidebar__info-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.151);
}

.sidebar__info-item:last-of-type {
  border: none;
}

.sidebar__item-key {
  width: fit-content;
  max-width: 50%;
  font-weight: 700;
  text-align: left;
  font-size: var(--details-font-size);
  padding: 0 5px;
}

.sidebar__item-value {
  width: 50%;
  font-weight: 400;
  text-align: right;
  font-size: var(--details-font-size);
  padding: 0 5px;
  word-wrap: break-word;
}


.sidebar__radio,
.sidebar__content {
  display: none;
}

.sidebar__tab {
  width: 100%;
  font-weight: bold;
  font-size: var(--sidebar-tab-font-size);
  display: block;
  padding: 10px 30px;
  border: none;
  border-bottom: 2px solid #ddd;
}

.sidebar__tab:hover {
  cursor: pointer;
  text-decoration: underline;
}

.sidebar__radio:checked + .sidebar__tab {
  border-color: transparent;
  border-bottom-color: var(--sidebar-tabs-underline-color);
  text-decoration: none;
}

#content-1 {
  display: block;
}
