.hide{
  display: none;
}
.logo_placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo_placeholder svg{
  width: 22px;
  height: 22px;
}
.more_placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
}
.more_placeholder svg{
  width: 22px;
  height: 22px;
}
.wallet_placeholder{
  display: flex;
  padding: 0.25rem;
  margin-left: auto;
  background-color: var(--accent2);
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
}

.activeAccountContainer{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--accentD);
}

.dashedBorder{
  width: 100%;
  max-height: 1px;
  border: 1px solid transparent;
  
  border-image:
    repeating-linear-gradient(
      90deg,
      var(--accent2) 0 8px,
      transparent 8px 16px
    ) 1;
}

.transactionCategoryDetailIconContainer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: var(--accentD);
  border-radius: 0.5rem;
}

.transactionCategoryDetailIconContainer svg{
  width: 24px;
  height: 24px;
}

.toast{
  display: flex;
  position: absolute;
  top: 0.75rem;
  align-items: center;
  width: 98%;
  align-self: center;
  border-radius: 0.5rem;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  opactity: 0;
  animation: toast 0.5s ease forwards;
  box-shadow: 2px 5px 10px rgba(0,0,0,0.3);
  background-color: var(--accent);
  z-index: 2000;
}

.toast svg{
  width: 20px;
  height: 20px;
}