@charset "UTF-8";
:root {
  --theme-color-primary: DarkSlateGrey;
  --theme-color-background: DarkSlateGrey;
  --theme-color-background-raw: 0, 0, 0;
  --theme-background-image: linear-gradient(black, black);
  --theme-background-opacity: 0.9;
  --main-bg-color: DarkSlateGrey;
  --main-text-color: White;
  --main-secondary-color: Black;
  --sidebar-bg-color: DarkKhaki;
  --sidebar-text-color: White;
  --sidebar-highlight-color: Blue;
}

.hide {
  display: none;
}

@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Regular.woff2);
}
@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Bold.woff2);
  font-weight: bold;
}
* {
  font-family: SimDefaultFont;
  letter-spacing: 1px;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.item-quality-junk {
  color: #fff !important;
}

.item-quality-common {
  color: white !important;
}

.item-quality-uncommon {
  color: #1eff00 !important;
}

.item-quality-rare {
  color: #0070dd !important;
}

.item-quality-epic {
  color: #a335ee !important;
}

.item-quality-legendary {
  color: #ff8000 !important;
}

#bootstrap-overrides .socket-color-blue {
  border: 1px solid blue !important;
}

#bootstrap-overrides .socket-color-meta {
  border: 1px solid white !important;
}

#bootstrap-overrides .socket-color-red {
  border: 1px solid red !important;
}

#bootstrap-overrides .socket-color-yellow {
  border: 1px solid yellow !important;
}

.dropdown-root {
  position: relative;
  display: inline-block !important;
  white-space: nowrap;
}

.dropdown-button {
  cursor: pointer;
  background-color: gray;
}

.dropdown-panel {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-panel-column {
  display: inline-flex;
  flex-direction: column;
}

.dropdown-root:hover .dropdown-panel {
  display: grid !important;
}

.dropdown-option-container:hover {
  text-decoration: none;
}

.dropdown-option-container {
  background-color: gray;
}

.dropdown-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

*:not(.dropdown-button) > * > .dropdown-option:not(:hover) {
  opacity: 0.7;
}

.positive {
  color: lawngreen !important;
}

.negative {
  color: red !important;
}

.safe {
  color: lawngreen;
}

.warning {
  color: yellow;
}

.danger {
  color: red;
}

.bold {
  font-weight: bold;
}

.sim-button {
  color: var(--main-text-color);
  background-color: var(--theme-color-primary);
  border: none;
  padding: 5px;
  font-weight: bold;
}

.close-button {
  position: absolute;
  right: -10px;
  top: -10px;
  height: 30px;
  width: 30px;
  background-color: black;
  border: 2px solid white;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 900;
  color: red;
  opacity: 0.5;
  text-shadow: none;
  cursor: pointer;
}

.close-button:hover {
  opacity: 1;
}

.close-button span {
  margin: 0 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.input-label-div {
  display: inline-block;
  margin: 5px;
}

.input-label, .input-tooltip {
  margin: 3px;
}

.input-root.disabled .input-label, .input-root.disabled .input-tooltip {
  filter: opacity(0.5);
}

.input-root.disabled .dropdown-button, .input-root.disabled .dropdown-option {
  filter: grayscale(1);
}

.input-root.hide {
  display: none;
}

.number-picker-input {
  margin: 5px;
  width: 92px;
}

.sim-title-root {
  display: block !important;
  height: 100%;
  color: white;
}

.sim-title-button {
  background-color: transparent !important;
}

.sim-title-button .sim-title-label {
  display: block;
}

.sim-title-label-container {
  text-align: left;
  width: 100%;
}

.sim-title-dropdown {
  position: fixed !important;
  z-index: 9999 !important;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
}

.sim-title-button .sim-title-dropdown-option-container {
  background: transparent;
}

.sim-title-option {
  width: 100%;
  height: 100%;
}

.sim-title-icon {
  margin: 5px;
  height: 50px;
}

.sim-title-label {
  margin: 2px 5px;
}

.sim-title-sim-label {
  color: white;
  font-size: 14px;
}

.sim-title-spec-label {
  color: var(--theme-color-primary);
  font-size: 16px;
  font-weight: bold;
}

.dropdown-panel .sim-title-spec-label {
  color: var(--main-text-color);
  text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black;
}

:root {
  --theme-color-primary: DarkSlateGrey;
  --theme-color-background: DarkSlateGrey;
  --theme-color-background-raw: 0, 0, 0;
  --theme-background-image: linear-gradient(black, black);
  --theme-background-opacity: 0.9;
  --main-bg-color: DarkSlateGrey;
  --main-text-color: White;
  --main-secondary-color: Black;
  --sidebar-bg-color: DarkKhaki;
  --sidebar-text-color: White;
  --sidebar-highlight-color: Blue;
}

.hide {
  display: none;
}

@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Regular.woff2);
}
@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Bold.woff2);
  font-weight: bold;
}
* {
  font-family: SimDefaultFont;
  letter-spacing: 1px;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.item-quality-junk {
  color: #fff !important;
}

.item-quality-common {
  color: white !important;
}

.item-quality-uncommon {
  color: #1eff00 !important;
}

.item-quality-rare {
  color: #0070dd !important;
}

.item-quality-epic {
  color: #a335ee !important;
}

.item-quality-legendary {
  color: #ff8000 !important;
}

#bootstrap-overrides .socket-color-blue {
  border: 1px solid blue !important;
}

#bootstrap-overrides .socket-color-meta {
  border: 1px solid white !important;
}

#bootstrap-overrides .socket-color-red {
  border: 1px solid red !important;
}

#bootstrap-overrides .socket-color-yellow {
  border: 1px solid yellow !important;
}

.dropdown-root {
  position: relative;
  display: inline-block !important;
  white-space: nowrap;
}

.dropdown-button {
  cursor: pointer;
  background-color: gray;
}

.dropdown-panel {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-panel-column {
  display: inline-flex;
  flex-direction: column;
}

.dropdown-root:hover .dropdown-panel {
  display: grid !important;
}

.dropdown-option-container:hover {
  text-decoration: none;
}

.dropdown-option-container {
  background-color: gray;
}

.dropdown-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

*:not(.dropdown-button) > * > .dropdown-option:not(:hover) {
  opacity: 0.7;
}

.positive {
  color: lawngreen !important;
}

.negative {
  color: red !important;
}

.safe {
  color: lawngreen;
}

.warning {
  color: yellow;
}

.danger {
  color: red;
}

.bold {
  font-weight: bold;
}

.sim-button {
  color: var(--main-text-color);
  background-color: var(--theme-color-primary);
  border: none;
  padding: 5px;
  font-weight: bold;
}

html {
  overflow: hidden;
}

body {
  margin: 0;
}

td, th {
  padding: auto;
}

input, select {
  color: var(--main-text-color);
  background-color: #1e2633;
  border: 1px solid #373e58;
  padding: 3px;
}

.sim-input {
  color: var(--main-text-color);
  background-color: #1e2633;
  border: 1px solid #373e58;
  padding: 3px;
}

.sim-root {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
}

.sim-sidebar {
  height: 100%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #111218;
  flex: 1;
  overflow-y: auto;
}

.sim-sidebar > div {
  margin: 10px 0;
}

.sim-sidebar-title {
  margin: 0 0 50px 0 !important;
}

.sim-sidebar-title, .sim-toolbar {
  min-height: 60px;
  border-bottom: 1px solid white;
  display: flex;
}

.sim-title-root {
  width: 100%;
}

.sim-sidebar-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sim-sidebar-actions-button {
  width: 150px;
  height: 40px;
  cursor: pointer;
  margin: 5px;
  background: transparent;
  color: var(--main-text-color);
  border: 1px solid var(--theme-color-primary);
  font-weight: 1000;
  transition: all 0.2s ease-in;
}

.sim-sidebar-actions-button:hover {
  color: var(--main-text-color);
  background: var(--theme-color-primary);
}

.iterations-picker {
  text-align: center;
}

.iterations-picker .input-label {
  color: var(--sidebar-text-color);
  font-size: 16px;
  font-weight: 700;
}

.sim-sidebar-results {
  flex-grow: 1;
}

.sim-sidebar-results {
  height: 100%;
  position: relative;
}

.sim-sidebar-results > div {
  margin: 0 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100%;
  text-align: center;
}

.results-pending .loader {
  margin: auto;
}

.sim-sidebar-actions, .sim-sidebar-footer {
  margin: 0 !important;
  display: flex;
}

.iterations-label {
  color: var(--sidebar-text-color);
}

.results-sim {
  color: var(--sidebar-text-color);
  text-shadow: 0 0 10px var(--sidebar-highlight-color);
}

.sim-main {
  height: 100%;
  width: 80%;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(rgba(var(--theme-color-background-raw), var(--theme-background-opacity)), rgba(var(--theme-color-background-raw), var(--theme-background-opacity))), var(--theme-background-image);
  background-size: cover;
  background-position: center center;
  color: var(--main-text-color);
  overflow-y: auto;
  flex: 4;
  min-width: 250px;
}

.nav-tabs {
  padding-left: 40px;
  padding-top: 15px;
  border-bottom-color: var(--theme-color-primary);
  color: var(--main-text-color);
  font-size: clamp(10px, 1.5vw, 15px);
}

.nav-tabs > li > a {
  color: var(--main-text-color) !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0.1vh 0.1vw 0.1vh 0.1vw;
  font-weight: bold;
}

.nav-tabs > li > a:hover, .nav-tabs > li.active > a {
  background-color: var(--theme-color-primary) !important;
}

.sim-main > .tab-content {
  flex-grow: 1;
  height: 80%;
}

.sim-main > .tab-content > .tab-pane {
  height: 100%;
}

.sim-toolbar {
  display: flex;
  align-items: flex-end;
}

.sim-tabs {
  padding-top: 0;
  width: 100%;
  border: none;
}

.sim-top-bar {
  float: right !important;
  display: flex !important;
  align-items: center !important;
  margin-right: 10px;
}

.sim-top-bar-item {
  cursor: pointer;
  font-size: clamp(12px, 2vw, 20px);
  margin-right: 12px;
}

.sim-dropdown-menu {
  position: relative;
}

.sim-dropdown-menu .dropdown-menu {
  background-color: #111218;
  border: 1px solid var(--theme-color-primary);
  text-align: right;
  min-width: auto;
  color: white;
  font-weight: bold;
  top: 120%;
}

.sim-dropdown-menu .dropdown-item {
  display: block;
  padding: 5px 20px;
  user-select: none;
  white-space: nowrap;
}

.sim-dropdown-menu .dropdown-item:hover {
  background-color: #2a2c3b;
}

.notices {
  font-size: 30px;
  color: blue;
  margin: 0 20px;
  text-shadow: 0 0 10px white, 0 0 10px white, 0 0 10px white;
}

.warnings {
  font-size: 30px;
  color: yellow;
  margin: 0 20px;
  text-shadow: 0 0 10px red, 0 0 10px red, 0 0 10px red;
}

.known-issues {
  display: none;
  background-color: red;
  border: 2px solid var(--main-text-color);
  padding: 2px;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 900;
}

.downbin {
  mask: url(/tbc/assets/gauge.svg);
  mask-size: cover;
  -webkit-mask: url(/tbc/assets/gauge.svg);
  -webkit-mask-size: cover;
  display: inline-block;
  width: 22px;
  height: 22px;
}

.downbinnorm {
  background-color: white;
}

.downbinalert {
  background-color: red;
}

.hide-threat-metrics .threat-metrics {
  display: none !important;
}

.hide-experimental .experimental {
  display: none !important;
}

.hide-in-front-of-target .in-front-of-target {
  display: none !important;
}

.bonus-stats-root {
  margin: 10px;
}

.bonus-stats-label {
  font-size: 18px;
  font-weight: 700;
}

.bonus-stats-root .number-picker-root {
  display: flex;
  align-items: center;
}

.bonus-stats-root .input-label-div {
  margin: 1px;
}

.bonus-stats-root .number-picker-input {
  margin: 1px;
  padding: 1px;
}

.bonus-stats-root .number-picker-root.positive .input-label {
  font-weight: bold;
  text-shadow: 2px 2px 3px black;
}

.bonus-stats-root .number-picker-root.negative .input-label {
  font-weight: bold;
  text-shadow: 2px 2px 3px black;
}

.input-label-div {
  display: inline-block;
  margin: 5px;
}

.input-label, .input-tooltip {
  margin: 3px;
}

.input-root.disabled .input-label, .input-root.disabled .input-tooltip {
  filter: opacity(0.5);
}

.input-root.disabled .dropdown-button, .input-root.disabled .dropdown-option {
  filter: grayscale(1);
}

.input-root.hide {
  display: none;
}

.boolean-picker-input {
  margin: 5px !important;
  width: 70px;
}

.character-stats-root {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.character-stats-table {
  width: 100%;
}

.character-stats-table-row {
  width: 100%;
}

.character-stats-table-label {
  text-align: left;
  padding: 8px 10px 1px 10px;
}

.character-stats-table-value {
  text-align: right;
  padding: 8px 10px 1px 10px;
}

.character-stats-tooltip-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 5px;
}

.input-label-div {
  display: inline-block;
  margin: 5px;
}

.input-label, .input-tooltip {
  margin: 3px;
}

.input-root.disabled .input-label, .input-root.disabled .input-tooltip {
  filter: opacity(0.5);
}

.input-root.disabled .dropdown-button, .input-root.disabled .dropdown-option {
  filter: grayscale(1);
}

.input-root.hide {
  display: none;
}

.cooldown-picker {
  display: flex;
  align-items: center;
  margin: 3px;
}

.cooldown-picker .number-list-picker {
  display: inline-block;
}

.delete-cooldown {
  color: red;
  margin: 3px;
  margin-left: 6px;
  font-size: 20px;
  cursor: pointer;
}

.add-cooldown-picker .delete-cooldown {
  opacity: 0;
}

.cooldown-picker-label {
  margin-left: 5px;
  font-size: 12px;
  min-width: 115px;
}

.detailed-results-manager-root {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.detailed-results-new-tab-button {
  margin: 5px;
  color: black;
}

.detailed-results-iframe {
  flex-grow: 1;
  border: 1px solid var(--main-text-color);
}

.input-label-div {
  display: inline-block;
  margin: 5px;
}

.input-label, .input-tooltip {
  margin: 3px;
}

.input-root.disabled .input-label, .input-root.disabled .input-tooltip {
  filter: opacity(0.5);
}

.input-root.disabled .dropdown-button, .input-root.disabled .dropdown-option {
  filter: grayscale(1);
}

.input-root.hide {
  display: none;
}

.enum-picker-selector {
  margin: 5px;
}

.list-picker-item-container {
  border: 1px solid var(--theme-color-primary);
  margin: 5px;
}

.list-picker-item-header {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 1px;
}

.list-picker-item-header > span {
  margin: 3px 15px;
  cursor: pointer;
  font-size: 16px;
}

.list-picker-item-header span:hover {
  text-shadow: 0 0 3px red, 0 0 3px red, 0 0 3px red;
}

.list-picker-item-up {
  color: cyan;
}

.list-picker-item-down {
  color: magenta;
}

.list-picker-item-copy {
  color: yellow;
}

.list-picker-item-delete {
  color: red;
}

.input-label-div {
  display: inline-block;
  margin: 5px;
}

.input-label, .input-tooltip {
  margin: 3px;
}

.input-root.disabled .input-label, .input-root.disabled .input-tooltip {
  filter: opacity(0.5);
}

.input-root.disabled .dropdown-button, .input-root.disabled .dropdown-option {
  filter: grayscale(1);
}

.input-root.hide {
  display: none;
}

.number-picker-input {
  margin: 5px;
  width: 92px;
}

.encounter-picker-root {
  text-align: center;
}

.encounter-picker-root .input-root {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.encounter-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  border-bottom: 1px solid white;
  margin: 2px;
}

.encounter-header .input-root {
  margin: 5px 5px;
  white-space: nowrap;
}

.encounter-targets {
  max-height: 80vh;
  overflow-y: auto;
}

.targets-picker {
  text-align: center;
}

.target-picker-root {
  display: flex;
}

.target-picker-section {
  margin: 2px 5px;
}

.target-picker-section .input-root {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.target-picker-section .input-label-div {
  white-space: nowrap;
}

.npc-picker .enum-picker-selector {
  max-width: max(15vw, 200px);
}

.popup {
  margin: 0 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-width: 50%;
  padding: 8px;
  background-color: #111218;
  border: 1px solid var(--theme-color-primary);
  border-radius: 6px;
  max-width: 100%;
  color: white;
}

.exporter {
  text-align: center;
}

.exporter-title {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin: 10px;
}

.exporter-textarea {
  width: 100%;
  height: 40vh;
  background-color: #111218;
  resize: none;
}

.exporter .actions-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
}

.input-label-div {
  display: inline-block;
  margin: 5px;
}

.input-label, .input-tooltip {
  margin: 3px;
}

.input-root.disabled .input-label, .input-root.disabled .input-tooltip {
  filter: opacity(0.5);
}

.input-root.disabled .dropdown-button, .input-root.disabled .dropdown-option {
  filter: grayscale(1);
}

.input-root.hide {
  display: none;
}

.enum-picker-selector {
  margin: 5px;
}

:root {
  --theme-color-primary: DarkSlateGrey;
  --theme-color-background: DarkSlateGrey;
  --theme-color-background-raw: 0, 0, 0;
  --theme-background-image: linear-gradient(black, black);
  --theme-background-opacity: 0.9;
  --main-bg-color: DarkSlateGrey;
  --main-text-color: White;
  --main-secondary-color: Black;
  --sidebar-bg-color: DarkKhaki;
  --sidebar-text-color: White;
  --sidebar-highlight-color: Blue;
}

.hide {
  display: none;
}

@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Regular.woff2);
}
@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Bold.woff2);
  font-weight: bold;
}
* {
  font-family: SimDefaultFont;
  letter-spacing: 1px;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.item-quality-junk {
  color: #fff !important;
}

.item-quality-common {
  color: white !important;
}

.item-quality-uncommon {
  color: #1eff00 !important;
}

.item-quality-rare {
  color: #0070dd !important;
}

.item-quality-epic {
  color: #a335ee !important;
}

.item-quality-legendary {
  color: #ff8000 !important;
}

#bootstrap-overrides .socket-color-blue {
  border: 1px solid blue !important;
}

#bootstrap-overrides .socket-color-meta {
  border: 1px solid white !important;
}

#bootstrap-overrides .socket-color-red {
  border: 1px solid red !important;
}

#bootstrap-overrides .socket-color-yellow {
  border: 1px solid yellow !important;
}

.dropdown-root {
  position: relative;
  display: inline-block !important;
  white-space: nowrap;
}

.dropdown-button {
  cursor: pointer;
  background-color: gray;
}

.dropdown-panel {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-panel-column {
  display: inline-flex;
  flex-direction: column;
}

.dropdown-root:hover .dropdown-panel {
  display: grid !important;
}

.dropdown-option-container:hover {
  text-decoration: none;
}

.dropdown-option-container {
  background-color: gray;
}

.dropdown-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

*:not(.dropdown-button) > * > .dropdown-option:not(:hover) {
  opacity: 0.7;
}

.positive {
  color: lawngreen !important;
}

.negative {
  color: red !important;
}

.safe {
  color: lawngreen;
}

.warning {
  color: yellow;
}

.danger {
  color: red;
}

.bold {
  font-weight: bold;
}

.sim-button {
  color: var(--main-text-color);
  background-color: var(--theme-color-primary);
  border: none;
  padding: 5px;
  font-weight: bold;
}

.popup {
  margin: 0 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-width: 50%;
  padding: 8px;
  background-color: #111218;
  border: 1px solid var(--theme-color-primary);
  border-radius: 6px;
  max-width: 100%;
  color: white;
}

.gear-picker-root {
  display: flex;
  flex-wrap: wrap;
  min-width: 250px;
}

.gear-picker-left, .gear-picker-right {
  width: 50%;
  flex: 1;
  min-width: 250px;
}

.item-picker-root {
  display: flex;
  margin: 3px;
}

.gear-picker-left .item-picker-root {
  flex-direction: row;
  text-align: left;
}

.gear-picker-right .item-picker-root {
  flex-direction: row-reverse;
  text-align: right;
}

@media only screen and (max-width: calc(750px + 1vw)) {
  .gear-picker-right .item-picker-root {
    text-align: left;
    flex-direction: row;
  }
}
.item-picker-icon {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 8vh;
  height: 8vh;
  border: 2px solid dimgray;
}

.item-picker-sockets-container {
  position: absolute;
  bottom: 0;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.item-picker-gem-icon {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 28%;
  margin: 1px;
}

.item-picker-labels-container {
  padding: 3px;
  text-shadow: 2px 2px 4px black;
  flex: 1;
}

.item-picker-name {
  display: block;
  font-size: clamp(16px, 17px, 18px);
  letter-spacing: normal;
}

.item-picker-enchant {
  display: block;
  font-size: clamp(12px, 13px, 14px);
  color: lawngreen;
  letter-spacing: normal;
}

.selector-modal-tab-content-header {
  margin: 5px;
  display: flex;
  align-items: center;
}

.selector-modal-tab-gem-icon {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 5px 20px;
}

.selector-modal-tab-gem-icon:hover, li.active > .selector-modal-tab-gem-icon {
  box-shadow: 0 0 10px white, 0 0 10px white, 0 0 10px white;
}

.selector-modal-search {
  border: 1px inset black;
  border-radius: 4px;
  margin: 5px;
}

.selector-modal-filter-bar-filler {
  flex-grow: 1;
}

.selector-modal-boolean-option {
  margin: 5px;
}

.selector-modal-boolean-option .input-label-div {
  margin: 0;
}

.selector-modal-boolean-option .input-label {
  font-weight: bold;
  margin: 0;
}

.selector-modal-boolean-option .boolean-picker-input {
  width: 10px;
}

.selector-modal-phase-selector {
  font-size: 18px;
  font-weight: 700;
}

.selector-modal-list {
  max-height: 70vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0;
}

.selector-modal-list-item {
  display: flex;
  align-items: center;
  padding: 2px;
  text-shadow: 2px 2px 3px black;
  background-color: #111218;
}

.selector-modal-list-item.hidden {
  display: none;
}

.selector-modal-list-item.odd {
  background: #222;
}

.selector-modal-list-item:hover {
  background: #333;
}

.selector-modal-list-item.active .selector-modal-list-item-icon {
  border: 3px solid lawngreen;
}

.selector-modal-list-item-icon {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 2px solid #888;
}

.selector-modal-list-item-name {
  font-size: 18px;
  text-decoration: none !important;
  cursor: pointer;
  margin-left: 10px;
  letter-spacing: normal;
}

.selector-modal-list-item-padding {
  flex-grow: 1;
}

.selector-modal-list-item-ep {
  font-size: 16px;
  font-weight: 800;
}

.selector-modal-list-item-ep > span {
  display: inline-block;
  margin: 5px;
  color: white;
}

.icon-enum-picker-root {
  border: 2px solid dimgray;
  transition: 0.2s ease-in;
}

.icon-enum-picker-root a {
  height: 40px;
  width: 40px;
  display: block;
}

.icon-enum-picker-root.active {
  border-color: lawngreen;
}

.icon-enum-picker-root.disabled {
  border-color: dimgray;
}

.icon-enum-picker-button {
  background-size: cover;
}

.icon-enum-picker-option {
  background-size: cover;
}

:root {
  --theme-color-primary: DarkSlateGrey;
  --theme-color-background: DarkSlateGrey;
  --theme-color-background-raw: 0, 0, 0;
  --theme-background-image: linear-gradient(black, black);
  --theme-background-opacity: 0.9;
  --main-bg-color: DarkSlateGrey;
  --main-text-color: White;
  --main-secondary-color: Black;
  --sidebar-bg-color: DarkKhaki;
  --sidebar-text-color: White;
  --sidebar-highlight-color: Blue;
}

.hide {
  display: none;
}

@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Regular.woff2);
}
@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Bold.woff2);
  font-weight: bold;
}
* {
  font-family: SimDefaultFont;
  letter-spacing: 1px;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.item-quality-junk {
  color: #fff !important;
}

.item-quality-common {
  color: white !important;
}

.item-quality-uncommon {
  color: #1eff00 !important;
}

.item-quality-rare {
  color: #0070dd !important;
}

.item-quality-epic {
  color: #a335ee !important;
}

.item-quality-legendary {
  color: #ff8000 !important;
}

#bootstrap-overrides .socket-color-blue {
  border: 1px solid blue !important;
}

#bootstrap-overrides .socket-color-meta {
  border: 1px solid white !important;
}

#bootstrap-overrides .socket-color-red {
  border: 1px solid red !important;
}

#bootstrap-overrides .socket-color-yellow {
  border: 1px solid yellow !important;
}

.dropdown-root {
  position: relative;
  display: inline-block !important;
  white-space: nowrap;
}

.dropdown-button {
  cursor: pointer;
  background-color: gray;
}

.dropdown-panel {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-panel-column {
  display: inline-flex;
  flex-direction: column;
}

.dropdown-root:hover .dropdown-panel {
  display: grid !important;
}

.dropdown-option-container:hover {
  text-decoration: none;
}

.dropdown-option-container {
  background-color: gray;
}

.dropdown-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

*:not(.dropdown-button) > * > .dropdown-option:not(:hover) {
  opacity: 0.7;
}

.positive {
  color: lawngreen !important;
}

.negative {
  color: red !important;
}

.safe {
  color: lawngreen;
}

.warning {
  color: yellow;
}

.danger {
  color: red;
}

.bold {
  font-weight: bold;
}

.sim-button {
  color: var(--main-text-color);
  background-color: var(--theme-color-primary);
  border: none;
  padding: 5px;
  font-weight: bold;
}

.icon-input {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 50px;
  height: 50px;
  transition: 0.2s ease-in;
  border: 2px solid lawngreen;
  margin: 1px;
}

.icon-input:not(.active), .icon-input-improved:not(.active), .icon-input-counter:not(.active) {
  filter: grayscale(100%);
  border-color: dimgray;
}

.icon-input-level-container {
  position: absolute;
  bottom: 0;
  position: absolute;
  right: 0;
  margin: 3px;
  display: flex;
}

.icon-input-level-container * {
  width: 20px;
  height: 20px;
}

.icon-input-improved {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: 0.2s ease-in;
  border: 1px solid lawngreen;
}

.icon-input:not(.use-improved-icons) .icon-input-improved {
  display: none;
}

.icon-input:not(.use-improved-icons2) .icon-input-improved2 {
  display: none;
}

.icon-input-counter {
  font-weight: 900;
  background-color: black;
  color: lawngreen;
  border: none;
  width: auto;
  padding: 0 2px;
}

.icon-input:not(.use-counter) .icon-input-counter {
  display: none;
}

.popup {
  margin: 0 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-width: 50%;
  padding: 8px;
  background-color: #111218;
  border: 1px solid var(--theme-color-primary);
  border-radius: 6px;
  max-width: 100%;
  color: white;
}

.importer {
  text-align: center;
}

.importer-title {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin: 10px;
}

.import-description {
  text-align: left;
  padding: 5px;
}

.importer-textarea {
  width: 100%;
  height: 40vh;
  background-color: #111218;
  resize: none;
}

.importer-button {
  cursor: pointer;
}

.importer-button:disabled {
  cursor: wait;
  background-color: gray;
  color: white;
}

.importer-upload-input {
  display: none !important;
}

.importer .actions-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
}

.log-runner-root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.log-runner-button {
  margin: 5px;
  color: black;
}

.log-runner-logs {
  overflow-y: scroll;
  flex-grow: 1;
}

.log-runner-logs > span {
  display: block;
}

.input-label-div {
  display: inline-block;
  margin: 5px;
}

.input-label, .input-tooltip {
  margin: 3px;
}

.input-root.disabled .input-label, .input-root.disabled .input-tooltip {
  filter: opacity(0.5);
}

.input-root.disabled .dropdown-button, .input-root.disabled .dropdown-option {
  filter: grayscale(1);
}

.input-root.hide {
  display: none;
}

.number-list-picker-input {
  margin: 5px;
  width: 70px;
}

.input-label-div {
  display: inline-block;
  margin: 5px;
}

.input-label, .input-tooltip {
  margin: 3px;
}

.input-root.disabled .input-label, .input-root.disabled .input-tooltip {
  filter: opacity(0.5);
}

.input-root.disabled .dropdown-button, .input-root.disabled .dropdown-option {
  filter: grayscale(1);
}

.input-root.hide {
  display: none;
}

.number-picker-input {
  margin: 5px;
  width: 92px;
}

:root {
  --theme-color-primary: DarkSlateGrey;
  --theme-color-background: DarkSlateGrey;
  --theme-color-background-raw: 0, 0, 0;
  --theme-background-image: linear-gradient(black, black);
  --theme-background-opacity: 0.9;
  --main-bg-color: DarkSlateGrey;
  --main-text-color: White;
  --main-secondary-color: Black;
  --sidebar-bg-color: DarkKhaki;
  --sidebar-text-color: White;
  --sidebar-highlight-color: Blue;
}

.hide {
  display: none;
}

@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Regular.woff2);
}
@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Bold.woff2);
  font-weight: bold;
}
* {
  font-family: SimDefaultFont;
  letter-spacing: 1px;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.item-quality-junk {
  color: #fff !important;
}

.item-quality-common {
  color: white !important;
}

.item-quality-uncommon {
  color: #1eff00 !important;
}

.item-quality-rare {
  color: #0070dd !important;
}

.item-quality-epic {
  color: #a335ee !important;
}

.item-quality-legendary {
  color: #ff8000 !important;
}

#bootstrap-overrides .socket-color-blue {
  border: 1px solid blue !important;
}

#bootstrap-overrides .socket-color-meta {
  border: 1px solid white !important;
}

#bootstrap-overrides .socket-color-red {
  border: 1px solid red !important;
}

#bootstrap-overrides .socket-color-yellow {
  border: 1px solid yellow !important;
}

.dropdown-root {
  position: relative;
  display: inline-block !important;
  white-space: nowrap;
}

.dropdown-button {
  cursor: pointer;
  background-color: gray;
}

.dropdown-panel {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-panel-column {
  display: inline-flex;
  flex-direction: column;
}

.dropdown-root:hover .dropdown-panel {
  display: grid !important;
}

.dropdown-option-container:hover {
  text-decoration: none;
}

.dropdown-option-container {
  background-color: gray;
}

.dropdown-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

*:not(.dropdown-button) > * > .dropdown-option:not(:hover) {
  opacity: 0.7;
}

.positive {
  color: lawngreen !important;
}

.negative {
  color: red !important;
}

.safe {
  color: lawngreen;
}

.warning {
  color: yellow;
}

.danger {
  color: red;
}

.bold {
  font-weight: bold;
}

.sim-button {
  color: var(--main-text-color);
  background-color: var(--theme-color-primary);
  border: none;
  padding: 5px;
  font-weight: bold;
}

.results-sim {
  text-align: center;
}

.results-sim-dps {
  text-align: center;
}

.results-sim-tps {
  text-align: center;
}

.topline-result-avg {
  font-size: 18px;
  font-weight: 700;
}

.hide-threat-metrics .topline-result-avg {
  font-size: 30px;
}

.topline-result-avg:after {
  font-size: 12px;
}

.hide-threat-metrics .topline-result-avg:after {
  font-size: 18px;
}

.results-sim-dps .topline-result-avg:after {
  content: " DPS";
}

.results-sim-tps .topline-result-avg:after {
  content: " TPS";
}

.results-sim-dtps .topline-result-avg:after {
  content: " DTPS";
}

.results-sim-chanceOfDeath .topline-result-avg:after {
  content: "% Chance of Death";
  font-size: 9px;
}

.hide-threat-metrics .results-sim-chanceOfDeath .topline-result-avg:after {
  font-size: 12px;
}

.topline-result-stdev {
  font-size: 12px;
  font-weight: 700;
}

.hide-threat-metrics .topline-result-stdev {
  font-size: 18px;
}

.topline-result-stdev:before {
  content: " ±";
  padding: 2px;
}

.topline-result-label {
  font-size: 12px;
  font-weight: 700;
}

.hide-threat-metrics .topline-result-label {
  font-size: 18px;
}

.results-sim-reference.has-reference .results-sim-set-reference {
  display: none;
}

.results-sim-reference:not(.has-reference) .results-sim-reference-bar {
  display: none;
}

.results-sim-set-reference {
  cursor: pointer;
  font-size: 24px;
  color: var(--theme-color-primary);
}

.results-sim-reference-swap {
  color: blue;
  cursor: pointer;
  user-select: none;
  margin: 5px;
}

.results-sim-reference-delete {
  color: red;
  cursor: pointer;
  user-select: none;
  margin: 5px;
}

.raid-target-picker-root {
  border: 1px solid white;
  margin: 2px;
  color: white;
  text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black;
}

.raid-target-picker-dropdown {
  grid-template-columns: repeat(2, 1fr);
}

.raid-target-picker-option {
  height: 30px;
}

.raid-target-picker-icon {
  margin: 2px;
  height: 25px;
}

.raid-target-picker-label {
  font-size: 14px;
  margin: 2px;
}

.saved-data-set-chip {
  display: inline-block;
  border: 2px solid black;
  border-radius: 20px;
  padding: 1px 5px;
  margin: 5px 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.saved-data-set-chip.active {
  background-color: black;
  color: white;
}

.saved-data-set-chip.disabled {
  display: none;
}

.saved-data-set-delete {
  color: red;
}

.saved-data-set-delete:hover {
  color: yellow;
}

.saved-data-manager-root.frozen .saved-data-set-delete {
  display: none;
}

.saved-data-manager-root.frozen .saved-data-create-container {
  display: none;
}

.saved-data-manager-root.frozen .saved-data-set-chip:first-child:nth-last-child(1) {
  display: none;
}

.saved-data-set-chip:not(.saved-data-has-tooltip) .saved-data-set-tooltip {
  display: none;
}

.saved-data-set-chip.saved-data-preset .saved-data-set-delete {
  display: none;
}

.saved-data-save-input {
  width: 100px;
}

.saved-data-save-button {
  color: black;
}

.popup {
  margin: 0 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-width: 50%;
  padding: 8px;
  background-color: #111218;
  border: 1px solid var(--theme-color-primary);
  border-radius: 6px;
  max-width: 100%;
  color: white;
}

.settings-menu-title {
  text-align: center;
  margin: 20px;
  font-size: 24px;
}

.settings-menu-content {
  margin: 20px;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  max-height: 80vh;
}

.settings-menu-content-left {
  text-align: left;
  flex: 3;
}

.settings-menu-content-right {
  text-align: right;
  flex: 2;
}

.settings-menu-section {
  margin: 15px 0;
}

.last-used-rng-seed-container {
  margin: 8px;
}

.last-used-rng-seed {
  margin: 5px;
}

.ep-weights-label {
  font-weight: bold;
  margin: 5px;
}

:root {
  --theme-color-primary: DarkSlateGrey;
  --theme-color-background: DarkSlateGrey;
  --theme-color-background-raw: 0, 0, 0;
  --theme-background-image: linear-gradient(black, black);
  --theme-background-opacity: 0.9;
  --main-bg-color: DarkSlateGrey;
  --main-text-color: White;
  --main-secondary-color: Black;
  --sidebar-bg-color: DarkKhaki;
  --sidebar-text-color: White;
  --sidebar-highlight-color: Blue;
}

.hide {
  display: none;
}

@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Regular.woff2);
}
@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Bold.woff2);
  font-weight: bold;
}
* {
  font-family: SimDefaultFont;
  letter-spacing: 1px;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.item-quality-junk {
  color: #fff !important;
}

.item-quality-common {
  color: white !important;
}

.item-quality-uncommon {
  color: #1eff00 !important;
}

.item-quality-rare {
  color: #0070dd !important;
}

.item-quality-epic {
  color: #a335ee !important;
}

.item-quality-legendary {
  color: #ff8000 !important;
}

#bootstrap-overrides .socket-color-blue {
  border: 1px solid blue !important;
}

#bootstrap-overrides .socket-color-meta {
  border: 1px solid white !important;
}

#bootstrap-overrides .socket-color-red {
  border: 1px solid red !important;
}

#bootstrap-overrides .socket-color-yellow {
  border: 1px solid yellow !important;
}

.dropdown-root {
  position: relative;
  display: inline-block !important;
  white-space: nowrap;
}

.dropdown-button {
  cursor: pointer;
  background-color: gray;
}

.dropdown-panel {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-panel-column {
  display: inline-flex;
  flex-direction: column;
}

.dropdown-root:hover .dropdown-panel {
  display: grid !important;
}

.dropdown-option-container:hover {
  text-decoration: none;
}

.dropdown-option-container {
  background-color: gray;
}

.dropdown-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

*:not(.dropdown-button) > * > .dropdown-option:not(:hover) {
  opacity: 0.7;
}

.positive {
  color: lawngreen !important;
}

.negative {
  color: red !important;
}

.safe {
  color: lawngreen;
}

.warning {
  color: yellow;
}

.danger {
  color: red;
}

.bold {
  font-weight: bold;
}

.sim-button {
  color: var(--main-text-color);
  background-color: var(--theme-color-primary);
  border: none;
  padding: 5px;
  font-weight: bold;
}

.ep-weights-header {
  display: flex;
}

.ep-weights-actions {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 50%;
}

.ep-weights-actions > * {
  margin: 10px 20px;
}

.ep-weights-results {
  position: relative;
  width: 50%;
  min-height: 150px;
}

.ep-weights-results .results-viewer {
  margin: 0 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.stats-controls-row {
  display: flex;
  justify-content: space-around;
  margin: 10px;
}

.show-all-stats-container .boolean-picker-input {
  width: auto;
}

.ep-weights-table {
  max-height: 75vh;
  overflow-y: auto;
}

.results-ep-table {
  margin: auto;
  color: white;
}

.results-ep-table tr {
  background-color: #111218;
}

.results-ep-table tr.odd {
  background: #222;
}

.results-ep-table tr:hover {
  background: #333;
}

.ep-weights-table:not(.show-all-stats) .non-ep-stat {
  display: none;
}

.results-ep-table .col-action {
  color: var(--theme-color-primary);
  margin: 0 3px;
  cursor: pointer;
}

.results-ep-table .col-action:hover {
  text-shadow: 0 0 3px white, 0 0 3px white, 0 0 3px white;
}

.results-ep-table td, .results-ep-table th {
  padding: 2px 20px;
  white-space: nowrap;
}

.results-ep-table td {
  text-align: right;
  font-size: 14px;
}

.results-ep-table td input {
  text-align: right;
}

.results-ep-table th {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.results-ep-table td:nth-child(1) {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}

.stdev-cell span:nth-child(2) {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
}

.stdev-cell span:nth-child(2):before {
  content: " ±";
  padding: 1px;
}

.stats-type-ep .type-weight {
  display: none;
}

.stats-type-weight .type-ep {
  display: none;
}

:root {
  --theme-color-primary: DarkSlateGrey;
  --theme-color-background: DarkSlateGrey;
  --theme-color-background-raw: 0, 0, 0;
  --theme-background-image: linear-gradient(black, black);
  --theme-background-opacity: 0.9;
  --main-bg-color: DarkSlateGrey;
  --main-text-color: White;
  --main-secondary-color: Black;
  --sidebar-bg-color: DarkKhaki;
  --sidebar-text-color: White;
  --sidebar-highlight-color: Blue;
}

.hide {
  display: none;
}

@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Regular.woff2);
}
@font-face {
  font-family: SimDefaultFont;
  src: url(/tbc/assets/PlusJakartaSans-Bold.woff2);
  font-weight: bold;
}
* {
  font-family: SimDefaultFont;
  letter-spacing: 1px;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.item-quality-junk {
  color: #fff !important;
}

.item-quality-common {
  color: white !important;
}

.item-quality-uncommon {
  color: #1eff00 !important;
}

.item-quality-rare {
  color: #0070dd !important;
}

.item-quality-epic {
  color: #a335ee !important;
}

.item-quality-legendary {
  color: #ff8000 !important;
}

#bootstrap-overrides .socket-color-blue {
  border: 1px solid blue !important;
}

#bootstrap-overrides .socket-color-meta {
  border: 1px solid white !important;
}

#bootstrap-overrides .socket-color-red {
  border: 1px solid red !important;
}

#bootstrap-overrides .socket-color-yellow {
  border: 1px solid yellow !important;
}

.dropdown-root {
  position: relative;
  display: inline-block !important;
  white-space: nowrap;
}

.dropdown-button {
  cursor: pointer;
  background-color: gray;
}

.dropdown-panel {
  display: none;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-panel-column {
  display: inline-flex;
  flex-direction: column;
}

.dropdown-root:hover .dropdown-panel {
  display: grid !important;
}

.dropdown-option-container:hover {
  text-decoration: none;
}

.dropdown-option-container {
  background-color: gray;
}

.dropdown-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

*:not(.dropdown-button) > * > .dropdown-option:not(:hover) {
  opacity: 0.7;
}

.positive {
  color: lawngreen !important;
}

.negative {
  color: red !important;
}

.safe {
  color: lawngreen;
}

.warning {
  color: yellow;
}

.danger {
  color: red;
}

.bold {
  font-weight: bold;
}

.sim-button {
  color: var(--main-text-color);
  background-color: var(--theme-color-primary);
  border: none;
  padding: 5px;
  font-weight: bold;
}

.talents-picker-root {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow-y: auto;
  min-width: 33vh;
  height: calc(100% - 70px);
}

.talent-tree-picker-root {
  background: #444;
  padding: 4px;
  border-radius: 6px;
  margin: 1px;
  flex: 1;
  max-width: calc(32vh + 8px);
}

.talent-tree-header {
  padding: 6px;
  text-align: center;
  color: white;
}

.talent-tree-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
}

.talent-tree-reset {
  float: right;
  color: red;
  font-size: 20px !important;
  cursor: pointer;
}

.talents-picker-root.frozen .talent-tree-reset {
  display: none;
}

.talent-tree-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(9, 1fr);
  background-size: 100% 100%;
  height: 72vh;
  width: 32vh;
  border-radius: 4px;
}

.talent-picker-root {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 70%;
  height: 70%;
  border: 1px solid #40BF40;
  border-radius: 4px;
  margin: 10px;
}

.talent-picker-root[data-points="0"]:not(.talent-picker-can-add) {
  filter: grayscale(100%);
}

.talent-picker-root.talent-full {
  border-color: #ffd100;
}

.talent-picker-points {
  position: absolute;
  bottom: 0;
  position: absolute;
  right: 0;
  margin: 0;
  color: #40BF40;
  background-color: black;
}

.talent-picker-root[data-points="0"]:not(.talent-picker-can-add) .talent-picker-points {
  filter: grayscale(100%);
}

.talent-picker-root.talent-full .talent-picker-points {
  color: #ffd100;
}

.talents-picker-root.talents-full .talent-picker-root[data-points="0"] .talent-picker-points {
  display: none;
}

.icon-input:not(.active), .icon-input-improved:not(.active), .icon-input-counter:not(.active) {
  border-color: dimgray;
}

.within-raid-sim .within-raid-sim-hide {
  display: none;
}

.not-within-raid-sim .not-within-raid-sim-hide {
  display: none;
}

.character-stats-header {
  padding: 5px;
  font-size: 14px;
}

.character-stats-table {
  padding: 10px;
}

.character-stats-table-row {
  color: var(--main-text-color);
  border-bottom: 1px solid #315869;
  font-size: 16px;
  font-weight: 600;
}

.gear-tab-columns {
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  height: 100%;
}

.left-gear-panel {
  min-width: calc(500px + 2vw);
  flex: 3;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 1vh;
}

@media only screen and (max-width: calc(750px + 1vw)) {
  .left-gear-panel {
    min-width: calc(250px + 1vw);
  }
}
.right-gear-panel {
  text-align: center;
  border-left: 3px solid var(--main-text-color);
  position: relative;
  flex: 1.25;
  min-width: 250px;
  min-height: 450px;
  height: calc(90% - 60px);
  margin-top: 10px;
  margin-bottom: 10px;
}

@media only screen and (max-width: calc(1000px + 2vw)) {
  .right-gear-panel {
    border-left: none;
  }
}
@media only screen and (max-width: calc(750px + 1vw)) {
  .right-gear-panel {
    min-width: 250px;
    border-left: none;
  }
}
.bonus-stats-root {
  justify-content: end;
  text-align: right;
  color: var(--main-text-color);
  margin-bottom: 20px;
}

.bonus-stats-root .number-picker-root {
  justify-content: end;
}

.saved-gear-manager {
  position: absolute;
  right: 0;
  text-align: right;
}

.saved-data-set-chip {
  color: var(--main-text-color);
  border-color: var(--theme-color-primary);
}

.saved-data-set-chip.active {
  color: var(--main-text-color);
  background-color: var(--theme-color-primary);
}

.saved-data-set-delete {
  color: var(--main-text-color);
}

.settings-tab {
  overflow-y: auto;
}

.settings-inputs {
  position: relative;
}

.settings-section-container {
  position: absolute;
}

.settings-section {
  border: 2px solid var(--main-text-color);
  padding: 4px;
  margin: 5px;
  display: grid;
  transform: none !important;
}

.settings-section > legend {
  padding: 0 10px;
  margin: 0 3px;
  font-weight: 900;
  color: var(--main-text-color);
  font-size: 18px;
  white-space: nowrap;
  border: none;
  width: auto;
}

.settings-section .icon-enum-picker-root {
  margin: 1px;
}

.settings-section .icon-enum-picker-root a {
  height: 46px;
  width: 46px;
}

.settings-bottom-bar {
  margin: 20px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.race-section {
  text-align: center;
}

.race-section > legend {
  text-align: left;
}

.rotation-section > div, .other-settings-section > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.self-buffs-section > div {
  display: grid;
}

.buffs-section > div {
  display: grid;
}

.consumes-section > div {
  display: grid;
}

.consumes-row {
  display: flex;
  align-items: center;
}

.consumes-row > span {
  margin: 5px;
}

.consumes-row-inputs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-grow: 1;
}

.consumes-row-inputs > * {
  margin: 2px;
}

.debuffs-section > div {
  display: grid;
}

.cooldowns-section-container {
  z-index: 1000;
}

.saved-encounter-manager {
  display: inline-block;
  text-align: left;
}

.saved-rotation-manager {
  display: inline-block;
  text-align: center;
}

.saved-settings-manager {
  display: inline-block;
  text-align: right;
}

.saved-talents-manager {
  text-align: center;
}

.saved-talents-manager .saved-data-container, .saved-talents-manager .saved-data-create-container {
  display: inline-block;
}

.warlock-sim-ui {
  --theme-color-primary: #a35ec0;
  --theme-color-background: rgb(24, 18, 27);
  --theme-color-background-raw: 24, 18, 27;
  --theme-background-image: url("/tbc/assets/warlock_background.jpg");
  --theme-background-opacity: 0.93;
  --main-text-color: White;
}

.warlock-sim-ui .self-buffs-section {
  grid-template-columns: repeat(2, 1fr);
}

.warlock-sim-ui .buffs-section {
  grid-template-columns: repeat(5, 1fr);
}

.warlock-sim-ui .debuffs-section {
  grid-template-columns: repeat(4, 1fr);
}

.warlock-sim-ui .warlock-summon-picker {
  width: 50px;
}

/*# sourceMappingURL=index.css.map */
