* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --white: #ffffff;
  --light-gray: #fbf7f8;
  --gray: #ffeff3;
  --accent: #ac005a;
  --black: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 400;
}
img {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
}

body {
  direction: rtl;
  background-color: var(--light-gray);
  color: var(--black);
  font-size: 18px;
  line-height: 1.5;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  accent-color: var(--accent);
}

.content-wrap {
  display: flex;
  height: 100vh;
  overflow: auto;
}
.sidebar {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 320px;
  background-color: var(--white);
  padding: 32px;
  position: sticky;
  top: 0;
}
.content {
  width: 100%;
}
.header {
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}
.items-list {
  /* column-count: 2;
  column-gap: 48px; */
}
.item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.item-name {
  width: 160px;
}
.item-number {
  width: 40px;
}
