#categoriesBox1{
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  padding: 0.25rem;
}
#categoriesBoxA {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.7s ease;
  margin-bottom: 0.5rem;
}
#categoriesBox2{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: 100%;
  padding: 0.25rem;
}
#categoriesSection{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 0.7s ease;
}
#categoryWorkBackground{
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  background-color: rgba(238, 238, 238, 0.6);
}
#categoryWorkArea{
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 200px;
  background-color: var(--b5);
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.4);
  padding: 0.5rem;
}
.inputCategory{
  font-size: 18px;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  height: auto;
  width: 90%;
  align-self: center;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  background-color: rgba(255,255,255,0.6);
  text-align: right;
  transition: all 0.2s ease;
}
.inputCategory:focus,
.inputCategory:active {
  outline: none;
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

#iconMenu{
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  overflow-y: scroll;
}
.menuIcon{
  width: 32px;
  height: 32px;
  margin: 0.25rem;
}