.Topbar {
  height: 60px;
  background: var(--white);
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Topbar__icon {
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url('/images/w.svg');
  width: 60px;
  height: 60px;
}

.Topbar__title {
  font-size: 0.6em;
  font-weight: 500;
}

.Topbar__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Topbar__left > * {
  margin: 0 1em 0 0;
}

.Topbar__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 16px 0 0;
}

.Topbar__action {
  width: 60px;
  height: 60px;
}

.Topbar__actions > div {
  margin: 0 0 0 12px;
}

.Topbar__button {
  font-size: 13px;
}

.Topbar__action.is-add {
  background-image: url('/images/add.svg');
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.Topbar__action.is-search{
  background-image: url('/images/icons/block-search.svg');
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.Topbar__action.is-global-styles {
  background-image: url('/images/global_styles.svg');
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.Topbar__action.is-ellipsis {
  background-image: url('/images/ellipsis.svg');
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: 50%;
}
