#hiworks_toolbar {
  justify-content: space-between;
  align-items: center;
  height: 60px;
  border-bottom: 1px solid #dadce0;
  padding: 0 24px;
}

#polaris_utils {
  display: flex;
  align-items: center;
  gap: 15px;
}

#polaris_utils > button {
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-wrap: nowrap;
  background-color: #fff;
  color: #333;
  font-size: 13px;
  height: 26px;
  padding: 0 10px;
  transition: all 0.2s;
  cursor: pointer;
}

#polaris_utils > button:active,
#polaris_utils > button:hover {
  background-color: #eaeaea;
}

#polaris_utils > button.cancel {
  background-color: #eaeaea;
}

#polaris_utils > button.cancel:active,
#polaris_utils > button.cancel:hover {
  background-color: #d6d6d6;
}

#hw-loading {
  display: none;
  z-index: 3000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}

#hw-loading > .lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#hw-loading > .lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}

#hw-loading > .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  margin: -3px 0 0 -3px;
}

#hw-loading > .lds-roller.hasBackground div:after {
  background: #fff;
}

#hw-loading > .lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

#hw-loading > .lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}

#hw-loading > .lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

#hw-loading > .lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}

#hw-loading > .lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

#hw-loading > .lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}

#hw-loading > .lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

#hw-loading > .lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}

#hw-loading > .lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

#hw-loading > .lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}

#hw-loading > .lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

#hw-loading > .lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}

#hw-loading > .lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

#hw-loading > .lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}

#hw-loading > .lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

#hw-loading > .lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
