.page-header {
  position: relative;
  display: flex;
  flex-shrink: 0;

  flex-direction: row;

  justify-content: space-between;
  align-items: center;

  width: 100%;
}

.page-header .page-header-title {
  position: relative;
  display: flex;

  font-size: 35px;
  font-weight: 700;

  color: black;
}

.page-header .page-header-actions {
  position: relative;
  display: flex;

  flex-direction: row;
}

.page-header .page-header-actions .page-header-actions-item {
  position: relative;
  display: flex;

  justify-content: center;
  align-items: center;

  margin-right: 10px;

  width: 40px;
  height: 40px;

  border-radius: 4px;

  fill: #c4ccda;
  background: white;

  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.06);

  transition: 0.3s all ease-out;
}
