#transactionsMenu_placeholder{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
  overflow-y: scroll;
}
.blankElement{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text3);
  font-weight: 600;
  align-self: center;
}
.blankElement svg{
  width: 150px;
  height: 150px;
}

.dateWrapper{
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.5rem;
}

.dateSeparator{
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  padding: 0.25rem 0rem;
  height: fit-content;
}
.dateSeparator .date{
  color: var(--text2);
}

.dateSeparator .netAmount{
  margin-left: auto;
  margin-right: 0.5rem;
  text-align: right;
}


.graphicTextBox svg{
  width: 14px;
  height: 14px;
}

.transactionsHeader_placeholder{
  display: flex;
  width: 100%;
  gap: 0.5rem;
  align-items: center;
}


.boxNotationContainer{
  display: flex;
  width: 100%;
  flex: 1;
  max-height: fit-content;
  flex-wrap: wrap;
  gap: 0.25rem;
  background-color: var(--accent1);
  padding: 0.5rem;
}
.boxNotationContainer div{
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--bg);
}

.inactiveAccountContainer{
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  opacity: 0;
  background-color: var(--accent2);
}

.inactiveAccountContainer .checkAccountBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0rem 0.5rem 0.5rem 0rem;
  background-color: var(--g1);
  width: 0px;
  height: 100%;
  transition: 0.2s ease;
}

.inactiveAccountContainer.toggleCheckAccountBtn .checkAccountBtn {
  width: 46px;
}