/* module-key = 'com.almworks.jira.structure:help-widget', location = 'css/structure/welcome/help-widget.css' */
.st-help-widget {
  --hw-height: auto;
  --hw-container-max-height: 600px;
}

.st-help-widget {
  display: flex;
  height: var(--hw-height);
}

.st-help-container,
.st-help-container-belt {
  width: 340px;
}

.st-help-container {
  min-height: 333px;
  max-height: var(--hw-container-max-height);
  background-color: white;
  border-right: 2px solid #EBECF0;
  overflow-y: auto;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

.st-help-widget.s-collapsed .st-help-container {
  width: 0;
}

.st-help-title {
  margin: 16px 20px 0 20px;
  display: flex;
  align-items: start;
}

.aui-icon-middle {
  --aui-icon-size: 21px;
}

.st-help-question-icon {
  color: #6554C0;
  margin: 4px 0 4px 0;
}

.st-help-title-text {
  margin-left: 12px;
  font-size: 20px;
  overflow: hidden;
}

.st-help-body {
  margin: 20px;
}

.st-help-contacts {
  margin: 16px 20px 6px 20px;
}

.st-help-sidebar {
  background-color: #5243AA;
  color: white;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  width: 44px;
  height: 218px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  border-radius: 10px 0 0 10px;
}

.st-help-widget[mode="interactive"] .st-help-sidebar {
  cursor: pointer;
}

.st-help-widget[mode="interactive"] .st-help-sidebar:hover {
  background-color: #6554C0;
  transition: background-color 150ms ease-in-out;
}

.st-help-widget[mode="interactive"] .st-help-container {
  transition: width 300ms ease-in-out;
}

.st-help-sidebar-text {
  margin-bottom: 12px;
  width: 20px;
  height: 152px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.st-help-sidebar-icon {
  transform: rotate(180deg);
}

.s-user-field {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.s-user-field .s-user-field-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}