.Toolbar {
  position: relative;
  width: var(--canvasWidth);;
  margin: 1em auto 1em auto;
  background: var(--black);
  border-radius: 3px;
  user-select: none;
  transition: all 300ms ease-in-out;
  height: 62px;
  z-index: 10;
}

.Toolbar__inner {
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Toolbar__action {
  font-size: 13px;
  color: var(--white);
}

.Toolbar__action:hover {
  text-decoration: underline;
}

.Toolbar__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 125px;
  font-size: 13px;
  color: var(--white);
}

.Toolbar__count {
  display: flex;
  background: var(--white);
  color: var(--black);
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 6px 0 0;
  font-weight: 500;
  font-size: 13px;
  border-radius: 1px;
}

.Toolbar__options {
  display: flex;
}

.Toolbar__option {
  font-size: 13px;
  color: var(--white);
  margin: 0 0 0 12px;
}

.Toolbar.is-trash .Toolbar__restore {
  display: none;
}

.Toolbar.is-restore .Toolbar__trash {
  display: none;
}

.Toolbar__arrow {
  display: inline-block;
  background-image: url('/images/arrow-down.svg');
  width: 20px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: 50%;
}
