header{
  display: flex;
  background: var(--app-background-section);
  height: 46px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  .logo{
    img {
      height: 36px;
      max-width: 150px;
    }
    margin-right: auto;
  }
  .header-balances{
    display: flex;
    flex-direction: row;
    .balance {
      color: var(--green);
    }
  }
}

.header-wrap {
  display: flex;
  align-items: center;
  .header-balances-item{
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.header-profit{
  margin-left: 20px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.header-info{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}
.header-menu {
  cursor: pointer;
  svg {
    height: 20px;
    width: 20px;
  }
}

.header-account {
  display: flex;
  height: 25px;
  min-width: 140px;
  justify-content: space-between;
  cursor: pointer;
  text-transform: uppercase;
  align-items: center;
  white-space: nowrap;
  background-color: var(--header-account-bar-background);
  border-radius: 4px;
  padding: 0 10px;
}

.header-account-type {
  font-weight: 600;
}

.header-account-id {
  font-weight: 500;
}

.header-margin {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  min-width: 150px;
}

.header-balances-item, .header-margin {
  height: 34px;
  justify-content: space-between;
}

.header-margin .header-balances-item {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: unset;
  height: unset;
}

.margin-bar {
  position: relative;
  height: 2px;
  width: 100%;
  background-color: var(--progress-bar-background);
}

.margin-bar-inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--green);
  max-width: 100%;
}

.app-header .logo {
  //height: 24px;
}


.header-account {
  display: flex;
}

.header-menu {
  display: flex;
  justify-content: flex-end;
}

.profit-currency {
  display: inline-block;
  margin-left: 8px;
  color: var(--app-color);
}

.one-click-active{
  background: var(--app-background);
  border-radius: 3px;
  padding:3px;
}
