/*
 * Workday Canvas - canvas-kit-css-page-header v9.1.26
 * Copyright 2019-2023 Workday, Inc.
 */
.wdc-icon-list {
  display: flex;
}
.wdc-icon-list > *:first-of-type {
  margin-left: -4px;
}
.wdc-icon-list > *:not(:last-child) {
  margin-right: 8px;
}
.wdc-icon-list .wdc-icon-list-icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-right: 4px;
}
.wdc-icon-list .wdc-icon-list-icon:focus, .wdc-icon-list .wdc-icon-list-icon.wdc-icon-list-icon-focus, [data-whatinput=keyboard] .wdc-icon-list .wdc-icon-list-icon:not([disabled]):not([tabindex="-1"]):focus {
  outline: none;
  border-radius: 4px;
  box-shadow: 0 0 0 2px #005cb9;
}
.wdc-icon-list .wdc-icon-list-icon .wd-icon-fill,
.wdc-icon-list .wdc-icon-list-icon .wd-icon-accent {
  fill: #7b858f;
  transition: fill 0.2s;
}
.wdc-icon-list .wdc-icon-list-icon .wd-icon-background {
  fill: transparent;
}
.wdc-icon-list .wdc-icon-list-icon:hover .wd-icon-fill,
.wdc-icon-list .wdc-icon-list-icon:hover .wd-icon-accent {
  fill: #333d47;
}
.wdc-icon-list.wdc-icon-list-white .wdc-icon-list-icon .wd-icon-fill,
.wdc-icon-list.wdc-icon-list-white .wdc-icon-list-icon .wd-icon-accent {
  fill: #ffffff;
}
.wdc-icon-list.wdc-icon-list-white .wdc-icon-list-icon:focus, .wdc-icon-list.wdc-icon-list-white .wdc-icon-list-icon.wdc-icon-list-white-focus, [data-whatinput=keyboard] .wdc-icon-list.wdc-icon-list-white .wdc-icon-list-icon:not([disabled]):not([tabindex="-1"]):focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffffff;
}

[data-whatinput=initial] .wdc-icon-list .wdc-icon-list-icon:not([disabled]):not([tabindex="-1"]):focus,
[data-whatinput=mouse] .wdc-icon-list .wdc-icon-list-icon:not([disabled]):not([tabindex="-1"]):focus,
[data-whatinput=touch] .wdc-icon-list .wdc-icon-list-icon:not([disabled]):not([tabindex="-1"]):focus {
  outline: none;
  box-shadow: none;
}
[data-whatinput=initial] .wdc-icon-list.wdc-icon-list-white .wdc-icon-list-icon:not([disabled]):not([tabindex="-1"]):focus,
[data-whatinput=mouse] .wdc-icon-list.wdc-icon-list-white .wdc-icon-list-icon:not([disabled]):not([tabindex="-1"]):focus,
[data-whatinput=touch] .wdc-icon-list.wdc-icon-list-white .wdc-icon-list-icon:not([disabled]):not([tabindex="-1"]):focus {
  outline: none;
  box-shadow: none;
}

.wdc-page-header {
  height: 84px;
  background-image: linear-gradient(to bottom right, #0875e1, #005cb9);
  color: #fff;
}
.wdc-page-header .wdc-page-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
}
.wdc-page-header .wdc-page-header-title {
  font-family: "Roboto", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: #333333;
  color: #ffffff;
  padding: 12px 0;
  margin: 0;
}
.wdc-page-header .wdc-page-header-cap-width {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
}
.wdc-page-header .wdc-icon-list {
  margin-left: 32px;
}
@media (min-width: 768px) {
  .wdc-page-header .wdc-page-header-container {
    padding: 0 40px;
  }
}