

/* node_modules/@simonwep/pickr/dist/themes/monolith.min.css */
.pickr {
  position: relative;
  overflow: visible;
  transform: translateY(0);
}
.pickr * {
  box-sizing: border-box;
  outline: none;
  border: none;
  -webkit-appearance: none;
}
.pickr .pcr-button {
  position: relative;
  height: 2em;
  width: 2em;
  padding: .5em;
  cursor: pointer;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Helvetica Neue",
    Arial,
    sans-serif;
  border-radius: .15em;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" stroke="%2342445A" stroke-width="5px" stroke-linecap="round"><path d="M45,45L5,5"></path><path d="M45,5L5,45"></path></svg>') no-repeat center;
  background-size: 0;
  transition: all .3s;
}
.pickr .pcr-button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
  background-size: .5em;
  border-radius: .15em;
  z-index: -1;
}
.pickr .pcr-button::before {
  z-index: initial;
}
.pickr .pcr-button::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: background .3s;
  background: var(--pcr-color);
  border-radius: .15em;
}
.pickr .pcr-button.clear {
  background-size: 70%;
}
.pickr .pcr-button.clear::before {
  opacity: 0;
}
.pickr .pcr-button.clear:focus {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .85), 0 0 0 3px var(--pcr-color);
}
.pickr .pcr-button.disabled {
  cursor: not-allowed;
}
.pickr *,
.pcr-app * {
  box-sizing: border-box;
  outline: none;
  border: none;
  -webkit-appearance: none;
}
.pickr input:focus,
.pickr input.pcr-active,
.pickr button:focus,
.pickr button.pcr-active,
.pcr-app input:focus,
.pcr-app input.pcr-active,
.pcr-app button:focus,
.pcr-app button.pcr-active {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .85), 0 0 0 3px var(--pcr-color);
}
.pickr .pcr-palette,
.pickr .pcr-slider,
.pcr-app .pcr-palette,
.pcr-app .pcr-slider {
  transition: box-shadow .3s;
}
.pickr .pcr-palette:focus,
.pickr .pcr-slider:focus,
.pcr-app .pcr-palette:focus,
.pcr-app .pcr-slider:focus {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .85), 0 0 0 3px rgba(0, 0, 0, .25);
}
.pcr-app {
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 10000;
  border-radius: .1em;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility 0s .3s;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Helvetica Neue",
    Arial,
    sans-serif;
  box-shadow: 0 .15em 1.5em 0 rgba(0, 0, 0, .1), 0 0 1em 0 rgba(0, 0, 0, .03);
  left: 0;
  top: 0;
}
.pcr-app.visible {
  transition: opacity .3s;
  visibility: visible;
  opacity: 1;
}
.pcr-app .pcr-swatches {
  display: flex;
  flex-wrap: wrap;
  margin-top: .75em;
}
.pcr-app .pcr-swatches.pcr-last {
  margin: 0;
}
@supports (display: grid) {
  .pcr-app .pcr-swatches {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, 1.75em);
  }
}
.pcr-app .pcr-swatches > button {
  font-size: 1em;
  position: relative;
  width: calc(1.75em - 5px);
  height: calc(1.75em - 5px);
  border-radius: .15em;
  cursor: pointer;
  margin: 2.5px;
  flex-shrink: 0;
  justify-self: center;
  transition: all .15s;
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}
.pcr-app .pcr-swatches > button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
  background-size: 6px;
  border-radius: .15em;
  z-index: -1;
}
.pcr-app .pcr-swatches > button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--pcr-color);
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: .15em;
  box-sizing: border-box;
}
.pcr-app .pcr-swatches > button:hover {
  filter: brightness(1.05);
}
.pcr-app .pcr-swatches > button:not(.pcr-active) {
  box-shadow: none;
}
.pcr-app .pcr-interaction {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -0.2em 0 -0.2em;
}
.pcr-app .pcr-interaction > * {
  margin: 0 .2em;
}
.pcr-app .pcr-interaction input {
  letter-spacing: .07em;
  font-size: .75em;
  text-align: center;
  cursor: pointer;
  color: #75797e;
  background: #f1f3f4;
  border-radius: .15em;
  transition: all .15s;
  padding: .45em .5em;
  margin-top: .75em;
}
.pcr-app .pcr-interaction input:hover {
  filter: brightness(0.975);
}
.pcr-app .pcr-interaction input:focus {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .85), 0 0 0 3px rgba(66, 133, 244, .75);
}
.pcr-app .pcr-interaction .pcr-result {
  color: #75797e;
  text-align: left;
  flex: 1 1 8em;
  min-width: 8em;
  transition: all .2s;
  border-radius: .15em;
  background: #f1f3f4;
  cursor: text;
}
.pcr-app .pcr-interaction .pcr-result::-moz-selection {
  background: #4285f4;
  color: #fff;
}
.pcr-app .pcr-interaction .pcr-result::selection {
  background: #4285f4;
  color: #fff;
}
.pcr-app .pcr-interaction .pcr-type.active {
  color: #fff;
  background: #4285f4;
}
.pcr-app .pcr-interaction .pcr-save,
.pcr-app .pcr-interaction .pcr-cancel,
.pcr-app .pcr-interaction .pcr-clear {
  color: #fff;
  width: auto;
}
.pcr-app .pcr-interaction .pcr-save,
.pcr-app .pcr-interaction .pcr-cancel,
.pcr-app .pcr-interaction .pcr-clear {
  color: #fff;
}
.pcr-app .pcr-interaction .pcr-save:hover,
.pcr-app .pcr-interaction .pcr-cancel:hover,
.pcr-app .pcr-interaction .pcr-clear:hover {
  filter: brightness(0.925);
}
.pcr-app .pcr-interaction .pcr-save {
  background: #4285f4;
}
.pcr-app .pcr-interaction .pcr-clear,
.pcr-app .pcr-interaction .pcr-cancel {
  background: #f44250;
}
.pcr-app .pcr-interaction .pcr-clear:focus,
.pcr-app .pcr-interaction .pcr-cancel:focus {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .85), 0 0 0 3px rgba(244, 66, 80, .75);
}
.pcr-app .pcr-selection .pcr-picker {
  position: absolute;
  height: 18px;
  width: 18px;
  border: 2px solid #fff;
  border-radius: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pcr-app .pcr-selection .pcr-color-palette,
.pcr-app .pcr-selection .pcr-color-chooser,
.pcr-app .pcr-selection .pcr-color-opacity {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  cursor: grab;
  cursor: -webkit-grab;
}
.pcr-app .pcr-selection .pcr-color-palette:active,
.pcr-app .pcr-selection .pcr-color-chooser:active,
.pcr-app .pcr-selection .pcr-color-opacity:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.pcr-app[data-theme=monolith] {
  width: 14.25em;
  max-width: 95vw;
  padding: .8em;
}
.pcr-app[data-theme=monolith] .pcr-selection {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: .5em;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-preview::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
  background-size: .5em;
  border-radius: .15em;
  z-index: -1;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-preview .pcr-last-color {
  cursor: pointer;
  transition: background-color .3s, box-shadow .3s;
  border-radius: .15em 0 0 .15em;
  z-index: 2;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-preview .pcr-current-color {
  border-radius: 0 .15em .15em 0;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-preview .pcr-last-color,
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-preview .pcr-current-color {
  background: var(--pcr-color);
  width: 50%;
  height: 100%;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-palette {
  width: 100%;
  height: 8em;
  z-index: 1;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-palette .pcr-palette {
  border-radius: .15em;
  width: 100%;
  height: 100%;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-palette .pcr-palette::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
  background-size: .5em;
  border-radius: .15em;
  z-index: -1;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-chooser,
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-opacity {
  height: .5em;
  margin-top: .75em;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-chooser .pcr-picker,
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-opacity .pcr-picker {
  top: 50%;
  transform: translateY(-50%);
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-chooser .pcr-slider,
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-opacity .pcr-slider {
  flex-grow: 1;
  border-radius: 50em;
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-chooser .pcr-slider {
  background:
    linear-gradient(
      to right,
      hsl(0, 100%, 50%),
      hsl(60, 100%, 50%),
      hsl(120, 100%, 50%),
      hsl(180, 100%, 50%),
      hsl(240, 100%, 50%),
      hsl(300, 100%, 50%),
      hsl(0, 100%, 50%));
}
.pcr-app[data-theme=monolith] .pcr-selection .pcr-color-opacity .pcr-slider {
  background:
    linear-gradient(
      to right,
      transparent,
      black),
    url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
  background-size: 100%, .25em;
}

/* node_modules/daterangepicker/daterangepicker.css */
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}
.daterangepicker:before,
.daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}
.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}
.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}
.daterangepicker.opensleft:before {
  right: 9px;
}
.daterangepicker.opensleft:after {
  right: 10px;
}
.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}
.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}
.daterangepicker.opensright:before {
  left: 9px;
}
.daterangepicker.opensright:after {
  left: 10px;
}
.daterangepicker.drop-up {
  margin-top: -7px;
}
.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}
.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}
.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
  float: none;
}
.daterangepicker.single .drp-selected {
  display: none;
}
.daterangepicker.show-calendar .drp-calendar {
  display: block;
}
.daterangepicker.show-calendar .drp-buttons {
  display: block;
}
.daterangepicker.auto-apply .drp-buttons {
  display: none;
}
.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}
.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}
.daterangepicker .drp-calendar.right {
  padding: 8px;
}
.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}
.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}
.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}
.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}
.daterangepicker td.week,
.daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}
.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}
.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}
.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}
.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}
.daterangepicker th.month {
  width: auto;
}
.daterangepicker td.disabled,
.daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}
.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}
.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}
.daterangepicker select.yearselect {
  width: 40%;
}
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}
.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}
.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}
.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}
.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}
.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}
.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}
.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}
.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}
.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}
.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}
.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}
.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}
.daterangepicker .ranges li:hover {
  background-color: #eee;
}
.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }
  .daterangepicker .ranges ul {
    width: 140px;
  }
  .daterangepicker.single .ranges ul {
    width: 100%;
  }
  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }
  .daterangepicker.single .ranges,
  .daterangepicker.single .drp-calendar {
    float: left;
  }
  .daterangepicker {
    direction: ltr;
    text-align: left;
  }
  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }
  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }
  .daterangepicker .ranges,
  .daterangepicker .drp-calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }
  .daterangepicker .ranges {
    float: left;
  }
  .daterangepicker.rtl .ranges {
    float: right;
  }
  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}

/* node_modules/intl-tel-input/build/css/intlTelInput.css */
.iti {
  position: relative;
  display: inline-block;
}
.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti input,
.iti input[type=text],
.iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}
.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}
.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}
.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}
.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}
@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}
.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}
.iti__country {
  padding: 5px 10px;
  outline: none;
}
.iti__dial-code {
  color: #999;
}
.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}
.iti__flag-box,
.iti__country-name,
.iti__dial-code {
  vertical-align: middle;
}
.iti__flag-box,
.iti__country-name {
  margin-right: 6px;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}
.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}
.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}
.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}
.iti--container:hover {
  cursor: pointer;
}
.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}
.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}
.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}
.iti__flag {
  width: 20px;
}
.iti__flag.iti__be {
  width: 18px;
}
.iti__flag.iti__ch {
  width: 15px;
}
.iti__flag.iti__mc {
  width: 19px;
}
.iti__flag.iti__ne {
  width: 18px;
}
.iti__flag.iti__np {
  width: 13px;
}
.iti__flag.iti__va {
  width: 15px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}
.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}
.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}
.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}
.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}
.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}
.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}
.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}
.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}
.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}
.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}
.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}
.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}
.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}
.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}
.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}
.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}
.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}
.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}
.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}
.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}
.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}
.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}
.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}
.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}
.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}
.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}
.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}
.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}
.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}
.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}
.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}
.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}
.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}
.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}
.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}
.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}
.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}
.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}
.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}
.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}
.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}
.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}
.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}
.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}
.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}
.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}
.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}
.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}
.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}
.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}
.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}
.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}
.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}
.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}
.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}
.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}
.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}
.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}
.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}
.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}
.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}
.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}
.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}
.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}
.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}
.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}
.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}
.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}
.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}
.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}
.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}
.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}
.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}
.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}
.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}
.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}
.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}
.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}
.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}
.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}
.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}
.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}
.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}
.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}
.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}
.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}
.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}
.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}
.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}
.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}
.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}
.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}
.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}
.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}
.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}
.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}
.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}
.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}
.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}
.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}
.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}
.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}
.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}
.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}
.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}
.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}
.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}
.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}
.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}
.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}
.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}
.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}
.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}
.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}
.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}
.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}
.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}
.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}
.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}
.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}
.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}
.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}
.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}
.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}
.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}
.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}
.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}
.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}
.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}
.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}
.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}
.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}
.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}
.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}
.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}
.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}
.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}
.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}
.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}
.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}
.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}
.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}
.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}
.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}
.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}
.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}
.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}
.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}
.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}
.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}
.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}
.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}
.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}
.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}
.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}
.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}
.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}
.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}
.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}
.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}
.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}
.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}
.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}
.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}
.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}
.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}
.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}
.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}
.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}
.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}
.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}
.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}
.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}
.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}
.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}
.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}
.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}
.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}
.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}
.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}
.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}
.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}
.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}
.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}
.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}
.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}
.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}
.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}
.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}
.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}
.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}
.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}
.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}
.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}
.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}
.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}
.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}
.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}
.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}
.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}
.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}
.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}
.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}
.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}
.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}
.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}
.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}
.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}
.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}
.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}
.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}
.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}
.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}
.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}
.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}
.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}
.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}
.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}
.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}
.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}
.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}
.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}
.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}
.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}
.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}
.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}
.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}
.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}
.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}
.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}
.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}
.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}
.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}
.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}
.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}
.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}
.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}
.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}
.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}
.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}
.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}
.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}
.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}
.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}
.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}
.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}
.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}
.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}
.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}
.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}
.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}
.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}
.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}
.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}
.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}
.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}
.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}
.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url(/assets/flags-645KQKNA.png);
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url(/assets/flags@2x-E4CMA2OR.png);
  }
}
.iti__flag.iti__np {
  background-color: transparent;
}

/* node_modules/select2/dist/css/select2.min.css */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image:
    linear-gradient(
      to bottom,
      #fff 50%,
      #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image:
    linear-gradient(
      to bottom,
      #eee 50%,
      #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image:
    linear-gradient(
      to bottom,
      #fff 0%,
      #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image:
    linear-gradient(
      to bottom,
      #eee 50%,
      #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/* node_modules/trix/dist/trix.css */
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}
trix-toolbar * {
  box-sizing: border-box;
}
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}
trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}
trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}
trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: rgb(0, 0, 0);
}
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}
@media (max-width: 768px) {
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}
trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}
trix-toolbar .trix-button--icon-attach::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E);
  top: 8%;
  bottom: 4%;
}
trix-toolbar .trix-button--icon-bold::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-italic::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-link::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-strike::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-quote::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-code::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-number-list::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-undo::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-redo::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-dialogs {
  position: relative;
}
trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}
trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: #F00 0px 0px 1.5px 1px;
}
trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}
trix-toolbar .trix-dialog--link {
  max-width: 600px;
}
trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}
trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1;
}
trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}
trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
trix-editor [data-trix-mutable] ::-moz-selection,
trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection {
  background: none;
}
trix-editor [data-trix-mutable] ::selection,
trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection {
  background: none;
}
trix-editor [data-trix-mutable].attachment__caption-editor:focus::-moz-selection {
  background: highlight;
}
trix-editor [data-trix-mutable].attachment__caption-editor:focus::selection {
  background: highlight;
}
trix-editor [data-trix-mutable].attachment.attachment--file {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}
trix-editor [data-trix-mutable].attachment img {
  box-shadow: 0 0 0 2px highlight;
}
trix-editor .attachment {
  position: relative;
}
trix-editor .attachment:hover {
  cursor: default;
}
trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}
trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}
trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}
trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}
trix-editor .trix-button-group {
  display: inline-flex;
}
trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}
trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-editor .trix-button.trix-active {
  background: #cbeefa;
}
trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}
trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}
trix-editor .trix-button--remove:hover {
  border-color: #333;
}
trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}
trix-editor .attachment__metadata-container {
  position: relative;
}
trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}
trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}
.trix-content {
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}
.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}
.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}
.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}
.trix-content li {
  margin-left: 1em;
}
.trix-content [dir=rtl] li {
  margin-right: 1em;
}
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}
.trix-content img {
  max-width: 100%;
  height: auto;
}
.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}
.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}
.trix-content .attachment a:hover,
.trix-content .attachment a:visited:hover {
  color: inherit;
}
.trix-content .attachment__caption {
  text-align: center;
}
.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: " \2022";
}
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}
.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}
.trix-content .attachment-gallery.attachment-gallery--2 .attachment,
.trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/* node_modules/dragula/dist/dragula.min.css */
.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: .8;
}
.gu-hide {
  display: none !important;
}
.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.gu-transit {
  opacity: .2;
}

/* node_modules/@iconscout/unicons/css/line.css */
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-0-RCUIJWMV.eot);
  src:
    url(/assets/unicons-0-RCUIJWMV.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-0-SU5U7ZG2.woff2) format("woff2"),
    url(/assets/unicons-0-VLYGI44X.woff) format("woff"),
    url(/assets/unicons-0-OREV4SUE.ttf) format("truetype"),
    url(/assets/unicons-0-SG4X5OKH.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+E800-E83B;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-1-CYTZEHDL.eot);
  src:
    url(/assets/unicons-1-CYTZEHDL.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-1-G3OQBA66.woff2) format("woff2"),
    url(/assets/unicons-1-6NRZKR5D.woff) format("woff"),
    url(/assets/unicons-1-H25NNTMT.ttf) format("truetype"),
    url(/assets/unicons-1-7OFVTPNY.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+E83C-E877;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-10-NY7VGRI7.eot);
  src:
    url(/assets/unicons-10-NY7VGRI7.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-10-NNV6MSLL.woff2) format("woff2"),
    url(/assets/unicons-10-3A5YYMLC.woff) format("woff"),
    url(/assets/unicons-10-MXJARLUV.ttf) format("truetype"),
    url(/assets/unicons-10-M2H3BAWE.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EA5C-EA98;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-11-KUU6QE6O.eot);
  src:
    url(/assets/unicons-11-KUU6QE6O.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-11-VLAIKOU4.woff2) format("woff2"),
    url(/assets/unicons-11-4CNV2XUU.woff) format("woff"),
    url(/assets/unicons-11-VKNBMKP2.ttf) format("truetype"),
    url(/assets/unicons-11-M675QCIA.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EA99-EAD6;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-12-ODZK6NWP.eot);
  src:
    url(/assets/unicons-12-ODZK6NWP.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-12-MMXAA4CS.woff2) format("woff2"),
    url(/assets/unicons-12-G3LZNRXM.woff) format("woff"),
    url(/assets/unicons-12-LIYIZIBB.ttf) format("truetype"),
    url(/assets/unicons-12-OPXLIT5P.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EAD7-EB13;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-13-KXLII3JQ.eot);
  src:
    url(/assets/unicons-13-KXLII3JQ.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-13-M5SEA5EP.woff2) format("woff2"),
    url(/assets/unicons-13-N7M6L2OB.woff) format("woff"),
    url(/assets/unicons-13-VUF2PP3K.ttf) format("truetype"),
    url(/assets/unicons-13-U3QD4RVK.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EB14-EB53;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-14-NVW5D2FO.eot);
  src:
    url(/assets/unicons-14-NVW5D2FO.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-14-U6UEXZIB.woff2) format("woff2"),
    url(/assets/unicons-14-LY6SBEZ3.woff) format("woff"),
    url(/assets/unicons-14-KVJEEX7O.ttf) format("truetype"),
    url(/assets/unicons-14-YVPTQBYX.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EB54-EB90;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-15-WOZFPIAS.eot);
  src:
    url(/assets/unicons-15-WOZFPIAS.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-15-RYFIGQ6M.woff2) format("woff2"),
    url(/assets/unicons-15-M5A4MZWT.woff) format("woff"),
    url(/assets/unicons-15-EJ2KIXZ5.ttf) format("truetype"),
    url(/assets/unicons-15-IOKPXBXO.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EB91-EBCC;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-16-I22MYMJT.eot);
  src:
    url(/assets/unicons-16-I22MYMJT.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-16-UNWPYTAP.woff2) format("woff2"),
    url(/assets/unicons-16-U3MKOHPX.woff) format("woff"),
    url(/assets/unicons-16-25P5HR5Y.ttf) format("truetype"),
    url(/assets/unicons-16-D3W5OKRN.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EBCD-EC08;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-17-PBJXEPAS.eot);
  src:
    url(/assets/unicons-17-PBJXEPAS.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-17-RSHC2FOY.woff2) format("woff2"),
    url(/assets/unicons-17-WKW44FOS.woff) format("woff"),
    url(/assets/unicons-17-Q5PPK5JH.ttf) format("truetype"),
    url(/assets/unicons-17-NFGTJYPF.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EC09-EC44;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-18-LYI32ED3.eot);
  src:
    url(/assets/unicons-18-LYI32ED3.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-18-EABXXBPA.woff2) format("woff2"),
    url(/assets/unicons-18-C7I42BHV.woff) format("woff"),
    url(/assets/unicons-18-UEYOQ6WD.ttf) format("truetype"),
    url(/assets/unicons-18-FCVCOKRN.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EC45-EC80;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-19-DPZNGNKH.eot);
  src:
    url(/assets/unicons-19-DPZNGNKH.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-19-N5DRNKI7.woff2) format("woff2"),
    url(/assets/unicons-19-E36ZXSSM.woff) format("woff"),
    url(/assets/unicons-19-Y5QOPOUV.ttf) format("truetype"),
    url(/assets/unicons-19-NZCAMZFS.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EC81-ECBC;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-2-V5N2SAHJ.eot);
  src:
    url(/assets/unicons-2-V5N2SAHJ.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-2-ATNMITAX.woff2) format("woff2"),
    url(/assets/unicons-2-7LRDW7S4.woff) format("woff"),
    url(/assets/unicons-2-Q4443EUB.ttf) format("truetype"),
    url(/assets/unicons-2-CWSMCN72.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+E878-E8B3;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-20-AR73RBCF.eot);
  src:
    url(/assets/unicons-20-AR73RBCF.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-20-IAOAYT2L.woff2) format("woff2"),
    url(/assets/unicons-20-PHCUUKMG.woff) format("woff"),
    url(/assets/unicons-20-BDXBYPCH.ttf) format("truetype"),
    url(/assets/unicons-20-AG5UPPZV.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+ECBD-ECC2;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-3-NQGMATWL.eot);
  src:
    url(/assets/unicons-3-NQGMATWL.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-3-7PNGG47X.woff2) format("woff2"),
    url(/assets/unicons-3-6ONGD2GF.woff) format("woff"),
    url(/assets/unicons-3-CXWDWRMK.ttf) format("truetype"),
    url(/assets/unicons-3-MWBGAJFU.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+E8B4-E8EF;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-4-LZ62A47Q.eot);
  src:
    url(/assets/unicons-4-LZ62A47Q.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-4-5LELN5WY.woff2) format("woff2"),
    url(/assets/unicons-4-VH33BW5D.woff) format("woff"),
    url(/assets/unicons-4-PUUJ6IBV.ttf) format("truetype"),
    url(/assets/unicons-4-LBMZZSDL.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+E8F0-E92B;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-5-DS6SC7AV.eot);
  src:
    url(/assets/unicons-5-DS6SC7AV.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-5-LWNF6YUA.woff2) format("woff2"),
    url(/assets/unicons-5-CZJNFSTG.woff) format("woff"),
    url(/assets/unicons-5-RO4WLVMS.ttf) format("truetype"),
    url(/assets/unicons-5-C3DWHZZS.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+E92C-E967;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-6-RYJRQKFD.eot);
  src:
    url(/assets/unicons-6-RYJRQKFD.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-6-GVWPSBB2.woff2) format("woff2"),
    url(/assets/unicons-6-C4UOZTYB.woff) format("woff"),
    url(/assets/unicons-6-V62YPF4G.ttf) format("truetype"),
    url(/assets/unicons-6-CNV5XXSX.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+E968-E9A4;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-7-BTC7MLZQ.eot);
  src:
    url(/assets/unicons-7-BTC7MLZQ.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-7-6MHHQ4Z7.woff2) format("woff2"),
    url(/assets/unicons-7-LI3VMZDS.woff) format("woff"),
    url(/assets/unicons-7-2EFJ7WYZ.ttf) format("truetype"),
    url(/assets/unicons-7-UEJFSZ3E.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+E9A5-E9E2;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-8-LNQSIBQO.eot);
  src:
    url(/assets/unicons-8-LNQSIBQO.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-8-KE7HA2A7.woff2) format("woff2"),
    url(/assets/unicons-8-YPIOTG3I.woff) format("woff"),
    url(/assets/unicons-8-7GK5SUFP.ttf) format("truetype"),
    url(/assets/unicons-8-2EZVKCPF.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+E9E3-EA1E;
}
@font-face {
  font-family: "unicons-line";
  src: url(/assets/unicons-9-K5A6RFUY.eot);
  src:
    url(/assets/unicons-9-K5A6RFUY.eot#iefix) format("embedded-opentype"),
    url(/assets/unicons-9-KJTKKIOL.woff2) format("woff2"),
    url(/assets/unicons-9-P5CVMNJR.woff) format("woff"),
    url(/assets/unicons-9-OBKOSD4S.ttf) format("truetype"),
    url(/assets/unicons-9-VO4QA7Q7.svg#unicons) format("svg");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+EA1F-EA5B;
}
[class^=uil-]:before,
[class*=" uil-"]:before {
  font-family: "unicons-line";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class*=uil-].flip-horizontal:before {
  transform: scaleX(-1);
}
[class*=uil-].flip-horizontal.rotate-90:before {
  transform: rotate(90deg) scaleX(-1);
}
[class*=uil-].flip-horizontal.rotate-180:before {
  transform: rotate(180deg) scaleX(-1);
}
[class*=uil-].flip-horizontal.rotate-270:before {
  transform: rotate(270deg) scaleX(-1);
}
[class*=uil-].flip-horizontal.flip-vertical:before {
  transform: scale(-1);
}
[class*=uil-].flip-horizontal.flip-vertical.rotate-90:before {
  transform: rotate(90deg) scale(-1);
}
[class*=uil-].flip-horizontal.flip-vertical.rotate-180:before {
  transform: rotate(180deg) scale(-1);
}
[class*=uil-].flip-horizontal.flip-vertical.rotate-270:before {
  transform: rotate(270deg) scale(-1);
}
[class*=uil-].flip-vertical:before {
  transform: scaleY(-1);
}
[class*=uil-].flip-vertical.rotate-90:before {
  transform: rotate(90deg) scaleY(-1);
}
[class*=uil-].flip-vertical.rotate-180:before {
  transform: rotate(180deg) scaleY(-1);
}
[class*=uil-].flip-vertical.rotate-270:before {
  transform: rotate(270deg) scaleY(-1);
}
[class*=uil-].rotate-90:before {
  transform: rotate(90deg);
}
[class*=uil-].rotate-180:before {
  transform: rotate(180deg);
}
[class*=uil-].rotate-270:before {
  transform: rotate(270deg);
}
.uil-comment-block:before {
  content: "\e800";
}
.uil-comment-alt-edit:before {
  content: "\e801";
}
.uil-comments:before {
  content: "\e802";
}
.uil-comment-alt-search:before {
  content: "\e803";
}
.uil-comment-shield:before {
  content: "\e804";
}
.uil-comment-alt-dots:before {
  content: "\e805";
}
.uil-comment-download:before {
  content: "\e806";
}
.uil-comment-check:before {
  content: "\e807";
}
.uil-comment-alt-chart-lines:before {
  content: "\e808";
}
.uil-comment-alt-download:before {
  content: "\e809";
}
.uil-comment-alt-lock:before {
  content: "\e80a";
}
.uil-comment-medical:before {
  content: "\e80b";
}
.uil-comment-alt-heart:before {
  content: "\e80c";
}
.uil-comment:before {
  content: "\e80d";
}
.uil-comment-alt-share:before {
  content: "\e80e";
}
.uil-comment-alt-upload:before {
  content: "\e80f";
}
.uil-comment-dots:before {
  content: "\e810";
}
.uil-comment-alt-lines:before {
  content: "\e811";
}
.uil-comment-lock:before {
  content: "\e812";
}
.uil-comment-heart:before {
  content: "\e813";
}
.uil-comment-info-alt:before {
  content: "\e814";
}
.uil-comment-upload:before {
  content: "\e815";
}
.uil-comment-alt-medical:before {
  content: "\e816";
}
.uil-chat-info:before {
  content: "\e817";
}
.uil-comment-alt-notes:before {
  content: "\e818";
}
.uil-comment-alt-plus:before {
  content: "\e819";
}
.uil-comment-alt-image:before {
  content: "\e81a";
}
.uil-comment-share:before {
  content: "\e81b";
}
.uil-comment-edit:before {
  content: "\e81c";
}
.uil-comment-alt-block:before {
  content: "\e81d";
}
.uil-comment-chart-line:before {
  content: "\e81e";
}
.uil-comment-alt-question:before {
  content: "\e81f";
}
.uil-comment-lines:before {
  content: "\e820";
}
.uil-comment-redo:before {
  content: "\e821";
}
.uil-comment-alt-check:before {
  content: "\e822";
}
.uil-comment-alt-shield:before {
  content: "\e823";
}
.uil-chat:before {
  content: "\e824";
}
.uil-comment-alt-message:before {
  content: "\e825";
}
.uil-comment-search:before {
  content: "\e826";
}
.uil-chat-bubble-user:before {
  content: "\e827";
}
.uil-comments-alt:before {
  content: "\e828";
}
.uil-comment-image:before {
  content: "\e829";
}
.uil-comment-alt:before {
  content: "\e82a";
}
.uil-comment-verify:before {
  content: "\e82b";
}
.uil-comment-plus:before {
  content: "\e82c";
}
.uil-comment-question:before {
  content: "\e82d";
}
.uil-comment-notes:before {
  content: "\e82e";
}
.uil-comment-alt-exclamation:before {
  content: "\e82f";
}
.uil-comment-exclamation:before {
  content: "\e830";
}
.uil-no-entry:before {
  content: "\e831";
}
.uil-screw:before {
  content: "\e832";
}
.uil-tape:before {
  content: "\e833";
}
.uil-paint-tool:before {
  content: "\e834";
}
.uil-comment-alt-verify:before {
  content: "\e835";
}
.uil-comment-alt-redo:before {
  content: "\e836";
}
.uil-trowel:before {
  content: "\e837";
}
.uil-drill:before {
  content: "\e838";
}
.uil-comment-info:before {
  content: "\e839";
}
.uil-jackhammer:before {
  content: "\e83a";
}
.uil-comment-alt-info:before {
  content: "\e83b";
}
.uil-wheel-barrow:before {
  content: "\e83c";
}
.uil-comment-message:before {
  content: "\e83d";
}
.uil-shovel:before {
  content: "\e83e";
}
.uil-keyhole-square:before {
  content: "\e83f";
}
.uil-keyhole-circle:before {
  content: "\e840";
}
.uil-traffic-barrier:before {
  content: "\e841";
}
.uil-keyhole-square-full:before {
  content: "\e842";
}
.uil-wall:before {
  content: "\e843";
}
.uil-constructor:before {
  content: "\e844";
}
.uil-hard-hat:before {
  content: "\e845";
}
.uil-shield-exclamation:before {
  content: "\e846";
}
.uil-lock-open-alt:before {
  content: "\e847";
}
.uil-unlock:before {
  content: "\e848";
}
.uil-unlock-alt:before {
  content: "\e849";
}
.uil-heart-alt:before {
  content: "\e84a";
}
.uil-octagon:before {
  content: "\e84b";
}
.uil-lock:before {
  content: "\e84c";
}
.uil-triangle:before {
  content: "\e84d";
}
.uil-star:before {
  content: "\e84e";
}
.uil-shield-slash:before {
  content: "\e84f";
}
.uil-lock-access:before {
  content: "\e850";
}
.uil-pentagon:before {
  content: "\e851";
}
.uil-shield-check:before {
  content: "\e852";
}
.uil-square:before {
  content: "\e853";
}
.uil-shield-question:before {
  content: "\e854";
}
.uil-padlock:before {
  content: "\e855";
}
.uil-wheelchair:before {
  content: "\e856";
}
.uil-lock-alt:before {
  content: "\e857";
}
.uil-polygon:before {
  content: "\e858";
}
.uil-circle:before {
  content: "\e859";
}
.uil-copyright:before {
  content: "\e85a";
}
.uil-closed-captioning:before {
  content: "\e85b";
}
.uil-trademark:before {
  content: "\e85c";
}
.uil-heart:before {
  content: "\e85d";
}
.uil-parking-circle:before {
  content: "\e85e";
}
.uil-mars:before {
  content: "\e85f";
}
.uil-sad-squint:before {
  content: "\e860";
}
.uil-registered:before {
  content: "\e861";
}
.uil-nerd:before {
  content: "\e862";
}
.uil-smile:before {
  content: "\e863";
}
.uil-meh-alt:before {
  content: "\e864";
}
.uil-annoyed:before {
  content: "\e865";
}
.uil-sad-dizzy:before {
  content: "\e866";
}
.uil-sad:before {
  content: "\e867";
}
.uil-servicemark:before {
  content: "\e868";
}
.uil-closed-captioning-slash:before {
  content: "\e869";
}
.uil-venus:before {
  content: "\e86a";
}
.uil-creative-commons-pd:before {
  content: "\e86b";
}
.uil-frown:before {
  content: "\e86c";
}
.uil-accessible-icon-alt:before {
  content: "\e86d";
}
.uil-squint:before {
  content: "\e86e";
}
.uil-meh:before {
  content: "\e86f";
}
.uil-silence:before {
  content: "\e870";
}
.uil-dizzy-meh:before {
  content: "\e871";
}
.uil-parking-square:before {
  content: "\e872";
}
.uil-shield:before {
  content: "\e873";
}
.uil-smile-dizzy:before {
  content: "\e874";
}
.uil-ninja:before {
  content: "\e875";
}
.uil-smile-beam:before {
  content: "\e876";
}
.uil-laughing:before {
  content: "\e877";
}
.uil-film:before {
  content: "\ea5c";
}
.uil-image-broken:before {
  content: "\ea5d";
}
.uil-incoming-call:before {
  content: "\ea5e";
}
.uil-image-check:before {
  content: "\ea5f";
}
.uil-image-plus:before {
  content: "\ea60";
}
.uil-video:before {
  content: "\ea61";
}
.uil-camera-plus:before {
  content: "\ea62";
}
.uil-play:before {
  content: "\ea63";
}
.uil-cloud-question:before {
  content: "\ea64";
}
.uil-skip-forward:before {
  content: "\ea65";
}
.uil-image-lock:before {
  content: "\ea66";
}
.uil-skip-forward-circle:before {
  content: "\ea67";
}
.uil-skip-forward-alt:before {
  content: "\ea68";
}
.uil-step-backward-circle:before {
  content: "\ea69";
}
.uil-boombox:before {
  content: "\ea6a";
}
.uil-step-backward-alt:before {
  content: "\ea6b";
}
.uil-image-share:before {
  content: "\ea6c";
}
.uil-cloud-database-tree:before {
  content: "\ea6d";
}
.uil-snowflake:before {
  content: "\ea6e";
}
.uil-temperature-quarter:before {
  content: "\ea6f";
}
.uil-cloud-showers-heavy:before {
  content: "\ea70";
}
.uil-fahrenheit:before {
  content: "\ea71";
}
.uil-snowflake-alt:before {
  content: "\ea72";
}
.uil-cloud-wind:before {
  content: "\ea73";
}
.uil-tornado:before {
  content: "\ea74";
}
.uil-cloud-sun-hail:before {
  content: "\ea75";
}
.uil-cloud:before {
  content: "\ea76";
}
.uil-image-edit:before {
  content: "\ea77";
}
.uil-cloud-moon-hail:before {
  content: "\ea78";
}
.uil-temperature-empty:before {
  content: "\ea79";
}
.uil-cloud-sun-rain:before {
  content: "\ea7a";
}
.uil-thunderstorm:before {
  content: "\ea7b";
}
.uil-thunderstorm-sun:before {
  content: "\ea7c";
}
.uil-temperature-three-quarter:before {
  content: "\ea7d";
}
.uil-thunderstorm-moon:before {
  content: "\ea7e";
}
.uil-snow-flake:before {
  content: "\ea7f";
}
.uil-raindrops:before {
  content: "\ea80";
}
.uil-cloud-rain:before {
  content: "\ea82";
}
.uil-cloud-sun-tear:before {
  content: "\ea83";
}
.uil-cloud-moon-showers:before {
  content: "\ea84";
}
.uil-cloud-rain-sun:before {
  content: "\ea85";
}
.uil-cloud-showers-alt:before {
  content: "\ea86";
}
.uil-cloud-showers:before {
  content: "\ea87";
}
.uil-cloud-hail:before {
  content: "\ea88";
}
.uil-cloud-drizzle:before {
  content: "\ea89";
}
.uil-cloud-moon:before {
  content: "\ea8a";
}
.uil-moon:before {
  content: "\ea8b";
}
.uil-cloud-moon-rain:before {
  content: "\ea8c";
}
.uil-moonset:before {
  content: "\ea8d";
}
.uil-celsius:before {
  content: "\ea8e";
}
.uil-image-upload:before {
  content: "\ea8f";
}
.uil-cloud-sun-meatball:before {
  content: "\ea90";
}
.uil-windsock:before {
  content: "\ea91";
}
.uil-stop-circle:before {
  content: "\ea92";
}
.uil-temperature-plus:before {
  content: "\ea93";
}
.uil-moon-eclipse:before {
  content: "\ea94";
}
.uil-vertical-align-top:before {
  content: "\ea95";
}
.uil-cloud-meatball:before {
  content: "\ea96";
}
.uil-temperature:before {
  content: "\ea97";
}
.uil-cloud-moon-meatball:before {
  content: "\ea98";
}
.uil-flip-h-alt:before {
  content: "\ea99";
}
.uil-vector-square-alt:before {
  content: "\ea9a";
}
.uil-object-ungroup:before {
  content: "\ea9b";
}
.uil-th:before {
  content: "\ea9c";
}
.uil-images:before {
  content: "\ea9d";
}
.uil-temperature-minus:before {
  content: "\ea9e";
}
.uil-flip-v:before {
  content: "\ea9f";
}
.uil-cloud-sun-rain-alt:before {
  content: "\eaa0";
}
.uil-square-full:before {
  content: "\eaa2";
}
.uil-vertical-distribute-bottom:before {
  content: "\eaa3";
}
.uil-panorama-h-alt:before {
  content: "\eaa4";
}
.uil-pathfinder-unite:before {
  content: "\eaa5";
}
.uil-wind:before {
  content: "\eaa6";
}
.uil-vector-square:before {
  content: "\eaa7";
}
.uil-vertical-align-bottom:before {
  content: "\eaa8";
}
.uil-ruler:before {
  content: "\eaa9";
}
.uil-object-group:before {
  content: "\eaaa";
}
.uil-panorama-v:before {
  content: "\eaab";
}
.uil-panorama-h:before {
  content: "\eaac";
}
.uil-temperature-half:before {
  content: "\eaad";
}
.uil-layers-alt:before {
  content: "\eaaf";
}
.uil-line-alt:before {
  content: "\eab0";
}
.uil-image-resize-landscape:before {
  content: "\eab1";
}
.uil-image-resize-square:before {
  content: "\eab2";
}
.uil-pathfinder:before {
  content: "\eab3";
}
.uil-flip-h:before {
  content: "\eab4";
}
.uil-horizontal-distribution-right:before {
  content: "\eab5";
}
.uil-horizontal-distribution-left:before {
  content: "\eab6";
}
.uil-horizontal-distribution-center:before {
  content: "\eab7";
}
.uil-horizontal-align-center:before {
  content: "\eab8";
}
.uil-ruler-combined:before {
  content: "\eab9";
}
.uil-horizontal-align-right:before {
  content: "\eaba";
}
.uil-horizontal-align-left:before {
  content: "\eabb";
}
.uil-table:before {
  content: "\eabc";
}
.uil-th-slash:before {
  content: "\eabd";
}
.uil-crop-alt-rotate-right:before {
  content: "\eabe";
}
.uil-apps:before {
  content: "\eabf";
}
.uil-exclude:before {
  content: "\eac0";
}
.uil-crop-alt:before {
  content: "\eac1";
}
.uil-grids:before {
  content: "\eac2";
}
.uil-flip-v-alt:before {
  content: "\eac3";
}
.uil-vertical-distribution-center:before {
  content: "\eac4";
}
.uil-crop-alt-rotate-left:before {
  content: "\eac5";
}
.uil-vertical-distribution-top:before {
  content: "\eac6";
}
.uil-brush-alt:before {
  content: "\eac7";
}
.uil-circle-layer:before {
  content: "\eac8";
}
.uil-modem:before {
  content: "\eac9";
}
.uil-webcam:before {
  content: "\eaca";
}
.uil-hdd:before {
  content: "\eacb";
}
.uil-monitor:before {
  content: "\eacc";
}
.uil-dice-four:before {
  content: "\eacd";
}
.uil-wifi-router:before {
  content: "\eace";
}
.uil-dice-five:before {
  content: "\eacf";
}
.uil-dice-one:before {
  content: "\ead0";
}
.uil-dice-two:before {
  content: "\ead1";
}
.uil-dice-six:before {
  content: "\ead2";
}
.uil-windy:before {
  content: "\ead3";
}
.uil-swatchbook:before {
  content: "\ead4";
}
.uil-cancel:before {
  content: "\ead5";
}
.uil-clouds:before {
  content: "\ead6";
}
.uil-mountains-sun:before {
  content: "\ead7";
}
.uil-history:before {
  content: "\ead8";
}
.uil-n-a:before {
  content: "\ead9";
}
.uil-plane:before {
  content: "\eada";
}
.uil-plane-departure:before {
  content: "\eadb";
}
.uil-auto-flash:before {
  content: "\eadc";
}
.uil-glass-martini:before {
  content: "\eadd";
}
.uil-mobile-vibrate:before {
  content: "\eade";
}
.uil-trees:before {
  content: "\eadf";
}
.uil-voicemail:before {
  content: "\eae0";
}
.uil-voicemail-rectangle:before {
  content: "\eae1";
}
.uil-plane-fly:before {
  content: "\eae2";
}
.uil-sync-exclamation:before {
  content: "\eae3";
}
.uil-tachometer-fast:before {
  content: "\eae4";
}
.uil-sign-in-alt:before {
  content: "\eae5";
}
.uil-archive-alt:before {
  content: "\eae6";
}
.uil-power:before {
  content: "\eae7";
}
.uil-pizza-slice:before {
  content: "\eae9";
}
.uil-refresh:before {
  content: "\eaea";
}
.uil-anchor:before {
  content: "\eaeb";
}
.uil-sync-slash:before {
  content: "\eaec";
}
.uil-upload:before {
  content: "\eaed";
}
.uil-glass:before {
  content: "\eaee";
}
.uil-sign-out-alt:before {
  content: "\eaef";
}
.uil-newspaper:before {
  content: "\eaf0";
}
.uil-signin:before {
  content: "\eaf1";
}
.uil-processor:before {
  content: "\eaf2";
}
.uil-hunting:before {
  content: "\eaf3";
}
.uil-coffee:before {
  content: "\eaf4";
}
.uil-history-alt:before {
  content: "\eaf5";
}
.uil-weight:before {
  content: "\eaf6";
}
.uil-plane-arrival:before {
  content: "\eaf7";
}
.uil-gift:before {
  content: "\eaf8";
}
.uil-circuit:before {
  content: "\eaf9";
}
.uil-archive:before {
  content: "\eafa";
}
.uil-ban:before {
  content: "\eafb";
}
.uil-crosshair-alt:before {
  content: "\eafc";
}
.uil-crosshair:before {
  content: "\eafd";
}
.uil-record-audio:before {
  content: "\eafe";
}
.uil-flower:before {
  content: "\eaff";
}
.uil-airplay:before {
  content: "\eb00";
}
.uil-rss-interface:before {
  content: "\eb01";
}
.uil-equal-circle:before {
  content: "\eb02";
}
.uil-shutter:before {
  content: "\eb03";
}
.uil-microphone-slash:before {
  content: "\eb04";
}
.uil-life-ring:before {
  content: "\eb05";
}
.uil-sliders-v-alt:before {
  content: "\eb06";
}
.uil-compact-disc:before {
  content: "\eb07";
}
.uil-sitemap:before {
  content: "\eb08";
}
.uil-sliders-v:before {
  content: "\eb09";
}
.uil-shutter-alt:before {
  content: "\eb0a";
}
.uil-clapper-board:before {
  content: "\eb0b";
}
.uil-water:before {
  content: "\eb0c";
}
.uil-rainbow:before {
  content: "\eb0d";
}
.uil-desert:before {
  content: "\eb0e";
}
.uil-sunset:before {
  content: "\eb0f";
}
.uil-mountains:before {
  content: "\eb10";
}
.uil-bolt-slash:before {
  content: "\eb11";
}
.uil-telescope:before {
  content: "\eb12";
}
.uil-sperms:before {
  content: "\eb13";
}
.uil-game-structure:before {
  content: "\eb14";
}
.uil-ticket:before {
  content: "\eb15";
}
.uil-presentation-play:before {
  content: "\eb16";
}
.uil-book-open:before {
  content: "\eb17";
}
.uil-notebooks:before {
  content: "\eb18";
}
.uil-award-alt:before {
  content: "\eb19";
}
.uil-bug:before {
  content: "\eb1a";
}
.uil-rss-alt:before {
  content: "\eb1c";
}
.uil-building:before {
  content: "\eb1d";
}
.uil-lamp:before {
  content: "\eb1e";
}
.uil-heart-rate:before {
  content: "\eb1f";
}
.uil-swimmer:before {
  content: "\eb20";
}
.uil-pump:before {
  content: "\eb21";
}
.uil-crockery:before {
  content: "\eb22";
}
.uil-message:before {
  content: "\eb23";
}
.uil-bed-double:before {
  content: "\eb24";
}
.uil-rope-way:before {
  content: "\eb25";
}
.uil-water-glass:before {
  content: "\eb26";
}
.uil-rotate-360:before {
  content: "\eb27";
}
.uil-feedback:before {
  content: "\eb28";
}
.uil-utensils:before {
  content: "\eb2a";
}
.uil-align-center-h:before {
  content: "\eb2b";
}
.uil-post-stamp:before {
  content: "\eb2d";
}
.uil-enter:before {
  content: "\eb2f";
}
.uil-arrow:before {
  content: "\eb30";
}
.uil-arrows-shrink-h:before {
  content: "\eb31";
}
.uil-arrows-resize:before {
  content: "\eb32";
}
.uil-presentation:before {
  content: "\eb33";
}
.uil-arrows-h:before {
  content: "\eb34";
}
.uil-scaling-right:before {
  content: "\eb35";
}
.uil-import:before {
  content: "\eb36";
}
.uil-arrow-circle-down:before {
  content: "\eb37";
}
.uil-angle-double-down:before {
  content: "\eb38";
}
.uil-chart-down:before {
  content: "\eb39";
}
.uil-angle-down:before {
  content: "\eb3a";
}
.uil-expand-left:before {
  content: "\eb3b";
}
.uil-arrow-resize-diagonal:before {
  content: "\eb3c";
}
.uil-exchange-alt:before {
  content: "\eb3d";
}
.uil-angle-double-left:before {
  content: "\eb3e";
}
.uil-expand-alt:before {
  content: "\eb3f";
}
.uil-compress-arrows:before {
  content: "\eb40";
}
.uil-caret-right:before {
  content: "\eb41";
}
.uil-scroll-h:before {
  content: "\eb42";
}
.uil-angle-double-right:before {
  content: "\eb43";
}
.uil-arrow-to-bottom:before {
  content: "\eb44";
}
.uil-sort:before {
  content: "\eb45";
}
.uil-scaling-left:before {
  content: "\eb46";
}
.uil-arrows-resize-h:before {
  content: "\eb47";
}
.uil-arrow-from-top:before {
  content: "\eb48";
}
.uil-arrows-up-right:before {
  content: "\eb49";
}
.uil-arrows-left-down:before {
  content: "\eb4a";
}
.uil-arrows-right-down:before {
  content: "\eb4b";
}
.uil-arrows-h-alt:before {
  content: "\eb4c";
}
.uil-download-alt:before {
  content: "\eb4d";
}
.uil-compress-point:before {
  content: "\eb4e";
}
.uil-arrow-up-left:before {
  content: "\eb4f";
}
.uil-arrow-compress-h:before {
  content: "\eb50";
}
.uil-arrows-v-alt:before {
  content: "\eb51";
}
.uil-arrows-v:before {
  content: "\eb52";
}
.uil-arrows-shrink-v:before {
  content: "\eb53";
}
.uil-arrow-break:before {
  content: "\eb54";
}
.uil-align-center-v:before {
  content: "\eb55";
}
.uil-angle-up:before {
  content: "\eb56";
}
.uil-arrow-circle-up:before {
  content: "\eb57";
}
.uil-export:before {
  content: "\eb58";
}
.uil-arrows-resize-v:before {
  content: "\eb59";
}
.uil-upload-alt:before {
  content: "\eb5a";
}
.uil-arrow-up-right:before {
  content: "\eb5b";
}
.uil-corner-up-right:before {
  content: "\eb5c";
}
.uil-angle-double-up:before {
  content: "\eb5d";
}
.uil-sorting:before {
  content: "\eb5e";
}
.uil-exchange:before {
  content: "\eb5f";
}
.uil-corner-down-left:before {
  content: "\eb60";
}
.uil-corner-right-down:before {
  content: "\eb61";
}
.uil-corner-down-right:before {
  content: "\eb62";
}
.uil-corner-up-left:before {
  content: "\eb63";
}
.uil-corner-left-down:before {
  content: "\eb64";
}
.uil-maximize-left:before {
  content: "\eb65";
}
.uil-corner-up-right-alt:before {
  content: "\eb66";
}
.uil-corner-down-right-alt:before {
  content: "\eb67";
}
.uil-top-arrow-from-top:before {
  content: "\eb68";
}
.uil-top-arrow-to-top:before {
  content: "\eb69";
}
.uil-arrow-random:before {
  content: "\eb6a";
}
.uil-shuffle:before {
  content: "\eb6b";
}
.uil-direction:before {
  content: "\eb6c";
}
.uil-angle-right:before {
  content: "\eb6d";
}
.uil-arrow-circle-right:before {
  content: "\eb6e";
}
.uil-arrow-to-right:before {
  content: "\eb6f";
}
.uil-arrow-from-right:before {
  content: "\eb70";
}
.uil-expand-from-corner:before {
  content: "\eb71";
}
.uil-expand-arrows:before {
  content: "\eb72";
}
.uil-arrows-maximize:before {
  content: "\eb73";
}
.uil-arrow-down-left:before {
  content: "\eb74";
}
.uil-expand-arrows-alt:before {
  content: "\eb75";
}
.uil-compress-alt:before {
  content: "\eb76";
}
.uil-scroll:before {
  content: "\eb77";
}
.uil-arrow-circle-left:before {
  content: "\eb78";
}
.uil-angle-left:before {
  content: "\eb79";
}
.uil-arrows-merge:before {
  content: "\eb7a";
}
.uil-arrow-down-right:before {
  content: "\eb7b";
}
.uil-left-arrow-to-left:before {
  content: "\eb7d";
}
.uil-minus-path:before {
  content: "\eb7e";
}
.uil-left-arrow-from-left:before {
  content: "\eb7f";
}
.uil-repeat:before {
  content: "\eb80";
}
.uil-th-large:before {
  content: "\eb81";
}
.uil-line-spacing:before {
  content: "\eb82";
}
.uil-shrink:before {
  content: "\eb83";
}
.uil-compress-alt-left:before {
  content: "\eb84";
}
.uil-bring-front:before {
  content: "\eb85";
}
.uil-compress-lines:before {
  content: "\eb86";
}
.uil-bring-bottom:before {
  content: "\eb87";
}
.uil-compress-v:before {
  content: "\eb88";
}
.uil-spin:before {
  content: "\eb89";
}
.uil-border-out:before {
  content: "\eb8a";
}
.uil-border-horizontal:before {
  content: "\eb8b";
}
.uil-document-layout-left:before {
  content: "\eb8c";
}
.uil-compress:before {
  content: "\eb8d";
}
.uil-grip-horizontal-line:before {
  content: "\eb8e";
}
.uil-dialpad-alt:before {
  content: "\eb8f";
}
.uil-document-layout-center:before {
  content: "\eb90";
}
.uil-border-bottom:before {
  content: "\eb91";
}
.uil-dialpad:before {
  content: "\eb92";
}
.uil-document-layout-right:before {
  content: "\eb93";
}
.uil-align-center:before {
  content: "\eb94";
}
.uil-sort-amount-down:before {
  content: "\eb95";
}
.uil-align-center-alt:before {
  content: "\eb96";
}
.uil-align-letter-right:before {
  content: "\eb97";
}
.uil-border-alt:before {
  content: "\eb98";
}
.uil-align-center-justify:before {
  content: "\eb99";
}
.uil-align-alt:before {
  content: "\eb9a";
}
.uil-border-vertical:before {
  content: "\eb9b";
}
.uil-sort-amount-up:before {
  content: "\eb9c";
}
.uil-wrap-text:before {
  content: "\eb9d";
}
.uil-align-left-justify:before {
  content: "\eb9e";
}
.uil-angle-right-b:before {
  content: "\eb9f";
}
.uil-paragraph:before {
  content: "\eba0";
}
.uil-right-indent-alt:before {
  content: "\eba1";
}
.uil-border-right:before {
  content: "\eba2";
}
.uil-align-right-justify:before {
  content: "\eba3";
}
.uil-align:before {
  content: "\eba4";
}
.uil-border-clear:before {
  content: "\eba5";
}
.uil-align-right:before {
  content: "\eba6";
}
.uil-list-ui-alt:before {
  content: "\eba7";
}
.uil-left-indent:before {
  content: "\eba8";
}
.uil-left-indent-alt:before {
  content: "\eba9";
}
.uil-border-left:before {
  content: "\ebaa";
}
.uil-border-top:before {
  content: "\ebab";
}
.uil-align-justify:before {
  content: "\ebac";
}
.uil-subject:before {
  content: "\ebad";
}
.uil-bars:before {
  content: "\ebae";
}
.uil-eye:before {
  content: "\ebaf";
}
.uil-exposure-increase:before {
  content: "\ebb0";
}
.uil-bright:before {
  content: "\ebb1";
}
.uil-exposure-alt:before {
  content: "\ebb2";
}
.uil-capture:before {
  content: "\ebb3";
}
.uil-arrow-left:before {
  content: "\ebb4";
}
.uil-arrow-right:before {
  content: "\ebb5";
}
.uil-arrow-up:before {
  content: "\ebb6";
}
.uil-focus-target:before {
  content: "\ebb7";
}
.uil-external-link-alt:before {
  content: "\ebb8";
}
.uil-card-atm:before {
  content: "\ebb9";
}
.uil-focus-add:before {
  content: "\ebba";
}
.uil-focus:before {
  content: "\ebbb";
}
.uil-border-inner:before {
  content: "\ebbc";
}
.uil-glass-tea:before {
  content: "\ebbd";
}
.uil-streering:before {
  content: "\ebbe";
}
.uil-tv-retro-slash:before {
  content: "\ebbf";
}
.uil-wrench:before {
  content: "\ebc0";
}
.uil-football-american:before {
  content: "\ebc1";
}
.uil-water-drop-slash:before {
  content: "\ebc2";
}
.uil-layers:before {
  content: "\ebc3";
}
.uil-print-slash:before {
  content: "\ebc4";
}
.uil-android-phone-slash:before {
  content: "\ebc5";
}
.uil-calendar-slash:before {
  content: "\ebc6";
}
.uil-image-slash:before {
  content: "\ebc7";
}
.uil-image-alt-slash:before {
  content: "\ebc8";
}
.uil-lock-slash:before {
  content: "\ebc9";
}
.uil-money-bill-slash:before {
  content: "\ebca";
}
.uil-comment-slash:before {
  content: "\ebcb";
}
.uil-map-marker-slash:before {
  content: "\ebcc";
}
.uil-tear:before {
  content: "\ebcd";
}
.uil-comment-alt-slash:before {
  content: "\ebce";
}
.uil-folder-slash:before {
  content: "\ebcf";
}
.uil-filter-slash:before {
  content: "\ebd0";
}
.uil-file-slash:before {
  content: "\ebd1";
}
.uil-file-lanscape-slash:before {
  content: "\ebd2";
}
.uil-glass-martini-alt-slash:before {
  content: "\ebd3";
}
.uil-car-slash:before {
  content: "\ebd4";
}
.uil-camera-slash:before {
  content: "\ebd5";
}
.uil-list-ul:before {
  content: "\ebd6";
}
.uil-layer-group-slash:before {
  content: "\ebd7";
}
.uil-plug:before {
  content: "\ebd8";
}
.uil-bell-slash:before {
  content: "\ebd9";
}
.uil-expand-right:before {
  content: "\ebda";
}
.uil-bell:before {
  content: "\ebdb";
}
.uil-desktop-alt-slash:before {
  content: "\ebdc";
}
.uil-align-left:before {
  content: "\ebdd";
}
.uil-layers-slash:before {
  content: "\ebde";
}
.uil-angry:before {
  content: "\ebdf";
}
.uil-ear:before {
  content: "\ebe0";
}
.uil-desktop-slash:before {
  content: "\ebe1";
}
.uil-text-strike-through:before {
  content: "\ebe2";
}
.uil-bold:before {
  content: "\ebe3";
}
.uil-text:before {
  content: "\ebe4";
}
.uil-assistive-listening-systems:before {
  content: "\ebe5";
}
.uil-palette:before {
  content: "\ebe6";
}
.uil-underline:before {
  content: "\ebe7";
}
.uil-text-fields:before {
  content: "\ebe8";
}
.uil-arrow-down:before {
  content: "\ebe9";
}
.uil-text-size:before {
  content: "\ebea";
}
.uil-italic:before {
  content: "\ebeb";
}
.uil-right-to-left-text-direction:before {
  content: "\ebec";
}
.uil-sigma:before {
  content: "\ebed";
}
.uil-12-plus:before {
  content: "\ebee";
}
.uil-left-to-right-text-direction:before {
  content: "\ebef";
}
.uil-10-plus:before {
  content: "\ebf0";
}
.uil-16-plus:before {
  content: "\ebf1";
}
.uil-13-plus:before {
  content: "\ebf2";
}
.uil-21-plus:before {
  content: "\ebf3";
}
.uil-17-plus:before {
  content: "\ebf4";
}
.uil-6-plus:before {
  content: "\ebf5";
}
.uil-0-plus:before {
  content: "\ebf6";
}
.uil-3-plus:before {
  content: "\ebf7";
}
.uil-eye-slash:before {
  content: "\ebf8";
}
.uil-archway:before {
  content: "\ebf9";
}
.uil-18-plus:before {
  content: "\ebfa";
}
.uil-robot:before {
  content: "\ebfb";
}
.uil-selfie:before {
  content: "\ebfc";
}
.uil-bag-slash:before {
  content: "\ebfd";
}
.uil-instagram:before {
  content: "\ebfe";
}
.uil-line:before {
  content: "\ebff";
}
.uil-facebook-messenger:before {
  content: "\ec00";
}
.uil-facebook-f:before {
  content: "\ec01";
}
.uil-black-berry:before {
  content: "\ec02";
}
.uil-linkedin:before {
  content: "\ec03";
}
.uil-snapchat-ghost:before {
  content: "\ec04";
}
.uil-intercom:before {
  content: "\ec05";
}
.uil-youtube:before {
  content: "\ec06";
}
.uil-snapchat-square:before {
  content: "\ec07";
}
.uil-apple:before {
  content: "\ec08";
}
.uil-instagram-alt:before {
  content: "\ec09";
}
.uil-whatsapp-alt:before {
  content: "\ec0a";
}
.uil-behance:before {
  content: "\ec0b";
}
.uil-twitter:before {
  content: "\ec0c";
}
.uil-500px:before {
  content: "\ec0d";
}
.uil-tumblr:before {
  content: "\ec0e";
}
.uil-github-alt:before {
  content: "\ec0f";
}
.uil-tumblr-square:before {
  content: "\ec10";
}
.uil-google:before {
  content: "\ec11";
}
.uil-medium-m:before {
  content: "\ec12";
}
.uil-slack:before {
  content: "\ec13";
}
.uil-paypal:before {
  content: "\ec14";
}
.uil-reddit-alien-alt:before {
  content: "\ec15";
}
.uil-linkedin-alt:before {
  content: "\ec16";
}
.uil-google-hangouts:before {
  content: "\ec17";
}
.uil-java-script:before {
  content: "\ec18";
}
.uil-google-play:before {
  content: "\ec19";
}
.uil-google-drive:before {
  content: "\ec1a";
}
.uil-asterisk:before {
  content: "\ec1b";
}
.uil-android:before {
  content: "\ec1c";
}
.uil-github:before {
  content: "\ec1d";
}
.uil-balance-scale:before {
  content: "\ec1e";
}
.uil-amazon:before {
  content: "\ec1f";
}
.uil-slack-alt:before {
  content: "\ec20";
}
.uil-dashboard:before {
  content: "\ec21";
}
.uil-vuejs-alt:before {
  content: "\ec22";
}
.uil-adobe-alt:before {
  content: "\ec23";
}
.uil-ankh:before {
  content: "\ec24";
}
.uil-twitter-alt:before {
  content: "\ec25";
}
.uil-opera:before {
  content: "\ec26";
}
.uil-intercom-alt:before {
  content: "\ec27";
}
.uil-tumblr-alt:before {
  content: "\ec28";
}
.uil-react:before {
  content: "\ec29";
}
.uil-camera-change:before {
  content: "\ec2a";
}
.uil-master-card:before {
  content: "\ec2b";
}
.uil-snapchat-alt:before {
  content: "\ec2c";
}
.uil-opera-alt:before {
  content: "\ec2d";
}
.uil-html3-alt:before {
  content: "\ec2e";
}
.uil-swiggy:before {
  content: "\ec2f";
}
.uil-html3:before {
  content: "\ec30";
}
.uil-google-hangouts-alt:before {
  content: "\ec31";
}
.uil-adobe:before {
  content: "\ec32";
}
.uil-facebook-messenger-alt:before {
  content: "\ec33";
}
.uil-blogger-alt:before {
  content: "\ec34";
}
.uil-blogger:before {
  content: "\ec35";
}
.uil-behance-alt:before {
  content: "\ec36";
}
.uil-apple-alt:before {
  content: "\ec37";
}
.uil-bitcoin:before {
  content: "\ec38";
}
.uil-megaphone:before {
  content: "\ec39";
}
.uil-bitcoin-alt:before {
  content: "\ec3a";
}
.uil-bowling-ball:before {
  content: "\ec3b";
}
.uil-percentage:before {
  content: "\ec3c";
}
.uil-hourglass:before {
  content: "\ec3d";
}
.uil-process:before {
  content: "\ec3e";
}
.uil-university:before {
  content: "\ec3f";
}
.uil-skype-alt:before {
  content: "\ec40";
}
.uil-wind-sun:before {
  content: "\ec41";
}
.uil-vk-alt:before {
  content: "\ec42";
}
.uil-skype:before {
  content: "\ec43";
}
.uil-telegram-alt:before {
  content: "\ec44";
}
.uil-vuejs:before {
  content: "\ec45";
}
.uil-vk:before {
  content: "\ec46";
}
.uil-telegram:before {
  content: "\ec47";
}
.uil-yin-yang:before {
  content: "\ec48";
}
.uil-angle-left-b:before {
  content: "\ec49";
}
.uil-bath:before {
  content: "\ec4a";
}
.uil-metro:before {
  content: "\ec4b";
}
.uil-comment-add:before {
  content: "\ec4c";
}
.uil-fire:before {
  content: "\ec4d";
}
.uil-qrcode-scan:before {
  content: "\ec4e";
}
.uil-panel-add:before {
  content: "\ec4f";
}
.uil-brackets-curly:before {
  content: "\ec50";
}
.uil-folder-open:before {
  content: "\ec51";
}
.uil-comparison:before {
  content: "\ec52";
}
.uil-file-export:before {
  content: "\ec53";
}
.uil-channel-add:before {
  content: "\ec54";
}
.uil-rupee-sign:before {
  content: "\ec55";
}
.uil-channel:before {
  content: "\ec56";
}
.uil-link-add:before {
  content: "\ec57";
}
.uil-file-import:before {
  content: "\ec58";
}
.uil-x:before {
  content: "\ec59";
}
.uil-save:before {
  content: "\ec5a";
}
.uil-heart-break:before {
  content: "\ec5b";
}
.uil-tachometer-fast-alt:before {
  content: "\ec5c";
}
.uil-facebook:before {
  content: "\ec5d";
}
.uil-create-dashboard:before {
  content: "\ec5e";
}
.uil-whatsapp:before {
  content: "\ec5f";
}
.uil-setting:before {
  content: "\ec60";
}
.uil-rocket:before {
  content: "\ec61";
}
.uil-share:before {
  content: "\ec62";
}
.uil-x-add:before {
  content: "\ec63";
}
.uil-user-nurse:before {
  content: "\ec64";
}
.uil-microscope:before {
  content: "\ec65";
}
.uil-virus-slash:before {
  content: "\ec66";
}
.uil-visual-studio:before {
  content: "\ec67";
}
.uil-head-side-mask:before {
  content: "\ec68";
}
.uil-baseball-ball:before {
  content: "\ec69";
}
.uil-stethoscope-alt:before {
  content: "\ec6a";
}
.uil-hospital-symbol:before {
  content: "\ec6b";
}
.uil-hospital-square-sign:before {
  content: "\ec6c";
}
.uil-head-side:before {
  content: "\ec6d";
}
.uil-head-side-cough:before {
  content: "\ec6e";
}
.uil-clinic-medical:before {
  content: "\ec6f";
}
.uil-wind-moon:before {
  content: "\ec70";
}
.uil-hospital:before {
  content: "\ec71";
}
.uil-stethoscope:before {
  content: "\ec72";
}
.uil-sanitizer:before {
  content: "\ec73";
}
.uil-toilet-paper:before {
  content: "\ec74";
}
.uil-coronavirus:before {
  content: "\ec75";
}
.uil-user-arrows:before {
  content: "\ec76";
}
.uil-house-user:before {
  content: "\ec77";
}
.uil-social-distancing:before {
  content: "\ec78";
}
.uil-credit-card-search:before {
  content: "\ec79";
}
.uil-android-alt:before {
  content: "\ec7a";
}
.uil-shield-plus:before {
  content: "\ec7b";
}
.uil-user-md:before {
  content: "\ec7c";
}
.uil-transaction:before {
  content: "\ec7d";
}
.uil-store-slash:before {
  content: "\ec7e";
}
.uil-code-branch:before {
  content: "\ec7f";
}
.uil-google-drive-alt:before {
  content: "\ec80";
}
.uil-envelope-block:before {
  content: "\ec81";
}
.uil-mailbox-alt:before {
  content: "\ec82";
}
.uil-signout:before {
  content: "\ec83";
}
.uil-slider-h:before {
  content: "\ec84";
}
.uil-lira-sign:before {
  content: "\ec85";
}
.uil-slider-h-range:before {
  content: "\ec86";
}
.uil-file-graph:before {
  content: "\ec87";
}
.uil-wordpress-simple:before {
  content: "\ec88";
}
.uil-bing:before {
  content: "\ec89";
}
.uil-wordpress:before {
  content: "\ec8a";
}
.uil-html5:before {
  content: "\ec8b";
}
.uil-programming-language:before {
  content: "\ec8c";
}
.uil-css3-simple:before {
  content: "\ec8d";
}
.uil-html5-alt:before {
  content: "\ec8e";
}
.uil-discord:before {
  content: "\ec8f";
}
.uil-draggabledots:before {
  content: "\ec90";
}
.uil-font:before {
  content: "\ec91";
}
.uil-video-question:before {
  content: "\ec92";
}
.uil-headphone-slash:before {
  content: "\ec93";
}
.uil-info:before {
  content: "\ec94";
}
.uil-letter-chinese-a:before {
  content: "\ec95";
}
.uil-letter-hindi-a:before {
  content: "\ec96";
}
.uil-english-to-chinese:before {
  content: "\ec97";
}
.uil-question:before {
  content: "\ec98";
}
.uil-letter-english-a:before {
  content: "\ec99";
}
.uil-hindi-to-chinese:before {
  content: "\ec9a";
}
.uil-inbox:before {
  content: "\ec9b";
}
.uil-letter-japanese-a:before {
  content: "\ec9c";
}
.uil-exclamation:before {
  content: "\ec9d";
}
.uil-language:before {
  content: "\ec9e";
}
.uil-backspace:before {
  content: "\ec9f";
}
.uil-window-grid:before {
  content: "\eca0";
}
.uil-cloud-sun:before {
  content: "\eca1";
}
.uil-vertical-align-center:before {
  content: "\eca2";
}
.uil-raindrops-alt:before {
  content: "\eca3";
}
.uil-sanitizer-alt:before {
  content: "\eca4";
}
.uil-estate:before {
  content: "\eca5";
}
.uil-file-contract:before {
  content: "\eca6";
}
.uil-fidget-spinner:before {
  content: "\eca7";
}
.uil-spinner:before {
  content: "\eca8";
}
.uil-spinner-alt:before {
  content: "\eca9";
}
.uil-elipsis-double-v-alt:before {
  content: "\ecaa";
}
.uil-list-ol:before {
  content: "\ecab";
}
.uil-list-ol-alt:before {
  content: "\ecac";
}
.uil-docker:before {
  content: "\ecad";
}
.uil-linux:before {
  content: "\ecae";
}
.uil-hipchat:before {
  content: "\ecaf";
}
.uil-gitlab:before {
  content: "\ecb0";
}
.uil-lottiefiles-alt:before {
  content: "\ecb1";
}
.uil-pagerduty:before {
  content: "\ecb2";
}
.uil-microsoft:before {
  content: "\ecb3";
}
.uil-windows:before {
  content: "\ecb4";
}
.uil-pagelines:before {
  content: "\ecb5";
}
.uil-lottiefiles:before {
  content: "\ecb6";
}
.uil-okta:before {
  content: "\ecb7";
}
.uil-illustration:before {
  content: "\ecb8";
}
.uil-icons:before {
  content: "\ecb9";
}
.uil-stroller:before {
  content: "\ecba";
}
.uil-sleep:before {
  content: "\ecbb";
}
.uil-calendar:before {
  content: "\ecbc";
}
.uil-grin:before {
  content: "\e878";
}
.uil-sad-cry:before {
  content: "\e879";
}
.uil-sad-crying:before {
  content: "\e87a";
}
.uil-surprise:before {
  content: "\e87b";
}
.uil-unamused:before {
  content: "\e87c";
}
.uil-confused:before {
  content: "\e87d";
}
.uil-grin-tongue-wink:before {
  content: "\e87e";
}
.uil-grin-tongue-wink-alt:before {
  content: "\e87f";
}
.uil-kid:before {
  content: "\e880";
}
.uil-smile-wink-alt:before {
  content: "\e881";
}
.uil-smile-squint-wink:before {
  content: "\e882";
}
.uil-annoyed-alt:before {
  content: "\e883";
}
.uil-silent-squint:before {
  content: "\e884";
}
.uil-sick:before {
  content: "\e885";
}
.uil-shopping-cart-alt:before {
  content: "\e886";
}
.uil-shopping-bag:before {
  content: "\e887";
}
.uil-pricetag-alt:before {
  content: "\e888";
}
.uil-shopping-cart:before {
  content: "\e889";
}
.uil-smile-squint-wink-alt:before {
  content: "\e88a";
}
.uil-store-alt:before {
  content: "\e88b";
}
.uil-emoji:before {
  content: "\e88c";
}
.uil-trademark-circle:before {
  content: "\e88d";
}
.uil-basketball:before {
  content: "\e88e";
}
.uil-square-shape:before {
  content: "\e88f";
}
.uil-label:before {
  content: "\e890";
}
.uil-shopping-basket:before {
  content: "\e891";
}
.uil-smile-wink:before {
  content: "\e892";
}
.uil-tag:before {
  content: "\e893";
}
.uil-label-alt:before {
  content: "\e894";
}
.uil-tag-alt:before {
  content: "\e895";
}
.uil-store:before {
  content: "\e896";
}
.uil-meh-closed-eye:before {
  content: "\e897";
}
.uil-trophy:before {
  content: "\e898";
}
.uil-dice-three:before {
  content: "\e899";
}
.uil-football-ball:before {
  content: "\e89a";
}
.uil-basketball-hoop:before {
  content: "\e89b";
}
.uil-club:before {
  content: "\e89c";
}
.uil-tennis-ball:before {
  content: "\e89d";
}
.uil-football:before {
  content: "\e89e";
}
.uil-volleyball:before {
  content: "\e89f";
}
.uil-heart-sign:before {
  content: "\e8a0";
}
.uil-spade:before {
  content: "\e8a1";
}
.uil-diamond:before {
  content: "\e8a2";
}
.uil-money-stack:before {
  content: "\e8a3";
}
.uil-money-withdrawal:before {
  content: "\e8a4";
}
.uil-presentation-line:before {
  content: "\e8a5";
}
.uil-kayak:before {
  content: "\e8a6";
}
.uil-chart-pie:before {
  content: "\e8a7";
}
.uil-dumbbell:before {
  content: "\e8a8";
}
.uil-suitcase-alt:before {
  content: "\e8a9";
}
.uil-yen:before {
  content: "\e8aa";
}
.uil-yen-circle:before {
  content: "\e8ab";
}
.uil-briefcase-alt:before {
  content: "\e8ac";
}
.uil-receipt:before {
  content: "\e8ad";
}
.uil-pound:before {
  content: "\e8ae";
}
.uil-invoice:before {
  content: "\e8af";
}
.uil-pound-circle:before {
  content: "\e8b0";
}
.uil-analysis:before {
  content: "\e8b1";
}
.uil-suitcase:before {
  content: "\e8b2";
}
.uil-moneybag-alt:before {
  content: "\e8b3";
}
.uil-statistics:before {
  content: "\ecbd";
}
.uil-left:before {
  content: "\ecbe";
}
.uil-cloud-moon-tear:before {
  content: "\ecbf";
}
.uil-solid:before {
  content: "\ecc0";
}
.uil-outline:before {
  content: "\ecc1";
}
.uil-window-restore:before {
  content: "\ecc2";
}
.uil-bag-alt:before {
  content: "\e8b4";
}
.uil-moneybag:before {
  content: "\e8b5";
}
.uil-bag:before {
  content: "\e8b6";
}
.uil-money-insert:before {
  content: "\e8b7";
}
.uil-chart-line:before {
  content: "\e8b8";
}
.uil-dollar-sign-alt:before {
  content: "\e8b9";
}
.uil-euro:before {
  content: "\e8ba";
}
.uil-usd-circle:before {
  content: "\e8bb";
}
.uil-euro-circle:before {
  content: "\e8bc";
}
.uil-usd-square:before {
  content: "\e8bd";
}
.uil-money-bill-stack:before {
  content: "\e8be";
}
.uil-dollar-alt:before {
  content: "\e8bf";
}
.uil-money-withdraw:before {
  content: "\e8c0";
}
.uil-credit-card:before {
  content: "\e8c1";
}
.uil-money-bill:before {
  content: "\e8c2";
}
.uil-bitcoin-sign:before {
  content: "\e8c3";
}
.uil-signal-alt-3:before {
  content: "\e8c4";
}
.uil-receipt-alt:before {
  content: "\e8c5";
}
.uil-graph-bar:before {
  content: "\e8c6";
}
.uil-analytics:before {
  content: "\e8c7";
}
.uil-table-tennis:before {
  content: "\e8c8";
}
.uil-bill:before {
  content: "\e8c9";
}
.uil-chart-bar:before {
  content: "\e8ca";
}
.uil-chart-growth:before {
  content: "\e8cb";
}
.uil-chart-growth-alt:before {
  content: "\e8cc";
}
.uil-shop:before {
  content: "\e8cd";
}
.uil-chart-bar-alt:before {
  content: "\e8ce";
}
.uil-dollar-sign:before {
  content: "\e8cf";
}
.uil-chart:before {
  content: "\e8d0";
}
.uil-briefcase:before {
  content: "\e8d1";
}
.uil-bitcoin-circle:before {
  content: "\e8d2";
}
.uil-chart-pie-alt:before {
  content: "\e8d3";
}
.uil-golf-ball:before {
  content: "\e8d4";
}
.uil-calculator-alt:before {
  content: "\e8d5";
}
.uil-coins:before {
  content: "\e8d6";
}
.uil-map-pin-alt:before {
  content: "\e8d7";
}
.uil-lightbulb:before {
  content: "\e8d8";
}
.uil-map-marker-question:before {
  content: "\e8d9";
}
.uil-map-marker-shield:before {
  content: "\e8da";
}
.uil-schedule:before {
  content: "\e8db";
}
.uil-calendar-alt:before {
  content: "\e8dc";
}
.uil-crosshairs:before {
  content: "\e8dd";
}
.uil-puzzle-piece:before {
  content: "\e8de";
}
.uil-gold:before {
  content: "\e8df";
}
.uil-compass:before {
  content: "\e8e0";
}
.uil-map:before {
  content: "\e8e1";
}
.uil-location-point:before {
  content: "\e8e2";
}
.uil-map-marker-info:before {
  content: "\e8e3";
}
.uil-map-marker-edit:before {
  content: "\e8e4";
}
.uil-map-marker-plus:before {
  content: "\e8e5";
}
.uil-map-pin:before {
  content: "\e8e6";
}
.uil-navigator:before {
  content: "\e8e7";
}
.uil-location-pin-alt:before {
  content: "\e8e8";
}
.uil-map-marker-minus:before {
  content: "\e8e9";
}
.uil-map-marker-alt:before {
  content: "\e8ea";
}
.uil-sign-left:before {
  content: "\e8eb";
}
.uil-map-marker:before {
  content: "\e8ec";
}
.uil-sign-right:before {
  content: "\e8ed";
}
.uil-directions:before {
  content: "\e8ee";
}
.uil-location-arrow:before {
  content: "\e8ef";
}
.uil-dna:before {
  content: "\e8f0";
}
.uil-sign-alt:before {
  content: "\e8f1";
}
.uil-presentation-lines-alt:before {
  content: "\e8f2";
}
.uil-atom:before {
  content: "\e8f3";
}
.uil-flask:before {
  content: "\e8f4";
}
.uil-diary:before {
  content: "\e8f5";
}
.uil-presentation-times:before {
  content: "\e8f6";
}
.uil-diary-alt:before {
  content: "\e8f7";
}
.uil-presentation-plus:before {
  content: "\e8f8";
}
.uil-presentation-minus:before {
  content: "\e8f9";
}
.uil-presentation-edit:before {
  content: "\e8fa";
}
.uil-backpack:before {
  content: "\e8fb";
}
.uil-notes:before {
  content: "\e8fc";
}
.uil-location-arrow-alt:before {
  content: "\e8fd";
}
.uil-book-alt:before {
  content: "\e8fe";
}
.uil-book:before {
  content: "\e8ff";
}
.uil-medal:before {
  content: "\e900";
}
.uil-award:before {
  content: "\e901";
}
.uil-flask-potion:before {
  content: "\e902";
}
.uil-bell-school:before {
  content: "\e903";
}
.uil-podium:before {
  content: "\e904";
}
.uil-graduation-cap:before {
  content: "\e905";
}
.uil-medical-square:before {
  content: "\e906";
}
.uil-ambulance:before {
  content: "\e907";
}
.uil-medical-square-full:before {
  content: "\e908";
}
.uil-cell:before {
  content: "\e909";
}
.uil-band-aid:before {
  content: "\e90a";
}
.uil-lightbulb-alt:before {
  content: "\e90b";
}
.uil-wheelchair-alt:before {
  content: "\e90c";
}
.uil-thermometer:before {
  content: "\e90d";
}
.uil-abacus:before {
  content: "\e90e";
}
.uil-syringe:before {
  content: "\e90f";
}
.uil-tablets:before {
  content: "\e910";
}
.uil-capsule:before {
  content: "\e911";
}
.uil-stretcher:before {
  content: "\e912";
}
.uil-presentation-check:before {
  content: "\e913";
}
.uil-medkit:before {
  content: "\e914";
}
.uil-meeting-board:before {
  content: "\e915";
}
.uil-monitor-heart-rate:before {
  content: "\e916";
}
.uil-file-medical-alt:before {
  content: "\e917";
}
.uil-heartbeat:before {
  content: "\e918";
}
.uil-prescription-bottle:before {
  content: "\e919";
}
.uil-clock-two:before {
  content: "\e91a";
}
.uil-medical-drip:before {
  content: "\e91b";
}
.uil-book-medical:before {
  content: "\e91c";
}
.uil-watch-alt:before {
  content: "\e91d";
}
.uil-stopwatch:before {
  content: "\e91e";
}
.uil-watch:before {
  content: "\e91f";
}
.uil-clock:before {
  content: "\e920";
}
.uil-clock-seven:before {
  content: "\e921";
}
.uil-clock-three:before {
  content: "\e922";
}
.uil-clock-nine:before {
  content: "\e923";
}
.uil-clock-ten:before {
  content: "\e924";
}
.uil-files-landscapes:before {
  content: "\e925";
}
.uil-clock-five:before {
  content: "\e926";
}
.uil-brain:before {
  content: "\e927";
}
.uil-file-plus-alt:before {
  content: "\e928";
}
.uil-file-network:before {
  content: "\e929";
}
.uil-file-contract-dollar:before {
  content: "\e92a";
}
.uil-file-upload-alt:before {
  content: "\e92b";
}
.uil-clock-eight:before {
  content: "\e92c";
}
.uil-clipboard-alt:before {
  content: "\e92d";
}
.uil-books:before {
  content: "\e92e";
}
.uil-file-search-alt:before {
  content: "\e92f";
}
.uil-file-upload:before {
  content: "\e930";
}
.uil-file-share-alt:before {
  content: "\e931";
}
.uil-file-minus-alt:before {
  content: "\e932";
}
.uil-folder-minus:before {
  content: "\e933";
}
.uil-file-shield-alt:before {
  content: "\e934";
}
.uil-file-minus:before {
  content: "\e935";
}
.uil-folder-medical:before {
  content: "\e936";
}
.uil-file-redo-alt:before {
  content: "\e937";
}
.uil-file-lock-alt:before {
  content: "\e938";
}
.uil-folder-lock:before {
  content: "\e939";
}
.uil-heart-medical:before {
  content: "\e93a";
}
.uil-file-question-alt:before {
  content: "\e93b";
}
.uil-files-landscapes-alt:before {
  content: "\e93c";
}
.uil-file-medical:before {
  content: "\e93d";
}
.uil-file-landscape:before {
  content: "\e93e";
}
.uil-file-question:before {
  content: "\e93f";
}
.uil-folder-question:before {
  content: "\e940";
}
.uil-file-landscape-alt:before {
  content: "\e941";
}
.uil-folder:before {
  content: "\e942";
}
.uil-file-edit-alt:before {
  content: "\e943";
}
.uil-folder-heart:before {
  content: "\e944";
}
.uil-folder-exclamation:before {
  content: "\e945";
}
.uil-folder-info:before {
  content: "\e946";
}
.uil-file-download-alt:before {
  content: "\e947";
}
.uil-file-download:before {
  content: "\e948";
}
.uil-file-copy-alt:before {
  content: "\e949";
}
.uil-file-heart:before {
  content: "\e94a";
}
.uil-file-alt:before {
  content: "\e94b";
}
.uil-copy-landscape:before {
  content: "\e94c";
}
.uil-copy-alt:before {
  content: "\e94d";
}
.uil-folder-upload:before {
  content: "\e94e";
}
.uil-file-exclamation-alt:before {
  content: "\e94f";
}
.uil-file-exclamation:before {
  content: "\e950";
}
.uil-copy:before {
  content: "\e951";
}
.uil-file-blank:before {
  content: "\e952";
}
.uil-stopwatch-slash:before {
  content: "\e953";
}
.uil-file:before {
  content: "\e954";
}
.uil-folder-times:before {
  content: "\e955";
}
.uil-document-info:before {
  content: "\e956";
}
.uil-file-times:before {
  content: "\e957";
}
.uil-file-info-alt:before {
  content: "\e958";
}
.uil-clipboard-blank:before {
  content: "\e959";
}
.uil-clipboard-notes:before {
  content: "\e95a";
}
.uil-file-times-alt:before {
  content: "\e95b";
}
.uil-folder-download:before {
  content: "\e95c";
}
.uil-file-bookmark-alt:before {
  content: "\e95d";
}
.uil-file-block-alt:before {
  content: "\e95e";
}
.uil-folder-check:before {
  content: "\e95f";
}
.uil-file-check:before {
  content: "\e960";
}
.uil-folder-plus:before {
  content: "\e961";
}
.uil-clipboard:before {
  content: "\e962";
}
.uil-file-check-alt:before {
  content: "\e963";
}
.uil-print:before {
  content: "\e964";
}
.uil-folder-network:before {
  content: "\e965";
}
.uil-desktop-alt:before {
  content: "\e966";
}
.uil-mouse-alt:before {
  content: "\e967";
}
.uil-tablet:before {
  content: "\e968";
}
.uil-desktop:before {
  content: "\e969";
}
.uil-mobile-android-alt:before {
  content: "\e96a";
}
.uil-search-alt:before {
  content: "\e96b";
}
.uil-volume-up:before {
  content: "\e96c";
}
.uil-mouse:before {
  content: "\e96d";
}
.uil-mouse-alt-2:before {
  content: "\e96e";
}
.uil-mobile-android:before {
  content: "\e96f";
}
.uil-laptop:before {
  content: "\e970";
}
.uil-search-minus:before {
  content: "\e971";
}
.uil-bluetooth-b:before {
  content: "\e972";
}
.uil-video-slash:before {
  content: "\e973";
}
.uil-search-plus:before {
  content: "\e974";
}
.uil-tv-retro:before {
  content: "\e975";
}
.uil-toggle-on:before {
  content: "\e976";
}
.uil-toggle-off:before {
  content: "\e977";
}
.uil-traffic-light:before {
  content: "\e978";
}
.uil-bolt:before {
  content: "\e979";
}
.uil-trash-alt:before {
  content: "\e97a";
}
.uil-star-half-alt:before {
  content: "\e97b";
}
.uil-utensils-alt:before {
  content: "\e97c";
}
.uil-share-alt:before {
  content: "\e97d";
}
.uil-volume-down:before {
  content: "\e97e";
}
.uil-wifi:before {
  content: "\e97f";
}
.uil-cog:before {
  content: "\e980";
}
.uil-bookmark:before {
  content: "\e981";
}
.uil-wallet:before {
  content: "\e982";
}
.uil-minus:before {
  content: "\e983";
}
.uil-rss:before {
  content: "\e984";
}
.uil-sync:before {
  content: "\e985";
}
.uil-redo:before {
  content: "\e986";
}
.uil-bookmark-full:before {
  content: "\e987";
}
.uil-umbrella:before {
  content: "\e988";
}
.uil-trash:before {
  content: "\e989";
}
.uil-wifi-slash:before {
  content: "\e98a";
}
.uil-plus-square:before {
  content: "\e98b";
}
.uil-plus:before {
  content: "\e98c";
}
.uil-signal-alt:before {
  content: "\e98d";
}
.uil-pen:before {
  content: "\e98e";
}
.uil-package:before {
  content: "\e98f";
}
.uil-edit:before {
  content: "\e990";
}
.uil-signal:before {
  content: "\e991";
}
.uil-glass-martini-alt:before {
  content: "\e992";
}
.uil-file-plus:before {
  content: "\e993";
}
.uil-minus-circle:before {
  content: "\e994";
}
.uil-microphone:before {
  content: "\e995";
}
.uil-minus-square:before {
  content: "\e996";
}
.uil-minus-square-full:before {
  content: "\e997";
}
.uil-volume-mute:before {
  content: "\e998";
}
.uil-link-h:before {
  content: "\e999";
}
.uil-search:before {
  content: "\e99a";
}
.uil-ellipsis-v:before {
  content: "\e99b";
}
.uil-ellipsis-h:before {
  content: "\e99c";
}
.uil-link-alt:before {
  content: "\e99d";
}
.uil-calculator:before {
  content: "\e99e";
}
.uil-layer-group:before {
  content: "\e99f";
}
.uil-car:before {
  content: "\e9a0";
}
.uil-thumbs-up:before {
  content: "\e9a1";
}
.uil-link:before {
  content: "\e9a2";
}
.uil-home:before {
  content: "\e9a4";
}
.uil-keyboard:before {
  content: "\e9a5";
}
.uil-volume-off:before {
  content: "\e9a6";
}
.uil-edit-alt:before {
  content: "\e9a7";
}
.uil-restaurant:before {
  content: "\e9a8";
}
.uil-exclamation-octagon:before {
  content: "\e9a9";
}
.uil-globe:before {
  content: "\e9aa";
}
.uil-favorite:before {
  content: "\e9ab";
}
.uil-question-circle:before {
  content: "\e9ac";
}
.uil-info-circle:before {
  content: "\e9ad";
}
.uil-filter:before {
  content: "\e9ae";
}
.uil-volume:before {
  content: "\e9af";
}
.uil-exclamation-triangle:before {
  content: "\e9b0";
}
.uil-exclamation-circle:before {
  content: "\e9b1";
}
.uil-thumbs-down:before {
  content: "\e9b2";
}
.uil-multiply:before {
  content: "\e9b3";
}
.uil-check-square:before {
  content: "\e9b4";
}
.uil-times-circle:before {
  content: "\e9b5";
}
.uil-box:before {
  content: "\e9b6";
}
.uil-sim-card:before {
  content: "\e9b7";
}
.uil-times:before {
  content: "\e9b8";
}
.uil-times-square:before {
  content: "\e9b9";
}
.uil-link-broken:before {
  content: "\e9ba";
}
.uil-cube:before {
  content: "\e9bb";
}
.uil-bolt-alt:before {
  content: "\e9bc";
}
.uil-battery-empty:before {
  content: "\e9be";
}
.uil-at:before {
  content: "\e9bf";
}
.uil-battery-bolt:before {
  content: "\e9c0";
}
.uil-plus-circle:before {
  content: "\e9c1";
}
.uil-check-circle:before {
  content: "\e9c2";
}
.uil-check:before {
  content: "\e9c3";
}
.uil-adjust-half:before {
  content: "\e9c4";
}
.uil-paperclip:before {
  content: "\e9c5";
}
.uil-bullseye:before {
  content: "\e9c6";
}
.uil-brightness:before {
  content: "\e9c7";
}
.uil-adjust-alt:before {
  content: "\e9c8";
}
.uil-adjust-circle:before {
  content: "\e9c9";
}
.uil-brightness-half:before {
  content: "\e9ca";
}
.uil-brightness-empty:before {
  content: "\e9cb";
}
.uil-sun:before {
  content: "\e9cc";
}
.uil-brightness-plus:before {
  content: "\e9cd";
}
.uil-key-skeleton:before {
  content: "\e9ce";
}
.uil-adjust:before {
  content: "\e9d0";
}
.uil-keyboard-hide:before {
  content: "\e9d1";
}
.uil-brightness-minus:before {
  content: "\e9d2";
}
.uil-key-skeleton-alt:before {
  content: "\e9d3";
}
.uil-bus:before {
  content: "\e9d4";
}
.uil-parcel:before {
  content: "\e9d5";
}
.uil-car-sideview:before {
  content: "\e9d6";
}
.uil-car-wash:before {
  content: "\e9d7";
}
.uil-bus-school:before {
  content: "\e9d8";
}
.uil-subway:before {
  content: "\e9d9";
}
.uil-ship:before {
  content: "\e9da";
}
.uil-bus-alt:before {
  content: "\e9db";
}
.uil-subway-alt:before {
  content: "\e9dc";
}
.uil-taxi:before {
  content: "\e9dd";
}
.uil-truck-loading:before {
  content: "\e9de";
}
.uil-dribbble:before {
  content: "\e9df";
}
.uil-dropbox:before {
  content: "\e9e0";
}
.uil-envelope-check:before {
  content: "\e9e1";
}
.uil-envelope-add:before {
  content: "\e9e2";
}
.uil-envelope-exclamation:before {
  content: "\e9e3";
}
.uil-phone-slash:before {
  content: "\e9e4";
}
.uil-outgoing-call:before {
  content: "\e9e5";
}
.uil-envelope:before {
  content: "\e9e6";
}
.uil-phone:before {
  content: "\e9e7";
}
.uil-calling:before {
  content: "\e9e8";
}
.uil-phone-times:before {
  content: "\e9e9";
}
.uil-envelope-search:before {
  content: "\e9ea";
}
.uil-phone-volume:before {
  content: "\e9eb";
}
.uil-envelope-upload:before {
  content: "\e9ec";
}
.uil-forwaded-call:before {
  content: "\e9ed";
}
.uil-envelope-share:before {
  content: "\e9ee";
}
.uil-envelope-upload-alt:before {
  content: "\e9ef";
}
.uil-envelope-minus:before {
  content: "\e9f0";
}
.uil-envelope-receive:before {
  content: "\e9f1";
}
.uil-envelope-redo:before {
  content: "\e9f2";
}
.uil-envelope-download-alt:before {
  content: "\e9f3";
}
.uil-envelope-download:before {
  content: "\e9f4";
}
.uil-brightness-low:before {
  content: "\e9f5";
}
.uil-envelope-shield:before {
  content: "\e9f6";
}
.uil-envelope-open:before {
  content: "\e9f7";
}
.uil-envelope-lock:before {
  content: "\e9f8";
}
.uil-keyboard-show:before {
  content: "\e9f9";
}
.uil-truck:before {
  content: "\e9fa";
}
.uil-envelopes:before {
  content: "\e9fb";
}
.uil-mailbox:before {
  content: "\e9fc";
}
.uil-envelope-heart:before {
  content: "\e9fd";
}
.uil-space-key:before {
  content: "\e9fe";
}
.uil-keyboard-alt:before {
  content: "\e9ff";
}
.uil-envelope-edit:before {
  content: "\ea00";
}
.uil-postcard:before {
  content: "\ea01";
}
.uil-fast-mail-alt:before {
  content: "\ea02";
}
.uil-envelope-question:before {
  content: "\ea03";
}
.uil-fast-mail:before {
  content: "\ea04";
}
.uil-envelope-info:before {
  content: "\ea05";
}
.uil-laptop-cloud:before {
  content: "\ea06";
}
.uil-desktop-cloud-alt:before {
  content: "\ea07";
}
.uil-envelope-star:before {
  content: "\ea08";
}
.uil-envelope-times:before {
  content: "\ea09";
}
.uil-luggage-cart:before {
  content: "\ea0a";
}
.uil-envelope-bookmark:before {
  content: "\ea0b";
}
.uil-missed-call:before {
  content: "\ea0c";
}
.uil-user:before {
  content: "\ea0d";
}
.uil-user-plus:before {
  content: "\ea0e";
}
.uil-envelope-alt:before {
  content: "\ea0f";
}
.uil-user-location:before {
  content: "\ea10";
}
.uil-users-alt:before {
  content: "\ea11";
}
.uil-book-reader:before {
  content: "\ea12";
}
.uil-cloud-bookmark:before {
  content: "\ea13";
}
.uil-phone-alt:before {
  content: "\ea14";
}
.uil-cloud-computing:before {
  content: "\ea15";
}
.uil-cloud-check:before {
  content: "\ea16";
}
.uil-user-minus:before {
  content: "\ea17";
}
.uil-cloud-times:before {
  content: "\ea18";
}
.uil-cloud-block:before {
  content: "\ea19";
}
.uil-columns:before {
  content: "\ea1a";
}
.uil-web-section:before {
  content: "\ea1b";
}
.uil-grid:before {
  content: "\ea1c";
}
.uil-web-grid-alt:before {
  content: "\ea1d";
}
.uil-window-maximize:before {
  content: "\ea1e";
}
.uil-web-section-alt:before {
  content: "\ea1f";
}
.uil-web-grid:before {
  content: "\ea20";
}
.uil-server-connection:before {
  content: "\ea21";
}
.uil-cloud-slash:before {
  content: "\ea22";
}
.uil-cloud-upload:before {
  content: "\ea23";
}
.uil-cloud-exclamation:before {
  content: "\ea24";
}
.uil-database:before {
  content: "\ea25";
}
.uil-server:before {
  content: "\ea26";
}
.uil-cloud-unlock:before {
  content: "\ea27";
}
.uil-cloud-share:before {
  content: "\ea28";
}
.uil-envelope-send:before {
  content: "\ea29";
}
.uil-cloud-shield:before {
  content: "\ea2a";
}
.uil-laptop-connection:before {
  content: "\ea2b";
}
.uil-server-network-alt:before {
  content: "\ea2c";
}
.uil-cloud-redo:before {
  content: "\ea2d";
}
.uil-servers:before {
  content: "\ea2e";
}
.uil-server-network:before {
  content: "\ea2f";
}
.uil-cloud-heart:before {
  content: "\ea30";
}
.uil-database-alt:before {
  content: "\ea31";
}
.uil-cloud-lock:before {
  content: "\ea32";
}
.uil-cloud-info:before {
  content: "\ea33";
}
.uil-phone-pause:before {
  content: "\ea34";
}
.uil-user-square:before {
  content: "\ea35";
}
.uil-user-exclamation:before {
  content: "\ea36";
}
.uil-cloud-download:before {
  content: "\ea37";
}
.uil-user-circle:before {
  content: "\ea38";
}
.uil-cloud-wifi:before {
  content: "\ea39";
}
.uil-data-sharing:before {
  content: "\ea3a";
}
.uil-cloud-data-connection:before {
  content: "\ea3b";
}
.uil-backward:before {
  content: "\ea3c";
}
.uil-camera:before {
  content: "\ea3d";
}
.uil-music-tune-slash:before {
  content: "\ea3e";
}
.uil-user-times:before {
  content: "\ea3f";
}
.uil-scenery:before {
  content: "\ea40";
}
.uil-user-check:before {
  content: "\ea41";
}
.uil-headphones:before {
  content: "\ea42";
}
.uil-step-backward:before {
  content: "\ea43";
}
.uil-image-search:before {
  content: "\ea44";
}
.uil-image-minus:before {
  content: "\ea45";
}
.uil-window-section:before {
  content: "\ea46";
}
.uil-play-circle:before {
  content: "\ea47";
}
.uil-pause-circle:before {
  content: "\ea48";
}
.uil-image-shield:before {
  content: "\ea4a";
}
.uil-window:before {
  content: "\ea4b";
}
.uil-pause:before {
  content: "\ea4c";
}
.uil-server-alt:before {
  content: "\ea4d";
}
.uil-image-question:before {
  content: "\ea4e";
}
.uil-music:before {
  content: "\ea4f";
}
.uil-image-block:before {
  content: "\ea50";
}
.uil-music-note:before {
  content: "\ea51";
}
.uil-step-forward:before {
  content: "\ea52";
}
.uil-image-redo:before {
  content: "\ea53";
}
.uil-image:before {
  content: "\ea54";
}
.uil-picture:before {
  content: "\ea55";
}
.uil-image-download:before {
  content: "\ea56";
}
.uil-image-v:before {
  content: "\ea57";
}
.uil-forward:before {
  content: "\ea58";
}
.uil-image-times:before {
  content: "\ea59";
}
.uil-headphones-alt:before {
  content: "\ea5a";
}
.uil-previous:before {
  content: "\ea5b";
}

/* node_modules/@blueprintjs/icons/lib/css/blueprint-icons.css */
@font-face {
  font-family: "blueprint-icons-16";
  src:
    url(/assets/blueprint-icons-16-V4GDIL33.ttf?a15bd2b94454e07f920d9206034c5b70) format("truetype"),
    url(/assets/blueprint-icons-16-QPKRS6BZ.eot?a15bd2b94454e07f920d9206034c5b70#iefix) format("embedded-opentype"),
    url(/assets/blueprint-icons-16-L6Y26JZ4.woff2?a15bd2b94454e07f920d9206034c5b70) format("woff2"),
    url(/assets/blueprint-icons-16-PH3AHULO.woff?a15bd2b94454e07f920d9206034c5b70) format("woff"),
    url(/assets/blueprint-icons-16-CMEIR364.svg?a15bd2b94454e07f920d9206034c5b70#blueprint-icons-16) format("svg");
}
@font-face {
  font-family: "blueprint-icons-20";
  src:
    url(/assets/blueprint-icons-20-H42QUPAH.ttf?660d84a0b38c728ea4ded83e82ac8fc4) format("truetype"),
    url(/assets/blueprint-icons-20-HHVFGUS7.eot?660d84a0b38c728ea4ded83e82ac8fc4#iefix) format("embedded-opentype"),
    url(/assets/blueprint-icons-20-44QQIDUI.woff2?660d84a0b38c728ea4ded83e82ac8fc4) format("woff2"),
    url(/assets/blueprint-icons-20-GVC7BJN4.woff?660d84a0b38c728ea4ded83e82ac8fc4) format("woff"),
    url(/assets/blueprint-icons-20-RA3ONH5T.svg?660d84a0b38c728ea4ded83e82ac8fc4#blueprint-icons-20) format("svg");
}

/* node_modules/@blueprintjs/core/lib/css/blueprint.css */
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.28581;
  text-transform: none;
  color: #1c2127;
  font-family:
    -apple-system,
    "BlinkMacSystemFont",
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Open Sans",
    "Helvetica Neue",
    "blueprint-icons-16",
    sans-serif;
}
p {
  margin-bottom: 8px;
  margin-top: 0;
}
small {
  font-size: 12px;
}
strong {
  font-weight: 600;
}
::-moz-selection {
  background: rgba(125, 188, 255, 0.6);
}
::selection {
  background: rgba(125, 188, 255, 0.6);
}
.bp6-icon {
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: text-bottom;
}
.bp6-icon:not(:empty)::before {
  content: "" !important;
  content: unset !important;
}
.bp6-icon > svg {
  display: block;
}
.bp6-icon > svg:not([fill]) {
  fill: currentcolor;
}
.bp6-icon.bp6-icon-muted svg {
  fill-opacity: 0.15;
  overflow: visible;
}
.bp6-icon.bp6-icon-muted svg path {
  stroke: #8f99a8;
  stroke-opacity: 0.5;
  stroke-width: 0.5px;
}
.bp6-dark .bp6-icon .bp6-icon-muted svg {
  fill-opacity: 0.2;
}
span.bp6-icon-standard {
  font-family: "blueprint-icons-16", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 16px;
  line-height: 1;
  width: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
}
span.bp6-icon-large {
  font-family: "blueprint-icons-20", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 20px;
  line-height: 1;
  width: 20px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
}
span.bp6-icon:empty {
  font-family: "blueprint-icons-20";
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
span.bp6-icon:empty::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
span.bp6-icon:empty.bp6-icon-standard {
  font-size: 16px;
}
span.bp6-icon:empty.bp6-icon-large {
  font-size: 20px;
}
.bp6-icon-add::before {
  content: "\f109";
}
.bp6-icon-add-child::before {
  content: "\f39d";
}
.bp6-icon-add-clip::before {
  content: "\f101";
}
.bp6-icon-add-column-left::before {
  content: "\f102";
}
.bp6-icon-add-column-right::before {
  content: "\f103";
}
.bp6-icon-add-location::before {
  content: "\f104";
}
.bp6-icon-add-parent::before {
  content: "\f39e";
}
.bp6-icon-add-row-bottom::before {
  content: "\f105";
}
.bp6-icon-add-row-top::before {
  content: "\f106";
}
.bp6-icon-add-to-artifact::before {
  content: "\f107";
}
.bp6-icon-add-to-folder::before {
  content: "\f108";
}
.bp6-icon-aimpoints-target::before {
  content: "\f335";
}
.bp6-icon-airplane::before {
  content: "\f10a";
}
.bp6-icon-align-center::before {
  content: "\f10b";
}
.bp6-icon-align-justify::before {
  content: "\f10c";
}
.bp6-icon-align-left::before {
  content: "\f10d";
}
.bp6-icon-align-right::before {
  content: "\f10e";
}
.bp6-icon-alignment-bottom::before {
  content: "\f10f";
}
.bp6-icon-alignment-horizontal-center::before {
  content: "\f110";
}
.bp6-icon-alignment-left::before {
  content: "\f111";
}
.bp6-icon-alignment-right::before {
  content: "\f112";
}
.bp6-icon-alignment-top::before {
  content: "\f113";
}
.bp6-icon-alignment-vertical-center::before {
  content: "\f114";
}
.bp6-icon-ammunition::before {
  content: "\f342";
}
.bp6-icon-anchor::before {
  content: "\f330";
}
.bp6-icon-annotation::before {
  content: "\f115";
}
.bp6-icon-announcement::before {
  content: "\f396";
}
.bp6-icon-antenna::before {
  content: "\f116";
}
.bp6-icon-app-header::before {
  content: "\f117";
}
.bp6-icon-application::before {
  content: "\f118";
}
.bp6-icon-applications::before {
  content: "\f119";
}
.bp6-icon-archive::before {
  content: "\f11a";
}
.bp6-icon-area-of-interest::before {
  content: "\f11b";
}
.bp6-icon-array::before {
  content: "\f121";
}
.bp6-icon-array-boolean::before {
  content: "\f11c";
}
.bp6-icon-array-date::before {
  content: "\f11d";
}
.bp6-icon-array-floating-point::before {
  content: "\f32d";
}
.bp6-icon-array-numeric::before {
  content: "\f11e";
}
.bp6-icon-array-object::before {
  content: "\f394";
}
.bp6-icon-array-string::before {
  content: "\f11f";
}
.bp6-icon-array-timestamp::before {
  content: "\f120";
}
.bp6-icon-arrow-bottom-left::before {
  content: "\f122";
}
.bp6-icon-arrow-bottom-right::before {
  content: "\f123";
}
.bp6-icon-arrow-down::before {
  content: "\f124";
}
.bp6-icon-arrow-left::before {
  content: "\f125";
}
.bp6-icon-arrow-right::before {
  content: "\f126";
}
.bp6-icon-arrow-top-left::before {
  content: "\f127";
}
.bp6-icon-arrow-top-right::before {
  content: "\f128";
}
.bp6-icon-arrow-up::before {
  content: "\f129";
}
.bp6-icon-arrows-arc::before {
  content: "\f387";
}
.bp6-icon-arrows-horizontal::before {
  content: "\f12a";
}
.bp6-icon-arrows-vertical::before {
  content: "\f12b";
}
.bp6-icon-asterisk::before {
  content: "\f12c";
}
.bp6-icon-at::before {
  content: "\f331";
}
.bp6-icon-automatic-updates::before {
  content: "\f12d";
}
.bp6-icon-axle::before {
  content: "\f338";
}
.bp6-icon-backlink::before {
  content: "\f12e";
}
.bp6-icon-backward-ten::before {
  content: "\f35c";
}
.bp6-icon-badge::before {
  content: "\f12f";
}
.bp6-icon-ban-circle::before {
  content: "\f130";
}
.bp6-icon-bank-account::before {
  content: "\f131";
}
.bp6-icon-barcode::before {
  content: "\f132";
}
.bp6-icon-binary-number::before {
  content: "\f357";
}
.bp6-icon-blank::before {
  content: "\f133";
}
.bp6-icon-block-promote::before {
  content: "\f372";
}
.bp6-icon-blocked-person::before {
  content: "\f134";
}
.bp6-icon-bold::before {
  content: "\f135";
}
.bp6-icon-book::before {
  content: "\f136";
}
.bp6-icon-bookmark::before {
  content: "\f137";
}
.bp6-icon-box::before {
  content: "\f138";
}
.bp6-icon-branch-locked::before {
  content: "\f3a6";
}
.bp6-icon-branch-unlocked::before {
  content: "\f3a7";
}
.bp6-icon-briefcase::before {
  content: "\f139";
}
.bp6-icon-bring-data::before {
  content: "\f13a";
}
.bp6-icon-bring-forward::before {
  content: "\f354";
}
.bp6-icon-british-pound::before {
  content: "\f386";
}
.bp6-icon-bug::before {
  content: "\f32e";
}
.bp6-icon-buggy::before {
  content: "\f13b";
}
.bp6-icon-build::before {
  content: "\f13c";
}
.bp6-icon-bullseye::before {
  content: "\f359";
}
.bp6-icon-calculator::before {
  content: "\f13d";
}
.bp6-icon-calendar::before {
  content: "\f13e";
}
.bp6-icon-camera::before {
  content: "\f13f";
}
.bp6-icon-caret-down::before {
  content: "\f140";
}
.bp6-icon-caret-left::before {
  content: "\f141";
}
.bp6-icon-caret-right::before {
  content: "\f142";
}
.bp6-icon-caret-up::before {
  content: "\f143";
}
.bp6-icon-cargo-ship::before {
  content: "\f144";
}
.bp6-icon-cell-tower::before {
  content: "\f145";
}
.bp6-icon-changes::before {
  content: "\f146";
}
.bp6-icon-chart::before {
  content: "\f147";
}
.bp6-icon-chat::before {
  content: "\f148";
}
.bp6-icon-chevron-backward::before {
  content: "\f149";
}
.bp6-icon-chevron-down::before {
  content: "\f14a";
}
.bp6-icon-chevron-forward::before {
  content: "\f14b";
}
.bp6-icon-chevron-left::before {
  content: "\f14c";
}
.bp6-icon-chevron-right::before {
  content: "\f14d";
}
.bp6-icon-chevron-up::before {
  content: "\f14e";
}
.bp6-icon-circle::before {
  content: "\f153";
}
.bp6-icon-circle-arrow-down::before {
  content: "\f14f";
}
.bp6-icon-circle-arrow-left::before {
  content: "\f150";
}
.bp6-icon-circle-arrow-right::before {
  content: "\f151";
}
.bp6-icon-circle-arrow-up::before {
  content: "\f152";
}
.bp6-icon-citation::before {
  content: "\f154";
}
.bp6-icon-clean::before {
  content: "\f155";
}
.bp6-icon-clip::before {
  content: "\f156";
}
.bp6-icon-clipboard::before {
  content: "\f157";
}
.bp6-icon-clipboard-file::before {
  content: "\f35b";
}
.bp6-icon-cloud::before {
  content: "\f15a";
}
.bp6-icon-cloud-download::before {
  content: "\f158";
}
.bp6-icon-cloud-server::before {
  content: "\f35a";
}
.bp6-icon-cloud-tick::before {
  content: "\f34e";
}
.bp6-icon-cloud-upload::before {
  content: "\f159";
}
.bp6-icon-code::before {
  content: "\f15c";
}
.bp6-icon-code-block::before {
  content: "\f15b";
}
.bp6-icon-cog::before {
  content: "\f15d";
}
.bp6-icon-collapse-all::before {
  content: "\f15e";
}
.bp6-icon-color-fill::before {
  content: "\f328";
}
.bp6-icon-column-layout::before {
  content: "\f15f";
}
.bp6-icon-comment::before {
  content: "\f160";
}
.bp6-icon-comparison::before {
  content: "\f161";
}
.bp6-icon-compass::before {
  content: "\f162";
}
.bp6-icon-compressed::before {
  content: "\f163";
}
.bp6-icon-confirm::before {
  content: "\f164";
}
.bp6-icon-console::before {
  content: "\f165";
}
.bp6-icon-console-alert::before {
  content: "\f3ad";
}
.bp6-icon-construction::before {
  content: "\f395";
}
.bp6-icon-contrast::before {
  content: "\f166";
}
.bp6-icon-control::before {
  content: "\f167";
}
.bp6-icon-credit-card::before {
  content: "\f168";
}
.bp6-icon-crop::before {
  content: "\f353";
}
.bp6-icon-cross::before {
  content: "\f169";
}
.bp6-icon-cross-circle::before {
  content: "\f336";
}
.bp6-icon-crown::before {
  content: "\f16a";
}
.bp6-icon-css-style::before {
  content: "\f36b";
}
.bp6-icon-cube::before {
  content: "\f16d";
}
.bp6-icon-cube-add::before {
  content: "\f16b";
}
.bp6-icon-cube-cutout::before {
  content: "\f3b5";
}
.bp6-icon-cube-cutouts::before {
  content: "\f3b6";
}
.bp6-icon-cube-edit::before {
  content: "\f383";
}
.bp6-icon-cube-remove::before {
  content: "\f16c";
}
.bp6-icon-cubes::before {
  content: "\f373";
}
.bp6-icon-curly-braces::before {
  content: "\f358";
}
.bp6-icon-curved-range-chart::before {
  content: "\f16e";
}
.bp6-icon-cut::before {
  content: "\f16f";
}
.bp6-icon-cycle::before {
  content: "\f170";
}
.bp6-icon-dashboard::before {
  content: "\f171";
}
.bp6-icon-data-cloud::before {
  content: "\f391";
}
.bp6-icon-data-connection::before {
  content: "\f172";
}
.bp6-icon-data-lineage::before {
  content: "\f173";
}
.bp6-icon-data-search::before {
  content: "\f36f";
}
.bp6-icon-data-sync::before {
  content: "\f36c";
}
.bp6-icon-database::before {
  content: "\f174";
}
.bp6-icon-delete::before {
  content: "\f175";
}
.bp6-icon-delete-clip::before {
  content: "\f3a3";
}
.bp6-icon-delta::before {
  content: "\f176";
}
.bp6-icon-derive-column::before {
  content: "\f177";
}
.bp6-icon-desktop::before {
  content: "\f178";
}
.bp6-icon-detection::before {
  content: "\f341";
}
.bp6-icon-diagnosis::before {
  content: "\f179";
}
.bp6-icon-diagram-tree::before {
  content: "\f17a";
}
.bp6-icon-direction-left::before {
  content: "\f17b";
}
.bp6-icon-direction-right::before {
  content: "\f17c";
}
.bp6-icon-disable::before {
  content: "\f17d";
}
.bp6-icon-divide::before {
  content: "\f327";
}
.bp6-icon-document::before {
  content: "\f180";
}
.bp6-icon-document-code::before {
  content: "\f3a0";
}
.bp6-icon-document-locked::before {
  content: "\f3a1";
}
.bp6-icon-document-open::before {
  content: "\f17e";
}
.bp6-icon-document-share::before {
  content: "\f17f";
}
.bp6-icon-dollar::before {
  content: "\f181";
}
.bp6-icon-dot::before {
  content: "\f182";
}
.bp6-icon-double-caret-horizontal::before {
  content: "\f183";
}
.bp6-icon-double-caret-vertical::before {
  content: "\f184";
}
.bp6-icon-double-chevron-down::before {
  content: "\f185";
}
.bp6-icon-double-chevron-left::before {
  content: "\f186";
}
.bp6-icon-double-chevron-right::before {
  content: "\f187";
}
.bp6-icon-double-chevron-up::before {
  content: "\f188";
}
.bp6-icon-doughnut-chart::before {
  content: "\f189";
}
.bp6-icon-download::before {
  content: "\f18a";
}
.bp6-icon-drag-handle-horizontal::before {
  content: "\f18b";
}
.bp6-icon-drag-handle-vertical::before {
  content: "\f18c";
}
.bp6-icon-draw::before {
  content: "\f18d";
}
.bp6-icon-drawer-left::before {
  content: "\f18f";
}
.bp6-icon-drawer-left-filled::before {
  content: "\f18e";
}
.bp6-icon-drawer-right::before {
  content: "\f191";
}
.bp6-icon-drawer-right-filled::before {
  content: "\f190";
}
.bp6-icon-drive-time::before {
  content: "\f192";
}
.bp6-icon-drone::before {
  content: "\f3b1";
}
.bp6-icon-drone-uav::before {
  content: "\f3b2";
}
.bp6-icon-duplicate::before {
  content: "\f193";
}
.bp6-icon-edit::before {
  content: "\f194";
}
.bp6-icon-eject::before {
  content: "\f195";
}
.bp6-icon-emoji::before {
  content: "\f196";
}
.bp6-icon-endnote::before {
  content: "\f356";
}
.bp6-icon-endorsed::before {
  content: "\f197";
}
.bp6-icon-envelope::before {
  content: "\f198";
}
.bp6-icon-equals::before {
  content: "\f199";
}
.bp6-icon-eraser::before {
  content: "\f19a";
}
.bp6-icon-error::before {
  content: "\f19b";
}
.bp6-icon-euro::before {
  content: "\f19c";
}
.bp6-icon-excavator::before {
  content: "\f36d";
}
.bp6-icon-exchange::before {
  content: "\f19d";
}
.bp6-icon-exclude-row::before {
  content: "\f19e";
}
.bp6-icon-expand-all::before {
  content: "\f19f";
}
.bp6-icon-explain::before {
  content: "\f34d";
}
.bp6-icon-export::before {
  content: "\f1a0";
}
.bp6-icon-eye-off::before {
  content: "\f1a1";
}
.bp6-icon-eye-on::before {
  content: "\f1a2";
}
.bp6-icon-eye-open::before {
  content: "\f1a3";
}
.bp6-icon-fast-backward::before {
  content: "\f1a4";
}
.bp6-icon-fast-forward::before {
  content: "\f1a5";
}
.bp6-icon-feed::before {
  content: "\f1a7";
}
.bp6-icon-feed-subscribed::before {
  content: "\f1a6";
}
.bp6-icon-fighter-jet::before {
  content: "\f384";
}
.bp6-icon-film::before {
  content: "\f1a8";
}
.bp6-icon-filter::before {
  content: "\f1ad";
}
.bp6-icon-filter-keep::before {
  content: "\f1a9";
}
.bp6-icon-filter-list::before {
  content: "\f1aa";
}
.bp6-icon-filter-open::before {
  content: "\f1ab";
}
.bp6-icon-filter-remove::before {
  content: "\f1ac";
}
.bp6-icon-filter-sort-asc::before {
  content: "\f38e";
}
.bp6-icon-filter-sort-desc::before {
  content: "\f38f";
}
.bp6-icon-flag::before {
  content: "\f1ae";
}
.bp6-icon-flame::before {
  content: "\f1af";
}
.bp6-icon-flash::before {
  content: "\f1b0";
}
.bp6-icon-floating-point::before {
  content: "\f32c";
}
.bp6-icon-floppy-disk::before {
  content: "\f1b1";
}
.bp6-icon-flow-branch::before {
  content: "\f1b2";
}
.bp6-icon-flow-end::before {
  content: "\f1b3";
}
.bp6-icon-flow-linear::before {
  content: "\f1b4";
}
.bp6-icon-flow-review::before {
  content: "\f1b6";
}
.bp6-icon-flow-review-branch::before {
  content: "\f1b5";
}
.bp6-icon-flows::before {
  content: "\f1b7";
}
.bp6-icon-folder-close::before {
  content: "\f1b8";
}
.bp6-icon-folder-new::before {
  content: "\f1b9";
}
.bp6-icon-folder-open::before {
  content: "\f1ba";
}
.bp6-icon-folder-shared::before {
  content: "\f1bc";
}
.bp6-icon-folder-shared-open::before {
  content: "\f1bb";
}
.bp6-icon-follower::before {
  content: "\f1bd";
}
.bp6-icon-following::before {
  content: "\f1be";
}
.bp6-icon-font::before {
  content: "\f1bf";
}
.bp6-icon-fork::before {
  content: "\f1c0";
}
.bp6-icon-fork-end::before {
  content: "\f3b7";
}
.bp6-icon-form::before {
  content: "\f1c1";
}
.bp6-icon-forward-ten::before {
  content: "\f35d";
}
.bp6-icon-fuel::before {
  content: "\f323";
}
.bp6-icon-full-circle::before {
  content: "\f1c2";
}
.bp6-icon-full-stacked-chart::before {
  content: "\f1c3";
}
.bp6-icon-fullscreen::before {
  content: "\f1c4";
}
.bp6-icon-function::before {
  content: "\f1c5";
}
.bp6-icon-function-minimal::before {
  content: "\f3b4";
}
.bp6-icon-gantt-chart::before {
  content: "\f1c6";
}
.bp6-icon-generate::before {
  content: "\f34c";
}
.bp6-icon-geofence::before {
  content: "\f1c7";
}
.bp6-icon-geolocation::before {
  content: "\f1c8";
}
.bp6-icon-geosearch::before {
  content: "\f1c9";
}
.bp6-icon-geotime::before {
  content: "\f344";
}
.bp6-icon-gift-box::before {
  content: "\f3a2";
}
.bp6-icon-git-branch::before {
  content: "\f1ca";
}
.bp6-icon-git-commit::before {
  content: "\f1cb";
}
.bp6-icon-git-merge::before {
  content: "\f1cc";
}
.bp6-icon-git-new-branch::before {
  content: "\f1cd";
}
.bp6-icon-git-pull::before {
  content: "\f1ce";
}
.bp6-icon-git-push::before {
  content: "\f1cf";
}
.bp6-icon-git-rebase::before {
  content: "\f3ac";
}
.bp6-icon-git-repo::before {
  content: "\f1d0";
}
.bp6-icon-glass::before {
  content: "\f1d1";
}
.bp6-icon-globe::before {
  content: "\f1d3";
}
.bp6-icon-globe-network::before {
  content: "\f1d2";
}
.bp6-icon-globe-network-add::before {
  content: "\f382";
}
.bp6-icon-graph::before {
  content: "\f1d5";
}
.bp6-icon-graph-remove::before {
  content: "\f1d4";
}
.bp6-icon-greater-than::before {
  content: "\f1d7";
}
.bp6-icon-greater-than-or-equal-to::before {
  content: "\f1d6";
}
.bp6-icon-grid::before {
  content: "\f1d9";
}
.bp6-icon-grid-view::before {
  content: "\f1d8";
}
.bp6-icon-group-item::before {
  content: "\f34a";
}
.bp6-icon-group-objects::before {
  content: "\f1da";
}
.bp6-icon-grouped-bar-chart::before {
  content: "\f1db";
}
.bp6-icon-hand::before {
  content: "\f1e0";
}
.bp6-icon-hand-down::before {
  content: "\f1dc";
}
.bp6-icon-hand-left::before {
  content: "\f1dd";
}
.bp6-icon-hand-right::before {
  content: "\f1de";
}
.bp6-icon-hand-up::before {
  content: "\f1df";
}
.bp6-icon-hat::before {
  content: "\f1e1";
}
.bp6-icon-header::before {
  content: "\f1e5";
}
.bp6-icon-header-one::before {
  content: "\f1e2";
}
.bp6-icon-header-three::before {
  content: "\f1e3";
}
.bp6-icon-header-two::before {
  content: "\f1e4";
}
.bp6-icon-headset::before {
  content: "\f1e6";
}
.bp6-icon-heart::before {
  content: "\f1e8";
}
.bp6-icon-heart-broken::before {
  content: "\f1e7";
}
.bp6-icon-heat-grid::before {
  content: "\f1e9";
}
.bp6-icon-heatmap::before {
  content: "\f1ea";
}
.bp6-icon-helicopter::before {
  content: "\f1eb";
}
.bp6-icon-help::before {
  content: "\f1ec";
}
.bp6-icon-helper-management::before {
  content: "\f1ed";
}
.bp6-icon-hexagon::before {
  content: "\f374";
}
.bp6-icon-high-priority::before {
  content: "\f1ee";
}
.bp6-icon-high-voltage-pole::before {
  content: "\f333";
}
.bp6-icon-highlight::before {
  content: "\f1ef";
}
.bp6-icon-history::before {
  content: "\f1f0";
}
.bp6-icon-home::before {
  content: "\f1f1";
}
.bp6-icon-horizontal-bar-chart::before {
  content: "\f1f4";
}
.bp6-icon-horizontal-bar-chart-asc::before {
  content: "\f1f2";
}
.bp6-icon-horizontal-bar-chart-desc::before {
  content: "\f1f3";
}
.bp6-icon-horizontal-distribution::before {
  content: "\f1f5";
}
.bp6-icon-horizontal-inbetween::before {
  content: "\f329";
}
.bp6-icon-hurricane::before {
  content: "\f1f6";
}
.bp6-icon-id-number::before {
  content: "\f1f7";
}
.bp6-icon-image-rotate-left::before {
  content: "\f1f8";
}
.bp6-icon-image-rotate-right::before {
  content: "\f1f9";
}
.bp6-icon-import::before {
  content: "\f1fa";
}
.bp6-icon-inbox::before {
  content: "\f1ff";
}
.bp6-icon-inbox-filtered::before {
  content: "\f1fb";
}
.bp6-icon-inbox-geo::before {
  content: "\f1fc";
}
.bp6-icon-inbox-search::before {
  content: "\f1fd";
}
.bp6-icon-inbox-update::before {
  content: "\f1fe";
}
.bp6-icon-info-sign::before {
  content: "\f200";
}
.bp6-icon-inheritance::before {
  content: "\f201";
}
.bp6-icon-inherited-group::before {
  content: "\f202";
}
.bp6-icon-inner-join::before {
  content: "\f203";
}
.bp6-icon-input::before {
  content: "\f34b";
}
.bp6-icon-insert::before {
  content: "\f204";
}
.bp6-icon-intelligence::before {
  content: "\f337";
}
.bp6-icon-intersection::before {
  content: "\f205";
}
.bp6-icon-ip-address::before {
  content: "\f206";
}
.bp6-icon-issue::before {
  content: "\f209";
}
.bp6-icon-issue-closed::before {
  content: "\f207";
}
.bp6-icon-issue-new::before {
  content: "\f208";
}
.bp6-icon-italic::before {
  content: "\f20a";
}
.bp6-icon-join-table::before {
  content: "\f20b";
}
.bp6-icon-key::before {
  content: "\f215";
}
.bp6-icon-key-backspace::before {
  content: "\f20c";
}
.bp6-icon-key-command::before {
  content: "\f20d";
}
.bp6-icon-key-control::before {
  content: "\f20e";
}
.bp6-icon-key-delete::before {
  content: "\f20f";
}
.bp6-icon-key-enter::before {
  content: "\f210";
}
.bp6-icon-key-escape::before {
  content: "\f211";
}
.bp6-icon-key-option::before {
  content: "\f212";
}
.bp6-icon-key-shift::before {
  content: "\f213";
}
.bp6-icon-key-tab::before {
  content: "\f214";
}
.bp6-icon-known-vehicle::before {
  content: "\f216";
}
.bp6-icon-lab-test::before {
  content: "\f217";
}
.bp6-icon-label::before {
  content: "\f218";
}
.bp6-icon-layer::before {
  content: "\f21a";
}
.bp6-icon-layer-outline::before {
  content: "\f219";
}
.bp6-icon-layers::before {
  content: "\f21b";
}
.bp6-icon-layout::before {
  content: "\f225";
}
.bp6-icon-layout-auto::before {
  content: "\f21c";
}
.bp6-icon-layout-balloon::before {
  content: "\f21d";
}
.bp6-icon-layout-bottom-row-three-tiles::before {
  content: "\f364";
}
.bp6-icon-layout-bottom-row-two-tiles::before {
  content: "\f363";
}
.bp6-icon-layout-circle::before {
  content: "\f21e";
}
.bp6-icon-layout-grid::before {
  content: "\f21f";
}
.bp6-icon-layout-group-by::before {
  content: "\f220";
}
.bp6-icon-layout-hierarchy::before {
  content: "\f221";
}
.bp6-icon-layout-left-column-three-tiles::before {
  content: "\f366";
}
.bp6-icon-layout-left-column-two-tiles::before {
  content: "\f365";
}
.bp6-icon-layout-linear::before {
  content: "\f222";
}
.bp6-icon-layout-right-column-three-tiles::before {
  content: "\f368";
}
.bp6-icon-layout-right-column-two-tiles::before {
  content: "\f367";
}
.bp6-icon-layout-skew-grid::before {
  content: "\f223";
}
.bp6-icon-layout-sorted-clusters::before {
  content: "\f224";
}
.bp6-icon-layout-three-columns::before {
  content: "\f361";
}
.bp6-icon-layout-three-rows::before {
  content: "\f362";
}
.bp6-icon-layout-top-row-three-tiles::before {
  content: "\f36a";
}
.bp6-icon-layout-top-row-two-tiles::before {
  content: "\f369";
}
.bp6-icon-layout-two-columns::before {
  content: "\f35f";
}
.bp6-icon-layout-two-rows::before {
  content: "\f360";
}
.bp6-icon-learning::before {
  content: "\f226";
}
.bp6-icon-left-join::before {
  content: "\f227";
}
.bp6-icon-lengthen-text::before {
  content: "\f33e";
}
.bp6-icon-less-than::before {
  content: "\f229";
}
.bp6-icon-less-than-or-equal-to::before {
  content: "\f228";
}
.bp6-icon-lifesaver::before {
  content: "\f22a";
}
.bp6-icon-lightbulb::before {
  content: "\f22b";
}
.bp6-icon-lightning::before {
  content: "\f22c";
}
.bp6-icon-link::before {
  content: "\f22d";
}
.bp6-icon-linked-squares::before {
  content: "\f385";
}
.bp6-icon-list::before {
  content: "\f230";
}
.bp6-icon-list-columns::before {
  content: "\f22e";
}
.bp6-icon-list-detail-view::before {
  content: "\f22f";
}
.bp6-icon-locate::before {
  content: "\f231";
}
.bp6-icon-lock::before {
  content: "\f232";
}
.bp6-icon-locomotive::before {
  content: "\f33b";
}
.bp6-icon-log-in::before {
  content: "\f233";
}
.bp6-icon-log-out::before {
  content: "\f234";
}
.bp6-icon-low-voltage-pole::before {
  content: "\f332";
}
.bp6-icon-manual::before {
  content: "\f235";
}
.bp6-icon-manually-entered-data::before {
  content: "\f236";
}
.bp6-icon-many-to-many::before {
  content: "\f237";
}
.bp6-icon-many-to-one::before {
  content: "\f238";
}
.bp6-icon-map::before {
  content: "\f23b";
}
.bp6-icon-map-create::before {
  content: "\f239";
}
.bp6-icon-map-marker::before {
  content: "\f23a";
}
.bp6-icon-markdown::before {
  content: "\f3a9";
}
.bp6-icon-maximize::before {
  content: "\f23c";
}
.bp6-icon-media::before {
  content: "\f23d";
}
.bp6-icon-menu::before {
  content: "\f240";
}
.bp6-icon-menu-closed::before {
  content: "\f23e";
}
.bp6-icon-menu-open::before {
  content: "\f23f";
}
.bp6-icon-merge-columns::before {
  content: "\f241";
}
.bp6-icon-merge-links::before {
  content: "\f242";
}
.bp6-icon-microphone::before {
  content: "\f343";
}
.bp6-icon-minimize::before {
  content: "\f243";
}
.bp6-icon-minus::before {
  content: "\f244";
}
.bp6-icon-mobile-phone::before {
  content: "\f245";
}
.bp6-icon-mobile-video::before {
  content: "\f246";
}
.bp6-icon-modal::before {
  content: "\f248";
}
.bp6-icon-modal-filled::before {
  content: "\f247";
}
.bp6-icon-model::before {
  content: "\f33d";
}
.bp6-icon-moon::before {
  content: "\f249";
}
.bp6-icon-more::before {
  content: "\f24a";
}
.bp6-icon-mountain::before {
  content: "\f24b";
}
.bp6-icon-move::before {
  content: "\f24c";
}
.bp6-icon-mugshot::before {
  content: "\f24d";
}
.bp6-icon-multi-select::before {
  content: "\f24e";
}
.bp6-icon-music::before {
  content: "\f24f";
}
.bp6-icon-nest::before {
  content: "\f250";
}
.bp6-icon-new-drawing::before {
  content: "\f251";
}
.bp6-icon-new-grid-item::before {
  content: "\f252";
}
.bp6-icon-new-layer::before {
  content: "\f253";
}
.bp6-icon-new-layers::before {
  content: "\f254";
}
.bp6-icon-new-link::before {
  content: "\f255";
}
.bp6-icon-new-object::before {
  content: "\f256";
}
.bp6-icon-new-person::before {
  content: "\f257";
}
.bp6-icon-new-prescription::before {
  content: "\f258";
}
.bp6-icon-new-shield::before {
  content: "\f349";
}
.bp6-icon-new-text-box::before {
  content: "\f259";
}
.bp6-icon-ninja::before {
  content: "\f25a";
}
.bp6-icon-not-equal-to::before {
  content: "\f25b";
}
.bp6-icon-notifications::before {
  content: "\f25e";
}
.bp6-icon-notifications-add::before {
  content: "\f398";
}
.bp6-icon-notifications-snooze::before {
  content: "\f25c";
}
.bp6-icon-notifications-updated::before {
  content: "\f25d";
}
.bp6-icon-numbered-list::before {
  content: "\f25f";
}
.bp6-icon-numerical::before {
  content: "\f260";
}
.bp6-icon-object-view::before {
  content: "\f390";
}
.bp6-icon-office::before {
  content: "\f261";
}
.bp6-icon-offline::before {
  content: "\f262";
}
.bp6-icon-oil-field::before {
  content: "\f263";
}
.bp6-icon-one-column::before {
  content: "\f264";
}
.bp6-icon-one-to-many::before {
  content: "\f265";
}
.bp6-icon-one-to-one::before {
  content: "\f266";
}
.bp6-icon-open-application::before {
  content: "\f32b";
}
.bp6-icon-outdated::before {
  content: "\f267";
}
.bp6-icon-output::before {
  content: "\f370";
}
.bp6-icon-package::before {
  content: "\f375";
}
.bp6-icon-page-break::before {
  content: "\f3a5";
}
.bp6-icon-page-layout::before {
  content: "\f268";
}
.bp6-icon-panel::before {
  content: "\f381";
}
.bp6-icon-panel-stats::before {
  content: "\f269";
}
.bp6-icon-panel-table::before {
  content: "\f26a";
}
.bp6-icon-paperclip::before {
  content: "\f26b";
}
.bp6-icon-paragraph::before {
  content: "\f26c";
}
.bp6-icon-paste-variable::before {
  content: "\f346";
}
.bp6-icon-path::before {
  content: "\f26e";
}
.bp6-icon-path-search::before {
  content: "\f26d";
}
.bp6-icon-pause::before {
  content: "\f26f";
}
.bp6-icon-people::before {
  content: "\f270";
}
.bp6-icon-percentage::before {
  content: "\f271";
}
.bp6-icon-person::before {
  content: "\f272";
}
.bp6-icon-phone::before {
  content: "\f273";
}
.bp6-icon-phone-call::before {
  content: "\f347";
}
.bp6-icon-phone-forward::before {
  content: "\f348";
}
.bp6-icon-phone-search::before {
  content: "\f397";
}
.bp6-icon-pie-chart::before {
  content: "\f274";
}
.bp6-icon-pill::before {
  content: "\f376";
}
.bp6-icon-pin::before {
  content: "\f275";
}
.bp6-icon-pistol::before {
  content: "\f39c";
}
.bp6-icon-pivot::before {
  content: "\f277";
}
.bp6-icon-pivot-table::before {
  content: "\f276";
}
.bp6-icon-play::before {
  content: "\f278";
}
.bp6-icon-playbook::before {
  content: "\f324";
}
.bp6-icon-plus::before {
  content: "\f279";
}
.bp6-icon-polygon-filter::before {
  content: "\f27a";
}
.bp6-icon-power::before {
  content: "\f27b";
}
.bp6-icon-predictive-analysis::before {
  content: "\f27c";
}
.bp6-icon-prescription::before {
  content: "\f27d";
}
.bp6-icon-presentation::before {
  content: "\f27e";
}
.bp6-icon-print::before {
  content: "\f27f";
}
.bp6-icon-projects::before {
  content: "\f280";
}
.bp6-icon-properties::before {
  content: "\f281";
}
.bp6-icon-property::before {
  content: "\f282";
}
.bp6-icon-publish-function::before {
  content: "\f283";
}
.bp6-icon-pulse::before {
  content: "\f284";
}
.bp6-icon-rain::before {
  content: "\f285";
}
.bp6-icon-random::before {
  content: "\f286";
}
.bp6-icon-range-ring::before {
  content: "\f371";
}
.bp6-icon-record::before {
  content: "\f287";
}
.bp6-icon-rect-height::before {
  content: "\f325";
}
.bp6-icon-rect-width::before {
  content: "\f326";
}
.bp6-icon-rectangle::before {
  content: "\f321";
}
.bp6-icon-redo::before {
  content: "\f288";
}
.bp6-icon-refresh::before {
  content: "\f289";
}
.bp6-icon-refresh-off::before {
  content: "\f3aa";
}
.bp6-icon-regex::before {
  content: "\f32f";
}
.bp6-icon-regression-chart::before {
  content: "\f28a";
}
.bp6-icon-remove::before {
  content: "\f290";
}
.bp6-icon-remove-column::before {
  content: "\f28d";
}
.bp6-icon-remove-column-left::before {
  content: "\f28b";
}
.bp6-icon-remove-column-right::before {
  content: "\f28c";
}
.bp6-icon-remove-row-bottom::before {
  content: "\f28e";
}
.bp6-icon-remove-row-top::before {
  content: "\f28f";
}
.bp6-icon-repeat::before {
  content: "\f291";
}
.bp6-icon-reset::before {
  content: "\f292";
}
.bp6-icon-resolve::before {
  content: "\f293";
}
.bp6-icon-rig::before {
  content: "\f294";
}
.bp6-icon-right-join::before {
  content: "\f295";
}
.bp6-icon-ring::before {
  content: "\f296";
}
.bp6-icon-rocket::before {
  content: "\f298";
}
.bp6-icon-rocket-slant::before {
  content: "\f297";
}
.bp6-icon-root-folder::before {
  content: "\f39f";
}
.bp6-icon-rotate-ccw::before {
  content: "\f389";
}
.bp6-icon-rotate-cw::before {
  content: "\f388";
}
.bp6-icon-rotate-document::before {
  content: "\f299";
}
.bp6-icon-rotate-page::before {
  content: "\f29a";
}
.bp6-icon-route::before {
  content: "\f29b";
}
.bp6-icon-run-history::before {
  content: "\f393";
}
.bp6-icon-satellite::before {
  content: "\f29c";
}
.bp6-icon-saved::before {
  content: "\f29d";
}
.bp6-icon-scatter-plot::before {
  content: "\f29e";
}
.bp6-icon-search::before {
  content: "\f2a2";
}
.bp6-icon-search-around::before {
  content: "\f29f";
}
.bp6-icon-search-template::before {
  content: "\f2a0";
}
.bp6-icon-search-text::before {
  content: "\f2a1";
}
.bp6-icon-segmented-control::before {
  content: "\f2a3";
}
.bp6-icon-select::before {
  content: "\f2a4";
}
.bp6-icon-selection::before {
  content: "\f2a5";
}
.bp6-icon-selection-box::before {
  content: "\f399";
}
.bp6-icon-selection-box-add::before {
  content: "\f39a";
}
.bp6-icon-selection-box-edit::before {
  content: "\f39b";
}
.bp6-icon-selection-box-remove::before {
  content: "\f3a8";
}
.bp6-icon-send-backward::before {
  content: "\f355";
}
.bp6-icon-send-message::before {
  content: "\f2a6";
}
.bp6-icon-send-to::before {
  content: "\f2a9";
}
.bp6-icon-send-to-graph::before {
  content: "\f2a7";
}
.bp6-icon-send-to-map::before {
  content: "\f2a8";
}
.bp6-icon-sensor::before {
  content: "\f33c";
}
.bp6-icon-series-add::before {
  content: "\f2aa";
}
.bp6-icon-series-configuration::before {
  content: "\f2ab";
}
.bp6-icon-series-derived::before {
  content: "\f2ac";
}
.bp6-icon-series-filtered::before {
  content: "\f2ad";
}
.bp6-icon-series-search::before {
  content: "\f2ae";
}
.bp6-icon-server::before {
  content: "\f378";
}
.bp6-icon-server-install::before {
  content: "\f377";
}
.bp6-icon-settings::before {
  content: "\f2af";
}
.bp6-icon-shapes::before {
  content: "\f2b0";
}
.bp6-icon-share::before {
  content: "\f2b1";
}
.bp6-icon-shared-filter::before {
  content: "\f2b2";
}
.bp6-icon-shield::before {
  content: "\f2b3";
}
.bp6-icon-ship::before {
  content: "\f2b4";
}
.bp6-icon-shop::before {
  content: "\f2b5";
}
.bp6-icon-shopping-cart::before {
  content: "\f2b6";
}
.bp6-icon-shorten-text::before {
  content: "\f33f";
}
.bp6-icon-signal-search::before {
  content: "\f2b7";
}
.bp6-icon-sim-card::before {
  content: "\f2b8";
}
.bp6-icon-slash::before {
  content: "\f2b9";
}
.bp6-icon-small-cross::before {
  content: "\f2ba";
}
.bp6-icon-small-info-sign::before {
  content: "\f334";
}
.bp6-icon-small-minus::before {
  content: "\f2bb";
}
.bp6-icon-small-plus::before {
  content: "\f2bc";
}
.bp6-icon-small-square::before {
  content: "\f2bd";
}
.bp6-icon-small-tick::before {
  content: "\f2be";
}
.bp6-icon-snowflake::before {
  content: "\f2bf";
}
.bp6-icon-soccer-ball::before {
  content: "\f350";
}
.bp6-icon-social-media::before {
  content: "\f2c0";
}
.bp6-icon-sort::before {
  content: "\f2c7";
}
.bp6-icon-sort-alphabetical::before {
  content: "\f2c2";
}
.bp6-icon-sort-alphabetical-desc::before {
  content: "\f2c1";
}
.bp6-icon-sort-asc::before {
  content: "\f2c3";
}
.bp6-icon-sort-desc::before {
  content: "\f2c4";
}
.bp6-icon-sort-numerical::before {
  content: "\f2c6";
}
.bp6-icon-sort-numerical-desc::before {
  content: "\f2c5";
}
.bp6-icon-spell-check::before {
  content: "\f340";
}
.bp6-icon-spin::before {
  content: "\f3b3";
}
.bp6-icon-split-columns::before {
  content: "\f2c8";
}
.bp6-icon-sports-stadium::before {
  content: "\f351";
}
.bp6-icon-square::before {
  content: "\f2c9";
}
.bp6-icon-stacked-chart::before {
  content: "\f2ca";
}
.bp6-icon-stadium-geometry::before {
  content: "\f2cb";
}
.bp6-icon-star::before {
  content: "\f2cd";
}
.bp6-icon-star-empty::before {
  content: "\f2cc";
}
.bp6-icon-step-backward::before {
  content: "\f2ce";
}
.bp6-icon-step-chart::before {
  content: "\f2cf";
}
.bp6-icon-step-forward::before {
  content: "\f2d0";
}
.bp6-icon-stop::before {
  content: "\f2d1";
}
.bp6-icon-stopwatch::before {
  content: "\f2d2";
}
.bp6-icon-strikethrough::before {
  content: "\f2d3";
}
.bp6-icon-style::before {
  content: "\f2d4";
}
.bp6-icon-subscript::before {
  content: "\f339";
}
.bp6-icon-subtract-right-join::before {
  content: "\f392";
}
.bp6-icon-superscript::before {
  content: "\f33a";
}
.bp6-icon-swap-horizontal::before {
  content: "\f2d5";
}
.bp6-icon-swap-vertical::before {
  content: "\f2d6";
}
.bp6-icon-sweep::before {
  content: "\f3a4";
}
.bp6-icon-switch::before {
  content: "\f2d7";
}
.bp6-icon-symbol-circle::before {
  content: "\f2d8";
}
.bp6-icon-symbol-cross::before {
  content: "\f2d9";
}
.bp6-icon-symbol-diamond::before {
  content: "\f2da";
}
.bp6-icon-symbol-rectangle::before {
  content: "\f322";
}
.bp6-icon-symbol-square::before {
  content: "\f2db";
}
.bp6-icon-symbol-triangle-down::before {
  content: "\f2dc";
}
.bp6-icon-symbol-triangle-up::before {
  content: "\f2dd";
}
.bp6-icon-syringe::before {
  content: "\f2de";
}
.bp6-icon-table-sync::before {
  content: "\f36e";
}
.bp6-icon-tag::before {
  content: "\f2df";
}
.bp6-icon-tag-add::before {
  content: "\f379";
}
.bp6-icon-tag-promote::before {
  content: "\f37a";
}
.bp6-icon-tag-refresh::before {
  content: "\f37b";
}
.bp6-icon-tag-undo::before {
  content: "\f37c";
}
.bp6-icon-tags::before {
  content: "\f37d";
}
.bp6-icon-take-action::before {
  content: "\f2e0";
}
.bp6-icon-tank::before {
  content: "\f2e1";
}
.bp6-icon-target::before {
  content: "\f2e2";
}
.bp6-icon-taxi::before {
  content: "\f2e3";
}
.bp6-icon-team::before {
  content: "\f352";
}
.bp6-icon-temperature::before {
  content: "\f2e4";
}
.bp6-icon-text-highlight::before {
  content: "\f2e5";
}
.bp6-icon-th::before {
  content: "\f2ea";
}
.bp6-icon-th-add::before {
  content: "\f38a";
}
.bp6-icon-th-derived::before {
  content: "\f2e6";
}
.bp6-icon-th-disconnect::before {
  content: "\f2e7";
}
.bp6-icon-th-filtered::before {
  content: "\f2e8";
}
.bp6-icon-th-list::before {
  content: "\f2e9";
}
.bp6-icon-th-list-add::before {
  content: "\f38b";
}
.bp6-icon-th-virtual::before {
  content: "\f38c";
}
.bp6-icon-th-virtual-add::before {
  content: "\f38d";
}
.bp6-icon-third-party::before {
  content: "\f2eb";
}
.bp6-icon-thumbs-down::before {
  content: "\f2ec";
}
.bp6-icon-thumbs-up::before {
  content: "\f2ed";
}
.bp6-icon-tick::before {
  content: "\f2ef";
}
.bp6-icon-tick-circle::before {
  content: "\f2ee";
}
.bp6-icon-time::before {
  content: "\f2f0";
}
.bp6-icon-timeline-area-chart::before {
  content: "\f2f1";
}
.bp6-icon-timeline-bar-chart::before {
  content: "\f2f2";
}
.bp6-icon-timeline-events::before {
  content: "\f2f3";
}
.bp6-icon-timeline-line-chart::before {
  content: "\f2f4";
}
.bp6-icon-tint::before {
  content: "\f2f5";
}
.bp6-icon-torch::before {
  content: "\f2f6";
}
.bp6-icon-tractor::before {
  content: "\f2f7";
}
.bp6-icon-train::before {
  content: "\f2f8";
}
.bp6-icon-translate::before {
  content: "\f2f9";
}
.bp6-icon-trash::before {
  content: "\f2fa";
}
.bp6-icon-tree::before {
  content: "\f2fb";
}
.bp6-icon-trending-down::before {
  content: "\f2fc";
}
.bp6-icon-trending-up::before {
  content: "\f2fd";
}
.bp6-icon-trophy::before {
  content: "\f34f";
}
.bp6-icon-truck::before {
  content: "\f2fe";
}
.bp6-icon-two-columns::before {
  content: "\f2ff";
}
.bp6-icon-unarchive::before {
  content: "\f300";
}
.bp6-icon-underline::before {
  content: "\f301";
}
.bp6-icon-undo::before {
  content: "\f302";
}
.bp6-icon-ungroup-objects::before {
  content: "\f303";
}
.bp6-icon-unknown-vehicle::before {
  content: "\f304";
}
.bp6-icon-unlink::before {
  content: "\f345";
}
.bp6-icon-unlock::before {
  content: "\f305";
}
.bp6-icon-unpin::before {
  content: "\f306";
}
.bp6-icon-unresolve::before {
  content: "\f307";
}
.bp6-icon-updated::before {
  content: "\f308";
}
.bp6-icon-upload::before {
  content: "\f309";
}
.bp6-icon-user::before {
  content: "\f30a";
}
.bp6-icon-variable::before {
  content: "\f30b";
}
.bp6-icon-variable-layer::before {
  content: "\f3ab";
}
.bp6-icon-vector::before {
  content: "\f35e";
}
.bp6-icon-vertical-bar-chart-asc::before {
  content: "\f30c";
}
.bp6-icon-vertical-bar-chart-desc::before {
  content: "\f30d";
}
.bp6-icon-vertical-distribution::before {
  content: "\f30e";
}
.bp6-icon-vertical-inbetween::before {
  content: "\f32a";
}
.bp6-icon-video::before {
  content: "\f30f";
}
.bp6-icon-virus::before {
  content: "\f310";
}
.bp6-icon-volume-down::before {
  content: "\f311";
}
.bp6-icon-volume-off::before {
  content: "\f312";
}
.bp6-icon-volume-up::before {
  content: "\f313";
}
.bp6-icon-walk::before {
  content: "\f314";
}
.bp6-icon-warning-sign::before {
  content: "\f315";
}
.bp6-icon-waterfall-chart::before {
  content: "\f316";
}
.bp6-icon-waves::before {
  content: "\f317";
}
.bp6-icon-widget::before {
  content: "\f31b";
}
.bp6-icon-widget-button::before {
  content: "\f318";
}
.bp6-icon-widget-footer::before {
  content: "\f319";
}
.bp6-icon-widget-header::before {
  content: "\f31a";
}
.bp6-icon-wind::before {
  content: "\f31c";
}
.bp6-icon-won::before {
  content: "\f3af";
}
.bp6-icon-wrap-lines::before {
  content: "\f3ae";
}
.bp6-icon-wrench::before {
  content: "\f31d";
}
.bp6-icon-wrench-redo::before {
  content: "\f37e";
}
.bp6-icon-wrench-snooze::before {
  content: "\f37f";
}
.bp6-icon-wrench-time::before {
  content: "\f380";
}
.bp6-icon-yen::before {
  content: "\f3b0";
}
.bp6-icon-zoom-in::before {
  content: "\f31e";
}
.bp6-icon-zoom-out::before {
  content: "\f31f";
}
.bp6-icon-zoom-to-fit::before {
  content: "\f320";
}
.bp6-text-muted {
  color: #5f6b7c;
}
.bp6-text-disabled {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-running-text hr {
  border-color: rgba(17, 20, 24, 0.15);
}
a {
  color: #215db0;
}
a:hover {
  color: #215db0;
}
a .bp6-icon,
a .bp6-icon-standard,
a .bp6-icon-large {
  color: inherit;
}
a code {
  color: inherit;
}
.bp6-code,
.bp6-running-text code {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2);
  color: #5f6b7c;
}
a > .bp6-code,
a > .bp6-running-text code {
  color: #2d72d2;
}
.bp6-code-block,
.bp6-running-text pre {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.15);
  color: #1c2127;
}
.bp6-code-block > code,
.bp6-running-text pre > code {
  background: none;
  box-shadow: none;
  color: inherit;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-code-block,
  .bp6-running-text pre {
    border: 1px solid buttonborder;
    box-shadow: none;
  }
}
.bp6-key,
.bp6-running-text kbd {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.1), 0 1px 1px rgba(17, 20, 24, 0.2);
  color: #5f6b7c;
}
.bp6-icon.bp6-intent-primary,
.bp6-icon-standard.bp6-intent-primary,
.bp6-icon-large.bp6-intent-primary {
  color: #215db0;
}
.bp6-icon.bp6-intent-success,
.bp6-icon-standard.bp6-intent-success,
.bp6-icon-large.bp6-intent-success {
  color: #1c6e42;
}
.bp6-icon.bp6-intent-warning,
.bp6-icon-standard.bp6-intent-warning,
.bp6-icon-large.bp6-intent-warning {
  color: #935610;
}
.bp6-icon.bp6-intent-danger,
.bp6-icon-standard.bp6-intent-danger,
.bp6-icon-large.bp6-intent-danger {
  color: #ac2f33;
}
.bp6-heading {
  color: #1c2127;
  font-weight: 600;
}
.bp6-dark .bp6-heading {
  color: #f6f7f9;
}
.bp6-heading.bp6-text-muted {
  color: #5f6b7c;
}
.bp6-dark .bp6-heading.bp6-text-muted {
  color: #abb3bf;
}
.bp6-heading {
  margin: 0 0 12px;
  padding: 0;
}
.bp6-running-text h1,
h1.bp6-heading {
  font-size: 36px;
  line-height: 40px;
}
.bp6-running-text h2,
h2.bp6-heading {
  font-size: 28px;
  line-height: 32px;
}
.bp6-running-text h3,
h3.bp6-heading {
  font-size: 22px;
  line-height: 25px;
}
.bp6-running-text h4,
h4.bp6-heading {
  font-size: 18px;
  line-height: 21px;
}
.bp6-running-text h5,
h5.bp6-heading {
  font-size: 16px;
  line-height: 19px;
}
.bp6-running-text h6,
h6.bp6-heading {
  font-size: 14px;
  line-height: 16px;
}
.bp6-ui-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.28581;
  text-transform: none;
}
.bp6-monospace-text {
  font-family: monospace;
  text-transform: none;
}
.bp6-text-overflow-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.bp6-running-text {
  font-size: 14px;
  line-height: 1.5;
}
.bp6-running-text h1 {
  color: #1c2127;
  font-weight: 600;
}
.bp6-dark .bp6-running-text h1 {
  color: #f6f7f9;
}
.bp6-running-text h1.bp6-text-muted {
  color: #5f6b7c;
}
.bp6-dark .bp6-running-text h1.bp6-text-muted {
  color: #abb3bf;
}
.bp6-running-text h1 {
  margin-bottom: 20px;
  margin-top: 40px;
}
.bp6-running-text h2 {
  color: #1c2127;
  font-weight: 600;
}
.bp6-dark .bp6-running-text h2 {
  color: #f6f7f9;
}
.bp6-running-text h2.bp6-text-muted {
  color: #5f6b7c;
}
.bp6-dark .bp6-running-text h2.bp6-text-muted {
  color: #abb3bf;
}
.bp6-running-text h2 {
  margin-bottom: 20px;
  margin-top: 40px;
}
.bp6-running-text h3 {
  color: #1c2127;
  font-weight: 600;
}
.bp6-dark .bp6-running-text h3 {
  color: #f6f7f9;
}
.bp6-running-text h3.bp6-text-muted {
  color: #5f6b7c;
}
.bp6-dark .bp6-running-text h3.bp6-text-muted {
  color: #abb3bf;
}
.bp6-running-text h3 {
  margin-bottom: 20px;
  margin-top: 40px;
}
.bp6-running-text h4 {
  color: #1c2127;
  font-weight: 600;
}
.bp6-dark .bp6-running-text h4 {
  color: #f6f7f9;
}
.bp6-running-text h4.bp6-text-muted {
  color: #5f6b7c;
}
.bp6-dark .bp6-running-text h4.bp6-text-muted {
  color: #abb3bf;
}
.bp6-running-text h4 {
  margin-bottom: 20px;
  margin-top: 40px;
}
.bp6-running-text h5 {
  color: #1c2127;
  font-weight: 600;
}
.bp6-dark .bp6-running-text h5 {
  color: #f6f7f9;
}
.bp6-running-text h5.bp6-text-muted {
  color: #5f6b7c;
}
.bp6-dark .bp6-running-text h5.bp6-text-muted {
  color: #abb3bf;
}
.bp6-running-text h5 {
  margin-bottom: 20px;
  margin-top: 40px;
}
.bp6-running-text h6 {
  color: #1c2127;
  font-weight: 600;
}
.bp6-dark .bp6-running-text h6 {
  color: #f6f7f9;
}
.bp6-running-text h6.bp6-text-muted {
  color: #5f6b7c;
}
.bp6-dark .bp6-running-text h6.bp6-text-muted {
  color: #abb3bf;
}
.bp6-running-text h6 {
  margin-bottom: 20px;
  margin-top: 40px;
}
.bp6-running-text hr {
  border: none;
  border-bottom: 1px solid rgba(17, 20, 24, 0.15);
  margin: 20px 0;
}
.bp6-running-text p {
  margin: 0 0 12px;
  padding: 0;
}
.bp6-text-large {
  font-size: 16px;
}
.bp6-text-small {
  font-size: 12px;
}
a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  text-decoration: underline;
}
.bp6-code,
.bp6-running-text code {
  font-family: monospace;
  text-transform: none;
  border-radius: 2px;
  font-size: smaller;
  padding: 2px 4px;
}
.bp6-code-block,
.bp6-running-text pre {
  font-family: monospace;
  text-transform: none;
  border-radius: 2px;
  display: block;
  font-size: 13px;
  line-height: 1.4;
  margin: 8px 0;
  padding: 12px 16px;
  word-break: break-all;
  word-wrap: break-word;
}
.bp6-code-block > code,
.bp6-running-text pre > code {
  font-size: inherit;
  padding: 0;
}
.bp6-key,
.bp6-running-text kbd {
  align-items: center;
  border-radius: 2px;
  display: inline-flex;
  font-family: inherit;
  font-size: 12px;
  height: 24px;
  justify-content: center;
  line-height: 24px;
  min-width: 24px;
  padding: 2px 4px;
  vertical-align: middle;
}
.bp6-key .bp6-icon,
.bp6-running-text kbd .bp6-icon,
.bp6-key .bp6-icon-standard,
.bp6-running-text kbd .bp6-icon-standard,
.bp6-key .bp6-icon-large,
.bp6-running-text kbd .bp6-icon-large {
  margin-right: 4px;
}
.bp6-blockquote,
.bp6-running-text blockquote {
  border-left: solid 4px rgba(171, 179, 191, 0.5);
  margin: 0 0 8px;
  padding: 0 20px;
}
.bp6-dark .bp6-blockquote,
.bp6-dark .bp6-running-text blockquote,
.bp6-running-text .bp6-dark blockquote {
  border-color: rgba(115, 128, 145, 0.5);
}
.bp6-list,
.bp6-running-text ul,
.bp6-running-text ol {
  margin: 8px 0;
  padding-left: 30px;
}
.bp6-list li:not(:last-child),
.bp6-running-text ul li:not(:last-child),
.bp6-running-text ol li:not(:last-child) {
  margin-bottom: 4px;
}
.bp6-list ol,
.bp6-running-text ul ol,
.bp6-running-text ol ol,
.bp6-list ul,
.bp6-running-text ul ul,
.bp6-running-text ol ul {
  margin-top: 4px;
}
.bp6-list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bp6-list-unstyled li {
  padding: 0;
}
.bp6-rtl {
  text-align: right;
}
.bp6-dark {
  color: #f6f7f9;
}
.bp6-dark .bp6-text-muted {
  color: #abb3bf;
}
.bp6-dark .bp6-text-disabled {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-running-text hr {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-dark a {
  color: #8abbff;
}
.bp6-dark a:hover {
  color: #8abbff;
}
.bp6-dark a .bp6-icon,
.bp6-dark a .bp6-icon-standard,
.bp6-dark a .bp6-icon-large {
  color: inherit;
}
.bp6-dark a code {
  color: inherit;
}
.bp6-dark .bp6-code,
.bp6-dark .bp6-running-text code {
  background: rgba(17, 20, 24, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #abb3bf;
}
a > .bp6-dark .bp6-code,
a > .bp6-dark .bp6-running-text code {
  color: inherit;
}
.bp6-dark .bp6-code-block,
.bp6-dark .bp6-running-text pre {
  background: rgba(17, 20, 24, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #f6f7f9;
}
.bp6-dark .bp6-code-block > code,
.bp6-dark .bp6-running-text pre > code {
  background: none;
  box-shadow: none;
  color: inherit;
}
.bp6-dark .bp6-key,
.bp6-dark .bp6-running-text kbd {
  background: #2f343c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px 0 rgba(17, 20, 24, 0.4);
  color: #abb3bf;
}
.bp6-dark .bp6-icon.bp6-intent-primary,
.bp6-dark .bp6-icon-standard.bp6-intent-primary,
.bp6-dark .bp6-icon-large.bp6-intent-primary {
  color: #8abbff;
}
.bp6-dark .bp6-icon.bp6-intent-success,
.bp6-dark .bp6-icon-standard.bp6-intent-success,
.bp6-dark .bp6-icon-large.bp6-intent-success {
  color: #72ca9b;
}
.bp6-dark .bp6-icon.bp6-intent-warning,
.bp6-dark .bp6-icon-standard.bp6-intent-warning,
.bp6-dark .bp6-icon-large.bp6-intent-warning {
  color: #fbb360;
}
.bp6-dark .bp6-icon.bp6-intent-danger,
.bp6-dark .bp6-icon-standard.bp6-intent-danger,
.bp6-dark .bp6-icon-large.bp6-intent-danger {
  color: #fa999c;
}
:focus {
  outline: rgba(33, 93, 176, 0.752) solid 2px;
  outline-offset: 2px;
  -moz-outline-radius: 6px;
}
.bp6-dark :focus {
  outline-color: rgba(138, 187, 255, 0.752);
}
.bp6-focus-disabled :focus:not(.bp6-focus-style-manager-ignore *) {
  outline: none !important;
}
.bp6-focus-disabled :focus:not(.bp6-focus-style-manager-ignore *) ~ .bp6-control-indicator {
  outline: none !important;
}
.bp6-dark {
  color-scheme: dark;
}
.bp6-alert {
  max-width: 400px;
  padding: 20px;
}
.bp6-alert-body {
  display: flex;
}
.bp6-alert-body .bp6-icon {
  font-size: 40px;
  margin-right: 20px;
  margin-top: 0;
}
.bp6-alert-contents {
  word-break: break-word;
}
.bp6-alert-footer {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 12px;
}
.bp6-alert-footer .bp6-button {
  margin-left: 8px;
}
.bp6-breadcrumbs {
  align-items: center;
  cursor: default;
  display: flex;
  flex-wrap: wrap;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bp6-breadcrumbs > li {
  align-items: center;
  display: flex;
}
.bp6-breadcrumbs > li::after {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235f6b7c'/%3e%3c/svg%3e");
  content: "";
  display: block;
  height: 16px;
  margin: 0 4px;
  width: 16px;
}
.bp6-breadcrumbs > li:last-of-type::after {
  display: none;
}
.bp6-breadcrumb,
.bp6-breadcrumb-current,
.bp6-breadcrumbs-collapsed {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
}
.bp6-breadcrumb,
.bp6-breadcrumbs-collapsed {
  color: #5f6b7c;
}
.bp6-breadcrumb:hover {
  text-decoration: none;
}
.bp6-breadcrumb.bp6-disabled {
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-breadcrumb .bp6-icon {
  margin-right: 4px;
}
.bp6-breadcrumb-current {
  color: inherit;
  font-weight: 600;
}
.bp6-breadcrumb-current .bp6-input {
  font-size: inherit;
  font-weight: inherit;
  vertical-align: baseline;
}
.bp6-breadcrumbs-collapsed {
  background: rgba(143, 153, 168, 0.15);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 2px;
  padding: 1px 4px;
  vertical-align: text-bottom;
}
.bp6-breadcrumbs-collapsed::before {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235f6b7c'%3e%3cpath d='M2 6.03a2 2 0 100 4 2 2 0 100-4zM14 6.03a2 2 0 100 4 2 2 0 100-4zM8 6.03a2 2 0 100 4 2 2 0 100-4z'/%3e%3c/g%3e%3c/svg%3e") center no-repeat;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}
.bp6-breadcrumbs-collapsed:hover {
  background: rgba(143, 153, 168, 0.3);
  color: #1c2127;
  text-decoration: none;
}
.bp6-dark .bp6-breadcrumb,
.bp6-dark .bp6-breadcrumbs-collapsed {
  color: #abb3bf;
}
.bp6-dark .bp6-breadcrumbs > li::after {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%23abb3bf'/%3e%3c/svg%3e");
  color: #abb3bf;
}
.bp6-dark .bp6-breadcrumb.bp6-disabled {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-breadcrumb-current {
  color: #f6f7f9;
}
.bp6-dark .bp6-breadcrumbs-collapsed {
  background: rgba(143, 153, 168, 0.2);
}
.bp6-dark .bp6-breadcrumbs-collapsed::before {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%23abb3bf'%3e%3cpath d='M2 6.03a2 2 0 100 4 2 2 0 100-4zM14 6.03a2 2 0 100 4 2 2 0 100-4zM8 6.03a2 2 0 100 4 2 2 0 100-4z'/%3e%3c/g%3e%3c/svg%3e") center no-repeat;
}
.bp6-dark .bp6-breadcrumbs-collapsed:hover {
  background: rgba(143, 153, 168, 0.3);
  color: #f6f7f9;
}
.bp6-button {
  display: inline-flex;
  flex-direction: row;
}
.bp6-button > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-button > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-button::before,
.bp6-button > * {
  margin-right: 8px;
}
.bp6-button:empty::before,
.bp6-button > :last-child {
  margin-right: 0;
}
.bp6-button {
  align-items: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  justify-content: center;
  padding: 4px 8px;
  text-align: left;
  vertical-align: middle;
  min-height: 30px;
  min-width: 30px;
}
.bp6-button:empty {
  padding: 0 !important;
}
.bp6-button:disabled,
.bp6-button.bp6-disabled {
  cursor: not-allowed;
}
.bp6-button.bp6-fill {
  display: flex;
  width: 100%;
}
.bp6-button.bp6-align-right,
.bp6-align-right .bp6-button {
  text-align: right;
}
.bp6-button.bp6-align-left,
.bp6-align-left .bp6-button {
  text-align: left;
}
.bp6-button:not([class*=bp6-intent-]) {
  background-color: #f6f7f9;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1);
  color: #1c2127;
}
.bp6-button:not([class*=bp6-intent-]):hover {
  background-clip: padding-box;
  background-color: #edeff2;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-button:not([class*=bp6-intent-]):active,
.bp6-button:not([class*=bp6-intent-]).bp6-active {
  background-color: #dce0e5;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button:not([class*=bp6-intent-]):active,
  .bp6-button:not([class*=bp6-intent-]).bp6-active {
    background: highlight;
  }
}
.bp6-button:not([class*=bp6-intent-]):disabled,
.bp6-button:not([class*=bp6-intent-]).bp6-disabled {
  background-color: rgba(211, 216, 222, 0.5);
  box-shadow: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
  outline: none;
}
.bp6-button:not([class*=bp6-intent-]):disabled.bp6-active,
.bp6-button:not([class*=bp6-intent-]):disabled.bp6-active:hover,
.bp6-button:not([class*=bp6-intent-]).bp6-disabled.bp6-active,
.bp6-button:not([class*=bp6-intent-]).bp6-disabled.bp6-active:hover {
  background: rgba(211, 216, 222, 0.7);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button:not([class*=bp6-intent-]) {
    border: 1px solid buttonborder;
  }
}
.bp6-button.bp6-intent-primary {
  background-color: #2d72d2;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1);
  color: #ffffff;
}
.bp6-button.bp6-intent-primary:hover,
.bp6-button.bp6-intent-primary:active,
.bp6-button.bp6-intent-primary.bp6-active {
  color: #ffffff;
}
.bp6-button.bp6-intent-primary:hover {
  background-color: #215db0;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-button.bp6-intent-primary:active,
.bp6-button.bp6-intent-primary.bp6-active {
  background-color: #184a90;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-button.bp6-intent-primary:disabled,
.bp6-button.bp6-intent-primary.bp6-disabled {
  background-color: rgba(45, 114, 210, 0.5);
  border-color: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button.bp6-intent-primary:disabled,
  .bp6-button.bp6-intent-primary.bp6-disabled {
    border-color: graytext;
    color: graytext;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button.bp6-intent-primary {
    border: 1px solid buttonborder;
    box-shadow: none;
  }
}
.bp6-button.bp6-intent-success {
  background-color: #238551;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1);
  color: #ffffff;
}
.bp6-button.bp6-intent-success:hover,
.bp6-button.bp6-intent-success:active,
.bp6-button.bp6-intent-success.bp6-active {
  color: #ffffff;
}
.bp6-button.bp6-intent-success:hover {
  background-color: #1c6e42;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-button.bp6-intent-success:active,
.bp6-button.bp6-intent-success.bp6-active {
  background-color: #165a36;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-button.bp6-intent-success:disabled,
.bp6-button.bp6-intent-success.bp6-disabled {
  background-color: rgba(35, 133, 81, 0.5);
  border-color: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button.bp6-intent-success:disabled,
  .bp6-button.bp6-intent-success.bp6-disabled {
    border-color: graytext;
    color: graytext;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button.bp6-intent-success {
    border: 1px solid buttonborder;
    box-shadow: none;
  }
}
.bp6-button.bp6-intent-warning {
  background-color: #c87619;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1);
  color: #ffffff;
}
.bp6-button.bp6-intent-warning:hover,
.bp6-button.bp6-intent-warning:active,
.bp6-button.bp6-intent-warning.bp6-active {
  color: #ffffff;
}
.bp6-button.bp6-intent-warning:hover {
  background-color: #935610;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-button.bp6-intent-warning:active,
.bp6-button.bp6-intent-warning.bp6-active {
  background-color: #77450d;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-button.bp6-intent-warning:disabled,
.bp6-button.bp6-intent-warning.bp6-disabled {
  background-color: rgba(200, 118, 25, 0.5);
  border-color: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button.bp6-intent-warning:disabled,
  .bp6-button.bp6-intent-warning.bp6-disabled {
    border-color: graytext;
    color: graytext;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button.bp6-intent-warning {
    border: 1px solid buttonborder;
    box-shadow: none;
  }
}
.bp6-button.bp6-intent-danger {
  background-color: #cd4246;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1);
  color: #ffffff;
}
.bp6-button.bp6-intent-danger:hover,
.bp6-button.bp6-intent-danger:active,
.bp6-button.bp6-intent-danger.bp6-active {
  color: #ffffff;
}
.bp6-button.bp6-intent-danger:hover {
  background-color: #ac2f33;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-button.bp6-intent-danger:active,
.bp6-button.bp6-intent-danger.bp6-active {
  background-color: #8e292c;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-button.bp6-intent-danger:disabled,
.bp6-button.bp6-intent-danger.bp6-disabled {
  background-color: rgba(205, 66, 70, 0.5);
  border-color: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button.bp6-intent-danger:disabled,
  .bp6-button.bp6-intent-danger.bp6-disabled {
    border-color: graytext;
    color: graytext;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button.bp6-intent-danger {
    border: 1px solid buttonborder;
    box-shadow: none;
  }
}
.bp6-button[class*=bp6-intent-] .bp6-button-spinner .bp6-spinner-head {
  stroke: #ffffff;
}
.bp6-button.bp6-large,
.bp6-large .bp6-button {
  min-height: 40px;
  min-width: 40px;
}
.bp6-button.bp6-large::before,
.bp6-button.bp6-large > *,
.bp6-large .bp6-button::before,
.bp6-large .bp6-button > * {
  margin-right: 8px;
}
.bp6-button.bp6-large:empty::before,
.bp6-button.bp6-large > :last-child,
.bp6-large .bp6-button:empty::before,
.bp6-large .bp6-button > :last-child {
  margin-right: 0;
}
.bp6-button.bp6-large,
.bp6-large .bp6-button {
  font-size: 16px;
  padding: 4px 16px;
}
.bp6-button.bp6-small,
.bp6-small .bp6-button {
  min-height: 24px;
  min-width: 24px;
  padding: 0 8px;
}
.bp6-button.bp6-loading {
  position: relative;
}
.bp6-button.bp6-loading[class*=bp6-icon-]::before {
  visibility: hidden;
}
.bp6-button.bp6-loading .bp6-button-spinner {
  margin: 0;
  position: absolute;
}
.bp6-button.bp6-loading > :not(.bp6-button-spinner) {
  visibility: hidden;
}
.bp6-button[class*=bp6-icon-]::before {
  font-family: "blueprint-icons-16", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 16px;
  line-height: 1;
  width: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #5f6b7c;
}
.bp6-button .bp6-icon.bp6-align-right,
.bp6-button .bp6-icon-standard.bp6-align-right,
.bp6-button .bp6-icon-large.bp6-align-right {
  margin-left: 8px;
}
.bp6-button .bp6-icon:not([class*=bp6-intent-]) {
  color: #5f6b7c;
}
.bp6-button .bp6-icon:first-child:last-child,
.bp6-button .bp6-spinner + .bp6-icon:last-child {
  margin: 0 -7px;
}
.bp6-dark .bp6-button:not([class*=bp6-intent-]) {
  background-color: #2f343c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.2);
  color: #f6f7f9;
}
.bp6-dark .bp6-button:not([class*=bp6-intent-]):hover,
.bp6-dark .bp6-button:not([class*=bp6-intent-]):active,
.bp6-dark .bp6-button:not([class*=bp6-intent-]).bp6-active {
  color: #f6f7f9;
}
.bp6-dark .bp6-button:not([class*=bp6-intent-]):hover {
  background-color: #252a31;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-button:not([class*=bp6-intent-]):active,
.bp6-dark .bp6-button:not([class*=bp6-intent-]).bp6-active {
  background-color: #1c2127;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-button:not([class*=bp6-intent-]):disabled,
.bp6-dark .bp6-button:not([class*=bp6-intent-]).bp6-disabled {
  background-color: rgba(47, 52, 60, 0.15);
  box-shadow: none;
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-button:not([class*=bp6-intent-]):disabled.bp6-active,
.bp6-dark .bp6-button:not([class*=bp6-intent-]).bp6-disabled.bp6-active {
  background: rgba(47, 52, 60, 0.7);
}
.bp6-dark .bp6-button:not([class*=bp6-intent-]) .bp6-button-spinner .bp6-spinner-head {
  background: rgba(17, 20, 24, 0.5);
  stroke: #8f99a8;
}
.bp6-dark .bp6-button:not([class*=bp6-intent-])[class*=bp6-icon-]::before {
  color: #abb3bf;
}
.bp6-dark .bp6-button:not([class*=bp6-intent-]) .bp6-icon:not([class*=bp6-intent-]),
.bp6-dark .bp6-button:not([class*=bp6-intent-]) .bp6-icon-standard:not([class*=bp6-intent-]),
.bp6-dark .bp6-button:not([class*=bp6-intent-]) .bp6-icon-large:not([class*=bp6-intent-]) {
  color: #abb3bf;
}
.bp6-dark .bp6-button[class*=bp6-intent-] {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-dark .bp6-button[class*=bp6-intent-]:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-dark .bp6-button[class*=bp6-intent-]:active,
.bp6-dark .bp6-button[class*=bp6-intent-].bp6-active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-button[class*=bp6-intent-]:disabled,
.bp6-dark .bp6-button[class*=bp6-intent-].bp6-disabled {
  box-shadow: none;
  color: rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-button[class*=bp6-intent-] .bp6-button-spinner .bp6-spinner-head {
  stroke: #8f99a8;
}
.bp6-button:disabled::before,
.bp6-button:disabled .bp6-icon,
.bp6-button:disabled .bp6-icon-standard,
.bp6-button:disabled .bp6-icon-large,
.bp6-button.bp6-disabled::before,
.bp6-button.bp6-disabled .bp6-icon,
.bp6-button.bp6-disabled .bp6-icon-standard,
.bp6-button.bp6-disabled .bp6-icon-large,
.bp6-button[class*=bp6-intent-]::before,
.bp6-button[class*=bp6-intent-] .bp6-icon,
.bp6-button[class*=bp6-intent-] .bp6-icon-standard,
.bp6-button[class*=bp6-intent-] .bp6-icon-large {
  color: inherit !important;
}
.bp6-button.bp6-minimal {
  background: none;
  box-shadow: none;
}
.bp6-button.bp6-minimal:hover {
  background: rgba(143, 153, 168, 0.15);
  box-shadow: none;
  color: #1c2127;
  text-decoration: none;
}
.bp6-button.bp6-minimal:active,
.bp6-button.bp6-minimal.bp6-active {
  background: rgba(143, 153, 168, 0.3);
  box-shadow: none;
  color: #1c2127;
}
.bp6-button.bp6-minimal:disabled,
.bp6-button.bp6-minimal:disabled:hover,
.bp6-button.bp6-minimal.bp6-disabled,
.bp6-button.bp6-minimal.bp6-disabled:hover {
  background: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-button.bp6-minimal:disabled.bp6-active,
.bp6-button.bp6-minimal:disabled:hover.bp6-active,
.bp6-button.bp6-minimal.bp6-disabled.bp6-active,
.bp6-button.bp6-minimal.bp6-disabled:hover.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-button.bp6-minimal {
  background: none;
  box-shadow: none;
  color: #ffffff;
}
.bp6-dark .bp6-button.bp6-minimal:hover,
.bp6-dark .bp6-button.bp6-minimal:active,
.bp6-dark .bp6-button.bp6-minimal.bp6-active {
  background: none;
  box-shadow: none;
  color: #ffffff;
}
.bp6-dark .bp6-button.bp6-minimal:hover {
  background: rgba(143, 153, 168, 0.15);
}
.bp6-dark .bp6-button.bp6-minimal:active,
.bp6-dark .bp6-button.bp6-minimal.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-button.bp6-minimal:disabled,
.bp6-dark .bp6-button.bp6-minimal:disabled:hover,
.bp6-dark .bp6-button.bp6-minimal.bp6-disabled,
.bp6-dark .bp6-button.bp6-minimal.bp6-disabled:hover {
  background: none;
  color: rgba(171, 179, 191, 0.6);
  cursor: not-allowed;
}
.bp6-dark .bp6-button.bp6-minimal:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-minimal:disabled:hover.bp6-active,
.bp6-dark .bp6-button.bp6-minimal.bp6-disabled.bp6-active,
.bp6-dark .bp6-button.bp6-minimal.bp6-disabled:hover.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-button.bp6-minimal.bp6-intent-primary {
  color: #215db0;
}
.bp6-button.bp6-minimal.bp6-intent-primary:hover,
.bp6-button.bp6-minimal.bp6-intent-primary:active,
.bp6-button.bp6-minimal.bp6-intent-primary.bp6-active {
  background: none;
  box-shadow: none;
  color: #215db0;
}
.bp6-button.bp6-minimal.bp6-intent-primary:hover {
  background: rgba(45, 114, 210, 0.15);
  color: #215db0;
}
.bp6-button.bp6-minimal.bp6-intent-primary:active,
.bp6-button.bp6-minimal.bp6-intent-primary.bp6-active {
  background: rgba(45, 114, 210, 0.3);
  color: #184a90;
}
.bp6-button.bp6-minimal.bp6-intent-primary:disabled,
.bp6-button.bp6-minimal.bp6-intent-primary.bp6-disabled {
  background: none;
  color: rgba(33, 93, 176, 0.5);
}
.bp6-button.bp6-minimal.bp6-intent-primary:disabled.bp6-active,
.bp6-button.bp6-minimal.bp6-intent-primary.bp6-disabled.bp6-active {
  background: rgba(45, 114, 210, 0.3);
}
.bp6-button.bp6-minimal.bp6-intent-primary .bp6-button-spinner .bp6-spinner-head {
  stroke: #215db0;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-primary {
  color: #8abbff;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-primary:hover {
  background: rgba(45, 114, 210, 0.2);
  color: #8abbff;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-primary:active,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-primary.bp6-active {
  background: rgba(45, 114, 210, 0.3);
  color: #99c4ff;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-primary:disabled,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-primary.bp6-disabled {
  background: none;
  color: rgba(138, 187, 255, 0.5);
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-primary:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-primary.bp6-disabled.bp6-active {
  background: rgba(45, 114, 210, 0.3);
}
.bp6-button.bp6-minimal.bp6-intent-success {
  color: #1c6e42;
}
.bp6-button.bp6-minimal.bp6-intent-success:hover,
.bp6-button.bp6-minimal.bp6-intent-success:active,
.bp6-button.bp6-minimal.bp6-intent-success.bp6-active {
  background: none;
  box-shadow: none;
  color: #1c6e42;
}
.bp6-button.bp6-minimal.bp6-intent-success:hover {
  background: rgba(35, 133, 81, 0.15);
  color: #1c6e42;
}
.bp6-button.bp6-minimal.bp6-intent-success:active,
.bp6-button.bp6-minimal.bp6-intent-success.bp6-active {
  background: rgba(35, 133, 81, 0.3);
  color: #165a36;
}
.bp6-button.bp6-minimal.bp6-intent-success:disabled,
.bp6-button.bp6-minimal.bp6-intent-success.bp6-disabled {
  background: none;
  color: rgba(28, 110, 66, 0.5);
}
.bp6-button.bp6-minimal.bp6-intent-success:disabled.bp6-active,
.bp6-button.bp6-minimal.bp6-intent-success.bp6-disabled.bp6-active {
  background: rgba(35, 133, 81, 0.3);
}
.bp6-button.bp6-minimal.bp6-intent-success .bp6-button-spinner .bp6-spinner-head {
  stroke: #1c6e42;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-success {
  color: #72ca9b;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-success:hover {
  background: rgba(35, 133, 81, 0.2);
  color: #72ca9b;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-success:active,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-success.bp6-active {
  background: rgba(35, 133, 81, 0.3);
  color: #7cd7a2;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-success:disabled,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-success.bp6-disabled {
  background: none;
  color: rgba(114, 202, 155, 0.5);
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-success:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-success.bp6-disabled.bp6-active {
  background: rgba(35, 133, 81, 0.3);
}
.bp6-button.bp6-minimal.bp6-intent-warning {
  color: #935610;
}
.bp6-button.bp6-minimal.bp6-intent-warning:hover,
.bp6-button.bp6-minimal.bp6-intent-warning:active,
.bp6-button.bp6-minimal.bp6-intent-warning.bp6-active {
  background: none;
  box-shadow: none;
  color: #935610;
}
.bp6-button.bp6-minimal.bp6-intent-warning:hover {
  background: rgba(200, 118, 25, 0.15);
  color: #935610;
}
.bp6-button.bp6-minimal.bp6-intent-warning:active,
.bp6-button.bp6-minimal.bp6-intent-warning.bp6-active {
  background: rgba(200, 118, 25, 0.3);
  color: #77450d;
}
.bp6-button.bp6-minimal.bp6-intent-warning:disabled,
.bp6-button.bp6-minimal.bp6-intent-warning.bp6-disabled {
  background: none;
  color: rgba(147, 86, 16, 0.5);
}
.bp6-button.bp6-minimal.bp6-intent-warning:disabled.bp6-active,
.bp6-button.bp6-minimal.bp6-intent-warning.bp6-disabled.bp6-active {
  background: rgba(200, 118, 25, 0.3);
}
.bp6-button.bp6-minimal.bp6-intent-warning .bp6-button-spinner .bp6-spinner-head {
  stroke: #935610;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-warning {
  color: #fbb360;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-warning:hover {
  background: rgba(200, 118, 25, 0.2);
  color: #fbb360;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-warning:active,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-warning.bp6-active {
  background: rgba(200, 118, 25, 0.3);
  color: #f5c186;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-warning:disabled,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-warning.bp6-disabled {
  background: none;
  color: rgba(251, 179, 96, 0.5);
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-warning:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-warning.bp6-disabled.bp6-active {
  background: rgba(200, 118, 25, 0.3);
}
.bp6-button.bp6-minimal.bp6-intent-danger {
  color: #ac2f33;
}
.bp6-button.bp6-minimal.bp6-intent-danger:hover,
.bp6-button.bp6-minimal.bp6-intent-danger:active,
.bp6-button.bp6-minimal.bp6-intent-danger.bp6-active {
  background: none;
  box-shadow: none;
  color: #ac2f33;
}
.bp6-button.bp6-minimal.bp6-intent-danger:hover {
  background: rgba(205, 66, 70, 0.15);
  color: #ac2f33;
}
.bp6-button.bp6-minimal.bp6-intent-danger:active,
.bp6-button.bp6-minimal.bp6-intent-danger.bp6-active {
  background: rgba(205, 66, 70, 0.3);
  color: #8e292c;
}
.bp6-button.bp6-minimal.bp6-intent-danger:disabled,
.bp6-button.bp6-minimal.bp6-intent-danger.bp6-disabled {
  background: none;
  color: rgba(172, 47, 51, 0.5);
}
.bp6-button.bp6-minimal.bp6-intent-danger:disabled.bp6-active,
.bp6-button.bp6-minimal.bp6-intent-danger.bp6-disabled.bp6-active {
  background: rgba(205, 66, 70, 0.3);
}
.bp6-button.bp6-minimal.bp6-intent-danger .bp6-button-spinner .bp6-spinner-head {
  stroke: #ac2f33;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-danger {
  color: #fa999c;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-danger:hover {
  background: rgba(205, 66, 70, 0.2);
  color: #fa999c;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-danger:active,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-danger.bp6-active {
  background: rgba(205, 66, 70, 0.3);
  color: #ffa1a4;
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-danger:disabled,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-danger.bp6-disabled {
  background: none;
  color: rgba(250, 153, 156, 0.5);
}
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-danger:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-minimal.bp6-intent-danger.bp6-disabled.bp6-active {
  background: rgba(205, 66, 70, 0.3);
}
.bp6-button.bp6-outlined {
  background: none;
  box-shadow: none;
}
.bp6-button.bp6-outlined:hover {
  background: rgba(143, 153, 168, 0.15);
  box-shadow: none;
  color: #1c2127;
  text-decoration: none;
}
.bp6-button.bp6-outlined:active,
.bp6-button.bp6-outlined.bp6-active {
  background: rgba(143, 153, 168, 0.3);
  box-shadow: none;
  color: #1c2127;
}
.bp6-button.bp6-outlined:disabled,
.bp6-button.bp6-outlined:disabled:hover,
.bp6-button.bp6-outlined.bp6-disabled,
.bp6-button.bp6-outlined.bp6-disabled:hover {
  background: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-button.bp6-outlined:disabled.bp6-active,
.bp6-button.bp6-outlined:disabled:hover.bp6-active,
.bp6-button.bp6-outlined.bp6-disabled.bp6-active,
.bp6-button.bp6-outlined.bp6-disabled:hover.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-button.bp6-outlined {
  background: none;
  box-shadow: none;
  color: #ffffff;
}
.bp6-dark .bp6-button.bp6-outlined:hover,
.bp6-dark .bp6-button.bp6-outlined:active,
.bp6-dark .bp6-button.bp6-outlined.bp6-active {
  background: none;
  box-shadow: none;
  color: #ffffff;
}
.bp6-dark .bp6-button.bp6-outlined:hover {
  background: rgba(143, 153, 168, 0.15);
}
.bp6-dark .bp6-button.bp6-outlined:active,
.bp6-dark .bp6-button.bp6-outlined.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-button.bp6-outlined:disabled,
.bp6-dark .bp6-button.bp6-outlined:disabled:hover,
.bp6-dark .bp6-button.bp6-outlined.bp6-disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-disabled:hover {
  background: none;
  color: rgba(171, 179, 191, 0.6);
  cursor: not-allowed;
}
.bp6-dark .bp6-button.bp6-outlined:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-outlined:disabled:hover.bp6-active,
.bp6-dark .bp6-button.bp6-outlined.bp6-disabled.bp6-active,
.bp6-dark .bp6-button.bp6-outlined.bp6-disabled:hover.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-button.bp6-outlined.bp6-intent-primary {
  color: #215db0;
}
.bp6-button.bp6-outlined.bp6-intent-primary:hover,
.bp6-button.bp6-outlined.bp6-intent-primary:active,
.bp6-button.bp6-outlined.bp6-intent-primary.bp6-active {
  background: none;
  box-shadow: none;
  color: #215db0;
}
.bp6-button.bp6-outlined.bp6-intent-primary:hover {
  background: rgba(45, 114, 210, 0.15);
  color: #215db0;
}
.bp6-button.bp6-outlined.bp6-intent-primary:active,
.bp6-button.bp6-outlined.bp6-intent-primary.bp6-active {
  background: rgba(45, 114, 210, 0.3);
  color: #184a90;
}
.bp6-button.bp6-outlined.bp6-intent-primary:disabled,
.bp6-button.bp6-outlined.bp6-intent-primary.bp6-disabled {
  background: none;
  color: rgba(33, 93, 176, 0.5);
}
.bp6-button.bp6-outlined.bp6-intent-primary:disabled.bp6-active,
.bp6-button.bp6-outlined.bp6-intent-primary.bp6-disabled.bp6-active {
  background: rgba(45, 114, 210, 0.3);
}
.bp6-button.bp6-outlined.bp6-intent-primary .bp6-button-spinner .bp6-spinner-head {
  stroke: #215db0;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary {
  color: #8abbff;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary:hover {
  background: rgba(45, 114, 210, 0.2);
  color: #8abbff;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary:active,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary.bp6-active {
  background: rgba(45, 114, 210, 0.3);
  color: #99c4ff;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary:disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary.bp6-disabled {
  background: none;
  color: rgba(138, 187, 255, 0.5);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary.bp6-disabled.bp6-active {
  background: rgba(45, 114, 210, 0.3);
}
.bp6-button.bp6-outlined.bp6-intent-success {
  color: #1c6e42;
}
.bp6-button.bp6-outlined.bp6-intent-success:hover,
.bp6-button.bp6-outlined.bp6-intent-success:active,
.bp6-button.bp6-outlined.bp6-intent-success.bp6-active {
  background: none;
  box-shadow: none;
  color: #1c6e42;
}
.bp6-button.bp6-outlined.bp6-intent-success:hover {
  background: rgba(35, 133, 81, 0.15);
  color: #1c6e42;
}
.bp6-button.bp6-outlined.bp6-intent-success:active,
.bp6-button.bp6-outlined.bp6-intent-success.bp6-active {
  background: rgba(35, 133, 81, 0.3);
  color: #165a36;
}
.bp6-button.bp6-outlined.bp6-intent-success:disabled,
.bp6-button.bp6-outlined.bp6-intent-success.bp6-disabled {
  background: none;
  color: rgba(28, 110, 66, 0.5);
}
.bp6-button.bp6-outlined.bp6-intent-success:disabled.bp6-active,
.bp6-button.bp6-outlined.bp6-intent-success.bp6-disabled.bp6-active {
  background: rgba(35, 133, 81, 0.3);
}
.bp6-button.bp6-outlined.bp6-intent-success .bp6-button-spinner .bp6-spinner-head {
  stroke: #1c6e42;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success {
  color: #72ca9b;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success:hover {
  background: rgba(35, 133, 81, 0.2);
  color: #72ca9b;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success:active,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success.bp6-active {
  background: rgba(35, 133, 81, 0.3);
  color: #7cd7a2;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success:disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success.bp6-disabled {
  background: none;
  color: rgba(114, 202, 155, 0.5);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success.bp6-disabled.bp6-active {
  background: rgba(35, 133, 81, 0.3);
}
.bp6-button.bp6-outlined.bp6-intent-warning {
  color: #935610;
}
.bp6-button.bp6-outlined.bp6-intent-warning:hover,
.bp6-button.bp6-outlined.bp6-intent-warning:active,
.bp6-button.bp6-outlined.bp6-intent-warning.bp6-active {
  background: none;
  box-shadow: none;
  color: #935610;
}
.bp6-button.bp6-outlined.bp6-intent-warning:hover {
  background: rgba(200, 118, 25, 0.15);
  color: #935610;
}
.bp6-button.bp6-outlined.bp6-intent-warning:active,
.bp6-button.bp6-outlined.bp6-intent-warning.bp6-active {
  background: rgba(200, 118, 25, 0.3);
  color: #77450d;
}
.bp6-button.bp6-outlined.bp6-intent-warning:disabled,
.bp6-button.bp6-outlined.bp6-intent-warning.bp6-disabled {
  background: none;
  color: rgba(147, 86, 16, 0.5);
}
.bp6-button.bp6-outlined.bp6-intent-warning:disabled.bp6-active,
.bp6-button.bp6-outlined.bp6-intent-warning.bp6-disabled.bp6-active {
  background: rgba(200, 118, 25, 0.3);
}
.bp6-button.bp6-outlined.bp6-intent-warning .bp6-button-spinner .bp6-spinner-head {
  stroke: #935610;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning {
  color: #fbb360;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning:hover {
  background: rgba(200, 118, 25, 0.2);
  color: #fbb360;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning:active,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning.bp6-active {
  background: rgba(200, 118, 25, 0.3);
  color: #f5c186;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning:disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning.bp6-disabled {
  background: none;
  color: rgba(251, 179, 96, 0.5);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning.bp6-disabled.bp6-active {
  background: rgba(200, 118, 25, 0.3);
}
.bp6-button.bp6-outlined.bp6-intent-danger {
  color: #ac2f33;
}
.bp6-button.bp6-outlined.bp6-intent-danger:hover,
.bp6-button.bp6-outlined.bp6-intent-danger:active,
.bp6-button.bp6-outlined.bp6-intent-danger.bp6-active {
  background: none;
  box-shadow: none;
  color: #ac2f33;
}
.bp6-button.bp6-outlined.bp6-intent-danger:hover {
  background: rgba(205, 66, 70, 0.15);
  color: #ac2f33;
}
.bp6-button.bp6-outlined.bp6-intent-danger:active,
.bp6-button.bp6-outlined.bp6-intent-danger.bp6-active {
  background: rgba(205, 66, 70, 0.3);
  color: #8e292c;
}
.bp6-button.bp6-outlined.bp6-intent-danger:disabled,
.bp6-button.bp6-outlined.bp6-intent-danger.bp6-disabled {
  background: none;
  color: rgba(172, 47, 51, 0.5);
}
.bp6-button.bp6-outlined.bp6-intent-danger:disabled.bp6-active,
.bp6-button.bp6-outlined.bp6-intent-danger.bp6-disabled.bp6-active {
  background: rgba(205, 66, 70, 0.3);
}
.bp6-button.bp6-outlined.bp6-intent-danger .bp6-button-spinner .bp6-spinner-head {
  stroke: #ac2f33;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger {
  color: #fa999c;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger:hover {
  background: rgba(205, 66, 70, 0.2);
  color: #fa999c;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger:active,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger.bp6-active {
  background: rgba(205, 66, 70, 0.3);
  color: #ffa1a4;
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger:disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger.bp6-disabled {
  background: none;
  color: rgba(250, 153, 156, 0.5);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger:disabled.bp6-active,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger.bp6-disabled.bp6-active {
  background: rgba(205, 66, 70, 0.3);
}
.bp6-button.bp6-outlined {
  border: 1px solid rgba(28, 33, 39, 0.2);
  box-sizing: border-box;
}
.bp6-button.bp6-outlined:disabled,
.bp6-button.bp6-outlined.bp6-disabled,
.bp6-button.bp6-outlined:disabled:hover,
.bp6-button.bp6-outlined.bp6-disabled:hover {
  border-color: rgba(95, 107, 124, 0.1);
}
.bp6-dark .bp6-button.bp6-outlined {
  border-color: rgba(255, 255, 255, 0.4);
}
.bp6-dark .bp6-button.bp6-outlined:disabled,
.bp6-dark .bp6-button.bp6-outlined:disabled:hover,
.bp6-dark .bp6-button.bp6-outlined.bp6-disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-disabled:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-button.bp6-outlined.bp6-intent-primary {
  border-color: rgba(33, 93, 176, 0.6);
}
.bp6-button.bp6-outlined.bp6-intent-primary:disabled,
.bp6-button.bp6-outlined.bp6-intent-primary.bp6-disabled {
  border-color: rgba(33, 93, 176, 0.2);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary {
  border-color: rgba(138, 187, 255, 0.6);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary:disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-primary.bp6-disabled {
  border-color: rgba(138, 187, 255, 0.2);
}
.bp6-button.bp6-outlined.bp6-intent-success {
  border-color: rgba(28, 110, 66, 0.6);
}
.bp6-button.bp6-outlined.bp6-intent-success:disabled,
.bp6-button.bp6-outlined.bp6-intent-success.bp6-disabled {
  border-color: rgba(28, 110, 66, 0.2);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success {
  border-color: rgba(114, 202, 155, 0.6);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success:disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-success.bp6-disabled {
  border-color: rgba(114, 202, 155, 0.2);
}
.bp6-button.bp6-outlined.bp6-intent-warning {
  border-color: rgba(147, 86, 16, 0.6);
}
.bp6-button.bp6-outlined.bp6-intent-warning:disabled,
.bp6-button.bp6-outlined.bp6-intent-warning.bp6-disabled {
  border-color: rgba(147, 86, 16, 0.2);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning {
  border-color: rgba(251, 179, 96, 0.6);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning:disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-warning.bp6-disabled {
  border-color: rgba(251, 179, 96, 0.2);
}
.bp6-button.bp6-outlined.bp6-intent-danger {
  border-color: rgba(172, 47, 51, 0.6);
}
.bp6-button.bp6-outlined.bp6-intent-danger:disabled,
.bp6-button.bp6-outlined.bp6-intent-danger.bp6-disabled {
  border-color: rgba(172, 47, 51, 0.2);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger {
  border-color: rgba(250, 153, 156, 0.6);
}
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger:disabled,
.bp6-dark .bp6-button.bp6-outlined.bp6-intent-danger.bp6-disabled {
  border-color: rgba(250, 153, 156, 0.2);
}
.bp6-button.bp6-intent-warning {
  background: #fbb360;
  color: #1c2127;
}
.bp6-button.bp6-intent-warning:not(.bp6-disabled).bp6-icon > svg {
  fill: rgba(28, 33, 39, 0.7);
}
.bp6-button.bp6-intent-warning:not(.bp6-disabled):not(.bp6-minimal):not(.bp6-outlined):hover {
  background: #ec9a3c;
  color: #1c2127;
}
.bp6-button.bp6-intent-warning:not(.bp6-disabled):not(.bp6-minimal):not(.bp6-outlined):active,
.bp6-button.bp6-intent-warning:not(.bp6-disabled):not(.bp6-minimal):not(.bp6-outlined).bp6-active {
  background: #c87619;
  color: #1c2127;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button.bp6-intent-warning:not(.bp6-disabled):not(.bp6-minimal):not(.bp6-outlined):active,
  .bp6-button.bp6-intent-warning:not(.bp6-disabled):not(.bp6-minimal):not(.bp6-outlined).bp6-active {
    background: highlight;
  }
}
.bp6-button.bp6-intent-warning:disabled,
.bp6-button.bp6-intent-warning.bp6-disabled {
  background: rgba(200, 118, 25, 0.5);
  color: rgba(28, 33, 39, 0.35);
}
.bp6-dark .bp6-button.bp6-intent-warning:disabled,
.bp6-dark .bp6-button.bp6-intent-warning.bp6-disabled {
  color: rgba(28, 33, 39, 0.6);
}
.bp6-button.bp6-intent-warning.bp6-minimal,
.bp6-button.bp6-intent-warning.bp6-outlined {
  background: none;
}
.bp6-dark .bp6-button.bp6-intent-warning.bp6-minimal:not(.bp6-disabled).bp6-icon > svg,
.bp6-dark .bp6-button.bp6-intent-warning.bp6-outlined:not(.bp6-disabled).bp6-icon > svg {
  fill: #fbb360;
}
a.bp6-button {
  text-align: center;
  text-decoration: none;
  transition: none;
}
a.bp6-button,
a.bp6-button:hover,
a.bp6-button:active {
  color: #1c2127;
}
a.bp6-button.bp6-disabled {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-button-text {
  flex: 0 1 auto;
}
.bp6-button.bp6-align-left .bp6-button-text,
.bp6-button.bp6-align-right .bp6-button-text,
.bp6-button-group.bp6-align-left .bp6-button-text,
.bp6-button-group.bp6-align-right .bp6-button-text {
  flex: 1 1 auto;
}
.bp6-button-group {
  display: inline-flex;
}
.bp6-button-group .bp6-button {
  flex: 0 0 auto;
  position: relative;
  z-index: 4;
}
.bp6-button-group .bp6-button:focus {
  z-index: 5;
}
.bp6-button-group .bp6-button:hover {
  z-index: 6;
}
.bp6-button-group .bp6-button:active,
.bp6-button-group .bp6-button.bp6-active {
  z-index: 7;
}
.bp6-button-group .bp6-button:disabled,
.bp6-button-group .bp6-button.bp6-disabled {
  z-index: 3;
}
.bp6-button-group .bp6-button[class*=bp6-intent-] {
  z-index: 9;
}
.bp6-button-group .bp6-button[class*=bp6-intent-]:focus {
  z-index: 10;
}
.bp6-button-group .bp6-button[class*=bp6-intent-]:hover {
  z-index: 11;
}
.bp6-button-group .bp6-button[class*=bp6-intent-]:active,
.bp6-button-group .bp6-button[class*=bp6-intent-].bp6-active {
  z-index: 12;
}
.bp6-button-group .bp6-button[class*=bp6-intent-]:disabled,
.bp6-button-group .bp6-button[class*=bp6-intent-].bp6-disabled {
  z-index: 8;
}
.bp6-button-group:not(.bp6-minimal) > .bp6-popover-wrapper:not(:first-child) .bp6-button,
.bp6-button-group:not(.bp6-minimal) > .bp6-button:not(:first-child),
.bp6-button-group.bp6-outlined > .bp6-popover-wrapper:not(:first-child) .bp6-button,
.bp6-button-group.bp6-outlined > .bp6-button:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.bp6-button-group:not(.bp6-minimal) > .bp6-popover-wrapper:not(:last-child) .bp6-button,
.bp6-button-group:not(.bp6-minimal) > .bp6-button:not(:last-child),
.bp6-button-group.bp6-outlined > .bp6-popover-wrapper:not(:last-child) .bp6-button,
.bp6-button-group.bp6-outlined > .bp6-button:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.bp6-button-group:not(.bp6-minimal):not(.bp6-outlined) > .bp6-popover-wrapper:not(:last-child) .bp6-button,
.bp6-button-group:not(.bp6-minimal):not(.bp6-outlined) > .bp6-button:not(:last-child) {
  margin-right: -1px;
}
.bp6-button-group.bp6-minimal .bp6-button,
.bp6-button-group.bp6-outlined .bp6-button {
  background: none;
  box-shadow: none;
}
.bp6-button-group.bp6-minimal .bp6-button:hover,
.bp6-button-group.bp6-outlined .bp6-button:hover {
  background: rgba(143, 153, 168, 0.15);
  box-shadow: none;
  color: #1c2127;
  text-decoration: none;
}
.bp6-button-group.bp6-minimal .bp6-button:active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button:active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-active {
  background: rgba(143, 153, 168, 0.3);
  box-shadow: none;
  color: #1c2127;
}
.bp6-button-group.bp6-minimal .bp6-button:disabled,
.bp6-button-group.bp6-minimal .bp6-button:disabled:hover,
.bp6-button-group.bp6-minimal .bp6-button.bp6-disabled,
.bp6-button-group.bp6-minimal .bp6-button.bp6-disabled:hover,
.bp6-button-group.bp6-outlined .bp6-button:disabled,
.bp6-button-group.bp6-outlined .bp6-button:disabled:hover,
.bp6-button-group.bp6-outlined .bp6-button.bp6-disabled,
.bp6-button-group.bp6-outlined .bp6-button.bp6-disabled:hover {
  background: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-button-group.bp6-minimal .bp6-button:disabled.bp6-active,
.bp6-button-group.bp6-minimal .bp6-button:disabled:hover.bp6-active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-disabled.bp6-active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-disabled:hover.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button:disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button:disabled:hover.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-disabled:hover.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button {
  background: none;
  box-shadow: none;
  color: #ffffff;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button:hover,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button:active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button:hover,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button:active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-active {
  background: none;
  box-shadow: none;
  color: #ffffff;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button:hover,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button:hover {
  background: rgba(143, 153, 168, 0.15);
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button:active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button:active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button:disabled,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button:disabled:hover,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-disabled,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-disabled:hover,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button:disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button:disabled:hover,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-disabled:hover {
  background: none;
  color: rgba(171, 179, 191, 0.6);
  cursor: not-allowed;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button:disabled:hover.bp6-active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-disabled:hover.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button:disabled:hover.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-disabled:hover.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary {
  color: #215db0;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:hover,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:hover,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary.bp6-active {
  background: none;
  box-shadow: none;
  color: #215db0;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:hover,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:hover {
  background: rgba(45, 114, 210, 0.15);
  color: #215db0;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary.bp6-active {
  background: rgba(45, 114, 210, 0.3);
  color: #184a90;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:disabled,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary.bp6-disabled,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:disabled,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary.bp6-disabled {
  background: none;
  color: rgba(33, 93, 176, 0.5);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:disabled.bp6-active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary.bp6-disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary.bp6-disabled.bp6-active {
  background: rgba(45, 114, 210, 0.3);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary .bp6-button-spinner .bp6-spinner-head,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary .bp6-button-spinner .bp6-spinner-head {
  stroke: #215db0;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary {
  color: #8abbff;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:hover,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:hover {
  background: rgba(45, 114, 210, 0.2);
  color: #8abbff;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary.bp6-active {
  background: rgba(45, 114, 210, 0.3);
  color: #99c4ff;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:disabled,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary.bp6-disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary.bp6-disabled {
  background: none;
  color: rgba(138, 187, 255, 0.5);
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-primary.bp6-disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-primary.bp6-disabled.bp6-active {
  background: rgba(45, 114, 210, 0.3);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success {
  color: #1c6e42;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:hover,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:hover,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success.bp6-active {
  background: none;
  box-shadow: none;
  color: #1c6e42;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:hover,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:hover {
  background: rgba(35, 133, 81, 0.15);
  color: #1c6e42;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success.bp6-active {
  background: rgba(35, 133, 81, 0.3);
  color: #165a36;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:disabled,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success.bp6-disabled,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:disabled,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success.bp6-disabled {
  background: none;
  color: rgba(28, 110, 66, 0.5);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:disabled.bp6-active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success.bp6-disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success.bp6-disabled.bp6-active {
  background: rgba(35, 133, 81, 0.3);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success .bp6-button-spinner .bp6-spinner-head,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success .bp6-button-spinner .bp6-spinner-head {
  stroke: #1c6e42;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success {
  color: #72ca9b;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:hover,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:hover {
  background: rgba(35, 133, 81, 0.2);
  color: #72ca9b;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success.bp6-active {
  background: rgba(35, 133, 81, 0.3);
  color: #7cd7a2;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:disabled,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success.bp6-disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success.bp6-disabled {
  background: none;
  color: rgba(114, 202, 155, 0.5);
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-success.bp6-disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-success.bp6-disabled.bp6-active {
  background: rgba(35, 133, 81, 0.3);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning {
  color: #935610;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:hover,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:hover,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning.bp6-active {
  background: none;
  box-shadow: none;
  color: #935610;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:hover,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:hover {
  background: rgba(200, 118, 25, 0.15);
  color: #935610;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning.bp6-active {
  background: rgba(200, 118, 25, 0.3);
  color: #77450d;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:disabled,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning.bp6-disabled,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:disabled,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning.bp6-disabled {
  background: none;
  color: rgba(147, 86, 16, 0.5);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:disabled.bp6-active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning.bp6-disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning.bp6-disabled.bp6-active {
  background: rgba(200, 118, 25, 0.3);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning .bp6-button-spinner .bp6-spinner-head,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning .bp6-button-spinner .bp6-spinner-head {
  stroke: #935610;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning {
  color: #fbb360;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:hover,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:hover {
  background: rgba(200, 118, 25, 0.2);
  color: #fbb360;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning.bp6-active {
  background: rgba(200, 118, 25, 0.3);
  color: #f5c186;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:disabled,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning.bp6-disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning.bp6-disabled {
  background: none;
  color: rgba(251, 179, 96, 0.5);
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-warning.bp6-disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-warning.bp6-disabled.bp6-active {
  background: rgba(200, 118, 25, 0.3);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger {
  color: #ac2f33;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:hover,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:hover,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger.bp6-active {
  background: none;
  box-shadow: none;
  color: #ac2f33;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:hover,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:hover {
  background: rgba(205, 66, 70, 0.15);
  color: #ac2f33;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger.bp6-active {
  background: rgba(205, 66, 70, 0.3);
  color: #8e292c;
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:disabled,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger.bp6-disabled,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:disabled,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger.bp6-disabled {
  background: none;
  color: rgba(172, 47, 51, 0.5);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:disabled.bp6-active,
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger.bp6-disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:disabled.bp6-active,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger.bp6-disabled.bp6-active {
  background: rgba(205, 66, 70, 0.3);
}
.bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger .bp6-button-spinner .bp6-spinner-head,
.bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger .bp6-button-spinner .bp6-spinner-head {
  stroke: #ac2f33;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger {
  color: #fa999c;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:hover,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:hover {
  background: rgba(205, 66, 70, 0.2);
  color: #fa999c;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger.bp6-active {
  background: rgba(205, 66, 70, 0.3);
  color: #ffa1a4;
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:disabled,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger.bp6-disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:disabled,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger.bp6-disabled {
  background: none;
  color: rgba(250, 153, 156, 0.5);
}
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-minimal .bp6-button.bp6-intent-danger.bp6-disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger:disabled.bp6-active,
.bp6-dark .bp6-button-group.bp6-outlined .bp6-button.bp6-intent-danger.bp6-disabled.bp6-active {
  background: rgba(205, 66, 70, 0.3);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-button-group.bp6-minimal:not(:first-child),
  .bp6-button-group.bp6-outlined:not(:first-child) {
    border-bottom-left-radius: 0;
    border-left: none;
    border-top-left-radius: 0;
  }
  .bp6-button-group.bp6-minimal:not(:last-child),
  .bp6-button-group.bp6-outlined:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: -1px;
  }
}
.bp6-button-group.bp6-outlined > .bp6-button {
  border: 1px solid rgba(28, 33, 39, 0.2);
  box-sizing: border-box;
}
.bp6-button-group.bp6-outlined > .bp6-button:disabled,
.bp6-button-group.bp6-outlined > .bp6-button.bp6-disabled,
.bp6-button-group.bp6-outlined > .bp6-button:disabled:hover,
.bp6-button-group.bp6-outlined > .bp6-button.bp6-disabled:hover {
  border-color: rgba(95, 107, 124, 0.1);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button {
  border-color: rgba(255, 255, 255, 0.4);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button:disabled,
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button:disabled:hover,
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-disabled,
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-disabled:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-primary {
  border-color: rgba(33, 93, 176, 0.6);
}
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-primary:disabled,
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-primary.bp6-disabled {
  border-color: rgba(33, 93, 176, 0.2);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-primary {
  border-color: rgba(138, 187, 255, 0.6);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-primary:disabled,
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-primary.bp6-disabled {
  border-color: rgba(138, 187, 255, 0.2);
}
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-success {
  border-color: rgba(28, 110, 66, 0.6);
}
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-success:disabled,
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-success.bp6-disabled {
  border-color: rgba(28, 110, 66, 0.2);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-success {
  border-color: rgba(114, 202, 155, 0.6);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-success:disabled,
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-success.bp6-disabled {
  border-color: rgba(114, 202, 155, 0.2);
}
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-warning {
  border-color: rgba(147, 86, 16, 0.6);
}
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-warning:disabled,
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-warning.bp6-disabled {
  border-color: rgba(147, 86, 16, 0.2);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-warning {
  border-color: rgba(251, 179, 96, 0.6);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-warning:disabled,
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-warning.bp6-disabled {
  border-color: rgba(251, 179, 96, 0.2);
}
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-danger {
  border-color: rgba(172, 47, 51, 0.6);
}
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-danger:disabled,
.bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-danger.bp6-disabled {
  border-color: rgba(172, 47, 51, 0.2);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-danger {
  border-color: rgba(250, 153, 156, 0.6);
}
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-danger:disabled,
.bp6-dark .bp6-button-group.bp6-outlined > .bp6-button.bp6-intent-danger.bp6-disabled {
  border-color: rgba(250, 153, 156, 0.2);
}
.bp6-button-group.bp6-outlined:not(.bp6-vertical) > .bp6-button:not(:last-child) {
  border-right: none;
}
.bp6-button-group .bp6-popover-wrapper,
.bp6-button-group .bp6-popover-target {
  display: flex;
  flex: 1 1 auto;
}
.bp6-button-group.bp6-fill {
  display: flex;
  width: 100%;
}
.bp6-button-group .bp6-button.bp6-fill,
.bp6-button-group.bp6-fill .bp6-button:not(.bp6-fixed) {
  flex: 1 1 auto;
}
.bp6-button-group.bp6-vertical {
  align-items: stretch;
  flex-direction: column;
  vertical-align: top;
}
.bp6-button-group.bp6-vertical.bp6-fill {
  height: 100%;
  width: unset;
}
.bp6-button-group.bp6-vertical .bp6-button {
  margin-right: 0 !important;
  width: 100%;
}
.bp6-button-group.bp6-vertical:not(.bp6-minimal) > .bp6-popover-wrapper:first-child .bp6-button,
.bp6-button-group.bp6-vertical:not(.bp6-minimal) > .bp6-button:first-child,
.bp6-button-group.bp6-vertical.bp6-outlined > .bp6-popover-wrapper:first-child .bp6-button,
.bp6-button-group.bp6-vertical.bp6-outlined > .bp6-button:first-child {
  border-radius: 2px 2px 0 0;
}
.bp6-button-group.bp6-vertical:not(.bp6-minimal) > .bp6-popover-wrapper:last-child .bp6-button,
.bp6-button-group.bp6-vertical:not(.bp6-minimal) > .bp6-button:last-child,
.bp6-button-group.bp6-vertical.bp6-outlined > .bp6-popover-wrapper:last-child .bp6-button,
.bp6-button-group.bp6-vertical.bp6-outlined > .bp6-button:last-child {
  border-radius: 0 0 2px 2px;
}
.bp6-button-group.bp6-vertical:not(.bp6-minimal):not(.bp6-outlined) > .bp6-popover-wrapper:not(:last-child) .bp6-button,
.bp6-button-group.bp6-vertical:not(.bp6-minimal):not(.bp6-outlined) > .bp6-button:not(:last-child) {
  margin-bottom: -1px;
}
.bp6-button-group.bp6-vertical.bp6-outlined > .bp6-button:not(:last-child) {
  border-bottom: none;
}
.bp6-button-group.bp6-align-left .bp6-button {
  text-align: left;
}
.bp6-callout {
  font-size: 14px;
  line-height: 1.5;
  border-radius: 2px;
  padding: 16px;
  position: relative;
  width: 100%;
}
.bp6-callout:not(.bp6-minimal) {
  background-color: rgba(143, 153, 168, 0.15);
}
.bp6-callout[class*=bp6-icon-] {
  padding-left: 40px;
}
.bp6-callout[class*=bp6-icon-]::before {
  font-family: "blueprint-icons-16", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 16px;
  line-height: 1;
  width: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #5f6b7c;
  left: 16px;
  position: absolute;
  top: 18px;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-callout {
    border: 1px solid buttonborder;
  }
}
.bp6-callout.bp6-callout-icon {
  padding-left: 40px;
}
.bp6-callout.bp6-callout-icon > .bp6-icon:first-child {
  color: #5f6b7c;
  left: 16px;
  position: absolute;
  top: 18px;
}
.bp6-callout .bp6-heading {
  line-height: 16px;
  margin-bottom: 0;
  margin-top: 2px;
}
.bp6-callout.bp6-callout-has-body-content .bp6-heading {
  margin-bottom: 4px;
}
.bp6-callout.bp6-compact {
  padding: 8px;
}
.bp6-callout.bp6-compact.bp6-callout-icon {
  padding-left: 32px;
}
.bp6-callout.bp6-compact.bp6-callout-icon > .bp6-icon:first-child {
  left: 8px;
  top: 10px;
}
.bp6-dark .bp6-callout:not(.bp6-minimal) {
  background-color: rgba(143, 153, 168, 0.2);
}
.bp6-dark .bp6-callout[class*=bp6-icon-]::before,
.bp6-dark .bp6-callout.bp6-callout-icon > .bp6-icon:first-child {
  color: #abb3bf;
}
.bp6-callout.bp6-intent-primary {
  color: #215db0;
}
.bp6-callout.bp6-intent-primary:not(.bp6-minimal) {
  background-color: rgba(45, 114, 210, 0.1);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-callout.bp6-intent-primary {
    border: 1px solid buttonborder;
  }
}
.bp6-callout.bp6-intent-primary[class*=bp6-icon-]::before,
.bp6-callout.bp6-intent-primary > .bp6-icon:first-child,
.bp6-callout.bp6-intent-primary .bp6-heading {
  color: #215db0;
}
.bp6-dark .bp6-callout.bp6-intent-primary {
  color: #8abbff;
}
.bp6-dark .bp6-callout.bp6-intent-primary:not(.bp6-minimal) {
  background-color: rgba(45, 114, 210, 0.2);
}
.bp6-dark .bp6-callout.bp6-intent-primary[class*=bp6-icon-]::before,
.bp6-dark .bp6-callout.bp6-intent-primary > .bp6-icon:first-child,
.bp6-dark .bp6-callout.bp6-intent-primary .bp6-heading {
  color: #8abbff;
}
.bp6-callout.bp6-intent-success {
  color: #1c6e42;
}
.bp6-callout.bp6-intent-success:not(.bp6-minimal) {
  background-color: rgba(35, 133, 81, 0.1);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-callout.bp6-intent-success {
    border: 1px solid buttonborder;
  }
}
.bp6-callout.bp6-intent-success[class*=bp6-icon-]::before,
.bp6-callout.bp6-intent-success > .bp6-icon:first-child,
.bp6-callout.bp6-intent-success .bp6-heading {
  color: #1c6e42;
}
.bp6-dark .bp6-callout.bp6-intent-success {
  color: #72ca9b;
}
.bp6-dark .bp6-callout.bp6-intent-success:not(.bp6-minimal) {
  background-color: rgba(35, 133, 81, 0.2);
}
.bp6-dark .bp6-callout.bp6-intent-success[class*=bp6-icon-]::before,
.bp6-dark .bp6-callout.bp6-intent-success > .bp6-icon:first-child,
.bp6-dark .bp6-callout.bp6-intent-success .bp6-heading {
  color: #72ca9b;
}
.bp6-callout.bp6-intent-warning {
  color: #935610;
}
.bp6-callout.bp6-intent-warning:not(.bp6-minimal) {
  background-color: rgba(200, 118, 25, 0.1);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-callout.bp6-intent-warning {
    border: 1px solid buttonborder;
  }
}
.bp6-callout.bp6-intent-warning[class*=bp6-icon-]::before,
.bp6-callout.bp6-intent-warning > .bp6-icon:first-child,
.bp6-callout.bp6-intent-warning .bp6-heading {
  color: #935610;
}
.bp6-dark .bp6-callout.bp6-intent-warning {
  color: #fbb360;
}
.bp6-dark .bp6-callout.bp6-intent-warning:not(.bp6-minimal) {
  background-color: rgba(200, 118, 25, 0.2);
}
.bp6-dark .bp6-callout.bp6-intent-warning[class*=bp6-icon-]::before,
.bp6-dark .bp6-callout.bp6-intent-warning > .bp6-icon:first-child,
.bp6-dark .bp6-callout.bp6-intent-warning .bp6-heading {
  color: #fbb360;
}
.bp6-callout.bp6-intent-danger {
  color: #ac2f33;
}
.bp6-callout.bp6-intent-danger:not(.bp6-minimal) {
  background-color: rgba(205, 66, 70, 0.1);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-callout.bp6-intent-danger {
    border: 1px solid buttonborder;
  }
}
.bp6-callout.bp6-intent-danger[class*=bp6-icon-]::before,
.bp6-callout.bp6-intent-danger > .bp6-icon:first-child,
.bp6-callout.bp6-intent-danger .bp6-heading {
  color: #ac2f33;
}
.bp6-dark .bp6-callout.bp6-intent-danger {
  color: #fa999c;
}
.bp6-dark .bp6-callout.bp6-intent-danger:not(.bp6-minimal) {
  background-color: rgba(205, 66, 70, 0.2);
}
.bp6-dark .bp6-callout.bp6-intent-danger[class*=bp6-icon-]::before,
.bp6-dark .bp6-callout.bp6-intent-danger > .bp6-icon:first-child,
.bp6-dark .bp6-callout.bp6-intent-danger .bp6-heading {
  color: #fa999c;
}
.bp6-callout.bp6-intent-primary a {
  text-decoration: underline;
}
.bp6-callout.bp6-intent-primary a:hover {
  color: #184a90;
}
.bp6-dark .bp6-callout.bp6-intent-primary a:hover {
  color: #99c4ff;
}
.bp6-running-text .bp6-callout {
  margin: 20px 0;
}
.bp6-card {
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.15);
  padding: 20px;
  transition: transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-card.bp6-dark,
.bp6-dark .bp6-card {
  background-color: #252a31;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-card {
    border: 1px solid buttonborder;
    box-shadow: none;
  }
}
.bp6-elevation-0 {
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.15);
}
.bp6-elevation-0.bp6-dark,
.bp6-dark .bp6-elevation-0 {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-elevation-0 {
    border: 1px solid buttonborder;
  }
}
.bp6-elevation-1 {
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.1), 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-elevation-1.bp6-dark,
.bp6-dark .bp6-elevation-1 {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px 0 rgba(17, 20, 24, 0.4);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-elevation-1 {
    border: 1px solid buttonborder;
  }
}
.bp6-elevation-2 {
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 1px 1px rgba(17, 20, 24, 0.2),
    0 2px 6px rgba(17, 20, 24, 0.2);
}
.bp6-elevation-2.bp6-dark,
.bp6-dark .bp6-elevation-2 {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 1px 1px rgba(17, 20, 24, 0.4),
    0 2px 6px rgba(17, 20, 24, 0.4);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-elevation-2 {
    border: 1px solid buttonborder;
  }
}
.bp6-elevation-3 {
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
}
.bp6-elevation-3.bp6-dark,
.bp6-dark .bp6-elevation-3 {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(17, 20, 24, 0.4),
    0 8px 24px rgba(17, 20, 24, 0.4);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-elevation-3 {
    border: 1px solid buttonborder;
  }
}
.bp6-elevation-4 {
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 4px 8px rgba(17, 20, 24, 0.2),
    0 18px 46px 6px rgba(17, 20, 24, 0.2);
}
.bp6-elevation-4.bp6-dark,
.bp6-dark .bp6-elevation-4 {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 4px 8px rgba(17, 20, 24, 0.4),
    0 18px 46px 6px rgba(17, 20, 24, 0.4);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-elevation-4 {
    border: 1px solid buttonborder;
  }
}
.bp6-card.bp6-compact {
  padding: 16px;
}
.bp6-card.bp6-interactive:hover {
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
  cursor: pointer;
}
.bp6-card.bp6-interactive:hover.bp6-dark,
.bp6-dark .bp6-card.bp6-interactive:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(17, 20, 24, 0.4),
    0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp6-card.bp6-interactive.bp6-selected {
  box-shadow: 0 0 0 3px rgba(76, 144, 240, 0.2), 0 0 0 1px #4c90f0;
}
.bp6-card.bp6-interactive.bp6-selected.bp6-dark,
.bp6-dark .bp6-card.bp6-interactive.bp6-selected {
  box-shadow: 0 0 0 3px rgba(138, 187, 255, 0.4), 0 0 0 1px #8abbff;
}
.bp6-card.bp6-interactive:active {
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.1), 0 1px 1px rgba(17, 20, 24, 0.2);
  transition-duration: 0;
}
.bp6-card.bp6-interactive:active.bp6-dark,
.bp6-dark .bp6-card.bp6-interactive:active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px 0 rgba(17, 20, 24, 0.4);
}
.bp6-card-list {
  overflow: auto;
  padding: 0;
  width: 100%;
}
.bp6-card-list > .bp6-card {
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  min-height: 47px;
  padding: 8px 20px;
}
.bp6-card-list > .bp6-card.bp6-interactive:hover,
.bp6-card-list > .bp6-card.bp6-interactive:active {
  background-color: #f6f7f9;
  box-shadow: none;
}
.bp6-dark .bp6-card-list > .bp6-card.bp6-interactive:hover,
.bp6-dark .bp6-card-list > .bp6-card.bp6-interactive:active {
  background-color: #2f343c;
}
.bp6-card-list > .bp6-card.bp6-selected {
  background-color: #edeff2;
  box-shadow: none;
}
.bp6-dark .bp6-card-list > .bp6-card.bp6-selected {
  background-color: #383e47;
  box-shadow: none;
}
.bp6-card-list > .bp6-card:not(:last-child) {
  border-bottom: 1px solid rgba(17, 20, 24, 0.1);
}
.bp6-dark .bp6-card-list > .bp6-card:not(:last-child) {
  border-color: rgba(255, 255, 255, 0.1);
}
.bp6-card-list.bp6-compact {
  padding: 0;
}
.bp6-card-list.bp6-compact > .bp6-card {
  min-height: 47px;
  padding: 8px 16px;
}
.bp6-dark .bp6-card-list {
  padding: 1px;
}
.bp6-card-list:not(.bp6-card-list-bordered) {
  border-radius: 0;
  box-shadow: none;
}
.bp6-dark .bp6-card-list:not(.bp6-card-list-bordered) {
  margin: 1px;
  width: calc(100% - 2px);
}
.bp6-collapse {
  height: 0;
  overflow-y: hidden;
  transition: height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-collapse .bp6-collapse-body {
  transition: transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-collapse .bp6-collapse-body[aria-hidden=true] {
  display: none;
}
.bp6-context-menu-virtual-target {
  position: fixed;
}
.bp6-card.bp6-control-card,
.bp6-card-list > .bp6-card.bp6-control-card {
  min-height: auto;
  padding: 0;
}
.bp6-control-card .bp6-control.bp6-control.bp6-control {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 20px;
  width: 100%;
}
.bp6-control-card .bp6-control.bp6-control.bp6-control.bp6-align-left {
  flex-direction: row;
  justify-content: flex-start;
}
.bp6-control-card .bp6-control.bp6-control.bp6-control.bp6-align-right {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.bp6-card-list .bp6-control-card .bp6-control.bp6-control.bp6-control {
  padding: 20px;
}
.bp6-card-list.bp6-compact .bp6-control-card .bp6-control.bp6-control.bp6-control {
  padding: 16px;
}
.bp6-control-card .bp6-control.bp6-control.bp6-control .bp6-control-indicator {
  margin: 0;
}
.bp6-control-card.bp6-compact .bp6-control.bp6-control.bp6-control {
  padding: 16px;
}
.bp6-divider {
  border-bottom: 1px solid rgba(17, 20, 24, 0.15);
  border-right: 1px solid rgba(17, 20, 24, 0.15);
  margin: 4px;
}
.bp6-dark .bp6-divider {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-divider.bp6-compact {
  margin: 0;
}
.bp6-dialog-container {
  opacity: 1;
  transform: scale(1);
}
.bp6-dialog-container.bp6-overlay-enter > .bp6-dialog,
.bp6-dialog-container.bp6-overlay-appear > .bp6-dialog {
  opacity: 0;
  transform: scale(0.5);
}
.bp6-dialog-container.bp6-overlay-enter-active > .bp6-dialog,
.bp6-dialog-container.bp6-overlay-appear-active > .bp6-dialog {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0;
  transition-duration: 300ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11);
}
.bp6-dialog-container.bp6-overlay-exit > .bp6-dialog {
  opacity: 1;
  transform: scale(1);
}
.bp6-dialog-container.bp6-overlay-exit-active > .bp6-dialog {
  opacity: 0;
  transform: scale(0.5);
  transition-delay: 0;
  transition-duration: 300ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11);
}
.bp6-dialog-container {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.bp6-dialog {
  background: #f6f7f9;
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
  display: flex;
  flex-direction: column;
  margin: 32px 0;
  pointer-events: all;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  width: 500px;
}
.bp6-dialog:focus {
  outline: 0;
}
.bp6-dialog.bp6-dark,
.bp6-dark .bp6-dialog {
  background: #1c2127;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(17, 20, 24, 0.4),
    0 8px 24px rgba(17, 20, 24, 0.4);
  color: #f6f7f9;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dialog {
    border: 1px solid buttonborder;
  }
}
.bp6-dialog-header {
  align-items: center;
  background: #ffffff;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 1px 0 rgba(17, 20, 24, 0.15);
  display: flex;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 4px;
  padding-left: 16px;
  z-index: 0;
}
.bp6-dialog-header .bp6-icon-large,
.bp6-dialog-header .bp6-icon {
  flex: 0 0 auto;
  margin-left: -4px;
  margin-right: 8px;
}
.bp6-dialog-header .bp6-icon-large:not([class*=bp6-intent]),
.bp6-dialog-header .bp6-icon:not([class*=bp6-intent]) {
  color: #5f6b7c;
}
.bp6-dialog-header .bp6-heading {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  flex: 1 1 auto;
  font-size: 14px;
  line-height: inherit;
  margin: 0;
}
.bp6-dialog-header .bp6-heading:last-child {
  margin-right: 16px;
}
.bp6-dark .bp6-dialog-header {
  background: #2f343c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.bp6-dark .bp6-dialog-header :not([class*=bp6-intent]).bp6-icon-large,
.bp6-dark .bp6-dialog-header :not([class*=bp6-intent]).bp6-icon {
  color: #abb3bf;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dialog-header {
    border-bottom: 1px solid buttonborder;
  }
}
.bp6-dialog-body {
  flex: 1 1 auto;
  margin: 16px;
}
.bp6-dialog-body-scroll-container {
  margin: 0;
  max-height: 70vh;
  overflow: auto;
  padding: 16px;
}
.bp6-dialog-footer {
  flex: 0 0 auto;
  margin: 16px;
}
.bp6-dialog-footer-fixed {
  align-items: center;
  background-color: #ffffff;
  border-radius: 0 0 4px 4px;
  border-top: 1px solid rgba(17, 20, 24, 0.15);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0;
  padding: 8px 8px 8px 16px;
}
.bp6-dark .bp6-dialog-footer-fixed {
  background: #383e47;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.bp6-dialog-footer-main-section {
  flex: 1 1 auto;
}
.bp6-dialog-footer-actions {
  display: flex;
  justify-content: flex-end;
}
.bp6-dialog-footer-actions .bp6-button {
  margin-left: 8px;
}
.bp6-multistep-dialog-panels {
  display: flex;
}
.bp6-multistep-dialog-panels:first-child .bp6-dialog-step-container:first-child {
  border-radius: 4px 0 0 0;
}
.bp6-multistep-dialog-panels:first-child .bp6-multistep-dialog-right-panel {
  border-top-right-radius: 4px;
}
.bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels {
  flex-direction: column;
}
.bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels:first-child .bp6-dialog-step-container:first-child {
  border-radius: 4px 0 0 0;
}
.bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels:first-child .bp6-dialog-step-container:last-child {
  border-radius: 0 4px 0 0;
}
.bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels .bp6-multistep-dialog-left-panel {
  flex-direction: row;
}
.bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels .bp6-dialog-step-container {
  flex-grow: 1;
}
.bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels .bp6-dialog-step-container:not(:first-child) {
  border-left: 1px solid rgba(17, 20, 24, 0.15);
}
.bp6-dark .bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels .bp6-dialog-step-container {
  border-color: rgba(17, 20, 24, 0.4);
}
.bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels .bp6-multistep-dialog-right-panel {
  border-left: none;
}
.bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels .bp6-multistep-dialog-right-panel,
.bp6-multistep-dialog-nav-top .bp6-multistep-dialog-panels .bp6-multistep-dialog-footer {
  border-radius: 0 0 4px 4px;
}
.bp6-multistep-dialog-nav-right .bp6-multistep-dialog-panels {
  flex-direction: row-reverse;
}
.bp6-multistep-dialog-nav-right .bp6-multistep-dialog-panels:first-child .bp6-multistep-dialog-right-panel {
  border-radius: 4px 0 0 4px;
}
.bp6-multistep-dialog-nav-right .bp6-multistep-dialog-panels:first-child .bp6-dialog-step-container:first-child {
  border-radius: 0 4px 0 0;
}
.bp6-multistep-dialog-nav-right .bp6-multistep-dialog-panels .bp6-multistep-dialog-left-panel {
  border-radius: 0 0 4px;
}
.bp6-multistep-dialog-nav-right .bp6-multistep-dialog-panels .bp6-multistep-dialog-right-panel {
  border-left: none;
  border-radius: 4px 0 0 4px;
  border-right: 1px solid rgba(17, 20, 24, 0.15);
}
.bp6-dark .bp6-multistep-dialog-nav-right .bp6-multistep-dialog-panels .bp6-multistep-dialog-right-panel {
  border-color: rgba(17, 20, 24, 0.4);
}
.bp6-multistep-dialog-nav-right .bp6-multistep-dialog-panels .bp6-dialog-footer {
  border-bottom-left-radius: 0;
}
.bp6-multistep-dialog-left-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.bp6-dark .bp6-multistep-dialog-left-panel {
  background: #252a31;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom-left-radius: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.bp6-multistep-dialog-right-panel {
  background-color: #f6f7f9;
  border-left: 1px solid rgba(17, 20, 24, 0.15);
  border-radius: 0 0 4px;
  flex: 3;
  min-width: 0;
}
.bp6-dark .bp6-multistep-dialog-right-panel {
  background-color: #2f343c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom-right-radius: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.bp6-dialog-step-container {
  background-color: #f6f7f9;
  border-bottom: 1px solid rgba(17, 20, 24, 0.15);
}
.bp6-dark .bp6-dialog-step-container {
  background: #2f343c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.bp6-dialog-step-container.bp6-dialog-step-viewed {
  background-color: #ffffff;
}
.bp6-dark .bp6-dialog-step-container.bp6-dialog-step-viewed {
  background: #383e47;
}
.bp6-dialog-step {
  align-items: center;
  border-radius: 4px;
  cursor: not-allowed;
  display: flex;
  margin: 4px;
  padding: 6px 14px;
}
.bp6-dark .bp6-dialog-step {
  background: #2f343c;
}
.bp6-dialog-step-viewed .bp6-dialog-step {
  background-color: #ffffff;
  cursor: pointer;
}
.bp6-dark .bp6-dialog-step-viewed .bp6-dialog-step {
  background: #383e47;
}
.bp6-dialog-step:hover {
  background-color: #f6f7f9;
}
.bp6-dark .bp6-dialog-step:hover {
  background: #2f343c;
}
.bp6-dialog-step-icon {
  align-items: center;
  background-color: rgba(95, 107, 124, 0.6);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.bp6-dark .bp6-dialog-step-icon {
  background-color: rgba(171, 179, 191, 0.6);
}
.bp6-active.bp6-dialog-step-viewed .bp6-dialog-step-icon {
  background-color: #2d72d2;
}
.bp6-dialog-step-viewed .bp6-dialog-step-icon {
  background-color: #8f99a8;
}
.bp6-dialog-step-title {
  color: rgba(95, 107, 124, 0.6);
  flex: 1;
  padding-left: 8px;
}
.bp6-dark .bp6-dialog-step-title {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-active.bp6-dialog-step-viewed .bp6-dialog-step-title {
  color: #2d72d2;
}
.bp6-dark .bp6-active.bp6-dialog-step-viewed .bp6-dialog-step-title {
  color: #8abbff;
}
.bp6-dialog-step-viewed:not(.bp6-active) .bp6-dialog-step-title {
  color: #1c2127;
}
.bp6-dark .bp6-dialog-step-viewed:not(.bp6-active) .bp6-dialog-step-title {
  color: #f6f7f9;
}
.bp6-drawer {
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 4px 8px rgba(17, 20, 24, 0.2),
    0 18px 46px 6px rgba(17, 20, 24, 0.2);
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.bp6-drawer:focus {
  outline: 0;
}
.bp6-drawer.bp6-position-top.bp6-overlay-enter,
.bp6-drawer.bp6-position-top.bp6-overlay-appear {
  transform: translateY(-100%);
}
.bp6-drawer.bp6-position-top.bp6-overlay-enter-active,
.bp6-drawer.bp6-position-top.bp6-overlay-appear-active {
  transform: translateY(0);
  transition-delay: 0;
  transition-duration: 200ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-drawer.bp6-position-top.bp6-overlay-exit {
  transform: translateY(0);
}
.bp6-drawer.bp6-position-top.bp6-overlay-exit-active {
  transform: translateY(-100%);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-drawer.bp6-position-top {
  height: 50%;
  left: 0;
  right: 0;
  top: 0;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-drawer.bp6-position-top {
    border-bottom: 1px solid buttonborder;
  }
}
.bp6-drawer.bp6-position-bottom.bp6-overlay-enter,
.bp6-drawer.bp6-position-bottom.bp6-overlay-appear {
  transform: translateY(100%);
}
.bp6-drawer.bp6-position-bottom.bp6-overlay-enter-active,
.bp6-drawer.bp6-position-bottom.bp6-overlay-appear-active {
  transform: translateY(0);
  transition-delay: 0;
  transition-duration: 200ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-drawer.bp6-position-bottom.bp6-overlay-exit {
  transform: translateY(0);
}
.bp6-drawer.bp6-position-bottom.bp6-overlay-exit-active {
  transform: translateY(100%);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-drawer.bp6-position-bottom {
  bottom: 0;
  height: 50%;
  left: 0;
  right: 0;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-drawer.bp6-position-bottom {
    border-top: 1px solid buttonborder;
  }
}
.bp6-drawer.bp6-position-left.bp6-overlay-enter,
.bp6-drawer.bp6-position-left.bp6-overlay-appear {
  transform: translateX(-100%);
}
.bp6-drawer.bp6-position-left.bp6-overlay-enter-active,
.bp6-drawer.bp6-position-left.bp6-overlay-appear-active {
  transform: translateX(0);
  transition-delay: 0;
  transition-duration: 200ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-drawer.bp6-position-left.bp6-overlay-exit {
  transform: translateX(0);
}
.bp6-drawer.bp6-position-left.bp6-overlay-exit-active {
  transform: translateX(-100%);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-drawer.bp6-position-left {
  bottom: 0;
  left: 0;
  top: 0;
  width: 50%;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-drawer.bp6-position-left {
    border-right: 1px solid buttonborder;
  }
}
.bp6-drawer.bp6-position-right.bp6-overlay-enter,
.bp6-drawer.bp6-position-right.bp6-overlay-appear {
  transform: translateX(100%);
}
.bp6-drawer.bp6-position-right.bp6-overlay-enter-active,
.bp6-drawer.bp6-position-right.bp6-overlay-appear-active {
  transform: translateX(0);
  transition-delay: 0;
  transition-duration: 200ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-drawer.bp6-position-right.bp6-overlay-exit {
  transform: translateX(0);
}
.bp6-drawer.bp6-position-right.bp6-overlay-exit-active {
  transform: translateX(100%);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-drawer.bp6-position-right {
  bottom: 0;
  right: 0;
  top: 0;
  width: 50%;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-drawer.bp6-position-right {
    border-left: 1px solid buttonborder;
  }
}
.bp6-drawer.bp6-dark,
.bp6-dark .bp6-drawer {
  background: #2f343c;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(17, 20, 24, 0.4),
    0 8px 24px rgba(17, 20, 24, 0.4);
  color: #f6f7f9;
}
.bp6-drawer-header {
  align-items: center;
  border-radius: 0;
  box-shadow: 0 1px 0 rgba(17, 20, 24, 0.15);
  display: flex;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 5px;
  padding-left: 20px;
  position: relative;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-drawer-header {
    border-bottom: 1px solid buttonborder;
  }
}
.bp6-drawer-header .bp6-icon-large,
.bp6-drawer-header .bp6-icon {
  color: #5f6b7c;
  flex: 0 0 auto;
  margin-right: 10px;
}
.bp6-drawer-header .bp6-heading {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  flex: 1 1 auto;
  line-height: inherit;
  margin: 0;
}
.bp6-drawer-header .bp6-heading:last-child {
  margin-right: 20px;
}
.bp6-dark .bp6-drawer-header {
  box-shadow: 0 1px 0 rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-drawer-header .bp6-icon-large,
.bp6-dark .bp6-drawer-header .bp6-icon {
  color: #abb3bf;
}
.bp6-drawer-body {
  flex: 1 1 auto;
  line-height: 18px;
  overflow: auto;
}
.bp6-drawer-footer {
  box-shadow: inset 0 1px 0 rgba(17, 20, 24, 0.15);
  flex: 0 0 auto;
  padding: 10px 20px;
  position: relative;
}
.bp6-dark .bp6-drawer-footer {
  box-shadow: inset 0 1px 0 rgba(17, 20, 24, 0.4);
}
.bp6-editable-text {
  cursor: text;
  display: inline-block;
  max-width: 100%;
  position: relative;
  vertical-align: top;
  white-space: nowrap;
}
.bp6-editable-text::before {
  inset: -2px;
  position: absolute;
  border-radius: 2px;
  content: "";
  transition: background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-editable-text:hover::before {
  box-shadow:
    0 0 0 0 rgba(33, 93, 176, 0),
    0 0 0 0 rgba(33, 93, 176, 0),
    inset 0 0 0 1px rgba(17, 20, 24, 0.15);
}
.bp6-editable-text.bp6-editable-text-editing::before {
  background-color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(33, 93, 176, 0.752),
    0 0 0 1px rgba(33, 93, 176, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-editable-text:not(.bp6-disabled)::before {
    border: 1px solid buttonborder;
  }
}
.bp6-editable-text.bp6-intent-primary .bp6-editable-text-input::-moz-placeholder {
  color: #2d72d2;
}
.bp6-editable-text.bp6-intent-primary .bp6-editable-text-input:-ms-input-placeholder {
  color: #2d72d2;
}
.bp6-editable-text.bp6-intent-primary .bp6-editable-text-content,
.bp6-editable-text.bp6-intent-primary .bp6-editable-text-input,
.bp6-editable-text.bp6-intent-primary .bp6-editable-text-input::placeholder {
  color: #2d72d2;
}
.bp6-editable-text.bp6-intent-primary:hover::before {
  box-shadow:
    0 0 0 0 rgba(45, 114, 210, 0),
    0 0 0 0 rgba(45, 114, 210, 0),
    inset 0 0 0 1px rgba(45, 114, 210, 0.4);
}
.bp6-editable-text.bp6-intent-primary.bp6-editable-text-editing::before {
  box-shadow:
    inset 0 0 0 1px rgba(45, 114, 210, 0.752),
    0 0 0 1px rgba(45, 114, 210, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-editable-text.bp6-intent-success .bp6-editable-text-input::-moz-placeholder {
  color: #238551;
}
.bp6-editable-text.bp6-intent-success .bp6-editable-text-input:-ms-input-placeholder {
  color: #238551;
}
.bp6-editable-text.bp6-intent-success .bp6-editable-text-content,
.bp6-editable-text.bp6-intent-success .bp6-editable-text-input,
.bp6-editable-text.bp6-intent-success .bp6-editable-text-input::placeholder {
  color: #238551;
}
.bp6-editable-text.bp6-intent-success:hover::before {
  box-shadow:
    0 0 0 0 rgba(35, 133, 81, 0),
    0 0 0 0 rgba(35, 133, 81, 0),
    inset 0 0 0 1px rgba(35, 133, 81, 0.4);
}
.bp6-editable-text.bp6-intent-success.bp6-editable-text-editing::before {
  box-shadow:
    inset 0 0 0 1px rgba(35, 133, 81, 0.752),
    0 0 0 1px rgba(35, 133, 81, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-editable-text.bp6-intent-warning .bp6-editable-text-input::-moz-placeholder {
  color: #c87619;
}
.bp6-editable-text.bp6-intent-warning .bp6-editable-text-input:-ms-input-placeholder {
  color: #c87619;
}
.bp6-editable-text.bp6-intent-warning .bp6-editable-text-content,
.bp6-editable-text.bp6-intent-warning .bp6-editable-text-input,
.bp6-editable-text.bp6-intent-warning .bp6-editable-text-input::placeholder {
  color: #c87619;
}
.bp6-editable-text.bp6-intent-warning:hover::before {
  box-shadow:
    0 0 0 0 rgba(200, 118, 25, 0),
    0 0 0 0 rgba(200, 118, 25, 0),
    inset 0 0 0 1px rgba(200, 118, 25, 0.4);
}
.bp6-editable-text.bp6-intent-warning.bp6-editable-text-editing::before {
  box-shadow:
    inset 0 0 0 1px rgba(200, 118, 25, 0.752),
    0 0 0 1px rgba(200, 118, 25, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-editable-text.bp6-intent-danger .bp6-editable-text-input::-moz-placeholder {
  color: #cd4246;
}
.bp6-editable-text.bp6-intent-danger .bp6-editable-text-input:-ms-input-placeholder {
  color: #cd4246;
}
.bp6-editable-text.bp6-intent-danger .bp6-editable-text-content,
.bp6-editable-text.bp6-intent-danger .bp6-editable-text-input,
.bp6-editable-text.bp6-intent-danger .bp6-editable-text-input::placeholder {
  color: #cd4246;
}
.bp6-editable-text.bp6-intent-danger:hover::before {
  box-shadow:
    0 0 0 0 rgba(205, 66, 70, 0),
    0 0 0 0 rgba(205, 66, 70, 0),
    inset 0 0 0 1px rgba(205, 66, 70, 0.4);
}
.bp6-editable-text.bp6-intent-danger.bp6-editable-text-editing::before {
  box-shadow:
    inset 0 0 0 1px rgba(205, 66, 70, 0.752),
    0 0 0 1px rgba(205, 66, 70, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-dark .bp6-editable-text:hover::before {
  box-shadow:
    0 0 0 0 rgba(138, 187, 255, 0),
    0 0 0 0 rgba(138, 187, 255, 0),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.bp6-dark .bp6-editable-text.bp6-editable-text-editing::before {
  background-color: rgba(17, 20, 24, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(138, 187, 255, 0.752),
    0 0 0 1px rgba(138, 187, 255, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-editable-text.bp6-disabled::before {
  box-shadow: none;
}
.bp6-dark .bp6-editable-text.bp6-intent-primary .bp6-editable-text-input::-moz-placeholder {
  color: #8abbff;
}
.bp6-dark .bp6-editable-text.bp6-intent-primary .bp6-editable-text-input:-ms-input-placeholder {
  color: #8abbff;
}
.bp6-dark .bp6-editable-text.bp6-intent-primary .bp6-editable-text-content,
.bp6-dark .bp6-editable-text.bp6-intent-primary .bp6-editable-text-input,
.bp6-dark .bp6-editable-text.bp6-intent-primary .bp6-editable-text-input::placeholder {
  color: #8abbff;
}
.bp6-dark .bp6-editable-text.bp6-intent-primary:hover::before {
  box-shadow:
    0 0 0 0 rgba(138, 187, 255, 0),
    0 0 0 0 rgba(138, 187, 255, 0),
    inset 0 0 0 1px rgba(138, 187, 255, 0.4);
}
.bp6-dark .bp6-editable-text.bp6-intent-primary.bp6-editable-text-editing::before {
  box-shadow:
    inset 0 0 0 1px rgba(138, 187, 255, 0.752),
    0 0 0 1px rgba(138, 187, 255, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-editable-text.bp6-intent-success .bp6-editable-text-input::-moz-placeholder {
  color: #72ca9b;
}
.bp6-dark .bp6-editable-text.bp6-intent-success .bp6-editable-text-input:-ms-input-placeholder {
  color: #72ca9b;
}
.bp6-dark .bp6-editable-text.bp6-intent-success .bp6-editable-text-content,
.bp6-dark .bp6-editable-text.bp6-intent-success .bp6-editable-text-input,
.bp6-dark .bp6-editable-text.bp6-intent-success .bp6-editable-text-input::placeholder {
  color: #72ca9b;
}
.bp6-dark .bp6-editable-text.bp6-intent-success:hover::before {
  box-shadow:
    0 0 0 0 rgba(114, 202, 155, 0),
    0 0 0 0 rgba(114, 202, 155, 0),
    inset 0 0 0 1px rgba(114, 202, 155, 0.4);
}
.bp6-dark .bp6-editable-text.bp6-intent-success.bp6-editable-text-editing::before {
  box-shadow:
    inset 0 0 0 1px rgba(114, 202, 155, 0.752),
    0 0 0 1px rgba(114, 202, 155, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-editable-text.bp6-intent-warning .bp6-editable-text-input::-moz-placeholder {
  color: #fbb360;
}
.bp6-dark .bp6-editable-text.bp6-intent-warning .bp6-editable-text-input:-ms-input-placeholder {
  color: #fbb360;
}
.bp6-dark .bp6-editable-text.bp6-intent-warning .bp6-editable-text-content,
.bp6-dark .bp6-editable-text.bp6-intent-warning .bp6-editable-text-input,
.bp6-dark .bp6-editable-text.bp6-intent-warning .bp6-editable-text-input::placeholder {
  color: #fbb360;
}
.bp6-dark .bp6-editable-text.bp6-intent-warning:hover::before {
  box-shadow:
    0 0 0 0 rgba(251, 179, 96, 0),
    0 0 0 0 rgba(251, 179, 96, 0),
    inset 0 0 0 1px rgba(251, 179, 96, 0.4);
}
.bp6-dark .bp6-editable-text.bp6-intent-warning.bp6-editable-text-editing::before {
  box-shadow:
    inset 0 0 0 1px rgba(251, 179, 96, 0.752),
    0 0 0 1px rgba(251, 179, 96, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-editable-text.bp6-intent-danger .bp6-editable-text-input::-moz-placeholder {
  color: #fa999c;
}
.bp6-dark .bp6-editable-text.bp6-intent-danger .bp6-editable-text-input:-ms-input-placeholder {
  color: #fa999c;
}
.bp6-dark .bp6-editable-text.bp6-intent-danger .bp6-editable-text-content,
.bp6-dark .bp6-editable-text.bp6-intent-danger .bp6-editable-text-input,
.bp6-dark .bp6-editable-text.bp6-intent-danger .bp6-editable-text-input::placeholder {
  color: #fa999c;
}
.bp6-dark .bp6-editable-text.bp6-intent-danger:hover::before {
  box-shadow:
    0 0 0 0 rgba(250, 153, 156, 0),
    0 0 0 0 rgba(250, 153, 156, 0),
    inset 0 0 0 1px rgba(250, 153, 156, 0.4);
}
.bp6-dark .bp6-editable-text.bp6-intent-danger.bp6-editable-text-editing::before {
  box-shadow:
    inset 0 0 0 1px rgba(250, 153, 156, 0.752),
    0 0 0 1px rgba(250, 153, 156, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-editable-text.bp6-disabled::before {
  box-shadow: none !important;
}
.bp6-editable-text-input,
.bp6-editable-text-content {
  color: inherit;
  display: inherit;
  font: inherit;
  letter-spacing: inherit;
  max-width: inherit;
  min-width: inherit;
  position: relative;
  resize: none;
  text-transform: inherit;
  vertical-align: top;
}
.bp6-editable-text-input::-moz-placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-editable-text-input:-ms-input-placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-editable-text-input::placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-editable-text-input {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  white-space: pre-wrap;
  width: 100%;
}
.bp6-editable-text-input:focus {
  outline: none;
}
.bp6-editable-text-input::-ms-clear {
  display: none;
}
.bp6-editable-text-content {
  overflow: hidden;
  padding-right: 2px;
  text-overflow: ellipsis;
  white-space: pre;
}
.bp6-editable-text-editing > .bp6-editable-text-content {
  left: 0;
  position: absolute;
  visibility: hidden;
}
.bp6-editable-text-placeholder > .bp6-editable-text-content {
  color: #5f6b7c;
}
.bp6-dark .bp6-editable-text-placeholder > .bp6-editable-text-content {
  color: #abb3bf;
}
.bp6-editable-text.bp6-multiline {
  display: block;
}
.bp6-editable-text.bp6-multiline .bp6-editable-text-content {
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.bp6-entity-title {
  align-items: center;
  display: flex;
  gap: 8px;
  min-width: 0;
}
.bp6-entity-title.bp6-fill {
  width: 100%;
}
.bp6-entity-title-icon-container.bp6-entity-title-has-subtitle {
  align-self: flex-start;
}
.bp6-entity-title-icon-container:not(.bp6-entity-title-has-subtitle) {
  align-items: center;
  display: flex;
}
.bp6-entity-title-text {
  display: flex;
  flex-direction: column;
}
.bp6-fill .bp6-entity-title-text {
  flex-grow: 1;
}
.bp6-entity-title-title-and-tags {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.bp6-entity-title-tags-container {
  display: flex;
  gap: 2px;
  margin-left: 4px;
}
.bp6-entity-title-title {
  margin-bottom: 0;
  min-width: 0;
  overflow-wrap: break-word;
}
.bp6-fill .bp6-entity-title-title {
  flex-grow: 1;
}
.bp6-entity-title-subtitle {
  font-size: 12px;
  margin-top: 2px;
}
.bp6-entity-title-ellipsize,
.bp6-entity-title-ellipsize .bp6-entity-title-text {
  overflow: hidden;
}
.bp6-entity-title-heading-h1 .bp6-icon-container {
  align-items: center;
  display: flex;
  height: 40px;
}
.bp6-entity-title-heading-h2 .bp6-icon-container {
  align-items: center;
  display: flex;
  height: 32px;
}
.bp6-entity-title-heading-h3 .bp6-icon-container {
  align-items: center;
  display: flex;
  height: 25px;
}
.bp6-entity-title-heading-h4 .bp6-icon-container {
  align-items: center;
  display: flex;
  height: 21px;
}
.bp6-entity-title-heading-h5 .bp6-icon-container {
  align-items: center;
  display: flex;
  height: 19px;
}
.bp6-entity-title-heading-h6 .bp6-icon-container {
  align-items: center;
  display: flex;
  height: 16px;
}
.bp6-entity-title-heading-h1,
.bp6-entity-title-heading-h2,
.bp6-entity-title-heading-h3 {
  gap: 16px;
}
.bp6-entity-title-heading-h1 .bp6-entity-title-subtitle,
.bp6-entity-title-heading-h2 .bp6-entity-title-subtitle,
.bp6-entity-title-heading-h3 .bp6-entity-title-subtitle {
  font-size: 14px;
}
.bp6-entity-title-heading-h4,
.bp6-entity-title-heading-h5,
.bp6-entity-title-heading-h6 {
  gap: 8px;
}
.bp6-entity-title-heading-h4 .bp6-entity-title-subtitle,
.bp6-entity-title-heading-h5 .bp6-entity-title-subtitle,
.bp6-entity-title-heading-h6 .bp6-entity-title-subtitle {
  font-size: 12px;
}
.bp6-divider {
  border-bottom: 1px solid rgba(17, 20, 24, 0.15);
  border-right: 1px solid rgba(17, 20, 24, 0.15);
  margin: 4px;
}
.bp6-dark .bp6-divider {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-divider.bp6-compact {
  margin: 0;
}
.bp6-control-group {
  transform: translateZ(0);
  display: flex;
  flex-direction: row;
}
.bp6-control-group > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-control-group > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-control-group {
  align-items: stretch;
}
.bp6-control-group .bp6-button,
.bp6-control-group .bp6-html-select,
.bp6-control-group .bp6-input,
.bp6-control-group .bp6-select {
  position: relative;
}
.bp6-control-group .bp6-input {
  z-index: 2;
}
.bp6-control-group .bp6-input:focus {
  z-index: 14;
}
.bp6-control-group .bp6-input[class*=bp6-intent] {
  z-index: 13;
}
.bp6-control-group .bp6-input[class*=bp6-intent]:focus {
  z-index: 15;
}
.bp6-control-group .bp6-input[readonly],
.bp6-control-group .bp6-input:disabled,
.bp6-control-group .bp6-input.bp6-disabled {
  z-index: 1;
}
.bp6-control-group .bp6-input-group[class*=bp6-intent] .bp6-input {
  z-index: 13;
}
.bp6-control-group .bp6-input-group[class*=bp6-intent] .bp6-input:focus {
  z-index: 15;
}
.bp6-control-group .bp6-button,
.bp6-control-group .bp6-html-select select,
.bp6-control-group .bp6-select select {
  transform: translateZ(0);
  z-index: 4;
}
.bp6-control-group .bp6-button:focus,
.bp6-control-group .bp6-html-select select:focus,
.bp6-control-group .bp6-select select:focus {
  z-index: 5;
}
.bp6-control-group .bp6-button:hover,
.bp6-control-group .bp6-html-select select:hover,
.bp6-control-group .bp6-select select:hover {
  z-index: 6;
}
.bp6-control-group .bp6-button:active,
.bp6-control-group .bp6-html-select select:active,
.bp6-control-group .bp6-select select:active {
  z-index: 7;
}
.bp6-control-group .bp6-button[readonly],
.bp6-control-group .bp6-button:disabled,
.bp6-control-group .bp6-button.bp6-disabled,
.bp6-control-group .bp6-html-select select[readonly],
.bp6-control-group .bp6-html-select select:disabled,
.bp6-control-group .bp6-html-select select.bp6-disabled,
.bp6-control-group .bp6-select select[readonly],
.bp6-control-group .bp6-select select:disabled,
.bp6-control-group .bp6-select select.bp6-disabled {
  z-index: 3;
}
.bp6-control-group .bp6-button[class*=bp6-intent],
.bp6-control-group .bp6-html-select select[class*=bp6-intent],
.bp6-control-group .bp6-select select[class*=bp6-intent] {
  z-index: 9;
}
.bp6-control-group .bp6-button[class*=bp6-intent]:focus,
.bp6-control-group .bp6-html-select select[class*=bp6-intent]:focus,
.bp6-control-group .bp6-select select[class*=bp6-intent]:focus {
  z-index: 10;
}
.bp6-control-group .bp6-button[class*=bp6-intent]:hover,
.bp6-control-group .bp6-html-select select[class*=bp6-intent]:hover,
.bp6-control-group .bp6-select select[class*=bp6-intent]:hover {
  z-index: 11;
}
.bp6-control-group .bp6-button[class*=bp6-intent]:active,
.bp6-control-group .bp6-html-select select[class*=bp6-intent]:active,
.bp6-control-group .bp6-select select[class*=bp6-intent]:active {
  z-index: 12;
}
.bp6-control-group .bp6-button[class*=bp6-intent][readonly],
.bp6-control-group .bp6-button[class*=bp6-intent]:disabled,
.bp6-control-group .bp6-button[class*=bp6-intent].bp6-disabled,
.bp6-control-group .bp6-html-select select[class*=bp6-intent][readonly],
.bp6-control-group .bp6-html-select select[class*=bp6-intent]:disabled,
.bp6-control-group .bp6-html-select select[class*=bp6-intent].bp6-disabled,
.bp6-control-group .bp6-select select[class*=bp6-intent][readonly],
.bp6-control-group .bp6-select select[class*=bp6-intent]:disabled,
.bp6-control-group .bp6-select select[class*=bp6-intent].bp6-disabled {
  z-index: 8;
}
.bp6-control-group .bp6-input-group > .bp6-icon,
.bp6-control-group .bp6-input-group > .bp6-button,
.bp6-control-group .bp6-input-group > .bp6-input-left-container,
.bp6-control-group .bp6-input-group > .bp6-input-action {
  z-index: 16;
}
.bp6-control-group .bp6-select::after,
.bp6-control-group .bp6-html-select::after,
.bp6-control-group .bp6-select > .bp6-icon,
.bp6-control-group .bp6-html-select > .bp6-icon {
  z-index: 17;
}
.bp6-control-group .bp6-html-select:focus-within,
.bp6-control-group .bp6-select:focus-within {
  z-index: 5;
}
.bp6-control-group:not(.bp6-vertical) > :not(:last-child) {
  margin-right: 2px;
}
.bp6-control-group .bp6-numeric-input:not(:first-child) .bp6-input-group {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.bp6-control-group.bp6-fill {
  width: 100%;
}
.bp6-control-group > .bp6-fill {
  flex: 1 1 auto;
}
.bp6-control-group.bp6-fill > *:not(.bp6-fixed) {
  flex: 1 1 auto;
}
.bp6-control-group.bp6-vertical {
  flex-direction: column;
}
.bp6-control-group.bp6-vertical > :not(:last-child) {
  margin-bottom: 2px;
}
.bp6-control input:checked ~ .bp6-control-indicator {
  background-color: #2d72d2;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2);
  color: #ffffff;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control input:checked ~ .bp6-control-indicator {
    background-color: highlight;
    border: 1px solid highlight;
  }
}
.bp6-control:hover input:checked ~ .bp6-control-indicator {
  background-color: #215db0;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control:hover input:checked ~ .bp6-control-indicator {
    background-color: highlight;
  }
}
.bp6-control input:not(:disabled):active:checked ~ .bp6-control-indicator {
  background: #184a90;
}
.bp6-control input:disabled:checked ~ .bp6-control-indicator {
  background: rgba(45, 114, 210, 0.5);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control input:disabled:checked ~ .bp6-control-indicator {
    background-color: graytext;
    border-color: graytext;
  }
}
.bp6-dark .bp6-control input:checked ~ .bp6-control-indicator {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dark .bp6-control input:checked ~ .bp6-control-indicator {
    border: 1px solid buttonborder;
  }
}
.bp6-dark .bp6-control:hover input:checked ~ .bp6-control-indicator {
  background-color: #215db0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.bp6-dark .bp6-control input:not(:disabled):active:checked ~ .bp6-control-indicator {
  background-color: #184a90;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.bp6-dark .bp6-control input:disabled:checked ~ .bp6-control-indicator {
  background: rgba(45, 114, 210, 0.5);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}
.bp6-control:not(.bp6-align-right) {
  -webkit-padding-start: 24px;
  padding-inline-start: 24px;
}
.bp6-control:not(.bp6-align-right) .bp6-control-indicator {
  -webkit-margin-start: -24px;
  margin-inline-start: -24px;
}
.bp6-control.bp6-align-right {
  padding-right: 24px;
}
.bp6-control.bp6-align-right .bp6-control-indicator {
  margin-right: -24px;
}
[dir=rtl] .bp6-control.bp6-align-left {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  padding-left: 24px;
}
[dir=rtl] .bp6-control.bp6-align-left .bp6-control-indicator {
  margin-left: -24px;
}
.bp6-control {
  cursor: pointer;
  display: block;
  margin-bottom: 8px;
  position: relative;
  text-transform: none;
}
.bp6-control.bp6-disabled {
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-control.bp6-inline {
  display: inline-block;
  -webkit-margin-end: 20px;
  margin-inline-end: 20px;
}
.bp6-control .bp6-control-input {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
.bp6-control .bp6-control-indicator {
  background-clip: padding-box;
  background-color: transparent;
  border: none;
  box-shadow: inset 0 0 0 1px #738091;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  height: 1em;
  -webkit-margin-end: 8px;
  margin-inline-end: 8px;
  margin-top: -3px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  width: 1em;
}
.bp6-control .bp6-control-indicator::before {
  content: "";
  display: block;
  height: 1em;
  width: 1em;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control .bp6-control-indicator {
    border: 1px solid buttonborder;
  }
  .bp6-control .bp6-control-indicator::before {
    margin-left: -1px;
    margin-top: -1px;
  }
}
.bp6-control:hover .bp6-control-indicator {
  background-color: rgba(143, 153, 168, 0.15);
}
.bp6-control input:not(:disabled):active ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.3);
  box-shadow: inset 0 0 0 1px #738091;
}
.bp6-control input:disabled ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.15);
  box-shadow: none;
  cursor: not-allowed;
}
.bp6-control input:focus ~ .bp6-control-indicator {
  outline: rgba(33, 93, 176, 0.752) solid 2px;
  outline-offset: 2px;
  -moz-outline-radius: 6px;
}
.bp6-dark .bp6-control input:focus ~ .bp6-control-indicator {
  outline-color: rgba(138, 187, 255, 0.752);
}
.bp6-control.bp6-align-right .bp6-control-indicator {
  float: right;
  margin-left: 8px;
  margin-top: 1px;
}
[dir=rtl] .bp6-control.bp6-align-left .bp6-control-indicator {
  float: left;
  margin-top: 1px;
}
.bp6-control.bp6-large:not(.bp6-align-right) {
  -webkit-padding-start: 28px;
  padding-inline-start: 28px;
}
.bp6-control.bp6-large:not(.bp6-align-right) .bp6-control-indicator {
  -webkit-margin-start: -28px;
  margin-inline-start: -28px;
}
.bp6-control.bp6-large.bp6-align-right {
  padding-right: 28px;
}
.bp6-control.bp6-large.bp6-align-right .bp6-control-indicator {
  margin-right: -28px;
}
[dir=rtl] .bp6-control.bp6-large.bp6-align-left {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  padding-left: 28px;
}
[dir=rtl] .bp6-control.bp6-large.bp6-align-left .bp6-control-indicator {
  margin-left: -28px;
}
.bp6-control.bp6-large {
  font-size: 16px;
}
.bp6-control.bp6-large .bp6-control-indicator {
  font-size: 20px;
}
.bp6-control.bp6-large.bp6-align-right .bp6-control-indicator {
  margin-top: 0;
}
[dir=rtl] .bp6-control.bp6-large.bp6-align-left .bp6-control-indicator {
  margin-top: 0;
}
.bp6-control.bp6-checkbox input:indeterminate ~ .bp6-control-indicator {
  background-color: #2d72d2;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2);
  color: #ffffff;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-checkbox input:indeterminate ~ .bp6-control-indicator {
    background-color: highlight;
    border: 1px solid highlight;
  }
}
.bp6-control.bp6-checkbox:hover input:indeterminate ~ .bp6-control-indicator {
  background-color: #215db0;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-checkbox:hover input:indeterminate ~ .bp6-control-indicator {
    background-color: highlight;
  }
}
.bp6-control.bp6-checkbox input:not(:disabled):active:indeterminate ~ .bp6-control-indicator {
  background: #184a90;
}
.bp6-control.bp6-checkbox input:disabled:indeterminate ~ .bp6-control-indicator {
  background: rgba(45, 114, 210, 0.5);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-checkbox input:disabled:indeterminate ~ .bp6-control-indicator {
    background-color: graytext;
    border-color: graytext;
  }
}
.bp6-dark .bp6-control.bp6-checkbox input:indeterminate ~ .bp6-control-indicator {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dark .bp6-control.bp6-checkbox input:indeterminate ~ .bp6-control-indicator {
    border: 1px solid buttonborder;
  }
}
.bp6-dark .bp6-control.bp6-checkbox:hover input:indeterminate ~ .bp6-control-indicator {
  background-color: #215db0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.bp6-dark .bp6-control.bp6-checkbox input:not(:disabled):active:indeterminate ~ .bp6-control-indicator {
  background-color: #184a90;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.bp6-dark .bp6-control.bp6-checkbox input:disabled:indeterminate ~ .bp6-control-indicator {
  background: rgba(45, 114, 210, 0.5);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}
.bp6-control.bp6-checkbox .bp6-control-indicator {
  border-radius: 2px;
}
.bp6-control.bp6-checkbox input:checked ~ .bp6-control-indicator::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e");
}
.bp6-control.bp6-checkbox input:indeterminate ~ .bp6-control-indicator::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e");
}
.bp6-control.bp6-checkbox input:disabled ~ .bp6-control-indicator::before {
  opacity: 0.5;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-checkbox input:checked:not(:disabled) ~ .bp6-control-indicator::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='%23111418'/%3e%3c/svg%3e");
  }
  .bp6-control.bp6-checkbox input:indeterminate:not(:disabled) ~ .bp6-control-indicator::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='%23111418'/%3e%3c/svg%3e");
  }
  .bp6-control.bp6-checkbox input:disabled ~ .bp6-control-indicator {
    border-color: graytext;
  }
}
.bp6-control.bp6-radio .bp6-control-indicator {
  border-radius: 50%;
}
.bp6-control.bp6-radio input:checked ~ .bp6-control-indicator::before {
  background-image:
    radial-gradient(
      #ffffff,
      #ffffff 28%,
      transparent 32%);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-radio input:checked ~ .bp6-control-indicator::before {
    background: highlight;
    height: 12px;
    margin-left: 1px;
    margin-top: 1px;
    width: 12px;
  }
}
.bp6-control.bp6-radio input:checked:disabled ~ .bp6-control-indicator::before {
  opacity: 0.5;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-radio input:checked:disabled ~ .bp6-control-indicator::before {
    background: graytext;
  }
}
.bp6-control.bp6-radio input:focus ~ .bp6-control-indicator {
  -moz-outline-radius: 16px;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-radio input:disabled ~ .bp6-control-indicator {
    border-color: graytext;
  }
}
.bp6-control {
}
.bp6-control.bp6-switch input ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.3);
  color: #1c2127;
}
.bp6-control.bp6-switch:hover input ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.4);
}
.bp6-control.bp6-switch input:not(:disabled):active ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.5);
}
.bp6-control.bp6-switch input:disabled ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.15);
  color: rgba(95, 107, 124, 0.6);
}
.bp6-control.bp6-switch input:disabled ~ .bp6-control-indicator::before {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}
.bp6-control.bp6-switch input:checked ~ .bp6-control-indicator {
  background: #2d72d2;
  color: #ffffff;
}
.bp6-control.bp6-switch:hover input:checked ~ .bp6-control-indicator {
  background: #215db0;
}
.bp6-control.bp6-switch input:checked:not(:disabled):active ~ .bp6-control-indicator {
  background: #184a90;
}
.bp6-control.bp6-switch input:checked:disabled ~ .bp6-control-indicator {
  background: rgba(45, 114, 210, 0.5);
  color: rgba(255, 255, 255, 0.6);
}
.bp6-control.bp6-switch input:checked:disabled ~ .bp6-control-indicator::before {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.bp6-control.bp6-switch:not(.bp6-align-right) {
  -webkit-padding-start: 36px;
  padding-inline-start: 36px;
}
.bp6-control.bp6-switch:not(.bp6-align-right) .bp6-control-indicator {
  -webkit-margin-start: -36px;
  margin-inline-start: -36px;
}
.bp6-control.bp6-switch.bp6-align-right {
  padding-right: 36px;
}
.bp6-control.bp6-switch.bp6-align-right .bp6-control-indicator {
  margin-right: -36px;
}
[dir=rtl] .bp6-control.bp6-switch.bp6-align-left {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  padding-left: 36px;
}
[dir=rtl] .bp6-control.bp6-switch.bp6-align-left .bp6-control-indicator {
  margin-left: -36px;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-switch input:checked ~ .bp6-control-indicator {
    background: highlight;
    border: 1px solid buttonborder;
  }
  .bp6-control.bp6-switch input:checked:disabled ~ .bp6-control-indicator {
    background-color: graytext;
  }
  .bp6-control.bp6-switch input:not(:checked):disabled ~ .bp6-control-indicator {
    border-color: graytext;
  }
  .bp6-control.bp6-switch input:not(:checked):disabled ~ .bp6-control-indicator::before {
    border-color: graytext;
  }
  .bp6-control.bp6-switch:hover input:checked ~ .bp6-control-indicator {
    background: highlight;
  }
}
.bp6-control.bp6-switch .bp6-control-indicator {
  border: none;
  border-radius: 1.75em;
  box-shadow: none !important;
  min-width: 1.75em;
  transition: background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  width: auto;
}
.bp6-control.bp6-switch .bp6-control-indicator::before {
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.5);
  height: calc(1em - 4px);
  left: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  width: calc(1em - 4px);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-switch .bp6-control-indicator::before {
    border: 1px solid buttonborder;
    margin-top: 1px;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-control.bp6-switch .bp6-control-indicator {
    border: 1px solid buttonborder;
  }
}
.bp6-control.bp6-switch input:checked ~ .bp6-control-indicator::before {
  left: calc(2px + 100% - 1em);
}
.bp6-control.bp6-switch.bp6-large:not(.bp6-align-right) {
  -webkit-padding-start: 43px;
  padding-inline-start: 43px;
}
.bp6-control.bp6-switch.bp6-large:not(.bp6-align-right) .bp6-control-indicator {
  -webkit-margin-start: -43px;
  margin-inline-start: -43px;
}
.bp6-control.bp6-switch.bp6-large.bp6-align-right {
  padding-right: 43px;
}
.bp6-control.bp6-switch.bp6-large.bp6-align-right .bp6-control-indicator {
  margin-right: -43px;
}
[dir=rtl] .bp6-control.bp6-switch.bp6-large.bp6-align-left {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  padding-left: 43px;
}
[dir=rtl] .bp6-control.bp6-switch.bp6-large.bp6-align-left .bp6-control-indicator {
  margin-left: -43px;
}
.bp6-dark .bp6-control.bp6-switch input ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.3);
  color: #f6f7f9;
}
.bp6-dark .bp6-control.bp6-switch:hover input ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.4);
}
.bp6-dark .bp6-control.bp6-switch input:not(:disabled):active ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.5);
}
.bp6-dark .bp6-control.bp6-switch input:disabled ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.15);
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-control.bp6-switch input:disabled ~ .bp6-control-indicator::before {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}
.bp6-dark .bp6-control.bp6-switch input:checked ~ .bp6-control-indicator {
  background: #2d72d2;
  color: #ffffff;
}
.bp6-dark .bp6-control.bp6-switch:hover input:checked ~ .bp6-control-indicator {
  background: #215db0;
}
.bp6-dark .bp6-control.bp6-switch input:checked:not(:disabled):active ~ .bp6-control-indicator {
  background: #184a90;
}
.bp6-dark .bp6-control.bp6-switch input:checked:disabled ~ .bp6-control-indicator {
  background: rgba(45, 114, 210, 0.5);
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-control.bp6-switch input:checked:disabled ~ .bp6-control-indicator::before {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dark .bp6-control.bp6-switch input:checked ~ .bp6-control-indicator {
    background: highlight;
    border: 1px solid buttonborder;
  }
  .bp6-dark .bp6-control.bp6-switch input:checked:disabled ~ .bp6-control-indicator {
    background-color: graytext;
  }
  .bp6-dark .bp6-control.bp6-switch input:not(:checked):disabled ~ .bp6-control-indicator {
    border-color: graytext;
  }
  .bp6-dark .bp6-control.bp6-switch input:not(:checked):disabled ~ .bp6-control-indicator::before {
    border-color: graytext;
  }
  .bp6-dark .bp6-control.bp6-switch:hover input:checked ~ .bp6-control-indicator {
    background: highlight;
  }
}
.bp6-control.bp6-switch .bp6-switch-inner-text {
  font-size: 0.7em;
  text-align: center;
}
.bp6-control.bp6-switch .bp6-control-indicator-child:first-child {
  line-height: 0;
  margin-left: 0.5em;
  margin-right: 1.2em;
  visibility: hidden;
}
.bp6-control.bp6-switch .bp6-control-indicator-child:last-child {
  line-height: 1em;
  margin-left: 1.2em;
  margin-right: 0.5em;
  visibility: visible;
}
.bp6-control.bp6-switch input:checked ~ .bp6-control-indicator .bp6-control-indicator-child:first-child {
  line-height: 1em;
  visibility: visible;
}
.bp6-control.bp6-switch input:checked ~ .bp6-control-indicator .bp6-control-indicator-child:last-child {
  line-height: 0;
  visibility: hidden;
}
.bp6-dark .bp6-control {
  color: #f6f7f9;
}
.bp6-dark .bp6-control.bp6-disabled {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-control .bp6-control-indicator {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #8f99a8;
}
.bp6-dark .bp6-control:hover .bp6-control-indicator {
  background-color: rgba(143, 153, 168, 0.15);
}
.bp6-dark .bp6-control input:not(:disabled):active ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.3);
  box-shadow: inset 0 0 0 1px #8f99a8;
}
.bp6-dark .bp6-control input:disabled ~ .bp6-control-indicator {
  background: rgba(143, 153, 168, 0.15);
  box-shadow: none;
  cursor: not-allowed;
}
.bp6-dark .bp6-control.bp6-checkbox input:disabled:checked ~ .bp6-control-indicator,
.bp6-dark .bp6-control.bp6-checkbox input:disabled:indeterminate ~ .bp6-control-indicator {
  background: rgba(45, 114, 210, 0.5);
}
.bp6-file-input {
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: relative;
}
.bp6-file-input input {
  margin: 0;
  min-width: 200px;
  opacity: 0;
}
.bp6-file-input input:disabled + .bp6-file-upload-input,
.bp6-file-input input.bp6-disabled + .bp6-file-upload-input {
  background: rgba(211, 216, 222, 0.5);
  box-shadow: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
  resize: none;
}
.bp6-file-input input:disabled + .bp6-file-upload-input::-moz-placeholder,
.bp6-file-input input.bp6-disabled + .bp6-file-upload-input::-moz-placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-file-input input:disabled + .bp6-file-upload-input:-ms-input-placeholder,
.bp6-file-input input.bp6-disabled + .bp6-file-upload-input:-ms-input-placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-file-input input:disabled + .bp6-file-upload-input::placeholder,
.bp6-file-input input.bp6-disabled + .bp6-file-upload-input::placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-file-input input:disabled + .bp6-file-upload-input::after,
.bp6-file-input input.bp6-disabled + .bp6-file-upload-input::after {
  background-color: rgba(211, 216, 222, 0.5);
  box-shadow: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
  outline: none;
}
.bp6-dark .bp6-file-input input:disabled + .bp6-file-upload-input,
.bp6-dark .bp6-file-input input.bp6-disabled + .bp6-file-upload-input {
  background: rgba(64, 72, 84, 0.5);
  box-shadow: none;
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-file-input input:disabled + .bp6-file-upload-input::after,
.bp6-dark .bp6-file-input input.bp6-disabled + .bp6-file-upload-input::after {
  background-color: rgba(47, 52, 60, 0.15);
  box-shadow: none;
  color: rgba(171, 179, 191, 0.6);
}
.bp6-file-input input:focus + .bp6-file-upload-input {
  box-shadow:
    inset 0 0 0 1px rgba(33, 93, 176, 0.752),
    0 0 0 1px rgba(33, 93, 176, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-dark .bp6-file-input input:focus + .bp6-file-upload-input {
  box-shadow:
    inset 0 0 0 1px rgba(138, 187, 255, 0.752),
    0 0 0 1px rgba(138, 187, 255, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-file-input.bp6-file-input-has-selection .bp6-file-upload-input {
  color: #1c2127;
}
.bp6-dark .bp6-file-input.bp6-file-input-has-selection .bp6-file-upload-input {
  color: #f6f7f9;
}
.bp6-file-input.bp6-fill {
  width: 100%;
}
.bp6-file-input.bp6-large,
.bp6-large .bp6-file-input {
  height: 40px;
}
.bp6-file-input.bp6-small,
.bp6-small .bp6-file-input {
  height: 24px;
}
.bp6-file-input .bp6-file-upload-input-custom-text::after {
  content: attr(bp6-button-text);
}
.bp6-file-upload-input::-moz-placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-file-upload-input:-ms-input-placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-file-upload-input::placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-file-upload-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff;
  border: none;
  border-radius: 2px;
  box-shadow:
    0 0 0 0 rgba(33, 93, 176, 0),
    0 0 0 0 rgba(33, 93, 176, 0),
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
  color: #1c2127;
  font-size: 14px;
  font-weight: 400;
  height: 30px;
  line-height: 30px;
  outline: none;
  padding: 0 8px;
  transition: box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  vertical-align: middle;
}
.bp6-file-upload-input:focus,
.bp6-file-upload-input.bp6-active {
  box-shadow:
    inset 0 0 0 1px rgba(33, 93, 176, 0.752),
    0 0 0 1px rgba(33, 93, 176, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-file-upload-input[type=search],
.bp6-file-upload-input.bp6-round {
  border-radius: 30px;
  box-sizing: border-box;
  padding-left: 8px;
}
.bp6-file-upload-input[readonly] {
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.15);
}
.bp6-file-upload-input[readonly]:focus {
  box-shadow:
    inset 0 0 0 1px rgba(33, 93, 176, 0.752),
    0 0 0 1px rgba(33, 93, 176, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-file-upload-input:disabled,
.bp6-file-upload-input.bp6-disabled {
  background: rgba(211, 216, 222, 0.5);
  box-shadow: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
  resize: none;
}
.bp6-file-upload-input:disabled::-moz-placeholder,
.bp6-file-upload-input.bp6-disabled::-moz-placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-file-upload-input:disabled:-ms-input-placeholder,
.bp6-file-upload-input.bp6-disabled:-ms-input-placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-file-upload-input:disabled::placeholder,
.bp6-file-upload-input.bp6-disabled::placeholder {
  color: rgba(95, 107, 124, 0.6);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-file-upload-input {
    border: 1px solid buttonborder;
  }
}
.bp6-file-upload-input {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  color: rgba(95, 107, 124, 0.6);
  left: 0;
  padding-right: 78px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bp6-file-upload-input::after {
  background-color: #f6f7f9;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1);
  color: #1c2127;
  min-height: 24px;
  min-width: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  border-radius: 2px;
  content: "Browse";
  line-height: 24px;
  margin: 3px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
}
.bp6-file-upload-input:hover::after {
  background-clip: padding-box;
  background-color: #edeff2;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-file-upload-input:active::after {
  background-color: #dce0e5;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-file-upload-input:active::after {
    background: highlight;
  }
}
.bp6-large .bp6-file-upload-input {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
}
.bp6-large .bp6-file-upload-input[type=search],
.bp6-large .bp6-file-upload-input.bp6-round {
  padding: 0 12px;
}
.bp6-large .bp6-file-upload-input {
  padding-right: 93px;
}
.bp6-large .bp6-file-upload-input::after {
  min-height: 30px;
  min-width: 30px;
  line-height: 30px;
  margin: 5px;
  width: 85px;
}
.bp6-small .bp6-file-upload-input {
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  padding-left: 8px;
  padding-right: 8px;
}
.bp6-small .bp6-file-upload-input[type=search],
.bp6-small .bp6-file-upload-input.bp6-round {
  padding: 0 12px;
}
.bp6-small .bp6-file-upload-input {
  padding-right: 63px;
}
.bp6-small .bp6-file-upload-input::after {
  min-height: 20px;
  min-width: 20px;
  line-height: 20px;
  margin: 2px;
  width: 55px;
}
.bp6-dark .bp6-file-upload-input::-moz-placeholder {
  color: #abb3bf;
}
.bp6-dark .bp6-file-upload-input:-ms-input-placeholder {
  color: #abb3bf;
}
.bp6-dark .bp6-file-upload-input::placeholder {
  color: #abb3bf;
}
.bp6-dark .bp6-file-upload-input {
  background: rgba(17, 20, 24, 0.3);
  box-shadow:
    0 0 0 0 rgba(138, 187, 255, 0),
    0 0 0 0 rgba(138, 187, 255, 0),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
  color: #f6f7f9;
}
.bp6-dark .bp6-file-upload-input:focus {
  box-shadow: inset 0 0 0 1px rgba(138, 187, 255, 0.752), 0 0 0 1px rgba(138, 187, 255, 0.752);
}
.bp6-dark .bp6-file-upload-input[readonly] {
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-file-upload-input[readonly]:focus {
  box-shadow: inset 0 0 0 1px rgba(138, 187, 255, 0.752), 0 0 0 1px rgba(138, 187, 255, 0.752);
}
.bp6-dark .bp6-file-upload-input:disabled,
.bp6-dark .bp6-file-upload-input.bp6-disabled {
  background: rgba(64, 72, 84, 0.5);
  box-shadow: none;
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-file-upload-input {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-file-upload-input::after {
  background-color: #2f343c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.2);
  color: #f6f7f9;
}
.bp6-dark .bp6-file-upload-input:hover::after {
  background-color: #252a31;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-file-upload-input:active::after {
  background-color: #1c2127;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.4);
}
.bp6-file-upload-input::after {
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1);
}
.bp6-form-group {
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
}
.bp6-form-group label.bp6-label {
  margin-bottom: 4px;
}
.bp6-form-group .bp6-control {
  margin-top: 8px;
}
.bp6-form-group .bp6-form-group-sub-label,
.bp6-form-group .bp6-form-helper-text {
  color: #5f6b7c;
  font-size: 12px;
}
.bp6-form-group .bp6-form-group-sub-label {
  margin-bottom: 4px;
}
.bp6-form-group .bp6-form-helper-text {
  margin-top: 4px;
}
.bp6-form-group {
}
.bp6-form-group.bp6-intent-primary .bp6-form-helper-text {
  color: #215db0;
}
.bp6-form-group.bp6-intent-success .bp6-form-helper-text {
  color: #1c6e42;
}
.bp6-form-group.bp6-intent-warning .bp6-form-helper-text {
  color: #935610;
}
.bp6-form-group.bp6-intent-danger .bp6-form-helper-text {
  color: #ac2f33;
}
.bp6-form-group.bp6-fill {
  width: 100%;
}
.bp6-form-group.bp6-inline {
  align-items: flex-start;
  flex-direction: row;
}
.bp6-form-group.bp6-inline.bp6-large label.bp6-label {
  line-height: 40px;
  margin: 0 12px 0 0;
}
.bp6-form-group.bp6-inline label.bp6-label {
  line-height: 30px;
  margin: 0 12px 0 0;
}
.bp6-form-group.bp6-disabled .bp6-label,
.bp6-form-group.bp6-disabled .bp6-text-muted,
.bp6-form-group.bp6-disabled .bp6-form-group-sub-label,
.bp6-form-group.bp6-disabled .bp6-form-helper-text {
  color: rgba(95, 107, 124, 0.6) !important;
}
.bp6-dark .bp6-form-group.bp6-intent-primary .bp6-form-helper-text {
  color: #8abbff;
}
.bp6-dark .bp6-form-group.bp6-intent-success .bp6-form-helper-text {
  color: #72ca9b;
}
.bp6-dark .bp6-form-group.bp6-intent-warning .bp6-form-helper-text {
  color: #fbb360;
}
.bp6-dark .bp6-form-group.bp6-intent-danger .bp6-form-helper-text {
  color: #fa999c;
}
.bp6-dark .bp6-form-group .bp6-form-group-sub-label,
.bp6-dark .bp6-form-group .bp6-form-helper-text {
  color: #abb3bf;
}
.bp6-dark .bp6-form-group.bp6-disabled .bp6-label,
.bp6-dark .bp6-form-group.bp6-disabled .bp6-text-muted,
.bp6-dark .bp6-form-group.bp6-disabled .bp6-form-group-sub-label,
.bp6-dark .bp6-form-group.bp6-disabled .bp6-form-helper-text {
  color: rgba(171, 179, 191, 0.6) !important;
}
.bp6-input-group {
  display: block;
  position: relative;
}
.bp6-input-group .bp6-input {
  position: relative;
  width: 100%;
}
.bp6-input-group .bp6-input:not(:first-child) {
  padding-left: 30px;
}
.bp6-input-group .bp6-input:not(:last-child) {
  padding-right: 30px;
}
.bp6-input-group .bp6-input-action,
.bp6-input-group > .bp6-input-left-container,
.bp6-input-group > .bp6-button,
.bp6-input-group > .bp6-icon {
  position: absolute;
  top: 0;
}
.bp6-input-group .bp6-input-action:first-child,
.bp6-input-group > .bp6-input-left-container:first-child,
.bp6-input-group > .bp6-button:first-child,
.bp6-input-group > .bp6-icon:first-child {
  left: 0;
}
.bp6-input-group .bp6-input-action:last-child,
.bp6-input-group > .bp6-input-left-container:last-child,
.bp6-input-group > .bp6-button:last-child,
.bp6-input-group > .bp6-icon:last-child {
  right: 0;
}
.bp6-input-group .bp6-button {
  min-height: 24px;
  min-width: 24px;
  margin: 3px;
  padding: 0 8px;
}
.bp6-input-group .bp6-button:empty {
  padding: 0;
}
.bp6-input-group > .bp6-input-left-container,
.bp6-input-group > .bp6-icon {
  z-index: 1;
}
.bp6-input-group > .bp6-input-left-container > .bp6-icon,
.bp6-input-group > .bp6-icon {
  color: #5f6b7c;
}
.bp6-input-group > .bp6-input-left-container > .bp6-icon:empty,
.bp6-input-group > .bp6-icon:empty {
  font-family: "blueprint-icons-16", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 16px;
  line-height: 1;
  width: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.bp6-input-group > .bp6-input-left-container > .bp6-icon,
.bp6-input-group > .bp6-icon,
.bp6-input-group .bp6-input-action > .bp6-spinner {
  margin: 7px;
}
.bp6-input-group .bp6-tag {
  margin: 5px;
}
.bp6-input-group .bp6-input:not(:focus) + .bp6-button.bp6-minimal:not(:hover):not(:focus),
.bp6-input-group .bp6-input:not(:focus) + .bp6-input-action .bp6-button.bp6-minimal:not(:hover):not(:focus) {
  color: #5f6b7c;
}
.bp6-dark .bp6-input-group .bp6-input:not(:focus) + .bp6-button.bp6-minimal:not(:hover):not(:focus),
.bp6-dark .bp6-input-group .bp6-input:not(:focus) + .bp6-input-action .bp6-button.bp6-minimal:not(:hover):not(:focus) {
  color: #abb3bf;
}
.bp6-input-group .bp6-input:not(:focus) + .bp6-button.bp6-minimal:not(:hover):not(:focus) .bp6-icon,
.bp6-input-group .bp6-input:not(:focus) + .bp6-button.bp6-minimal:not(:hover):not(:focus) .bp6-icon-standard,
.bp6-input-group .bp6-input:not(:focus) + .bp6-button.bp6-minimal:not(:hover):not(:focus) .bp6-icon-large,
.bp6-input-group .bp6-input:not(:focus) + .bp6-input-action .bp6-button.bp6-minimal:not(:hover):not(:focus) .bp6-icon,
.bp6-input-group .bp6-input:not(:focus) + .bp6-input-action .bp6-button.bp6-minimal:not(:hover):not(:focus) .bp6-icon-standard,
.bp6-input-group .bp6-input:not(:focus) + .bp6-input-action .bp6-button.bp6-minimal:not(:hover):not(:focus) .bp6-icon-large {
  color: #5f6b7c;
}
.bp6-input-group .bp6-input:not(:focus) + .bp6-button.bp6-minimal:disabled,
.bp6-input-group .bp6-input:not(:focus) + .bp6-input-action .bp6-button.bp6-minimal:disabled {
  color: rgba(95, 107, 124, 0.6) !important;
}
.bp6-input-group .bp6-input:not(:focus) + .bp6-button.bp6-minimal:disabled .bp6-icon,
.bp6-input-group .bp6-input:not(:focus) + .bp6-button.bp6-minimal:disabled .bp6-icon-standard,
.bp6-input-group .bp6-input:not(:focus) + .bp6-button.bp6-minimal:disabled .bp6-icon-large,
.bp6-input-group .bp6-input:not(:focus) + .bp6-input-action .bp6-button.bp6-minimal:disabled .bp6-icon,
.bp6-input-group .bp6-input:not(:focus) + .bp6-input-action .bp6-button.bp6-minimal:disabled .bp6-icon-standard,
.bp6-input-group .bp6-input:not(:focus) + .bp6-input-action .bp6-button.bp6-minimal:disabled .bp6-icon-large {
  color: rgba(95, 107, 124, 0.6) !important;
}
.bp6-input-group.bp6-disabled {
  cursor: not-allowed;
}
.bp6-input-group.bp6-disabled .bp6-icon {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-input-group.bp6-large .bp6-button {
  min-height: 30px;
  min-width: 30px;
  margin: 5px;
}
.bp6-input-group.bp6-large > .bp6-input-left-container > .bp6-icon,
.bp6-input-group.bp6-large > .bp6-icon,
.bp6-input-group.bp6-large .bp6-input-action > .bp6-spinner {
  margin: 12px;
}
.bp6-input-group.bp6-large .bp6-input {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
}
.bp6-input-group.bp6-large .bp6-input[type=search],
.bp6-input-group.bp6-large .bp6-input.bp6-round {
  padding: 0 12px;
}
.bp6-input-group.bp6-large .bp6-input:not(:first-child) {
  padding-left: 40px;
}
.bp6-input-group.bp6-large .bp6-input:not(:last-child) {
  padding-right: 40px;
}
.bp6-input-group.bp6-small .bp6-button {
  min-height: 20px;
  min-width: 20px;
  margin: 2px;
}
.bp6-input-group.bp6-small .bp6-tag {
  min-height: 20px;
  min-width: 20px;
  margin: 2px;
}
.bp6-input-group.bp6-small > .bp6-input-left-container > .bp6-icon,
.bp6-input-group.bp6-small > .bp6-icon,
.bp6-input-group.bp6-small .bp6-input-action > .bp6-spinner {
  margin: 4px;
}
.bp6-input-group.bp6-small .bp6-input {
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  padding-left: 8px;
  padding-right: 8px;
}
.bp6-input-group.bp6-small .bp6-input[type=search],
.bp6-input-group.bp6-small .bp6-input.bp6-round {
  padding: 0 12px;
}
.bp6-input-group.bp6-small .bp6-input:not(:first-child) {
  padding-left: 24px;
}
.bp6-input-group.bp6-small .bp6-input:not(:last-child) {
  padding-right: 24px;
}
.bp6-input-group.bp6-fill {
  flex: 1 1 auto;
  width: 100%;
}
.bp6-input-group.bp6-round .bp6-button,
.bp6-input-group.bp6-round .bp6-input,
.bp6-input-group.bp6-round .bp6-tag {
  border-radius: 30px;
}
.bp6-dark .bp6-input-group .bp6-icon {
  color: #abb3bf;
}
.bp6-dark .bp6-input-group.bp6-disabled .bp6-icon {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-input-group.bp6-intent-primary .bp6-input {
  box-shadow:
    0 0 0 0 rgba(45, 114, 210, 0),
    0 0 0 0 rgba(45, 114, 210, 0),
    inset 0 0 0 1px #2d72d2,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-input-group.bp6-intent-primary .bp6-input:focus {
  box-shadow:
    inset 0 0 0 1px rgba(45, 114, 210, 0.752),
    0 0 0 2px rgba(45, 114, 210, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input-group.bp6-intent-primary .bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px #2d72d2;
}
.bp6-input-group.bp6-intent-primary .bp6-input:disabled,
.bp6-input-group.bp6-intent-primary .bp6-input.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-input-group.bp6-intent-primary .bp6-input {
  box-shadow:
    0 0 0 0 rgba(76, 144, 240, 0),
    0 0 0 0 rgba(76, 144, 240, 0),
    inset 0 0 0 1px #4c90f0,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input-group.bp6-intent-primary .bp6-input:focus {
  box-shadow:
    inset 0 0 0 1px rgba(76, 144, 240, 0.752),
    0 0 0 2px rgba(76, 144, 240, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input-group.bp6-intent-primary .bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px #4c90f0;
}
.bp6-dark .bp6-input-group.bp6-intent-primary .bp6-input:disabled,
.bp6-dark .bp6-input-group.bp6-intent-primary .bp6-input.bp6-disabled {
  box-shadow: none;
}
.bp6-input-group.bp6-intent-primary > .bp6-icon {
  color: #215db0;
}
.bp6-dark .bp6-input-group.bp6-intent-primary > .bp6-icon {
  color: #8abbff;
}
.bp6-input-group.bp6-intent-success .bp6-input {
  box-shadow:
    0 0 0 0 rgba(35, 133, 81, 0),
    0 0 0 0 rgba(35, 133, 81, 0),
    inset 0 0 0 1px #238551,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-input-group.bp6-intent-success .bp6-input:focus {
  box-shadow:
    inset 0 0 0 1px rgba(35, 133, 81, 0.752),
    0 0 0 2px rgba(35, 133, 81, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input-group.bp6-intent-success .bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px #238551;
}
.bp6-input-group.bp6-intent-success .bp6-input:disabled,
.bp6-input-group.bp6-intent-success .bp6-input.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-input-group.bp6-intent-success .bp6-input {
  box-shadow:
    0 0 0 0 rgba(50, 164, 103, 0),
    0 0 0 0 rgba(50, 164, 103, 0),
    inset 0 0 0 1px #32a467,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input-group.bp6-intent-success .bp6-input:focus {
  box-shadow:
    inset 0 0 0 1px rgba(50, 164, 103, 0.752),
    0 0 0 2px rgba(50, 164, 103, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input-group.bp6-intent-success .bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px #32a467;
}
.bp6-dark .bp6-input-group.bp6-intent-success .bp6-input:disabled,
.bp6-dark .bp6-input-group.bp6-intent-success .bp6-input.bp6-disabled {
  box-shadow: none;
}
.bp6-input-group.bp6-intent-success > .bp6-icon {
  color: #1c6e42;
}
.bp6-dark .bp6-input-group.bp6-intent-success > .bp6-icon {
  color: #72ca9b;
}
.bp6-input-group.bp6-intent-warning .bp6-input {
  box-shadow:
    0 0 0 0 rgba(200, 118, 25, 0),
    0 0 0 0 rgba(200, 118, 25, 0),
    inset 0 0 0 1px #c87619,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-input-group.bp6-intent-warning .bp6-input:focus {
  box-shadow:
    inset 0 0 0 1px rgba(200, 118, 25, 0.752),
    0 0 0 2px rgba(200, 118, 25, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input-group.bp6-intent-warning .bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px #c87619;
}
.bp6-input-group.bp6-intent-warning .bp6-input:disabled,
.bp6-input-group.bp6-intent-warning .bp6-input.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-input-group.bp6-intent-warning .bp6-input {
  box-shadow:
    0 0 0 0 rgba(236, 154, 60, 0),
    0 0 0 0 rgba(236, 154, 60, 0),
    inset 0 0 0 1px #ec9a3c,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input-group.bp6-intent-warning .bp6-input:focus {
  box-shadow:
    inset 0 0 0 1px rgba(236, 154, 60, 0.752),
    0 0 0 2px rgba(236, 154, 60, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input-group.bp6-intent-warning .bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px #ec9a3c;
}
.bp6-dark .bp6-input-group.bp6-intent-warning .bp6-input:disabled,
.bp6-dark .bp6-input-group.bp6-intent-warning .bp6-input.bp6-disabled {
  box-shadow: none;
}
.bp6-input-group.bp6-intent-warning > .bp6-icon {
  color: #935610;
}
.bp6-dark .bp6-input-group.bp6-intent-warning > .bp6-icon {
  color: #fbb360;
}
.bp6-input-group.bp6-intent-danger .bp6-input {
  box-shadow:
    0 0 0 0 rgba(205, 66, 70, 0),
    0 0 0 0 rgba(205, 66, 70, 0),
    inset 0 0 0 1px #cd4246,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-input-group.bp6-intent-danger .bp6-input:focus {
  box-shadow:
    inset 0 0 0 1px rgba(205, 66, 70, 0.752),
    0 0 0 2px rgba(205, 66, 70, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input-group.bp6-intent-danger .bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px #cd4246;
}
.bp6-input-group.bp6-intent-danger .bp6-input:disabled,
.bp6-input-group.bp6-intent-danger .bp6-input.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-input-group.bp6-intent-danger .bp6-input {
  box-shadow:
    0 0 0 0 rgba(231, 106, 110, 0),
    0 0 0 0 rgba(231, 106, 110, 0),
    inset 0 0 0 1px #e76a6e,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input-group.bp6-intent-danger .bp6-input:focus {
  box-shadow:
    inset 0 0 0 1px rgba(231, 106, 110, 0.752),
    0 0 0 2px rgba(231, 106, 110, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input-group.bp6-intent-danger .bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px #e76a6e;
}
.bp6-dark .bp6-input-group.bp6-intent-danger .bp6-input:disabled,
.bp6-dark .bp6-input-group.bp6-intent-danger .bp6-input.bp6-disabled {
  box-shadow: none;
}
.bp6-input-group.bp6-intent-danger > .bp6-icon {
  color: #ac2f33;
}
.bp6-dark .bp6-input-group.bp6-intent-danger > .bp6-icon {
  color: #fa999c;
}
.bp6-input::-moz-placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-input:-ms-input-placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-input::placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff;
  border: none;
  border-radius: 2px;
  box-shadow:
    0 0 0 0 rgba(33, 93, 176, 0),
    0 0 0 0 rgba(33, 93, 176, 0),
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
  color: #1c2127;
  font-size: 14px;
  font-weight: 400;
  height: 30px;
  line-height: 30px;
  outline: none;
  padding: 0 8px;
  transition: box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  vertical-align: middle;
}
.bp6-input:focus,
.bp6-input.bp6-active {
  box-shadow:
    inset 0 0 0 1px rgba(33, 93, 176, 0.752),
    0 0 0 1px rgba(33, 93, 176, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input[type=search],
.bp6-input.bp6-round {
  border-radius: 30px;
  box-sizing: border-box;
  padding-left: 8px;
}
.bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.15);
}
.bp6-input[readonly]:focus {
  box-shadow:
    inset 0 0 0 1px rgba(33, 93, 176, 0.752),
    0 0 0 1px rgba(33, 93, 176, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input:disabled,
.bp6-input.bp6-disabled {
  background: rgba(211, 216, 222, 0.5);
  box-shadow: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
  resize: none;
}
.bp6-input:disabled::-moz-placeholder,
.bp6-input.bp6-disabled::-moz-placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-input:disabled:-ms-input-placeholder,
.bp6-input.bp6-disabled:-ms-input-placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-input:disabled::placeholder,
.bp6-input.bp6-disabled::placeholder {
  color: rgba(95, 107, 124, 0.6);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-input {
    border: 1px solid buttonborder;
  }
}
.bp6-input.bp6-large {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
}
.bp6-input.bp6-large[type=search],
.bp6-input.bp6-large.bp6-round {
  padding: 0 12px;
}
.bp6-input.bp6-small {
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  padding-left: 8px;
  padding-right: 8px;
}
.bp6-input.bp6-small[type=search],
.bp6-input.bp6-small.bp6-round {
  padding: 0 12px;
}
.bp6-input.bp6-fill {
  flex: 1 1 auto;
  width: 100%;
}
.bp6-dark .bp6-input::-moz-placeholder {
  color: #abb3bf;
}
.bp6-dark .bp6-input:-ms-input-placeholder {
  color: #abb3bf;
}
.bp6-dark .bp6-input::placeholder {
  color: #abb3bf;
}
.bp6-dark .bp6-input {
  background: rgba(17, 20, 24, 0.3);
  box-shadow:
    0 0 0 0 rgba(138, 187, 255, 0),
    0 0 0 0 rgba(138, 187, 255, 0),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
  color: #f6f7f9;
}
.bp6-dark .bp6-input:focus {
  box-shadow: inset 0 0 0 1px rgba(138, 187, 255, 0.752), 0 0 0 1px rgba(138, 187, 255, 0.752);
}
.bp6-dark .bp6-input[readonly] {
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-input[readonly]:focus {
  box-shadow: inset 0 0 0 1px rgba(138, 187, 255, 0.752), 0 0 0 1px rgba(138, 187, 255, 0.752);
}
.bp6-dark .bp6-input:disabled,
.bp6-dark .bp6-input.bp6-disabled {
  background: rgba(64, 72, 84, 0.5);
  box-shadow: none;
  color: rgba(171, 179, 191, 0.6);
}
.bp6-input.bp6-intent-primary {
  box-shadow:
    0 0 0 0 rgba(45, 114, 210, 0),
    0 0 0 0 rgba(45, 114, 210, 0),
    inset 0 0 0 1px #2d72d2,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-input.bp6-intent-primary:focus {
  box-shadow:
    inset 0 0 0 1px rgba(45, 114, 210, 0.752),
    0 0 0 2px rgba(45, 114, 210, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input.bp6-intent-primary[readonly] {
  box-shadow: inset 0 0 0 1px #2d72d2;
}
.bp6-input.bp6-intent-primary:disabled,
.bp6-input.bp6-intent-primary.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-input.bp6-intent-primary {
  box-shadow:
    0 0 0 0 rgba(76, 144, 240, 0),
    0 0 0 0 rgba(76, 144, 240, 0),
    inset 0 0 0 1px #4c90f0,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input.bp6-intent-primary:focus {
  box-shadow:
    inset 0 0 0 1px rgba(76, 144, 240, 0.752),
    0 0 0 2px rgba(76, 144, 240, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input.bp6-intent-primary[readonly] {
  box-shadow: inset 0 0 0 1px #4c90f0;
}
.bp6-dark .bp6-input.bp6-intent-primary:disabled,
.bp6-dark .bp6-input.bp6-intent-primary.bp6-disabled {
  box-shadow: none;
}
.bp6-input.bp6-intent-success {
  box-shadow:
    0 0 0 0 rgba(35, 133, 81, 0),
    0 0 0 0 rgba(35, 133, 81, 0),
    inset 0 0 0 1px #238551,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-input.bp6-intent-success:focus {
  box-shadow:
    inset 0 0 0 1px rgba(35, 133, 81, 0.752),
    0 0 0 2px rgba(35, 133, 81, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input.bp6-intent-success[readonly] {
  box-shadow: inset 0 0 0 1px #238551;
}
.bp6-input.bp6-intent-success:disabled,
.bp6-input.bp6-intent-success.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-input.bp6-intent-success {
  box-shadow:
    0 0 0 0 rgba(50, 164, 103, 0),
    0 0 0 0 rgba(50, 164, 103, 0),
    inset 0 0 0 1px #32a467,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input.bp6-intent-success:focus {
  box-shadow:
    inset 0 0 0 1px rgba(50, 164, 103, 0.752),
    0 0 0 2px rgba(50, 164, 103, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input.bp6-intent-success[readonly] {
  box-shadow: inset 0 0 0 1px #32a467;
}
.bp6-dark .bp6-input.bp6-intent-success:disabled,
.bp6-dark .bp6-input.bp6-intent-success.bp6-disabled {
  box-shadow: none;
}
.bp6-input.bp6-intent-warning {
  box-shadow:
    0 0 0 0 rgba(200, 118, 25, 0),
    0 0 0 0 rgba(200, 118, 25, 0),
    inset 0 0 0 1px #c87619,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-input.bp6-intent-warning:focus {
  box-shadow:
    inset 0 0 0 1px rgba(200, 118, 25, 0.752),
    0 0 0 2px rgba(200, 118, 25, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input.bp6-intent-warning[readonly] {
  box-shadow: inset 0 0 0 1px #c87619;
}
.bp6-input.bp6-intent-warning:disabled,
.bp6-input.bp6-intent-warning.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-input.bp6-intent-warning {
  box-shadow:
    0 0 0 0 rgba(236, 154, 60, 0),
    0 0 0 0 rgba(236, 154, 60, 0),
    inset 0 0 0 1px #ec9a3c,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input.bp6-intent-warning:focus {
  box-shadow:
    inset 0 0 0 1px rgba(236, 154, 60, 0.752),
    0 0 0 2px rgba(236, 154, 60, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input.bp6-intent-warning[readonly] {
  box-shadow: inset 0 0 0 1px #ec9a3c;
}
.bp6-dark .bp6-input.bp6-intent-warning:disabled,
.bp6-dark .bp6-input.bp6-intent-warning.bp6-disabled {
  box-shadow: none;
}
.bp6-input.bp6-intent-danger {
  box-shadow:
    0 0 0 0 rgba(205, 66, 70, 0),
    0 0 0 0 rgba(205, 66, 70, 0),
    inset 0 0 0 1px #cd4246,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-input.bp6-intent-danger:focus {
  box-shadow:
    inset 0 0 0 1px rgba(205, 66, 70, 0.752),
    0 0 0 2px rgba(205, 66, 70, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-input.bp6-intent-danger[readonly] {
  box-shadow: inset 0 0 0 1px #cd4246;
}
.bp6-input.bp6-intent-danger:disabled,
.bp6-input.bp6-intent-danger.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-input.bp6-intent-danger {
  box-shadow:
    0 0 0 0 rgba(231, 106, 110, 0),
    0 0 0 0 rgba(231, 106, 110, 0),
    inset 0 0 0 1px #e76a6e,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input.bp6-intent-danger:focus {
  box-shadow:
    inset 0 0 0 1px rgba(231, 106, 110, 0.752),
    0 0 0 2px rgba(231, 106, 110, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-input.bp6-intent-danger[readonly] {
  box-shadow: inset 0 0 0 1px #e76a6e;
}
.bp6-dark .bp6-input.bp6-intent-danger:disabled,
.bp6-dark .bp6-input.bp6-intent-danger.bp6-disabled {
  box-shadow: none;
}
.bp6-input::-ms-clear {
  display: none;
}
@supports (-webkit-touch-callout: none) {
  input.bp6-input:disabled,
  input.bp6-input.bp6-disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(95, 107, 124, 0.6);
  }
  .bp6-dark input.bp6-input:disabled,
  .bp6-dark input.bp6-input.bp6-disabled {
    -webkit-text-fill-color: rgba(171, 179, 191, 0.6);
  }
}
textarea.bp6-input {
  max-width: 100%;
  padding: 8px;
}
textarea.bp6-input,
textarea.bp6-input.bp6-large,
textarea.bp6-input.bp6-small {
  height: auto;
  line-height: inherit;
}
textarea.bp6-input.bp6-small {
  padding: 8px;
}
.bp6-text-area.bp6-text-area-auto-resize {
  resize: horizontal;
}
label.bp6-label {
  display: block;
  margin-bottom: 16px;
  margin-top: 0;
}
label.bp6-label .bp6-html-select,
label.bp6-label .bp6-input,
label.bp6-label .bp6-select,
label.bp6-label .bp6-slider,
label.bp6-label .bp6-popover-wrapper {
  display: block;
  margin-top: 4px;
  text-transform: none;
}
label.bp6-label .bp6-button-group {
  margin-top: 4px;
}
label.bp6-label .bp6-select select,
label.bp6-label .bp6-html-select select {
  font-weight: 400;
  vertical-align: top;
  width: 100%;
}
label.bp6-label .bp6-control-group {
  margin-top: 4px;
}
label.bp6-label .bp6-control-group > .bp6-button-group,
label.bp6-label .bp6-control-group > .bp6-html-select,
label.bp6-label .bp6-control-group > .bp6-input,
label.bp6-label .bp6-control-group > .bp6-select,
label.bp6-label .bp6-control-group > .bp6-slider,
label.bp6-label .bp6-control-group > .bp6-popover-wrapper {
  margin-top: 0;
}
label.bp6-label.bp6-disabled,
label.bp6-label.bp6-disabled .bp6-text-muted {
  color: rgba(95, 107, 124, 0.6);
}
label.bp6-label.bp6-inline {
  line-height: 30px;
}
label.bp6-label.bp6-inline .bp6-html-select,
label.bp6-label.bp6-inline .bp6-input,
label.bp6-label.bp6-inline .bp6-input-group,
label.bp6-label.bp6-inline .bp6-select,
label.bp6-label.bp6-inline .bp6-popover-wrapper {
  display: inline-block;
  margin: 0 0 0 4px;
  vertical-align: top;
}
label.bp6-label.bp6-inline .bp6-button-group {
  margin: 0 0 0 4px;
}
label.bp6-label.bp6-inline .bp6-input-group .bp6-input {
  margin-left: 0;
}
label.bp6-label.bp6-inline.bp6-large {
  line-height: 40px;
}
label.bp6-label.bp6-inline .bp6-control-group {
  margin: 0 0 0 4px;
}
label.bp6-label.bp6-inline .bp6-control-group > .bp6-button-group,
label.bp6-label.bp6-inline .bp6-control-group > .bp6-html-select,
label.bp6-label.bp6-inline .bp6-control-group > .bp6-input,
label.bp6-label.bp6-inline .bp6-control-group > .bp6-select,
label.bp6-label.bp6-inline .bp6-control-group > .bp6-slider,
label.bp6-label.bp6-inline .bp6-control-group > .bp6-popover-wrapper {
  margin: 0;
}
label.bp6-label:not(.bp6-inline) .bp6-popover-target {
  display: block;
}
.bp6-dark label.bp6-label {
  color: #f6f7f9;
}
.bp6-dark label.bp6-label.bp6-disabled,
.bp6-dark label.bp6-label.bp6-disabled .bp6-text-muted {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-numeric-input .bp6-button-group.bp6-vertical > .bp6-button {
  flex: 1 1 11px;
  min-height: 0;
  padding: 0;
  width: 24px;
}
.bp6-numeric-input.bp6-large .bp6-button-group.bp6-vertical > .bp6-button {
  width: 40px;
}
.bp6-numeric-input.bp6-small .bp6-button-group.bp6-vertical > .bp6-button {
  width: 24px;
}
form {
  display: block;
}
.bp6-html-select select,
.bp6-select select {
  display: inline-flex;
  flex-direction: row;
}
.bp6-html-select select > *,
.bp6-select select > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-html-select select > .bp6-fill,
.bp6-select select > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-html-select select::before,
.bp6-select select::before,
.bp6-html-select select > *,
.bp6-select select > * {
  margin-right: 8px;
}
.bp6-html-select select:empty::before,
.bp6-select select:empty::before,
.bp6-html-select select > :last-child,
.bp6-select select > :last-child {
  margin-right: 0;
}
.bp6-html-select select,
.bp6-select select {
  align-items: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  justify-content: center;
  padding: 4px 8px;
  text-align: left;
  vertical-align: middle;
  background-color: #f6f7f9;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1);
  color: #1c2127;
}
.bp6-html-select select:hover,
.bp6-select select:hover {
  background-clip: padding-box;
  background-color: #edeff2;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-html-select select:active,
.bp6-select select:active,
.bp6-html-select select.bp6-active,
.bp6-select select.bp6-active {
  background-color: #dce0e5;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-html-select select:active,
  .bp6-select select:active,
  .bp6-html-select select.bp6-active,
  .bp6-select select.bp6-active {
    background: highlight;
  }
}
.bp6-html-select select:disabled,
.bp6-select select:disabled,
.bp6-html-select select.bp6-disabled,
.bp6-select select.bp6-disabled {
  background-color: rgba(211, 216, 222, 0.5);
  box-shadow: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
  outline: none;
}
.bp6-html-select select:disabled.bp6-active,
.bp6-select select:disabled.bp6-active,
.bp6-html-select select.bp6-disabled.bp6-active,
.bp6-select select.bp6-disabled.bp6-active {
  background: rgba(211, 216, 222, 0.7);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-html-select select,
  .bp6-select select {
    border: 1px solid buttonborder;
  }
}
.bp6-html-select select,
.bp6-select select {
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 2px;
  height: 30px;
  padding: 0 24px 0 8px;
  width: 100%;
}
.bp6-html-select.bp6-minimal select,
.bp6-select.bp6-minimal select {
  background: none;
  box-shadow: none;
}
.bp6-html-select.bp6-minimal select:hover,
.bp6-select.bp6-minimal select:hover {
  background: rgba(143, 153, 168, 0.15);
  box-shadow: none;
  color: #1c2127;
  text-decoration: none;
}
.bp6-html-select.bp6-minimal select:active,
.bp6-select.bp6-minimal select:active,
.bp6-html-select.bp6-minimal select.bp6-active,
.bp6-select.bp6-minimal select.bp6-active {
  background: rgba(143, 153, 168, 0.3);
  box-shadow: none;
  color: #1c2127;
}
.bp6-html-select.bp6-minimal select:disabled,
.bp6-select.bp6-minimal select:disabled,
.bp6-html-select.bp6-minimal select.bp6-disabled,
.bp6-select.bp6-minimal select.bp6-disabled {
  background: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-html-select.bp6-minimal select:disabled.bp6-active,
.bp6-select.bp6-minimal select:disabled.bp6-active,
.bp6-html-select.bp6-minimal select.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal select.bp6-disabled.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-html-select.bp6-minimal select,
.bp6-html-select.bp6-minimal .bp6-dark select,
.bp6-dark .bp6-select.bp6-minimal select,
.bp6-select.bp6-minimal .bp6-dark select {
  background: none;
  box-shadow: none;
  color: #ffffff;
}
.bp6-dark .bp6-html-select.bp6-minimal select:hover,
.bp6-html-select.bp6-minimal .bp6-dark select:hover,
.bp6-dark .bp6-select.bp6-minimal select:hover,
.bp6-select.bp6-minimal .bp6-dark select:hover,
.bp6-dark .bp6-html-select.bp6-minimal select:active,
.bp6-html-select.bp6-minimal .bp6-dark select:active,
.bp6-dark .bp6-select.bp6-minimal select:active,
.bp6-select.bp6-minimal .bp6-dark select:active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-active {
  background: none;
  box-shadow: none;
  color: #ffffff;
}
.bp6-dark .bp6-html-select.bp6-minimal select:hover,
.bp6-html-select.bp6-minimal .bp6-dark select:hover,
.bp6-dark .bp6-select.bp6-minimal select:hover,
.bp6-select.bp6-minimal .bp6-dark select:hover {
  background: rgba(143, 153, 168, 0.15);
}
.bp6-dark .bp6-html-select.bp6-minimal select:active,
.bp6-html-select.bp6-minimal .bp6-dark select:active,
.bp6-dark .bp6-select.bp6-minimal select:active,
.bp6-select.bp6-minimal .bp6-dark select:active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-html-select.bp6-minimal select:disabled,
.bp6-html-select.bp6-minimal .bp6-dark select:disabled,
.bp6-dark .bp6-select.bp6-minimal select:disabled,
.bp6-select.bp6-minimal .bp6-dark select:disabled,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-disabled,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-disabled,
.bp6-dark .bp6-select.bp6-minimal select.bp6-disabled,
.bp6-select.bp6-minimal .bp6-dark select.bp6-disabled {
  background: none;
  color: rgba(171, 179, 191, 0.6);
  cursor: not-allowed;
}
.bp6-dark .bp6-html-select.bp6-minimal select:disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select:disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select:disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select:disabled.bp6-active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-disabled.bp6-active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-html-select.bp6-minimal select.bp6-intent-primary,
.bp6-select.bp6-minimal select.bp6-intent-primary {
  color: #215db0;
}
.bp6-html-select.bp6-minimal select.bp6-intent-primary:hover,
.bp6-select.bp6-minimal select.bp6-intent-primary:hover,
.bp6-html-select.bp6-minimal select.bp6-intent-primary:active,
.bp6-select.bp6-minimal select.bp6-intent-primary:active,
.bp6-html-select.bp6-minimal select.bp6-intent-primary.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-primary.bp6-active {
  background: none;
  box-shadow: none;
  color: #215db0;
}
.bp6-html-select.bp6-minimal select.bp6-intent-primary:hover,
.bp6-select.bp6-minimal select.bp6-intent-primary:hover {
  background: rgba(45, 114, 210, 0.15);
  color: #215db0;
}
.bp6-html-select.bp6-minimal select.bp6-intent-primary:active,
.bp6-select.bp6-minimal select.bp6-intent-primary:active,
.bp6-html-select.bp6-minimal select.bp6-intent-primary.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-primary.bp6-active {
  background: rgba(45, 114, 210, 0.3);
  color: #184a90;
}
.bp6-html-select.bp6-minimal select.bp6-intent-primary:disabled,
.bp6-select.bp6-minimal select.bp6-intent-primary:disabled,
.bp6-html-select.bp6-minimal select.bp6-intent-primary.bp6-disabled,
.bp6-select.bp6-minimal select.bp6-intent-primary.bp6-disabled {
  background: none;
  color: rgba(33, 93, 176, 0.5);
}
.bp6-html-select.bp6-minimal select.bp6-intent-primary:disabled.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-primary:disabled.bp6-active,
.bp6-html-select.bp6-minimal select.bp6-intent-primary.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-primary.bp6-disabled.bp6-active {
  background: rgba(45, 114, 210, 0.3);
}
.bp6-html-select.bp6-minimal select.bp6-intent-primary .bp6-button-spinner .bp6-spinner-head,
.bp6-select.bp6-minimal select.bp6-intent-primary .bp6-button-spinner .bp6-spinner-head {
  stroke: #215db0;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-primary,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-primary,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-primary,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-primary {
  color: #8abbff;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-primary:hover,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-primary:hover,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-primary:hover,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-primary:hover {
  background: rgba(45, 114, 210, 0.2);
  color: #8abbff;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-primary:active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-primary:active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-primary:active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-primary:active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-primary.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-primary.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-primary.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-primary.bp6-active {
  background: rgba(45, 114, 210, 0.3);
  color: #99c4ff;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-primary:disabled,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-primary:disabled,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-primary:disabled,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-primary:disabled,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-primary.bp6-disabled,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-primary.bp6-disabled,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-primary.bp6-disabled,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-primary.bp6-disabled {
  background: none;
  color: rgba(138, 187, 255, 0.5);
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-primary:disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-primary:disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-primary:disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-primary:disabled.bp6-active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-primary.bp6-disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-primary.bp6-disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-primary.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-primary.bp6-disabled.bp6-active {
  background: rgba(45, 114, 210, 0.3);
}
.bp6-html-select.bp6-minimal select.bp6-intent-success,
.bp6-select.bp6-minimal select.bp6-intent-success {
  color: #1c6e42;
}
.bp6-html-select.bp6-minimal select.bp6-intent-success:hover,
.bp6-select.bp6-minimal select.bp6-intent-success:hover,
.bp6-html-select.bp6-minimal select.bp6-intent-success:active,
.bp6-select.bp6-minimal select.bp6-intent-success:active,
.bp6-html-select.bp6-minimal select.bp6-intent-success.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-success.bp6-active {
  background: none;
  box-shadow: none;
  color: #1c6e42;
}
.bp6-html-select.bp6-minimal select.bp6-intent-success:hover,
.bp6-select.bp6-minimal select.bp6-intent-success:hover {
  background: rgba(35, 133, 81, 0.15);
  color: #1c6e42;
}
.bp6-html-select.bp6-minimal select.bp6-intent-success:active,
.bp6-select.bp6-minimal select.bp6-intent-success:active,
.bp6-html-select.bp6-minimal select.bp6-intent-success.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-success.bp6-active {
  background: rgba(35, 133, 81, 0.3);
  color: #165a36;
}
.bp6-html-select.bp6-minimal select.bp6-intent-success:disabled,
.bp6-select.bp6-minimal select.bp6-intent-success:disabled,
.bp6-html-select.bp6-minimal select.bp6-intent-success.bp6-disabled,
.bp6-select.bp6-minimal select.bp6-intent-success.bp6-disabled {
  background: none;
  color: rgba(28, 110, 66, 0.5);
}
.bp6-html-select.bp6-minimal select.bp6-intent-success:disabled.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-success:disabled.bp6-active,
.bp6-html-select.bp6-minimal select.bp6-intent-success.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-success.bp6-disabled.bp6-active {
  background: rgba(35, 133, 81, 0.3);
}
.bp6-html-select.bp6-minimal select.bp6-intent-success .bp6-button-spinner .bp6-spinner-head,
.bp6-select.bp6-minimal select.bp6-intent-success .bp6-button-spinner .bp6-spinner-head {
  stroke: #1c6e42;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-success,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-success,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-success,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-success {
  color: #72ca9b;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-success:hover,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-success:hover,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-success:hover,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-success:hover {
  background: rgba(35, 133, 81, 0.2);
  color: #72ca9b;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-success:active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-success:active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-success:active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-success:active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-success.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-success.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-success.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-success.bp6-active {
  background: rgba(35, 133, 81, 0.3);
  color: #7cd7a2;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-success:disabled,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-success:disabled,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-success:disabled,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-success:disabled,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-success.bp6-disabled,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-success.bp6-disabled,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-success.bp6-disabled,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-success.bp6-disabled {
  background: none;
  color: rgba(114, 202, 155, 0.5);
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-success:disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-success:disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-success:disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-success:disabled.bp6-active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-success.bp6-disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-success.bp6-disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-success.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-success.bp6-disabled.bp6-active {
  background: rgba(35, 133, 81, 0.3);
}
.bp6-html-select.bp6-minimal select.bp6-intent-warning,
.bp6-select.bp6-minimal select.bp6-intent-warning {
  color: #935610;
}
.bp6-html-select.bp6-minimal select.bp6-intent-warning:hover,
.bp6-select.bp6-minimal select.bp6-intent-warning:hover,
.bp6-html-select.bp6-minimal select.bp6-intent-warning:active,
.bp6-select.bp6-minimal select.bp6-intent-warning:active,
.bp6-html-select.bp6-minimal select.bp6-intent-warning.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-warning.bp6-active {
  background: none;
  box-shadow: none;
  color: #935610;
}
.bp6-html-select.bp6-minimal select.bp6-intent-warning:hover,
.bp6-select.bp6-minimal select.bp6-intent-warning:hover {
  background: rgba(200, 118, 25, 0.15);
  color: #935610;
}
.bp6-html-select.bp6-minimal select.bp6-intent-warning:active,
.bp6-select.bp6-minimal select.bp6-intent-warning:active,
.bp6-html-select.bp6-minimal select.bp6-intent-warning.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-warning.bp6-active {
  background: rgba(200, 118, 25, 0.3);
  color: #77450d;
}
.bp6-html-select.bp6-minimal select.bp6-intent-warning:disabled,
.bp6-select.bp6-minimal select.bp6-intent-warning:disabled,
.bp6-html-select.bp6-minimal select.bp6-intent-warning.bp6-disabled,
.bp6-select.bp6-minimal select.bp6-intent-warning.bp6-disabled {
  background: none;
  color: rgba(147, 86, 16, 0.5);
}
.bp6-html-select.bp6-minimal select.bp6-intent-warning:disabled.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-warning:disabled.bp6-active,
.bp6-html-select.bp6-minimal select.bp6-intent-warning.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-warning.bp6-disabled.bp6-active {
  background: rgba(200, 118, 25, 0.3);
}
.bp6-html-select.bp6-minimal select.bp6-intent-warning .bp6-button-spinner .bp6-spinner-head,
.bp6-select.bp6-minimal select.bp6-intent-warning .bp6-button-spinner .bp6-spinner-head {
  stroke: #935610;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-warning,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-warning,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-warning,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-warning {
  color: #fbb360;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-warning:hover,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-warning:hover,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-warning:hover,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-warning:hover {
  background: rgba(200, 118, 25, 0.2);
  color: #fbb360;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-warning:active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-warning:active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-warning:active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-warning:active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-warning.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-warning.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-warning.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-warning.bp6-active {
  background: rgba(200, 118, 25, 0.3);
  color: #f5c186;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-warning:disabled,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-warning:disabled,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-warning:disabled,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-warning:disabled,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-warning.bp6-disabled,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-warning.bp6-disabled,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-warning.bp6-disabled,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-warning.bp6-disabled {
  background: none;
  color: rgba(251, 179, 96, 0.5);
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-warning:disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-warning:disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-warning:disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-warning:disabled.bp6-active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-warning.bp6-disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-warning.bp6-disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-warning.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-warning.bp6-disabled.bp6-active {
  background: rgba(200, 118, 25, 0.3);
}
.bp6-html-select.bp6-minimal select.bp6-intent-danger,
.bp6-select.bp6-minimal select.bp6-intent-danger {
  color: #ac2f33;
}
.bp6-html-select.bp6-minimal select.bp6-intent-danger:hover,
.bp6-select.bp6-minimal select.bp6-intent-danger:hover,
.bp6-html-select.bp6-minimal select.bp6-intent-danger:active,
.bp6-select.bp6-minimal select.bp6-intent-danger:active,
.bp6-html-select.bp6-minimal select.bp6-intent-danger.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-danger.bp6-active {
  background: none;
  box-shadow: none;
  color: #ac2f33;
}
.bp6-html-select.bp6-minimal select.bp6-intent-danger:hover,
.bp6-select.bp6-minimal select.bp6-intent-danger:hover {
  background: rgba(205, 66, 70, 0.15);
  color: #ac2f33;
}
.bp6-html-select.bp6-minimal select.bp6-intent-danger:active,
.bp6-select.bp6-minimal select.bp6-intent-danger:active,
.bp6-html-select.bp6-minimal select.bp6-intent-danger.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-danger.bp6-active {
  background: rgba(205, 66, 70, 0.3);
  color: #8e292c;
}
.bp6-html-select.bp6-minimal select.bp6-intent-danger:disabled,
.bp6-select.bp6-minimal select.bp6-intent-danger:disabled,
.bp6-html-select.bp6-minimal select.bp6-intent-danger.bp6-disabled,
.bp6-select.bp6-minimal select.bp6-intent-danger.bp6-disabled {
  background: none;
  color: rgba(172, 47, 51, 0.5);
}
.bp6-html-select.bp6-minimal select.bp6-intent-danger:disabled.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-danger:disabled.bp6-active,
.bp6-html-select.bp6-minimal select.bp6-intent-danger.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal select.bp6-intent-danger.bp6-disabled.bp6-active {
  background: rgba(205, 66, 70, 0.3);
}
.bp6-html-select.bp6-minimal select.bp6-intent-danger .bp6-button-spinner .bp6-spinner-head,
.bp6-select.bp6-minimal select.bp6-intent-danger .bp6-button-spinner .bp6-spinner-head {
  stroke: #ac2f33;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-danger,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-danger,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-danger,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-danger {
  color: #fa999c;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-danger:hover,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-danger:hover,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-danger:hover,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-danger:hover {
  background: rgba(205, 66, 70, 0.2);
  color: #fa999c;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-danger:active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-danger:active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-danger:active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-danger:active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-danger.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-danger.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-danger.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-danger.bp6-active {
  background: rgba(205, 66, 70, 0.3);
  color: #ffa1a4;
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-danger:disabled,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-danger:disabled,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-danger:disabled,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-danger:disabled,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-danger.bp6-disabled,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-danger.bp6-disabled,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-danger.bp6-disabled,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-danger.bp6-disabled {
  background: none;
  color: rgba(250, 153, 156, 0.5);
}
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-danger:disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-danger:disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-danger:disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-danger:disabled.bp6-active,
.bp6-dark .bp6-html-select.bp6-minimal select.bp6-intent-danger.bp6-disabled.bp6-active,
.bp6-html-select.bp6-minimal .bp6-dark select.bp6-intent-danger.bp6-disabled.bp6-active,
.bp6-dark .bp6-select.bp6-minimal select.bp6-intent-danger.bp6-disabled.bp6-active,
.bp6-select.bp6-minimal .bp6-dark select.bp6-intent-danger.bp6-disabled.bp6-active {
  background: rgba(205, 66, 70, 0.3);
}
.bp6-html-select.bp6-large select,
.bp6-select.bp6-large select {
  font-size: 16px;
  height: 40px;
  padding-right: 28px;
}
.bp6-dark .bp6-html-select select,
.bp6-dark .bp6-select select {
  background-color: #2f343c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.2);
  color: #f6f7f9;
}
.bp6-dark .bp6-html-select select:hover,
.bp6-dark .bp6-select select:hover,
.bp6-dark .bp6-html-select select:active,
.bp6-dark .bp6-select select:active,
.bp6-dark .bp6-html-select select.bp6-active,
.bp6-dark .bp6-select select.bp6-active {
  color: #f6f7f9;
}
.bp6-dark .bp6-html-select select:hover,
.bp6-dark .bp6-select select:hover {
  background-color: #252a31;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-html-select select:active,
.bp6-dark .bp6-select select:active,
.bp6-dark .bp6-html-select select.bp6-active,
.bp6-dark .bp6-select select.bp6-active {
  background-color: #1c2127;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-html-select select:disabled,
.bp6-dark .bp6-select select:disabled,
.bp6-dark .bp6-html-select select.bp6-disabled,
.bp6-dark .bp6-select select.bp6-disabled {
  background-color: rgba(47, 52, 60, 0.15);
  box-shadow: none;
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-html-select select:disabled.bp6-active,
.bp6-dark .bp6-select select:disabled.bp6-active,
.bp6-dark .bp6-html-select select.bp6-disabled.bp6-active,
.bp6-dark .bp6-select select.bp6-disabled.bp6-active {
  background: rgba(47, 52, 60, 0.7);
}
.bp6-dark .bp6-html-select select .bp6-button-spinner .bp6-spinner-head,
.bp6-dark .bp6-select select .bp6-button-spinner .bp6-spinner-head {
  background: rgba(17, 20, 24, 0.5);
  stroke: #8f99a8;
}
.bp6-html-select select:disabled,
.bp6-select select:disabled {
  background-color: rgba(211, 216, 222, 0.5);
  box-shadow: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-html-select .bp6-icon,
.bp6-select .bp6-icon {
  color: #5f6b7c;
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 7px;
}
.bp6-html-select .bp6-disabled.bp6-icon,
.bp6-select .bp6-disabled.bp6-icon {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-html-select,
.bp6-select {
  display: inline-block;
  letter-spacing: normal;
  position: relative;
  vertical-align: middle;
}
.bp6-html-select .bp6-icon,
.bp6-select .bp6-icon {
  color: #5f6b7c;
}
.bp6-html-select .bp6-icon:hover,
.bp6-select .bp6-icon:hover {
  color: #1c2127;
}
.bp6-dark .bp6-html-select .bp6-icon,
.bp6-dark .bp6-select .bp6-icon {
  color: #abb3bf;
}
.bp6-dark .bp6-html-select .bp6-icon:hover,
.bp6-dark .bp6-select .bp6-icon:hover {
  color: #f6f7f9;
}
.bp6-html-select.bp6-large::after,
.bp6-html-select.bp6-large .bp6-icon,
.bp6-select.bp6-large::after,
.bp6-select.bp6-large .bp6-icon {
  right: 12px;
  top: 12px;
}
.bp6-html-select.bp6-fill,
.bp6-html-select.bp6-fill select,
.bp6-select.bp6-fill,
.bp6-select.bp6-fill select {
  width: 100%;
}
.bp6-dark .bp6-html-select option,
.bp6-dark .bp6-select option {
  background-color: #2f343c;
  color: #f6f7f9;
}
.bp6-dark .bp6-html-select option:disabled,
.bp6-dark .bp6-select option:disabled {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-html-select::after,
.bp6-dark .bp6-select::after {
  color: #abb3bf;
}
table.bp6-html-table,
.bp6-running-text table {
  border-spacing: 0;
  font-size: 14px;
}
table.bp6-html-table th,
.bp6-running-text table th,
table.bp6-html-table td,
.bp6-running-text table td {
  padding: 11px;
  text-align: left;
  vertical-align: top;
}
table.bp6-html-table th,
.bp6-running-text table th {
  color: #1c2127;
  font-weight: 600;
}
table.bp6-html-table td,
.bp6-running-text table td {
  color: #1c2127;
}
table.bp6-html-table tbody tr:first-child th,
.bp6-running-text table tbody tr:first-child th,
table.bp6-html-table tbody tr:first-child td,
.bp6-running-text table tbody tr:first-child td,
table.bp6-html-table tfoot tr:first-child th,
.bp6-running-text table tfoot tr:first-child th,
table.bp6-html-table tfoot tr:first-child td,
.bp6-running-text table tfoot tr:first-child td {
  box-shadow: inset 0 1px 0 0 rgba(17, 20, 24, 0.15);
}
table.bp6-html-table,
.bp6-running-text table {
}
.bp6-dark table.bp6-html-table th,
.bp6-dark .bp6-running-text table th,
.bp6-running-text .bp6-dark table th {
  color: #f6f7f9;
}
.bp6-dark table.bp6-html-table td,
.bp6-dark .bp6-running-text table td,
.bp6-running-text .bp6-dark table td {
  color: #f6f7f9;
}
.bp6-dark table.bp6-html-table tbody tr:first-child th,
.bp6-dark .bp6-running-text table tbody tr:first-child th,
.bp6-running-text .bp6-dark table tbody tr:first-child th,
.bp6-dark table.bp6-html-table tbody tr:first-child td,
.bp6-dark .bp6-running-text table tbody tr:first-child td,
.bp6-running-text .bp6-dark table tbody tr:first-child td,
.bp6-dark table.bp6-html-table tfoot tr:first-child th,
.bp6-dark .bp6-running-text table tfoot tr:first-child th,
.bp6-running-text .bp6-dark table tfoot tr:first-child th,
.bp6-dark table.bp6-html-table tfoot tr:first-child td,
.bp6-dark .bp6-running-text table tfoot tr:first-child td,
.bp6-running-text .bp6-dark table tfoot tr:first-child td {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}
table.bp6-html-table,
.bp6-running-text table {
}
table.bp6-html-table.bp6-compact th,
table.bp6-html-table.bp6-compact td {
  padding-bottom: 6px;
  padding-top: 6px;
}
table.bp6-html-table.bp6-html-table-striped tbody tr:nth-child(odd) td {
  background: rgba(143, 153, 168, 0.15);
}
table.bp6-html-table.bp6-html-table-bordered th:not(:first-child) {
  box-shadow: inset 1px 0 0 0 rgba(17, 20, 24, 0.15);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  table.bp6-html-table.bp6-html-table-bordered th:not(:first-child) {
    border-left: 1px solid buttonborder;
  }
}
table.bp6-html-table.bp6-html-table-bordered tbody tr td,
table.bp6-html-table.bp6-html-table-bordered tfoot tr td {
  box-shadow: inset 0 1px 0 0 rgba(17, 20, 24, 0.15);
}
table.bp6-html-table.bp6-html-table-bordered tbody tr td:not(:first-child),
table.bp6-html-table.bp6-html-table-bordered tfoot tr td:not(:first-child) {
  box-shadow: inset 1px 1px 0 0 rgba(17, 20, 24, 0.15);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  table.bp6-html-table.bp6-html-table-bordered tbody tr td:not(:first-child),
  table.bp6-html-table.bp6-html-table-bordered tfoot tr td:not(:first-child) {
    border-left: 1px solid buttonborder;
    border-top: 1px solid buttonborder;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  table.bp6-html-table.bp6-html-table-bordered tbody tr td,
  table.bp6-html-table.bp6-html-table-bordered tfoot tr td {
    border-top: 1px solid buttonborder;
  }
}
table.bp6-html-table.bp6-html-table-bordered.bp6-html-table-striped tbody tr:not(:first-child) td {
  box-shadow: none;
}
table.bp6-html-table.bp6-html-table-bordered.bp6-html-table-striped tbody tr:not(:first-child) td:not(:first-child) {
  box-shadow: inset 1px 0 0 0 rgba(17, 20, 24, 0.15);
}
table.bp6-html-table.bp6-interactive tbody tr:hover td {
  background-color: rgba(143, 153, 168, 0.3);
  cursor: pointer;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  table.bp6-html-table.bp6-interactive tbody tr:hover td {
    background-color: highlight;
  }
}
table.bp6-html-table.bp6-interactive tbody tr:active td {
  background-color: rgba(143, 153, 168, 0.35);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  table.bp6-html-table.bp6-interactive tbody tr:active td {
    background-color: highlight;
  }
}
.bp6-dark table.bp6-html-table {
}
.bp6-dark table.bp6-html-table.bp6-html-table-striped tbody tr:nth-child(odd) td {
  background: rgba(95, 107, 124, 0.15);
}
.bp6-dark table.bp6-html-table.bp6-html-table-bordered th:not(:first-child) {
  box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.2);
}
.bp6-dark table.bp6-html-table.bp6-html-table-bordered tbody tr td,
.bp6-dark table.bp6-html-table.bp6-html-table-bordered tfoot tr td {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}
.bp6-dark table.bp6-html-table.bp6-html-table-bordered tbody tr td:not(:first-child),
.bp6-dark table.bp6-html-table.bp6-html-table-bordered tfoot tr td:not(:first-child) {
  box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.2);
}
.bp6-dark table.bp6-html-table.bp6-html-table-bordered.bp6-html-table-striped tbody tr:not(:first-child) td {
  box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.2);
}
.bp6-dark table.bp6-html-table.bp6-html-table-bordered.bp6-html-table-striped tbody tr:not(:first-child) td:first-child {
  box-shadow: none;
}
.bp6-dark table.bp6-html-table.bp6-interactive tbody tr:hover td {
  background-color: rgba(95, 107, 124, 0.3);
  cursor: pointer;
}
.bp6-dark table.bp6-html-table.bp6-interactive tbody tr:active td {
  background-color: rgba(95, 107, 124, 0.4);
}
.bp6-dark table.bp6-html-table {
}
.bp6-key-combo {
  align-items: center;
}
.bp6-key-combo:not(.bp6-minimal) {
  display: flex;
  flex-direction: row;
}
.bp6-key-combo:not(.bp6-minimal) > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-key-combo:not(.bp6-minimal) > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-key-combo:not(.bp6-minimal)::before,
.bp6-key-combo:not(.bp6-minimal) > * {
  margin-right: 4px;
}
.bp6-key-combo:not(.bp6-minimal):empty::before,
.bp6-key-combo:not(.bp6-minimal) > :last-child {
  margin-right: 0;
}
.bp6-key-combo.bp6-minimal {
  display: flex;
  flex-direction: row;
}
.bp6-key-combo.bp6-minimal > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-key-combo.bp6-minimal > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-hotkey-dialog {
  padding-bottom: 0;
  top: 40px;
}
.bp6-hotkey-dialog .bp6-dialog-body {
  margin: 0;
  padding: 0;
}
.bp6-hotkey-dialog .bp6-hotkey-label {
  flex-grow: 1;
}
.bp6-hotkey-column {
  margin: auto;
  padding: 30px;
}
.bp6-hotkey-column .bp6-heading {
  margin-bottom: 20px;
}
.bp6-hotkey-column .bp6-heading:not(:first-child) {
  margin-top: 40px;
}
.bp6-hotkey {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
}
.bp6-hotkey:not(:last-child) {
  margin-bottom: 8px;
}
.bp6-icon {
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: text-bottom;
}
.bp6-icon:not(:empty)::before {
  content: "" !important;
  content: unset !important;
}
.bp6-icon > svg {
  display: block;
}
.bp6-icon > svg:not([fill]) {
  fill: currentcolor;
}
.bp6-icon.bp6-icon-muted svg {
  fill-opacity: 0.15;
  overflow: visible;
}
.bp6-icon.bp6-icon-muted svg path {
  stroke: #8f99a8;
  stroke-opacity: 0.5;
  stroke-width: 0.5px;
}
.bp6-dark .bp6-icon .bp6-icon-muted svg {
  fill-opacity: 0.2;
}
span.bp6-icon-standard {
  font-family: "blueprint-icons-16", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 16px;
  line-height: 1;
  width: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
}
span.bp6-icon-large {
  font-family: "blueprint-icons-20", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 20px;
  line-height: 1;
  width: 20px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
}
span.bp6-icon:empty {
  font-family: "blueprint-icons-20";
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
span.bp6-icon:empty::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
span.bp6-icon:empty.bp6-icon-standard {
  font-size: 16px;
}
span.bp6-icon:empty.bp6-icon-large {
  font-size: 20px;
}
.bp6-icon-add::before {
  content: "\f109";
}
.bp6-icon-add-child::before {
  content: "\f39d";
}
.bp6-icon-add-clip::before {
  content: "\f101";
}
.bp6-icon-add-column-left::before {
  content: "\f102";
}
.bp6-icon-add-column-right::before {
  content: "\f103";
}
.bp6-icon-add-location::before {
  content: "\f104";
}
.bp6-icon-add-parent::before {
  content: "\f39e";
}
.bp6-icon-add-row-bottom::before {
  content: "\f105";
}
.bp6-icon-add-row-top::before {
  content: "\f106";
}
.bp6-icon-add-to-artifact::before {
  content: "\f107";
}
.bp6-icon-add-to-folder::before {
  content: "\f108";
}
.bp6-icon-aimpoints-target::before {
  content: "\f335";
}
.bp6-icon-airplane::before {
  content: "\f10a";
}
.bp6-icon-align-center::before {
  content: "\f10b";
}
.bp6-icon-align-justify::before {
  content: "\f10c";
}
.bp6-icon-align-left::before {
  content: "\f10d";
}
.bp6-icon-align-right::before {
  content: "\f10e";
}
.bp6-icon-alignment-bottom::before {
  content: "\f10f";
}
.bp6-icon-alignment-horizontal-center::before {
  content: "\f110";
}
.bp6-icon-alignment-left::before {
  content: "\f111";
}
.bp6-icon-alignment-right::before {
  content: "\f112";
}
.bp6-icon-alignment-top::before {
  content: "\f113";
}
.bp6-icon-alignment-vertical-center::before {
  content: "\f114";
}
.bp6-icon-ammunition::before {
  content: "\f342";
}
.bp6-icon-anchor::before {
  content: "\f330";
}
.bp6-icon-annotation::before {
  content: "\f115";
}
.bp6-icon-announcement::before {
  content: "\f396";
}
.bp6-icon-antenna::before {
  content: "\f116";
}
.bp6-icon-app-header::before {
  content: "\f117";
}
.bp6-icon-application::before {
  content: "\f118";
}
.bp6-icon-applications::before {
  content: "\f119";
}
.bp6-icon-archive::before {
  content: "\f11a";
}
.bp6-icon-area-of-interest::before {
  content: "\f11b";
}
.bp6-icon-array::before {
  content: "\f121";
}
.bp6-icon-array-boolean::before {
  content: "\f11c";
}
.bp6-icon-array-date::before {
  content: "\f11d";
}
.bp6-icon-array-floating-point::before {
  content: "\f32d";
}
.bp6-icon-array-numeric::before {
  content: "\f11e";
}
.bp6-icon-array-object::before {
  content: "\f394";
}
.bp6-icon-array-string::before {
  content: "\f11f";
}
.bp6-icon-array-timestamp::before {
  content: "\f120";
}
.bp6-icon-arrow-bottom-left::before {
  content: "\f122";
}
.bp6-icon-arrow-bottom-right::before {
  content: "\f123";
}
.bp6-icon-arrow-down::before {
  content: "\f124";
}
.bp6-icon-arrow-left::before {
  content: "\f125";
}
.bp6-icon-arrow-right::before {
  content: "\f126";
}
.bp6-icon-arrow-top-left::before {
  content: "\f127";
}
.bp6-icon-arrow-top-right::before {
  content: "\f128";
}
.bp6-icon-arrow-up::before {
  content: "\f129";
}
.bp6-icon-arrows-arc::before {
  content: "\f387";
}
.bp6-icon-arrows-horizontal::before {
  content: "\f12a";
}
.bp6-icon-arrows-vertical::before {
  content: "\f12b";
}
.bp6-icon-asterisk::before {
  content: "\f12c";
}
.bp6-icon-at::before {
  content: "\f331";
}
.bp6-icon-automatic-updates::before {
  content: "\f12d";
}
.bp6-icon-axle::before {
  content: "\f338";
}
.bp6-icon-backlink::before {
  content: "\f12e";
}
.bp6-icon-backward-ten::before {
  content: "\f35c";
}
.bp6-icon-badge::before {
  content: "\f12f";
}
.bp6-icon-ban-circle::before {
  content: "\f130";
}
.bp6-icon-bank-account::before {
  content: "\f131";
}
.bp6-icon-barcode::before {
  content: "\f132";
}
.bp6-icon-binary-number::before {
  content: "\f357";
}
.bp6-icon-blank::before {
  content: "\f133";
}
.bp6-icon-block-promote::before {
  content: "\f372";
}
.bp6-icon-blocked-person::before {
  content: "\f134";
}
.bp6-icon-bold::before {
  content: "\f135";
}
.bp6-icon-book::before {
  content: "\f136";
}
.bp6-icon-bookmark::before {
  content: "\f137";
}
.bp6-icon-box::before {
  content: "\f138";
}
.bp6-icon-branch-locked::before {
  content: "\f3a6";
}
.bp6-icon-branch-unlocked::before {
  content: "\f3a7";
}
.bp6-icon-briefcase::before {
  content: "\f139";
}
.bp6-icon-bring-data::before {
  content: "\f13a";
}
.bp6-icon-bring-forward::before {
  content: "\f354";
}
.bp6-icon-british-pound::before {
  content: "\f386";
}
.bp6-icon-bug::before {
  content: "\f32e";
}
.bp6-icon-buggy::before {
  content: "\f13b";
}
.bp6-icon-build::before {
  content: "\f13c";
}
.bp6-icon-bullseye::before {
  content: "\f359";
}
.bp6-icon-calculator::before {
  content: "\f13d";
}
.bp6-icon-calendar::before {
  content: "\f13e";
}
.bp6-icon-camera::before {
  content: "\f13f";
}
.bp6-icon-caret-down::before {
  content: "\f140";
}
.bp6-icon-caret-left::before {
  content: "\f141";
}
.bp6-icon-caret-right::before {
  content: "\f142";
}
.bp6-icon-caret-up::before {
  content: "\f143";
}
.bp6-icon-cargo-ship::before {
  content: "\f144";
}
.bp6-icon-cell-tower::before {
  content: "\f145";
}
.bp6-icon-changes::before {
  content: "\f146";
}
.bp6-icon-chart::before {
  content: "\f147";
}
.bp6-icon-chat::before {
  content: "\f148";
}
.bp6-icon-chevron-backward::before {
  content: "\f149";
}
.bp6-icon-chevron-down::before {
  content: "\f14a";
}
.bp6-icon-chevron-forward::before {
  content: "\f14b";
}
.bp6-icon-chevron-left::before {
  content: "\f14c";
}
.bp6-icon-chevron-right::before {
  content: "\f14d";
}
.bp6-icon-chevron-up::before {
  content: "\f14e";
}
.bp6-icon-circle::before {
  content: "\f153";
}
.bp6-icon-circle-arrow-down::before {
  content: "\f14f";
}
.bp6-icon-circle-arrow-left::before {
  content: "\f150";
}
.bp6-icon-circle-arrow-right::before {
  content: "\f151";
}
.bp6-icon-circle-arrow-up::before {
  content: "\f152";
}
.bp6-icon-citation::before {
  content: "\f154";
}
.bp6-icon-clean::before {
  content: "\f155";
}
.bp6-icon-clip::before {
  content: "\f156";
}
.bp6-icon-clipboard::before {
  content: "\f157";
}
.bp6-icon-clipboard-file::before {
  content: "\f35b";
}
.bp6-icon-cloud::before {
  content: "\f15a";
}
.bp6-icon-cloud-download::before {
  content: "\f158";
}
.bp6-icon-cloud-server::before {
  content: "\f35a";
}
.bp6-icon-cloud-tick::before {
  content: "\f34e";
}
.bp6-icon-cloud-upload::before {
  content: "\f159";
}
.bp6-icon-code::before {
  content: "\f15c";
}
.bp6-icon-code-block::before {
  content: "\f15b";
}
.bp6-icon-cog::before {
  content: "\f15d";
}
.bp6-icon-collapse-all::before {
  content: "\f15e";
}
.bp6-icon-color-fill::before {
  content: "\f328";
}
.bp6-icon-column-layout::before {
  content: "\f15f";
}
.bp6-icon-comment::before {
  content: "\f160";
}
.bp6-icon-comparison::before {
  content: "\f161";
}
.bp6-icon-compass::before {
  content: "\f162";
}
.bp6-icon-compressed::before {
  content: "\f163";
}
.bp6-icon-confirm::before {
  content: "\f164";
}
.bp6-icon-console::before {
  content: "\f165";
}
.bp6-icon-console-alert::before {
  content: "\f3ad";
}
.bp6-icon-construction::before {
  content: "\f395";
}
.bp6-icon-contrast::before {
  content: "\f166";
}
.bp6-icon-control::before {
  content: "\f167";
}
.bp6-icon-credit-card::before {
  content: "\f168";
}
.bp6-icon-crop::before {
  content: "\f353";
}
.bp6-icon-cross::before {
  content: "\f169";
}
.bp6-icon-cross-circle::before {
  content: "\f336";
}
.bp6-icon-crown::before {
  content: "\f16a";
}
.bp6-icon-css-style::before {
  content: "\f36b";
}
.bp6-icon-cube::before {
  content: "\f16d";
}
.bp6-icon-cube-add::before {
  content: "\f16b";
}
.bp6-icon-cube-cutout::before {
  content: "\f3b5";
}
.bp6-icon-cube-cutouts::before {
  content: "\f3b6";
}
.bp6-icon-cube-edit::before {
  content: "\f383";
}
.bp6-icon-cube-remove::before {
  content: "\f16c";
}
.bp6-icon-cubes::before {
  content: "\f373";
}
.bp6-icon-curly-braces::before {
  content: "\f358";
}
.bp6-icon-curved-range-chart::before {
  content: "\f16e";
}
.bp6-icon-cut::before {
  content: "\f16f";
}
.bp6-icon-cycle::before {
  content: "\f170";
}
.bp6-icon-dashboard::before {
  content: "\f171";
}
.bp6-icon-data-cloud::before {
  content: "\f391";
}
.bp6-icon-data-connection::before {
  content: "\f172";
}
.bp6-icon-data-lineage::before {
  content: "\f173";
}
.bp6-icon-data-search::before {
  content: "\f36f";
}
.bp6-icon-data-sync::before {
  content: "\f36c";
}
.bp6-icon-database::before {
  content: "\f174";
}
.bp6-icon-delete::before {
  content: "\f175";
}
.bp6-icon-delete-clip::before {
  content: "\f3a3";
}
.bp6-icon-delta::before {
  content: "\f176";
}
.bp6-icon-derive-column::before {
  content: "\f177";
}
.bp6-icon-desktop::before {
  content: "\f178";
}
.bp6-icon-detection::before {
  content: "\f341";
}
.bp6-icon-diagnosis::before {
  content: "\f179";
}
.bp6-icon-diagram-tree::before {
  content: "\f17a";
}
.bp6-icon-direction-left::before {
  content: "\f17b";
}
.bp6-icon-direction-right::before {
  content: "\f17c";
}
.bp6-icon-disable::before {
  content: "\f17d";
}
.bp6-icon-divide::before {
  content: "\f327";
}
.bp6-icon-document::before {
  content: "\f180";
}
.bp6-icon-document-code::before {
  content: "\f3a0";
}
.bp6-icon-document-locked::before {
  content: "\f3a1";
}
.bp6-icon-document-open::before {
  content: "\f17e";
}
.bp6-icon-document-share::before {
  content: "\f17f";
}
.bp6-icon-dollar::before {
  content: "\f181";
}
.bp6-icon-dot::before {
  content: "\f182";
}
.bp6-icon-double-caret-horizontal::before {
  content: "\f183";
}
.bp6-icon-double-caret-vertical::before {
  content: "\f184";
}
.bp6-icon-double-chevron-down::before {
  content: "\f185";
}
.bp6-icon-double-chevron-left::before {
  content: "\f186";
}
.bp6-icon-double-chevron-right::before {
  content: "\f187";
}
.bp6-icon-double-chevron-up::before {
  content: "\f188";
}
.bp6-icon-doughnut-chart::before {
  content: "\f189";
}
.bp6-icon-download::before {
  content: "\f18a";
}
.bp6-icon-drag-handle-horizontal::before {
  content: "\f18b";
}
.bp6-icon-drag-handle-vertical::before {
  content: "\f18c";
}
.bp6-icon-draw::before {
  content: "\f18d";
}
.bp6-icon-drawer-left::before {
  content: "\f18f";
}
.bp6-icon-drawer-left-filled::before {
  content: "\f18e";
}
.bp6-icon-drawer-right::before {
  content: "\f191";
}
.bp6-icon-drawer-right-filled::before {
  content: "\f190";
}
.bp6-icon-drive-time::before {
  content: "\f192";
}
.bp6-icon-drone::before {
  content: "\f3b1";
}
.bp6-icon-drone-uav::before {
  content: "\f3b2";
}
.bp6-icon-duplicate::before {
  content: "\f193";
}
.bp6-icon-edit::before {
  content: "\f194";
}
.bp6-icon-eject::before {
  content: "\f195";
}
.bp6-icon-emoji::before {
  content: "\f196";
}
.bp6-icon-endnote::before {
  content: "\f356";
}
.bp6-icon-endorsed::before {
  content: "\f197";
}
.bp6-icon-envelope::before {
  content: "\f198";
}
.bp6-icon-equals::before {
  content: "\f199";
}
.bp6-icon-eraser::before {
  content: "\f19a";
}
.bp6-icon-error::before {
  content: "\f19b";
}
.bp6-icon-euro::before {
  content: "\f19c";
}
.bp6-icon-excavator::before {
  content: "\f36d";
}
.bp6-icon-exchange::before {
  content: "\f19d";
}
.bp6-icon-exclude-row::before {
  content: "\f19e";
}
.bp6-icon-expand-all::before {
  content: "\f19f";
}
.bp6-icon-explain::before {
  content: "\f34d";
}
.bp6-icon-export::before {
  content: "\f1a0";
}
.bp6-icon-eye-off::before {
  content: "\f1a1";
}
.bp6-icon-eye-on::before {
  content: "\f1a2";
}
.bp6-icon-eye-open::before {
  content: "\f1a3";
}
.bp6-icon-fast-backward::before {
  content: "\f1a4";
}
.bp6-icon-fast-forward::before {
  content: "\f1a5";
}
.bp6-icon-feed::before {
  content: "\f1a7";
}
.bp6-icon-feed-subscribed::before {
  content: "\f1a6";
}
.bp6-icon-fighter-jet::before {
  content: "\f384";
}
.bp6-icon-film::before {
  content: "\f1a8";
}
.bp6-icon-filter::before {
  content: "\f1ad";
}
.bp6-icon-filter-keep::before {
  content: "\f1a9";
}
.bp6-icon-filter-list::before {
  content: "\f1aa";
}
.bp6-icon-filter-open::before {
  content: "\f1ab";
}
.bp6-icon-filter-remove::before {
  content: "\f1ac";
}
.bp6-icon-filter-sort-asc::before {
  content: "\f38e";
}
.bp6-icon-filter-sort-desc::before {
  content: "\f38f";
}
.bp6-icon-flag::before {
  content: "\f1ae";
}
.bp6-icon-flame::before {
  content: "\f1af";
}
.bp6-icon-flash::before {
  content: "\f1b0";
}
.bp6-icon-floating-point::before {
  content: "\f32c";
}
.bp6-icon-floppy-disk::before {
  content: "\f1b1";
}
.bp6-icon-flow-branch::before {
  content: "\f1b2";
}
.bp6-icon-flow-end::before {
  content: "\f1b3";
}
.bp6-icon-flow-linear::before {
  content: "\f1b4";
}
.bp6-icon-flow-review::before {
  content: "\f1b6";
}
.bp6-icon-flow-review-branch::before {
  content: "\f1b5";
}
.bp6-icon-flows::before {
  content: "\f1b7";
}
.bp6-icon-folder-close::before {
  content: "\f1b8";
}
.bp6-icon-folder-new::before {
  content: "\f1b9";
}
.bp6-icon-folder-open::before {
  content: "\f1ba";
}
.bp6-icon-folder-shared::before {
  content: "\f1bc";
}
.bp6-icon-folder-shared-open::before {
  content: "\f1bb";
}
.bp6-icon-follower::before {
  content: "\f1bd";
}
.bp6-icon-following::before {
  content: "\f1be";
}
.bp6-icon-font::before {
  content: "\f1bf";
}
.bp6-icon-fork::before {
  content: "\f1c0";
}
.bp6-icon-fork-end::before {
  content: "\f3b7";
}
.bp6-icon-form::before {
  content: "\f1c1";
}
.bp6-icon-forward-ten::before {
  content: "\f35d";
}
.bp6-icon-fuel::before {
  content: "\f323";
}
.bp6-icon-full-circle::before {
  content: "\f1c2";
}
.bp6-icon-full-stacked-chart::before {
  content: "\f1c3";
}
.bp6-icon-fullscreen::before {
  content: "\f1c4";
}
.bp6-icon-function::before {
  content: "\f1c5";
}
.bp6-icon-function-minimal::before {
  content: "\f3b4";
}
.bp6-icon-gantt-chart::before {
  content: "\f1c6";
}
.bp6-icon-generate::before {
  content: "\f34c";
}
.bp6-icon-geofence::before {
  content: "\f1c7";
}
.bp6-icon-geolocation::before {
  content: "\f1c8";
}
.bp6-icon-geosearch::before {
  content: "\f1c9";
}
.bp6-icon-geotime::before {
  content: "\f344";
}
.bp6-icon-gift-box::before {
  content: "\f3a2";
}
.bp6-icon-git-branch::before {
  content: "\f1ca";
}
.bp6-icon-git-commit::before {
  content: "\f1cb";
}
.bp6-icon-git-merge::before {
  content: "\f1cc";
}
.bp6-icon-git-new-branch::before {
  content: "\f1cd";
}
.bp6-icon-git-pull::before {
  content: "\f1ce";
}
.bp6-icon-git-push::before {
  content: "\f1cf";
}
.bp6-icon-git-rebase::before {
  content: "\f3ac";
}
.bp6-icon-git-repo::before {
  content: "\f1d0";
}
.bp6-icon-glass::before {
  content: "\f1d1";
}
.bp6-icon-globe::before {
  content: "\f1d3";
}
.bp6-icon-globe-network::before {
  content: "\f1d2";
}
.bp6-icon-globe-network-add::before {
  content: "\f382";
}
.bp6-icon-graph::before {
  content: "\f1d5";
}
.bp6-icon-graph-remove::before {
  content: "\f1d4";
}
.bp6-icon-greater-than::before {
  content: "\f1d7";
}
.bp6-icon-greater-than-or-equal-to::before {
  content: "\f1d6";
}
.bp6-icon-grid::before {
  content: "\f1d9";
}
.bp6-icon-grid-view::before {
  content: "\f1d8";
}
.bp6-icon-group-item::before {
  content: "\f34a";
}
.bp6-icon-group-objects::before {
  content: "\f1da";
}
.bp6-icon-grouped-bar-chart::before {
  content: "\f1db";
}
.bp6-icon-hand::before {
  content: "\f1e0";
}
.bp6-icon-hand-down::before {
  content: "\f1dc";
}
.bp6-icon-hand-left::before {
  content: "\f1dd";
}
.bp6-icon-hand-right::before {
  content: "\f1de";
}
.bp6-icon-hand-up::before {
  content: "\f1df";
}
.bp6-icon-hat::before {
  content: "\f1e1";
}
.bp6-icon-header::before {
  content: "\f1e5";
}
.bp6-icon-header-one::before {
  content: "\f1e2";
}
.bp6-icon-header-three::before {
  content: "\f1e3";
}
.bp6-icon-header-two::before {
  content: "\f1e4";
}
.bp6-icon-headset::before {
  content: "\f1e6";
}
.bp6-icon-heart::before {
  content: "\f1e8";
}
.bp6-icon-heart-broken::before {
  content: "\f1e7";
}
.bp6-icon-heat-grid::before {
  content: "\f1e9";
}
.bp6-icon-heatmap::before {
  content: "\f1ea";
}
.bp6-icon-helicopter::before {
  content: "\f1eb";
}
.bp6-icon-help::before {
  content: "\f1ec";
}
.bp6-icon-helper-management::before {
  content: "\f1ed";
}
.bp6-icon-hexagon::before {
  content: "\f374";
}
.bp6-icon-high-priority::before {
  content: "\f1ee";
}
.bp6-icon-high-voltage-pole::before {
  content: "\f333";
}
.bp6-icon-highlight::before {
  content: "\f1ef";
}
.bp6-icon-history::before {
  content: "\f1f0";
}
.bp6-icon-home::before {
  content: "\f1f1";
}
.bp6-icon-horizontal-bar-chart::before {
  content: "\f1f4";
}
.bp6-icon-horizontal-bar-chart-asc::before {
  content: "\f1f2";
}
.bp6-icon-horizontal-bar-chart-desc::before {
  content: "\f1f3";
}
.bp6-icon-horizontal-distribution::before {
  content: "\f1f5";
}
.bp6-icon-horizontal-inbetween::before {
  content: "\f329";
}
.bp6-icon-hurricane::before {
  content: "\f1f6";
}
.bp6-icon-id-number::before {
  content: "\f1f7";
}
.bp6-icon-image-rotate-left::before {
  content: "\f1f8";
}
.bp6-icon-image-rotate-right::before {
  content: "\f1f9";
}
.bp6-icon-import::before {
  content: "\f1fa";
}
.bp6-icon-inbox::before {
  content: "\f1ff";
}
.bp6-icon-inbox-filtered::before {
  content: "\f1fb";
}
.bp6-icon-inbox-geo::before {
  content: "\f1fc";
}
.bp6-icon-inbox-search::before {
  content: "\f1fd";
}
.bp6-icon-inbox-update::before {
  content: "\f1fe";
}
.bp6-icon-info-sign::before {
  content: "\f200";
}
.bp6-icon-inheritance::before {
  content: "\f201";
}
.bp6-icon-inherited-group::before {
  content: "\f202";
}
.bp6-icon-inner-join::before {
  content: "\f203";
}
.bp6-icon-input::before {
  content: "\f34b";
}
.bp6-icon-insert::before {
  content: "\f204";
}
.bp6-icon-intelligence::before {
  content: "\f337";
}
.bp6-icon-intersection::before {
  content: "\f205";
}
.bp6-icon-ip-address::before {
  content: "\f206";
}
.bp6-icon-issue::before {
  content: "\f209";
}
.bp6-icon-issue-closed::before {
  content: "\f207";
}
.bp6-icon-issue-new::before {
  content: "\f208";
}
.bp6-icon-italic::before {
  content: "\f20a";
}
.bp6-icon-join-table::before {
  content: "\f20b";
}
.bp6-icon-key::before {
  content: "\f215";
}
.bp6-icon-key-backspace::before {
  content: "\f20c";
}
.bp6-icon-key-command::before {
  content: "\f20d";
}
.bp6-icon-key-control::before {
  content: "\f20e";
}
.bp6-icon-key-delete::before {
  content: "\f20f";
}
.bp6-icon-key-enter::before {
  content: "\f210";
}
.bp6-icon-key-escape::before {
  content: "\f211";
}
.bp6-icon-key-option::before {
  content: "\f212";
}
.bp6-icon-key-shift::before {
  content: "\f213";
}
.bp6-icon-key-tab::before {
  content: "\f214";
}
.bp6-icon-known-vehicle::before {
  content: "\f216";
}
.bp6-icon-lab-test::before {
  content: "\f217";
}
.bp6-icon-label::before {
  content: "\f218";
}
.bp6-icon-layer::before {
  content: "\f21a";
}
.bp6-icon-layer-outline::before {
  content: "\f219";
}
.bp6-icon-layers::before {
  content: "\f21b";
}
.bp6-icon-layout::before {
  content: "\f225";
}
.bp6-icon-layout-auto::before {
  content: "\f21c";
}
.bp6-icon-layout-balloon::before {
  content: "\f21d";
}
.bp6-icon-layout-bottom-row-three-tiles::before {
  content: "\f364";
}
.bp6-icon-layout-bottom-row-two-tiles::before {
  content: "\f363";
}
.bp6-icon-layout-circle::before {
  content: "\f21e";
}
.bp6-icon-layout-grid::before {
  content: "\f21f";
}
.bp6-icon-layout-group-by::before {
  content: "\f220";
}
.bp6-icon-layout-hierarchy::before {
  content: "\f221";
}
.bp6-icon-layout-left-column-three-tiles::before {
  content: "\f366";
}
.bp6-icon-layout-left-column-two-tiles::before {
  content: "\f365";
}
.bp6-icon-layout-linear::before {
  content: "\f222";
}
.bp6-icon-layout-right-column-three-tiles::before {
  content: "\f368";
}
.bp6-icon-layout-right-column-two-tiles::before {
  content: "\f367";
}
.bp6-icon-layout-skew-grid::before {
  content: "\f223";
}
.bp6-icon-layout-sorted-clusters::before {
  content: "\f224";
}
.bp6-icon-layout-three-columns::before {
  content: "\f361";
}
.bp6-icon-layout-three-rows::before {
  content: "\f362";
}
.bp6-icon-layout-top-row-three-tiles::before {
  content: "\f36a";
}
.bp6-icon-layout-top-row-two-tiles::before {
  content: "\f369";
}
.bp6-icon-layout-two-columns::before {
  content: "\f35f";
}
.bp6-icon-layout-two-rows::before {
  content: "\f360";
}
.bp6-icon-learning::before {
  content: "\f226";
}
.bp6-icon-left-join::before {
  content: "\f227";
}
.bp6-icon-lengthen-text::before {
  content: "\f33e";
}
.bp6-icon-less-than::before {
  content: "\f229";
}
.bp6-icon-less-than-or-equal-to::before {
  content: "\f228";
}
.bp6-icon-lifesaver::before {
  content: "\f22a";
}
.bp6-icon-lightbulb::before {
  content: "\f22b";
}
.bp6-icon-lightning::before {
  content: "\f22c";
}
.bp6-icon-link::before {
  content: "\f22d";
}
.bp6-icon-linked-squares::before {
  content: "\f385";
}
.bp6-icon-list::before {
  content: "\f230";
}
.bp6-icon-list-columns::before {
  content: "\f22e";
}
.bp6-icon-list-detail-view::before {
  content: "\f22f";
}
.bp6-icon-locate::before {
  content: "\f231";
}
.bp6-icon-lock::before {
  content: "\f232";
}
.bp6-icon-locomotive::before {
  content: "\f33b";
}
.bp6-icon-log-in::before {
  content: "\f233";
}
.bp6-icon-log-out::before {
  content: "\f234";
}
.bp6-icon-low-voltage-pole::before {
  content: "\f332";
}
.bp6-icon-manual::before {
  content: "\f235";
}
.bp6-icon-manually-entered-data::before {
  content: "\f236";
}
.bp6-icon-many-to-many::before {
  content: "\f237";
}
.bp6-icon-many-to-one::before {
  content: "\f238";
}
.bp6-icon-map::before {
  content: "\f23b";
}
.bp6-icon-map-create::before {
  content: "\f239";
}
.bp6-icon-map-marker::before {
  content: "\f23a";
}
.bp6-icon-markdown::before {
  content: "\f3a9";
}
.bp6-icon-maximize::before {
  content: "\f23c";
}
.bp6-icon-media::before {
  content: "\f23d";
}
.bp6-icon-menu::before {
  content: "\f240";
}
.bp6-icon-menu-closed::before {
  content: "\f23e";
}
.bp6-icon-menu-open::before {
  content: "\f23f";
}
.bp6-icon-merge-columns::before {
  content: "\f241";
}
.bp6-icon-merge-links::before {
  content: "\f242";
}
.bp6-icon-microphone::before {
  content: "\f343";
}
.bp6-icon-minimize::before {
  content: "\f243";
}
.bp6-icon-minus::before {
  content: "\f244";
}
.bp6-icon-mobile-phone::before {
  content: "\f245";
}
.bp6-icon-mobile-video::before {
  content: "\f246";
}
.bp6-icon-modal::before {
  content: "\f248";
}
.bp6-icon-modal-filled::before {
  content: "\f247";
}
.bp6-icon-model::before {
  content: "\f33d";
}
.bp6-icon-moon::before {
  content: "\f249";
}
.bp6-icon-more::before {
  content: "\f24a";
}
.bp6-icon-mountain::before {
  content: "\f24b";
}
.bp6-icon-move::before {
  content: "\f24c";
}
.bp6-icon-mugshot::before {
  content: "\f24d";
}
.bp6-icon-multi-select::before {
  content: "\f24e";
}
.bp6-icon-music::before {
  content: "\f24f";
}
.bp6-icon-nest::before {
  content: "\f250";
}
.bp6-icon-new-drawing::before {
  content: "\f251";
}
.bp6-icon-new-grid-item::before {
  content: "\f252";
}
.bp6-icon-new-layer::before {
  content: "\f253";
}
.bp6-icon-new-layers::before {
  content: "\f254";
}
.bp6-icon-new-link::before {
  content: "\f255";
}
.bp6-icon-new-object::before {
  content: "\f256";
}
.bp6-icon-new-person::before {
  content: "\f257";
}
.bp6-icon-new-prescription::before {
  content: "\f258";
}
.bp6-icon-new-shield::before {
  content: "\f349";
}
.bp6-icon-new-text-box::before {
  content: "\f259";
}
.bp6-icon-ninja::before {
  content: "\f25a";
}
.bp6-icon-not-equal-to::before {
  content: "\f25b";
}
.bp6-icon-notifications::before {
  content: "\f25e";
}
.bp6-icon-notifications-add::before {
  content: "\f398";
}
.bp6-icon-notifications-snooze::before {
  content: "\f25c";
}
.bp6-icon-notifications-updated::before {
  content: "\f25d";
}
.bp6-icon-numbered-list::before {
  content: "\f25f";
}
.bp6-icon-numerical::before {
  content: "\f260";
}
.bp6-icon-object-view::before {
  content: "\f390";
}
.bp6-icon-office::before {
  content: "\f261";
}
.bp6-icon-offline::before {
  content: "\f262";
}
.bp6-icon-oil-field::before {
  content: "\f263";
}
.bp6-icon-one-column::before {
  content: "\f264";
}
.bp6-icon-one-to-many::before {
  content: "\f265";
}
.bp6-icon-one-to-one::before {
  content: "\f266";
}
.bp6-icon-open-application::before {
  content: "\f32b";
}
.bp6-icon-outdated::before {
  content: "\f267";
}
.bp6-icon-output::before {
  content: "\f370";
}
.bp6-icon-package::before {
  content: "\f375";
}
.bp6-icon-page-break::before {
  content: "\f3a5";
}
.bp6-icon-page-layout::before {
  content: "\f268";
}
.bp6-icon-panel::before {
  content: "\f381";
}
.bp6-icon-panel-stats::before {
  content: "\f269";
}
.bp6-icon-panel-table::before {
  content: "\f26a";
}
.bp6-icon-paperclip::before {
  content: "\f26b";
}
.bp6-icon-paragraph::before {
  content: "\f26c";
}
.bp6-icon-paste-variable::before {
  content: "\f346";
}
.bp6-icon-path::before {
  content: "\f26e";
}
.bp6-icon-path-search::before {
  content: "\f26d";
}
.bp6-icon-pause::before {
  content: "\f26f";
}
.bp6-icon-people::before {
  content: "\f270";
}
.bp6-icon-percentage::before {
  content: "\f271";
}
.bp6-icon-person::before {
  content: "\f272";
}
.bp6-icon-phone::before {
  content: "\f273";
}
.bp6-icon-phone-call::before {
  content: "\f347";
}
.bp6-icon-phone-forward::before {
  content: "\f348";
}
.bp6-icon-phone-search::before {
  content: "\f397";
}
.bp6-icon-pie-chart::before {
  content: "\f274";
}
.bp6-icon-pill::before {
  content: "\f376";
}
.bp6-icon-pin::before {
  content: "\f275";
}
.bp6-icon-pistol::before {
  content: "\f39c";
}
.bp6-icon-pivot::before {
  content: "\f277";
}
.bp6-icon-pivot-table::before {
  content: "\f276";
}
.bp6-icon-play::before {
  content: "\f278";
}
.bp6-icon-playbook::before {
  content: "\f324";
}
.bp6-icon-plus::before {
  content: "\f279";
}
.bp6-icon-polygon-filter::before {
  content: "\f27a";
}
.bp6-icon-power::before {
  content: "\f27b";
}
.bp6-icon-predictive-analysis::before {
  content: "\f27c";
}
.bp6-icon-prescription::before {
  content: "\f27d";
}
.bp6-icon-presentation::before {
  content: "\f27e";
}
.bp6-icon-print::before {
  content: "\f27f";
}
.bp6-icon-projects::before {
  content: "\f280";
}
.bp6-icon-properties::before {
  content: "\f281";
}
.bp6-icon-property::before {
  content: "\f282";
}
.bp6-icon-publish-function::before {
  content: "\f283";
}
.bp6-icon-pulse::before {
  content: "\f284";
}
.bp6-icon-rain::before {
  content: "\f285";
}
.bp6-icon-random::before {
  content: "\f286";
}
.bp6-icon-range-ring::before {
  content: "\f371";
}
.bp6-icon-record::before {
  content: "\f287";
}
.bp6-icon-rect-height::before {
  content: "\f325";
}
.bp6-icon-rect-width::before {
  content: "\f326";
}
.bp6-icon-rectangle::before {
  content: "\f321";
}
.bp6-icon-redo::before {
  content: "\f288";
}
.bp6-icon-refresh::before {
  content: "\f289";
}
.bp6-icon-refresh-off::before {
  content: "\f3aa";
}
.bp6-icon-regex::before {
  content: "\f32f";
}
.bp6-icon-regression-chart::before {
  content: "\f28a";
}
.bp6-icon-remove::before {
  content: "\f290";
}
.bp6-icon-remove-column::before {
  content: "\f28d";
}
.bp6-icon-remove-column-left::before {
  content: "\f28b";
}
.bp6-icon-remove-column-right::before {
  content: "\f28c";
}
.bp6-icon-remove-row-bottom::before {
  content: "\f28e";
}
.bp6-icon-remove-row-top::before {
  content: "\f28f";
}
.bp6-icon-repeat::before {
  content: "\f291";
}
.bp6-icon-reset::before {
  content: "\f292";
}
.bp6-icon-resolve::before {
  content: "\f293";
}
.bp6-icon-rig::before {
  content: "\f294";
}
.bp6-icon-right-join::before {
  content: "\f295";
}
.bp6-icon-ring::before {
  content: "\f296";
}
.bp6-icon-rocket::before {
  content: "\f298";
}
.bp6-icon-rocket-slant::before {
  content: "\f297";
}
.bp6-icon-root-folder::before {
  content: "\f39f";
}
.bp6-icon-rotate-ccw::before {
  content: "\f389";
}
.bp6-icon-rotate-cw::before {
  content: "\f388";
}
.bp6-icon-rotate-document::before {
  content: "\f299";
}
.bp6-icon-rotate-page::before {
  content: "\f29a";
}
.bp6-icon-route::before {
  content: "\f29b";
}
.bp6-icon-run-history::before {
  content: "\f393";
}
.bp6-icon-satellite::before {
  content: "\f29c";
}
.bp6-icon-saved::before {
  content: "\f29d";
}
.bp6-icon-scatter-plot::before {
  content: "\f29e";
}
.bp6-icon-search::before {
  content: "\f2a2";
}
.bp6-icon-search-around::before {
  content: "\f29f";
}
.bp6-icon-search-template::before {
  content: "\f2a0";
}
.bp6-icon-search-text::before {
  content: "\f2a1";
}
.bp6-icon-segmented-control::before {
  content: "\f2a3";
}
.bp6-icon-select::before {
  content: "\f2a4";
}
.bp6-icon-selection::before {
  content: "\f2a5";
}
.bp6-icon-selection-box::before {
  content: "\f399";
}
.bp6-icon-selection-box-add::before {
  content: "\f39a";
}
.bp6-icon-selection-box-edit::before {
  content: "\f39b";
}
.bp6-icon-selection-box-remove::before {
  content: "\f3a8";
}
.bp6-icon-send-backward::before {
  content: "\f355";
}
.bp6-icon-send-message::before {
  content: "\f2a6";
}
.bp6-icon-send-to::before {
  content: "\f2a9";
}
.bp6-icon-send-to-graph::before {
  content: "\f2a7";
}
.bp6-icon-send-to-map::before {
  content: "\f2a8";
}
.bp6-icon-sensor::before {
  content: "\f33c";
}
.bp6-icon-series-add::before {
  content: "\f2aa";
}
.bp6-icon-series-configuration::before {
  content: "\f2ab";
}
.bp6-icon-series-derived::before {
  content: "\f2ac";
}
.bp6-icon-series-filtered::before {
  content: "\f2ad";
}
.bp6-icon-series-search::before {
  content: "\f2ae";
}
.bp6-icon-server::before {
  content: "\f378";
}
.bp6-icon-server-install::before {
  content: "\f377";
}
.bp6-icon-settings::before {
  content: "\f2af";
}
.bp6-icon-shapes::before {
  content: "\f2b0";
}
.bp6-icon-share::before {
  content: "\f2b1";
}
.bp6-icon-shared-filter::before {
  content: "\f2b2";
}
.bp6-icon-shield::before {
  content: "\f2b3";
}
.bp6-icon-ship::before {
  content: "\f2b4";
}
.bp6-icon-shop::before {
  content: "\f2b5";
}
.bp6-icon-shopping-cart::before {
  content: "\f2b6";
}
.bp6-icon-shorten-text::before {
  content: "\f33f";
}
.bp6-icon-signal-search::before {
  content: "\f2b7";
}
.bp6-icon-sim-card::before {
  content: "\f2b8";
}
.bp6-icon-slash::before {
  content: "\f2b9";
}
.bp6-icon-small-cross::before {
  content: "\f2ba";
}
.bp6-icon-small-info-sign::before {
  content: "\f334";
}
.bp6-icon-small-minus::before {
  content: "\f2bb";
}
.bp6-icon-small-plus::before {
  content: "\f2bc";
}
.bp6-icon-small-square::before {
  content: "\f2bd";
}
.bp6-icon-small-tick::before {
  content: "\f2be";
}
.bp6-icon-snowflake::before {
  content: "\f2bf";
}
.bp6-icon-soccer-ball::before {
  content: "\f350";
}
.bp6-icon-social-media::before {
  content: "\f2c0";
}
.bp6-icon-sort::before {
  content: "\f2c7";
}
.bp6-icon-sort-alphabetical::before {
  content: "\f2c2";
}
.bp6-icon-sort-alphabetical-desc::before {
  content: "\f2c1";
}
.bp6-icon-sort-asc::before {
  content: "\f2c3";
}
.bp6-icon-sort-desc::before {
  content: "\f2c4";
}
.bp6-icon-sort-numerical::before {
  content: "\f2c6";
}
.bp6-icon-sort-numerical-desc::before {
  content: "\f2c5";
}
.bp6-icon-spell-check::before {
  content: "\f340";
}
.bp6-icon-spin::before {
  content: "\f3b3";
}
.bp6-icon-split-columns::before {
  content: "\f2c8";
}
.bp6-icon-sports-stadium::before {
  content: "\f351";
}
.bp6-icon-square::before {
  content: "\f2c9";
}
.bp6-icon-stacked-chart::before {
  content: "\f2ca";
}
.bp6-icon-stadium-geometry::before {
  content: "\f2cb";
}
.bp6-icon-star::before {
  content: "\f2cd";
}
.bp6-icon-star-empty::before {
  content: "\f2cc";
}
.bp6-icon-step-backward::before {
  content: "\f2ce";
}
.bp6-icon-step-chart::before {
  content: "\f2cf";
}
.bp6-icon-step-forward::before {
  content: "\f2d0";
}
.bp6-icon-stop::before {
  content: "\f2d1";
}
.bp6-icon-stopwatch::before {
  content: "\f2d2";
}
.bp6-icon-strikethrough::before {
  content: "\f2d3";
}
.bp6-icon-style::before {
  content: "\f2d4";
}
.bp6-icon-subscript::before {
  content: "\f339";
}
.bp6-icon-subtract-right-join::before {
  content: "\f392";
}
.bp6-icon-superscript::before {
  content: "\f33a";
}
.bp6-icon-swap-horizontal::before {
  content: "\f2d5";
}
.bp6-icon-swap-vertical::before {
  content: "\f2d6";
}
.bp6-icon-sweep::before {
  content: "\f3a4";
}
.bp6-icon-switch::before {
  content: "\f2d7";
}
.bp6-icon-symbol-circle::before {
  content: "\f2d8";
}
.bp6-icon-symbol-cross::before {
  content: "\f2d9";
}
.bp6-icon-symbol-diamond::before {
  content: "\f2da";
}
.bp6-icon-symbol-rectangle::before {
  content: "\f322";
}
.bp6-icon-symbol-square::before {
  content: "\f2db";
}
.bp6-icon-symbol-triangle-down::before {
  content: "\f2dc";
}
.bp6-icon-symbol-triangle-up::before {
  content: "\f2dd";
}
.bp6-icon-syringe::before {
  content: "\f2de";
}
.bp6-icon-table-sync::before {
  content: "\f36e";
}
.bp6-icon-tag::before {
  content: "\f2df";
}
.bp6-icon-tag-add::before {
  content: "\f379";
}
.bp6-icon-tag-promote::before {
  content: "\f37a";
}
.bp6-icon-tag-refresh::before {
  content: "\f37b";
}
.bp6-icon-tag-undo::before {
  content: "\f37c";
}
.bp6-icon-tags::before {
  content: "\f37d";
}
.bp6-icon-take-action::before {
  content: "\f2e0";
}
.bp6-icon-tank::before {
  content: "\f2e1";
}
.bp6-icon-target::before {
  content: "\f2e2";
}
.bp6-icon-taxi::before {
  content: "\f2e3";
}
.bp6-icon-team::before {
  content: "\f352";
}
.bp6-icon-temperature::before {
  content: "\f2e4";
}
.bp6-icon-text-highlight::before {
  content: "\f2e5";
}
.bp6-icon-th::before {
  content: "\f2ea";
}
.bp6-icon-th-add::before {
  content: "\f38a";
}
.bp6-icon-th-derived::before {
  content: "\f2e6";
}
.bp6-icon-th-disconnect::before {
  content: "\f2e7";
}
.bp6-icon-th-filtered::before {
  content: "\f2e8";
}
.bp6-icon-th-list::before {
  content: "\f2e9";
}
.bp6-icon-th-list-add::before {
  content: "\f38b";
}
.bp6-icon-th-virtual::before {
  content: "\f38c";
}
.bp6-icon-th-virtual-add::before {
  content: "\f38d";
}
.bp6-icon-third-party::before {
  content: "\f2eb";
}
.bp6-icon-thumbs-down::before {
  content: "\f2ec";
}
.bp6-icon-thumbs-up::before {
  content: "\f2ed";
}
.bp6-icon-tick::before {
  content: "\f2ef";
}
.bp6-icon-tick-circle::before {
  content: "\f2ee";
}
.bp6-icon-time::before {
  content: "\f2f0";
}
.bp6-icon-timeline-area-chart::before {
  content: "\f2f1";
}
.bp6-icon-timeline-bar-chart::before {
  content: "\f2f2";
}
.bp6-icon-timeline-events::before {
  content: "\f2f3";
}
.bp6-icon-timeline-line-chart::before {
  content: "\f2f4";
}
.bp6-icon-tint::before {
  content: "\f2f5";
}
.bp6-icon-torch::before {
  content: "\f2f6";
}
.bp6-icon-tractor::before {
  content: "\f2f7";
}
.bp6-icon-train::before {
  content: "\f2f8";
}
.bp6-icon-translate::before {
  content: "\f2f9";
}
.bp6-icon-trash::before {
  content: "\f2fa";
}
.bp6-icon-tree::before {
  content: "\f2fb";
}
.bp6-icon-trending-down::before {
  content: "\f2fc";
}
.bp6-icon-trending-up::before {
  content: "\f2fd";
}
.bp6-icon-trophy::before {
  content: "\f34f";
}
.bp6-icon-truck::before {
  content: "\f2fe";
}
.bp6-icon-two-columns::before {
  content: "\f2ff";
}
.bp6-icon-unarchive::before {
  content: "\f300";
}
.bp6-icon-underline::before {
  content: "\f301";
}
.bp6-icon-undo::before {
  content: "\f302";
}
.bp6-icon-ungroup-objects::before {
  content: "\f303";
}
.bp6-icon-unknown-vehicle::before {
  content: "\f304";
}
.bp6-icon-unlink::before {
  content: "\f345";
}
.bp6-icon-unlock::before {
  content: "\f305";
}
.bp6-icon-unpin::before {
  content: "\f306";
}
.bp6-icon-unresolve::before {
  content: "\f307";
}
.bp6-icon-updated::before {
  content: "\f308";
}
.bp6-icon-upload::before {
  content: "\f309";
}
.bp6-icon-user::before {
  content: "\f30a";
}
.bp6-icon-variable::before {
  content: "\f30b";
}
.bp6-icon-variable-layer::before {
  content: "\f3ab";
}
.bp6-icon-vector::before {
  content: "\f35e";
}
.bp6-icon-vertical-bar-chart-asc::before {
  content: "\f30c";
}
.bp6-icon-vertical-bar-chart-desc::before {
  content: "\f30d";
}
.bp6-icon-vertical-distribution::before {
  content: "\f30e";
}
.bp6-icon-vertical-inbetween::before {
  content: "\f32a";
}
.bp6-icon-video::before {
  content: "\f30f";
}
.bp6-icon-virus::before {
  content: "\f310";
}
.bp6-icon-volume-down::before {
  content: "\f311";
}
.bp6-icon-volume-off::before {
  content: "\f312";
}
.bp6-icon-volume-up::before {
  content: "\f313";
}
.bp6-icon-walk::before {
  content: "\f314";
}
.bp6-icon-warning-sign::before {
  content: "\f315";
}
.bp6-icon-waterfall-chart::before {
  content: "\f316";
}
.bp6-icon-waves::before {
  content: "\f317";
}
.bp6-icon-widget::before {
  content: "\f31b";
}
.bp6-icon-widget-button::before {
  content: "\f318";
}
.bp6-icon-widget-footer::before {
  content: "\f319";
}
.bp6-icon-widget-header::before {
  content: "\f31a";
}
.bp6-icon-wind::before {
  content: "\f31c";
}
.bp6-icon-won::before {
  content: "\f3af";
}
.bp6-icon-wrap-lines::before {
  content: "\f3ae";
}
.bp6-icon-wrench::before {
  content: "\f31d";
}
.bp6-icon-wrench-redo::before {
  content: "\f37e";
}
.bp6-icon-wrench-snooze::before {
  content: "\f37f";
}
.bp6-icon-wrench-time::before {
  content: "\f380";
}
.bp6-icon-yen::before {
  content: "\f3b0";
}
.bp6-icon-zoom-in::before {
  content: "\f31e";
}
.bp6-icon-zoom-out::before {
  content: "\f31f";
}
.bp6-icon-zoom-to-fit::before {
  content: "\f320";
}
.bp6-submenu > .bp6-popover-wrapper {
  display: block;
}
.bp6-submenu .bp6-popover-target {
  display: block;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item {
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item:not([class*=bp6-intent-]) {
  background-color: rgba(143, 153, 168, 0.15);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item:not([class*=bp6-intent-]) {
  color: inherit;
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item:not([class*=bp6-intent-]) .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item:not([class*=bp6-intent-]) .bp6-submenu-icon {
  color: #abb3bf;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-] .bp6-menu-item-label,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover .bp6-menu-item-label,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active .bp6-menu-item-label {
  color: inherit;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-],
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active {
  background-color: rgba(45, 114, 210, 0.1);
  color: #215db0;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-] .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-] .bp6-menu-item-selected-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-] .bp6-submenu-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover .bp6-menu-item-selected-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover .bp6-submenu-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active .bp6-menu-item-selected-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active .bp6-submenu-icon {
  color: #215db0;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-success,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-success,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-success {
  background-color: rgba(35, 133, 81, 0.1);
  color: #1c6e42;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-success::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-success .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-success .bp6-submenu-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-success::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-success .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-success .bp6-submenu-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-success::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-success .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-success .bp6-submenu-icon {
  color: inherit;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-warning,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-warning,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-warning {
  background-color: rgba(200, 118, 25, 0.1);
  color: #935610;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-warning::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-warning .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-warning .bp6-submenu-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-warning::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-warning .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-warning .bp6-submenu-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-warning::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-warning .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-warning .bp6-submenu-icon {
  color: inherit;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-danger,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-danger,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-danger {
  background-color: rgba(205, 66, 70, 0.1);
  color: #ac2f33;
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-danger::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-danger .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-danger .bp6-submenu-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-danger::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-danger .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-danger .bp6-submenu-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-danger::before,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-danger .bp6-menu-item-icon,
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-danger .bp6-submenu-icon {
  color: inherit;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-],
  .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover,
  .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active {
    background-color: highlight;
  }
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-],
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active {
  background-color: rgba(45, 114, 210, 0.2);
  color: #8abbff;
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-] .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-] .bp6-menu-item-selected-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-] .bp6-submenu-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover .bp6-menu-item-selected-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover .bp6-submenu-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active .bp6-menu-item-selected-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active .bp6-submenu-icon {
  color: #8abbff;
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-success,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-success,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-success {
  background-color: rgba(35, 133, 81, 0.2);
  color: #72ca9b;
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-success::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-success .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-success .bp6-submenu-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-success::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-success .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-success .bp6-submenu-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-success::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-success .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-success .bp6-submenu-icon {
  color: inherit;
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-warning,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-warning,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-warning {
  background-color: rgba(200, 118, 25, 0.2);
  color: #fbb360;
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-warning::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-warning .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-warning .bp6-submenu-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-warning::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-warning .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-warning .bp6-submenu-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-warning::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-warning .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-warning .bp6-submenu-icon {
  color: inherit;
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-danger,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-danger,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-danger {
  background-color: rgba(205, 66, 70, 0.2);
  color: #fa999c;
}
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-danger::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-danger .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-].bp6-intent-danger .bp6-submenu-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-danger::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-danger .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover.bp6-intent-danger .bp6-submenu-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-danger::before,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-danger .bp6-menu-item-icon,
.bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active.bp6-intent-danger .bp6-submenu-icon {
  color: inherit;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-],
  .bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:hover,
  .bp6-dark .bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item[class*=bp6-intent-]:active {
    background-color: highlight;
  }
}
.bp6-submenu .bp6-popover-target.bp6-popover-open > .bp6-menu-item {
}
.bp6-submenu.bp6-popover {
  box-shadow: none;
  padding: 0 4px;
}
.bp6-submenu.bp6-popover > .bp6-popover-content {
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
}
.bp6-dark .bp6-submenu.bp6-popover,
.bp6-submenu.bp6-popover.bp6-dark {
  box-shadow: none;
}
.bp6-dark .bp6-submenu.bp6-popover > .bp6-popover-content,
.bp6-submenu.bp6-popover.bp6-dark > .bp6-popover-content {
  box-shadow:
    0 0 0 1px hsl(215, 3%, 38%),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(17, 20, 24, 0.4),
    0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp6-menu {
  background: #ffffff;
  border-radius: 2px;
  color: #1c2127;
  list-style: none;
  margin: 0;
  min-width: 180px;
  padding: 4px;
  text-align: left;
}
.bp6-menu-divider {
  border-top: 1px solid rgba(17, 20, 24, 0.15);
  display: block;
  margin: 4px -4px;
}
.bp6-dark .bp6-menu-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.bp6-menu-item {
  display: flex;
  flex-direction: row;
}
.bp6-menu-item > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-menu-item > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-menu-item::before,
.bp6-menu-item > * {
  margin-right: 8px;
}
.bp6-menu-item:empty::before,
.bp6-menu-item > :last-child {
  margin-right: 0;
}
.bp6-menu-item {
  align-items: flex-start;
  border-radius: 2px;
  color: inherit;
  line-height: 22px;
  padding: 4px 8px;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bp6-menu-item > .bp6-fill {
  word-break: break-word;
}
.bp6-menu-item .bp6-menu-item-icon {
  display: flex;
  flex-direction: column;
  height: 22px;
  justify-content: center;
}
.bp6-menu-item .bp6-menu-item-label {
  color: #5f6b7c;
}
.bp6-menu-item::before,
.bp6-menu-item .bp6-menu-item-icon,
.bp6-menu-item .bp6-menu-item-selected-icon,
.bp6-menu-item .bp6-submenu-icon {
  color: #5f6b7c;
}
.bp6-menu-item::before,
.bp6-menu-item .bp6-submenu-icon {
  margin-top: 3px;
}
.bp6-menu-item:hover {
  background-color: rgba(143, 153, 168, 0.15);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.bp6-menu-item:active {
  background-color: rgba(143, 153, 168, 0.3);
}
.bp6-menu-item:active .bp6-menu-item-label {
  color: #1c2127;
}
.bp6-menu-item.bp6-active .bp6-menu-item-label {
  color: inherit;
}
.bp6-menu-item.bp6-active {
  background-color: rgba(45, 114, 210, 0.1);
  color: #215db0;
}
.bp6-menu-item.bp6-active::before,
.bp6-menu-item.bp6-active .bp6-menu-item-icon,
.bp6-menu-item.bp6-active .bp6-menu-item-selected-icon,
.bp6-menu-item.bp6-active .bp6-submenu-icon {
  color: #215db0;
}
.bp6-menu-item.bp6-active.bp6-intent-success {
  background-color: rgba(35, 133, 81, 0.1);
  color: #1c6e42;
}
.bp6-menu-item.bp6-active.bp6-intent-success::before,
.bp6-menu-item.bp6-active.bp6-intent-success .bp6-menu-item-icon,
.bp6-menu-item.bp6-active.bp6-intent-success .bp6-submenu-icon {
  color: inherit;
}
.bp6-menu-item.bp6-active.bp6-intent-warning {
  background-color: rgba(200, 118, 25, 0.1);
  color: #935610;
}
.bp6-menu-item.bp6-active.bp6-intent-warning::before,
.bp6-menu-item.bp6-active.bp6-intent-warning .bp6-menu-item-icon,
.bp6-menu-item.bp6-active.bp6-intent-warning .bp6-submenu-icon {
  color: inherit;
}
.bp6-menu-item.bp6-active.bp6-intent-danger {
  background-color: rgba(205, 66, 70, 0.1);
  color: #ac2f33;
}
.bp6-menu-item.bp6-active.bp6-intent-danger::before,
.bp6-menu-item.bp6-active.bp6-intent-danger .bp6-menu-item-icon,
.bp6-menu-item.bp6-active.bp6-intent-danger .bp6-submenu-icon {
  color: inherit;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-menu-item.bp6-active {
    background-color: highlight;
  }
}
.bp6-menu-item.bp6-menu-item-is-selectable {
  padding-left: 20px;
}
.bp6-menu-item.bp6-menu-item-is-selectable.bp6-selected {
  padding-left: 0;
}
.bp6-menu-item.bp6-menu-item-is-selectable .bp6-menu-item-selected-icon {
  align-self: center;
  margin: 0 2px;
}
.bp6-menu-item {
}
.bp6-menu-item.bp6-disabled {
  background-color: inherit !important;
  color: rgba(95, 107, 124, 0.6) !important;
  cursor: not-allowed !important;
  outline: none !important;
}
.bp6-menu-item.bp6-disabled::before,
.bp6-menu-item.bp6-disabled .bp6-menu-item-icon,
.bp6-menu-item.bp6-disabled .bp6-submenu-icon {
  color: rgba(95, 107, 124, 0.6) !important;
}
.bp6-menu-item.bp6-disabled .bp6-menu-item-label {
  color: rgba(95, 107, 124, 0.6) !important;
}
.bp6-menu-item {
}
.bp6-menu-item.bp6-intent-primary {
  color: #215db0;
}
.bp6-menu-item.bp6-intent-primary::before,
.bp6-menu-item.bp6-intent-primary .bp6-menu-item-icon,
.bp6-menu-item.bp6-intent-primary .bp6-menu-item-selected-icon,
.bp6-menu-item.bp6-intent-primary .bp6-submenu-icon,
.bp6-menu-item.bp6-intent-primary .bp6-menu-item-label {
  color: inherit;
}
.bp6-menu-item.bp6-intent-primary:hover {
  background-color: rgba(45, 114, 210, 0.1);
}
.bp6-menu-item.bp6-intent-primary:active,
.bp6-menu-item.bp6-intent-primary.bp6-active {
  background-color: rgba(45, 114, 210, 0.2);
  color: #184a90;
}
.bp6-menu-item.bp6-intent-success {
  color: #1c6e42;
}
.bp6-menu-item.bp6-intent-success::before,
.bp6-menu-item.bp6-intent-success .bp6-menu-item-icon,
.bp6-menu-item.bp6-intent-success .bp6-menu-item-selected-icon,
.bp6-menu-item.bp6-intent-success .bp6-submenu-icon,
.bp6-menu-item.bp6-intent-success .bp6-menu-item-label {
  color: inherit;
}
.bp6-menu-item.bp6-intent-success:hover {
  background-color: rgba(35, 133, 81, 0.1);
}
.bp6-menu-item.bp6-intent-success:active,
.bp6-menu-item.bp6-intent-success.bp6-active {
  background-color: rgba(35, 133, 81, 0.2);
  color: #165a36;
}
.bp6-menu-item.bp6-intent-warning {
  color: #935610;
}
.bp6-menu-item.bp6-intent-warning::before,
.bp6-menu-item.bp6-intent-warning .bp6-menu-item-icon,
.bp6-menu-item.bp6-intent-warning .bp6-menu-item-selected-icon,
.bp6-menu-item.bp6-intent-warning .bp6-submenu-icon,
.bp6-menu-item.bp6-intent-warning .bp6-menu-item-label {
  color: inherit;
}
.bp6-menu-item.bp6-intent-warning:hover {
  background-color: rgba(200, 118, 25, 0.1);
}
.bp6-menu-item.bp6-intent-warning:active,
.bp6-menu-item.bp6-intent-warning.bp6-active {
  background-color: rgba(200, 118, 25, 0.2);
  color: #77450d;
}
.bp6-menu-item.bp6-intent-danger {
  color: #ac2f33;
}
.bp6-menu-item.bp6-intent-danger::before,
.bp6-menu-item.bp6-intent-danger .bp6-menu-item-icon,
.bp6-menu-item.bp6-intent-danger .bp6-menu-item-selected-icon,
.bp6-menu-item.bp6-intent-danger .bp6-submenu-icon,
.bp6-menu-item.bp6-intent-danger .bp6-menu-item-label {
  color: inherit;
}
.bp6-menu-item.bp6-intent-danger:hover {
  background-color: rgba(205, 66, 70, 0.1);
}
.bp6-menu-item.bp6-intent-danger:active,
.bp6-menu-item.bp6-intent-danger.bp6-active {
  background-color: rgba(205, 66, 70, 0.2);
  color: #8e292c;
}
.bp6-menu-item::before {
  font-family: "blueprint-icons-16", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 16px;
  line-height: 1;
  width: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-right: 8px;
}
.bp6-large .bp6-menu-item {
  font-size: 16px;
  padding-bottom: 9px;
  padding-top: 9px;
}
.bp6-large .bp6-menu-item .bp6-menu-item-icon {
  height: 22px;
}
.bp6-large .bp6-menu-item::before,
.bp6-large .bp6-menu-item .bp6-submenu-icon {
  margin-top: 3px;
}
.bp6-large .bp6-menu-item::before {
  font-family: "blueprint-icons-20", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 20px;
  line-height: 1;
  width: 20px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin-right: 8px;
}
.bp6-small .bp6-menu-item {
  line-height: 20px;
  padding-bottom: 2px;
  padding-top: 2px;
}
.bp6-small .bp6-menu-item .bp6-menu-item-icon {
  height: 20px;
}
button.bp6-menu-item {
  background: none;
  border: none;
  text-align: left;
  width: 100%;
}
.bp6-menu-header {
  border-top: 1px solid rgba(17, 20, 24, 0.15);
  display: block;
  margin: 4px -4px;
}
.bp6-dark .bp6-menu-header {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.bp6-menu-header {
  cursor: default;
  padding-left: 4px;
}
.bp6-menu-header:first-of-type {
  border-top: none;
}
.bp6-menu-header > h6 {
  color: #1c2127;
  font-weight: 600;
}
.bp6-dark .bp6-menu-header > h6 {
  color: #f6f7f9;
}
.bp6-menu-header > h6.bp6-text-muted {
  color: #5f6b7c;
}
.bp6-dark .bp6-menu-header > h6.bp6-text-muted {
  color: #abb3bf;
}
.bp6-menu-header > h6 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  line-height: 17px;
  margin: 0;
  padding: 8px 8px 0 8px;
}
.bp6-menu-header:first-of-type > h6 {
  padding-top: 0;
}
.bp6-large .bp6-menu-header > h6 {
  font-size: 18px;
  padding-bottom: 4px;
  padding-top: 16px;
}
.bp6-large .bp6-menu-header:first-of-type > h6 {
  padding-top: 0;
}
.bp6-dark .bp6-menu {
  background: #2f343c;
  color: #f6f7f9;
}
.bp6-dark .bp6-menu-item {
  color: inherit;
}
.bp6-dark .bp6-menu-item .bp6-menu-item-label {
  color: #abb3bf;
}
.bp6-dark .bp6-menu-item::before,
.bp6-dark .bp6-menu-item .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item .bp6-menu-item-selected-icon,
.bp6-dark .bp6-menu-item .bp6-submenu-icon {
  color: #abb3bf;
}
.bp6-dark .bp6-menu-item:hover {
  color: inherit;
}
.bp6-dark .bp6-menu-item:hover .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item:hover .bp6-submenu-icon {
  color: #abb3bf;
}
.bp6-dark .bp6-menu-item:active {
  background-color: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-menu-item:active .bp6-menu-item-label {
  color: #f6f7f9;
}
.bp6-dark .bp6-menu-item.bp6-active {
  background-color: rgba(45, 114, 210, 0.2);
  color: #8abbff;
}
.bp6-dark .bp6-menu-item.bp6-active::before,
.bp6-dark .bp6-menu-item.bp6-active .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item.bp6-active .bp6-menu-item-selected-icon,
.bp6-dark .bp6-menu-item.bp6-active .bp6-submenu-icon {
  color: #8abbff;
}
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-success {
  background-color: rgba(35, 133, 81, 0.2);
  color: #72ca9b;
}
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-success::before,
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-success .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-success .bp6-submenu-icon {
  color: inherit;
}
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-warning {
  background-color: rgba(200, 118, 25, 0.2);
  color: #fbb360;
}
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-warning::before,
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-warning .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-warning .bp6-submenu-icon {
  color: inherit;
}
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-danger {
  background-color: rgba(205, 66, 70, 0.2);
  color: #fa999c;
}
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-danger::before,
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-danger .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item.bp6-active.bp6-intent-danger .bp6-submenu-icon {
  color: inherit;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dark .bp6-menu-item.bp6-active {
    background-color: highlight;
  }
}
.bp6-dark .bp6-menu-item {
}
.bp6-dark .bp6-menu-item.bp6-disabled {
  color: rgba(171, 179, 191, 0.6) !important;
}
.bp6-dark .bp6-menu-item.bp6-disabled::before,
.bp6-dark .bp6-menu-item.bp6-disabled .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item.bp6-disabled .bp6-submenu-icon {
  color: rgba(171, 179, 191, 0.6) !important;
}
.bp6-dark .bp6-menu-item.bp6-disabled .bp6-menu-item-label {
  color: rgba(171, 179, 191, 0.6) !important;
}
.bp6-dark .bp6-menu-item {
}
.bp6-dark .bp6-menu-item.bp6-intent-primary {
  color: #8abbff;
}
.bp6-dark .bp6-menu-item.bp6-intent-primary::before,
.bp6-dark .bp6-menu-item.bp6-intent-primary .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item.bp6-intent-primary .bp6-menu-item-selected-icon,
.bp6-dark .bp6-menu-item.bp6-intent-primary .bp6-submenu-icon,
.bp6-dark .bp6-menu-item.bp6-intent-primary .bp6-menu-item-label {
  color: inherit;
}
.bp6-dark .bp6-menu-item.bp6-intent-primary:hover {
  background-color: rgba(45, 114, 210, 0.2);
}
.bp6-dark .bp6-menu-item.bp6-intent-primary:active,
.bp6-dark .bp6-menu-item.bp6-intent-primary.bp6-active {
  background-color: rgba(45, 114, 210, 0.3);
  color: #99c4ff;
}
.bp6-dark .bp6-menu-item.bp6-intent-success {
  color: #72ca9b;
}
.bp6-dark .bp6-menu-item.bp6-intent-success::before,
.bp6-dark .bp6-menu-item.bp6-intent-success .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item.bp6-intent-success .bp6-menu-item-selected-icon,
.bp6-dark .bp6-menu-item.bp6-intent-success .bp6-submenu-icon,
.bp6-dark .bp6-menu-item.bp6-intent-success .bp6-menu-item-label {
  color: inherit;
}
.bp6-dark .bp6-menu-item.bp6-intent-success:hover {
  background-color: rgba(35, 133, 81, 0.2);
}
.bp6-dark .bp6-menu-item.bp6-intent-success:active,
.bp6-dark .bp6-menu-item.bp6-intent-success.bp6-active {
  background-color: rgba(35, 133, 81, 0.3);
  color: #7cd7a2;
}
.bp6-dark .bp6-menu-item.bp6-intent-warning {
  color: #fbb360;
}
.bp6-dark .bp6-menu-item.bp6-intent-warning::before,
.bp6-dark .bp6-menu-item.bp6-intent-warning .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item.bp6-intent-warning .bp6-menu-item-selected-icon,
.bp6-dark .bp6-menu-item.bp6-intent-warning .bp6-submenu-icon,
.bp6-dark .bp6-menu-item.bp6-intent-warning .bp6-menu-item-label {
  color: inherit;
}
.bp6-dark .bp6-menu-item.bp6-intent-warning:hover {
  background-color: rgba(200, 118, 25, 0.2);
}
.bp6-dark .bp6-menu-item.bp6-intent-warning:active,
.bp6-dark .bp6-menu-item.bp6-intent-warning.bp6-active {
  background-color: rgba(200, 118, 25, 0.3);
  color: #f5c186;
}
.bp6-dark .bp6-menu-item.bp6-intent-danger {
  color: #fa999c;
}
.bp6-dark .bp6-menu-item.bp6-intent-danger::before,
.bp6-dark .bp6-menu-item.bp6-intent-danger .bp6-menu-item-icon,
.bp6-dark .bp6-menu-item.bp6-intent-danger .bp6-menu-item-selected-icon,
.bp6-dark .bp6-menu-item.bp6-intent-danger .bp6-submenu-icon,
.bp6-dark .bp6-menu-item.bp6-intent-danger .bp6-menu-item-label {
  color: inherit;
}
.bp6-dark .bp6-menu-item.bp6-intent-danger:hover {
  background-color: rgba(205, 66, 70, 0.2);
}
.bp6-dark .bp6-menu-item.bp6-intent-danger:active,
.bp6-dark .bp6-menu-item.bp6-intent-danger.bp6-active {
  background-color: rgba(205, 66, 70, 0.3);
  color: #ffa1a4;
}
.bp6-dark .bp6-menu-divider,
.bp6-dark .bp6-menu-header {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-dark .bp6-menu-header > h6 {
  color: #f6f7f9;
}
.bp6-label .bp6-menu {
  margin-top: 4px;
}
.bp6-navbar {
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.1), 0 1px 1px rgba(17, 20, 24, 0.2);
  height: 50px;
  padding: 0 16px;
  position: relative;
  width: 100%;
  z-index: 10;
}
.bp6-navbar.bp6-dark,
.bp6-dark .bp6-navbar {
  background-color: #252a31;
}
.bp6-navbar.bp6-dark {
  box-shadow: inset inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px 0 rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-navbar {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px 0 rgba(17, 20, 24, 0.4);
}
.bp6-navbar.bp6-fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-navbar {
    border: 1px solid buttonborder;
  }
}
.bp6-navbar-heading {
  font-size: 16px;
  margin-right: 16px;
}
.bp6-navbar-group {
  align-items: center;
  display: flex;
  height: 50px;
}
.bp6-navbar-group.bp6-align-left {
  float: left;
}
.bp6-navbar-group.bp6-align-right {
  float: right;
}
.bp6-navbar-divider {
  border-left: 1px solid rgba(17, 20, 24, 0.15);
  height: 20px;
  margin: 0 8px;
}
.bp6-dark .bp6-navbar-divider {
  border-left-color: rgba(255, 255, 255, 0.2);
}
.bp6-non-ideal-state {
  display: flex;
  flex-direction: column;
}
.bp6-non-ideal-state > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-non-ideal-state > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-non-ideal-state::before,
.bp6-non-ideal-state > * {
  margin-bottom: 20px;
}
.bp6-non-ideal-state:empty::before,
.bp6-non-ideal-state > :last-child {
  margin-bottom: 0;
}
.bp6-non-ideal-state {
  align-items: center;
  color: #5f6b7c;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.bp6-non-ideal-state > * {
  max-width: 400px;
}
.bp6-non-ideal-state .bp6-heading {
  color: #5f6b7c;
  line-height: 20px;
  margin-bottom: 8px;
}
.bp6-non-ideal-state .bp6-heading:only-child {
  margin-bottom: 0;
}
.bp6-non-ideal-state.bp6-non-ideal-state-horizontal {
  display: flex;
  flex-direction: row;
}
.bp6-non-ideal-state.bp6-non-ideal-state-horizontal > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-non-ideal-state.bp6-non-ideal-state-horizontal > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-non-ideal-state.bp6-non-ideal-state-horizontal::before,
.bp6-non-ideal-state.bp6-non-ideal-state-horizontal > * {
  margin-right: 20px;
}
.bp6-non-ideal-state.bp6-non-ideal-state-horizontal:empty::before,
.bp6-non-ideal-state.bp6-non-ideal-state-horizontal > :last-child {
  margin-right: 0;
}
.bp6-non-ideal-state.bp6-non-ideal-state-horizontal {
  text-align: left;
}
.bp6-non-ideal-state.bp6-non-ideal-state-horizontal > * {
  margin-bottom: 0;
}
.bp6-dark .bp6-non-ideal-state {
  color: #abb3bf;
}
.bp6-dark .bp6-non-ideal-state .bp6-heading {
  color: #abb3bf;
}
.bp6-non-ideal-state-visual {
  color: #8f99a8;
}
.bp6-overflow-list {
  display: flex;
  flex-wrap: nowrap;
  min-width: 0;
}
.bp6-overflow-list-spacer {
  flex-shrink: 1;
  width: 1px;
}
body.bp6-overlay-open {
  overflow: hidden;
}
.bp6-overlay {
  inset: 0;
  position: static;
  z-index: 20;
}
.bp6-overlay:not(.bp6-overlay-open) {
  pointer-events: none;
}
.bp6-overlay.bp6-overlay-container {
  overflow: hidden;
  position: fixed;
}
.bp6-overlay.bp6-overlay-container.bp6-overlay-inline {
  position: absolute;
}
.bp6-overlay.bp6-overlay-scroll-container {
  overflow: auto;
  position: fixed;
}
.bp6-overlay.bp6-overlay-scroll-container.bp6-overlay-inline {
  position: absolute;
}
.bp6-overlay.bp6-overlay-inline {
  display: inline;
  overflow: visible;
}
.bp6-overlay-content {
  position: fixed;
  z-index: 20;
}
.bp6-overlay-inline .bp6-overlay-content,
.bp6-overlay-scroll-container .bp6-overlay-content {
  position: absolute;
}
.bp6-overlay-backdrop {
  inset: 0;
  position: fixed;
  opacity: 1;
}
.bp6-overlay-backdrop.bp6-overlay-enter,
.bp6-overlay-backdrop.bp6-overlay-appear {
  opacity: 0;
}
.bp6-overlay-backdrop.bp6-overlay-enter-active,
.bp6-overlay-backdrop.bp6-overlay-appear-active {
  opacity: 1;
  transition-delay: 0;
  transition-duration: 200ms;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-overlay-backdrop.bp6-overlay-exit {
  opacity: 1;
}
.bp6-overlay-backdrop.bp6-overlay-exit-active {
  opacity: 0;
  transition-delay: 0;
  transition-duration: 200ms;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-overlay-backdrop {
  background-color: rgba(17, 20, 24, 0.7);
  overflow: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 20;
}
.bp6-overlay-backdrop:focus {
  outline: none;
}
.bp6-overlay-inline .bp6-overlay-backdrop {
  position: absolute;
}
.bp6-panel-stack2 {
  overflow: hidden;
  position: relative;
}
.bp6-panel-stack2-header {
  align-items: center;
  box-shadow: 0 1px rgba(17, 20, 24, 0.15);
  display: flex;
  flex-shrink: 0;
  height: 30px;
  z-index: 1;
}
.bp6-dark .bp6-panel-stack2-header {
  box-shadow: 0 1px rgba(255, 255, 255, 0.2);
}
.bp6-panel-stack2-header > span {
  align-items: stretch;
  display: flex;
  flex: 1;
}
.bp6-panel-stack2-header .bp6-heading {
  margin: 0 4px;
}
.bp6-button.bp6-panel-stack2-header-back {
  margin-left: 4px;
  padding-left: 0;
  white-space: nowrap;
}
.bp6-button.bp6-panel-stack2-header-back .bp6-icon {
  margin: 0 2px;
}
.bp6-panel-stack2-view {
  inset: 0;
  position: absolute;
  background-color: #ffffff;
  border-right: 1px solid rgba(17, 20, 24, 0.15);
  display: flex;
  flex-direction: column;
  margin-right: -1px;
  overflow-y: auto;
  z-index: 1;
}
.bp6-dark .bp6-panel-stack2-view {
  background-color: #252a31;
}
.bp6-panel-stack2-view:nth-last-child(n+4) {
  display: none;
}
.bp6-panel-stack2-push .bp6-panel-stack2-enter,
.bp6-panel-stack2-push .bp6-panel-stack2-appear {
  transform: translateX(100%);
  opacity: 0;
}
.bp6-panel-stack2-push .bp6-panel-stack2-enter-active,
.bp6-panel-stack2-push .bp6-panel-stack2-appear-active {
  transform: translate(0%);
  opacity: 1;
  transition-delay: 0;
  transition-duration: 400ms;
  transition-property: transform, opacity;
  transition-timing-function: ease;
}
.bp6-panel-stack2-push .bp6-panel-stack2-exit {
  transform: translate(0%);
  opacity: 1;
}
.bp6-panel-stack2-push .bp6-panel-stack2-exit-active {
  transform: translateX(-50%);
  opacity: 0;
  transition-delay: 0;
  transition-duration: 400ms;
  transition-property: transform, opacity;
  transition-timing-function: ease;
}
.bp6-panel-stack2-pop .bp6-panel-stack2-enter,
.bp6-panel-stack2-pop .bp6-panel-stack2-appear {
  transform: translateX(-50%);
  opacity: 0;
}
.bp6-panel-stack2-pop .bp6-panel-stack2-enter-active,
.bp6-panel-stack2-pop .bp6-panel-stack2-appear-active {
  transform: translate(0%);
  opacity: 1;
  transition-delay: 0;
  transition-duration: 400ms;
  transition-property: transform, opacity;
  transition-timing-function: ease;
}
.bp6-panel-stack2-pop .bp6-panel-stack2-exit {
  transform: translate(0%);
  opacity: 1;
}
.bp6-panel-stack2-pop .bp6-panel-stack2-exit-active {
  transform: translateX(100%);
  opacity: 0;
  transition-delay: 0;
  transition-duration: 400ms;
  transition-property: transform, opacity;
  transition-timing-function: ease;
}
.bp6-button-group:not(.bp6-minimal) > .bp6-popover-target:not(:first-child) .bp6-button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.bp6-button-group:not(.bp6-minimal) > .bp6-popover-target:not(:last-child) .bp6-button {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-right: -1px;
}
.bp6-button-group .bp6-popover-target {
  display: flex;
  flex: 1 1 auto;
}
.bp6-button-group.bp6-vertical:not(.bp6-minimal) > .bp6-popover-target:first-child .bp6-button {
  border-radius: 2px 2px 0 0;
}
.bp6-button-group.bp6-vertical:not(.bp6-minimal) > .bp6-popover-target:last-child .bp6-button {
  border-radius: 0 0 2px 2px;
}
.bp6-button-group.bp6-vertical:not(.bp6-minimal) > .bp6-popover-target:not(:last-child) .bp6-button {
  margin-bottom: -1px;
}
.bp6-control-group .bp6-popover-target {
  border-radius: inherit;
}
label.bp6-label .bp6-popover-target {
  display: block;
  margin-top: 4px;
  text-transform: none;
}
.bp6-submenu .bp6-popover-target {
  display: block;
}
.bp6-submenu.bp6-popover {
  box-shadow: none;
  padding: 0 4px;
}
.bp6-submenu.bp6-popover > .bp6-popover-content {
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
}
.bp6-dark .bp6-submenu.bp6-popover,
.bp6-submenu.bp6-popover.bp6-dark {
  box-shadow: none;
}
.bp6-dark .bp6-submenu.bp6-popover > .bp6-popover-content,
.bp6-submenu.bp6-popover.bp6-dark > .bp6-popover-content {
  box-shadow:
    0 0 0 1px hsl(215, 3%, 38%),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(17, 20, 24, 0.4),
    0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp6-tree-node-secondary-label .bp6-popover-target {
  align-items: center;
  display: flex;
}
.bp6-popover .bp6-popover-arrow {
  height: 30px;
  position: absolute;
  width: 30px;
}
.bp6-popover .bp6-popover-arrow::before {
  height: 20px;
  margin: 5px;
  width: 20px;
}
.bp6-popover {
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
}
.bp6-popover .bp6-popover-content {
  background: #ffffff;
}
.bp6-popover .bp6-popover-content,
.bp6-popover .bp6-heading {
  color: inherit;
}
.bp6-popover .bp6-popover-arrow::before {
  box-shadow: 1px 1px 6px rgba(17, 20, 24, 0.2);
}
.bp6-popover .bp6-popover-arrow-border {
  fill: #111418;
  fill-opacity: 0.1;
}
.bp6-popover .bp6-popover-arrow-fill {
  fill: #ffffff;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-popover .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-popover {
    border: 1px solid buttonborder;
  }
}
.bp6-popover {
  transform: scale(1);
}
.bp6-popover-enter > .bp6-popover,
.bp6-popover-appear > .bp6-popover {
  transform: scale(0.3);
}
.bp6-popover-enter-active > .bp6-popover,
.bp6-popover-appear-active > .bp6-popover {
  transform: scale(1);
  transition-delay: 0;
  transition-duration: 300ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11);
}
.bp6-popover-exit > .bp6-popover {
  transform: scale(1);
}
.bp6-popover-exit-active > .bp6-popover {
  transform: scale(0.3);
  transition-delay: 0;
  transition-duration: 300ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11);
}
.bp6-popover {
  border-radius: 2px;
  display: inline-block;
  z-index: 20;
}
.bp6-popover .bp6-popover-content {
  border-radius: 2px;
  position: relative;
}
.bp6-popover.bp6-popover-content-sizing .bp6-popover-content {
  max-width: 350px;
  padding: 20px;
}
.bp6-popover-target + .bp6-overlay .bp6-popover.bp6-popover-content-sizing {
  width: 350px;
}
.bp6-popover.bp6-minimal {
  margin: 0 !important;
}
.bp6-popover.bp6-minimal .bp6-popover-arrow {
  display: none;
}
.bp6-popover.bp6-minimal.bp6-popover {
  transform: scale(1);
}
.bp6-popover-enter > .bp6-popover.bp6-minimal.bp6-popover,
.bp6-popover-appear > .bp6-popover.bp6-minimal.bp6-popover {
  transform: scale(1);
}
.bp6-popover-enter-active > .bp6-popover.bp6-minimal.bp6-popover,
.bp6-popover-appear-active > .bp6-popover.bp6-minimal.bp6-popover {
  transform: scale(1);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-popover-exit > .bp6-popover.bp6-minimal.bp6-popover {
  transform: scale(1);
}
.bp6-popover-exit-active > .bp6-popover.bp6-minimal.bp6-popover {
  transform: scale(1);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-popover.bp6-popover-match-target-width {
  width: 100%;
}
.bp6-popover.bp6-dark,
.bp6-dark .bp6-popover {
  box-shadow:
    0 0 0 1px hsl(215, 3%, 38%),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(17, 20, 24, 0.4),
    0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp6-popover.bp6-dark .bp6-popover-content,
.bp6-dark .bp6-popover .bp6-popover-content {
  background: #2f343c;
}
.bp6-popover.bp6-dark .bp6-popover-content,
.bp6-popover.bp6-dark .bp6-heading,
.bp6-dark .bp6-popover .bp6-popover-content,
.bp6-dark .bp6-popover .bp6-heading {
  color: inherit;
}
.bp6-popover.bp6-dark .bp6-popover-arrow::before,
.bp6-dark .bp6-popover .bp6-popover-arrow::before {
  box-shadow: 0 0 0 1px hsl(215, 3%, 48%), 1px 1px 6px rgba(17, 20, 24, 0.4);
}
.bp6-popover.bp6-dark .bp6-popover-arrow-border,
.bp6-dark .bp6-popover .bp6-popover-arrow-border {
  fill: #111418;
  fill-opacity: 0.2;
}
.bp6-popover.bp6-dark .bp6-popover-arrow-fill,
.bp6-dark .bp6-popover .bp6-popover-arrow-fill {
  fill: #2f343c;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-popover.bp6-dark .bp6-popover-arrow-fill,
  .bp6-dark .bp6-popover .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-popover.bp6-dark,
  .bp6-dark .bp6-popover {
    border: 1px solid buttonborder;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-popover {
    border: 1px solid buttonborder;
    box-shadow: none;
  }
}
.bp6-popover-arrow::before {
  border-radius: 1px;
  content: "";
  display: block;
  position: absolute;
  transform: rotate(45deg);
}
.bp6-overlay-backdrop.bp6-popover-backdrop {
  background: rgba(255, 255, 255, 0);
}
.bp6-popover-transition-container {
  opacity: 1;
}
.bp6-popover-transition-container.bp6-popover-enter,
.bp6-popover-transition-container.bp6-popover-appear {
  opacity: 0;
}
.bp6-popover-transition-container.bp6-popover-enter-active,
.bp6-popover-transition-container.bp6-popover-appear-active {
  opacity: 1;
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-popover-transition-container.bp6-popover-exit {
  opacity: 1;
}
.bp6-popover-transition-container.bp6-popover-exit-active {
  opacity: 0;
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-popover-transition-container {
  display: flex;
  z-index: 20;
}
.bp6-popover-transition-container:focus {
  outline: none;
}
.bp6-popover-transition-container.bp6-popover-leave .bp6-popover-content {
  pointer-events: none;
}
span.bp6-popover-target {
  display: inline-block;
}
.bp6-popover-target.bp6-fill {
  width: 100%;
}
.bp6-portal {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
@keyframes linear-progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
.bp6-progress-bar {
  background: rgba(95, 107, 124, 0.2);
  border-radius: 40px;
  display: block;
  height: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.bp6-progress-bar .bp6-progress-meter {
  background:
    linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%);
  background-color: rgba(95, 107, 124, 0.8);
  background-size: 30px 30px;
  border-radius: 40px;
  height: 100%;
  position: absolute;
  transition: width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  width: 100%;
}
.bp6-progress-bar:not(.bp6-no-animation):not(.bp6-no-stripes) .bp6-progress-meter {
  animation: linear-progress-bar-stripes 300ms linear infinite reverse;
}
.bp6-progress-bar.bp6-no-stripes .bp6-progress-meter {
  background-image: none;
}
.bp6-dark .bp6-progress-bar {
  background: rgba(17, 20, 24, 0.5);
}
.bp6-dark .bp6-progress-bar .bp6-progress-meter {
  background-color: #8f99a8;
}
.bp6-progress-bar.bp6-intent-primary .bp6-progress-meter {
  background-color: #2d72d2;
}
.bp6-progress-bar.bp6-intent-success .bp6-progress-meter {
  background-color: #238551;
}
.bp6-progress-bar.bp6-intent-warning .bp6-progress-meter {
  background-color: #c87619;
}
.bp6-progress-bar.bp6-intent-danger .bp6-progress-meter {
  background-color: #cd4246;
}
.bp6-section {
  overflow: hidden;
  width: 100%;
}
.bp6-section,
.bp6-section.bp6-compact {
  padding: 0;
}
.bp6-section-header {
  align-items: center;
  border-bottom: 1px solid rgba(17, 20, 24, 0.15);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 20px;
  position: relative;
  width: 100%;
}
.bp6-section-header.bp6-dark,
.bp6-dark .bp6-section-header {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-section-header-left {
  align-items: center;
  display: flex;
  gap: 8px;
  padding: 8px 0;
}
.bp6-section-header-title {
  margin-bottom: 0;
}
.bp6-section-header-sub-title {
  margin-top: 2px;
}
.bp6-section-header-right {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.bp6-section-header-collapse-caret {
  display: inline-flex;
  justify-content: center;
  vertical-align: middle;
}
.bp6-section-header-divider {
  align-self: stretch;
  margin: 16px 0;
}
.bp6-section-header.bp6-interactive {
  cursor: pointer;
}
.bp6-section-header.bp6-interactive:hover,
.bp6-section-header.bp6-interactive:active {
  background: #f6f7f9;
}
.bp6-section-header.bp6-interactive:hover.bp6-dark,
.bp6-dark .bp6-section-header.bp6-interactive:hover,
.bp6-section-header.bp6-interactive:active.bp6-dark,
.bp6-dark .bp6-section-header.bp6-interactive:active {
  background: #383e47;
}
.bp6-section-card.bp6-padded {
  padding: 20px;
}
.bp6-section-card:not(:last-child) {
  border-bottom: 1px solid rgba(17, 20, 24, 0.15);
}
.bp6-section-card:not(:last-child).bp6-dark,
.bp6-dark .bp6-section-card:not(:last-child) {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-section.bp6-section-collapsed .bp6-section-header {
  border: none;
}
.bp6-section.bp6-compact .bp6-section-header {
  min-height: 40px;
  padding: 0 16px;
}
.bp6-section.bp6-compact .bp6-section-header-left {
  padding: 8px 0;
}
.bp6-section.bp6-compact .bp6-section-card.bp6-padded {
  padding: 16px;
}
.bp6-segmented-control {
  background-color: #f6f7f9;
  border-radius: 2px;
  display: flex;
  gap: 2px;
  padding: 2px;
}
.bp6-segmented-control.bp6-inline {
  display: inline-flex;
}
.bp6-segmented-control.bp6-fill {
  width: 100%;
}
.bp6-segmented-control.bp6-fill > .bp6-button {
  flex-grow: 1;
}
.bp6-segmented-control > .bp6-button:not(.bp6-minimal):not(.bp6-intent-primary) {
  background-color: #ffffff;
}
.bp6-dark .bp6-segmented-control > .bp6-button:not(.bp6-minimal):not(.bp6-intent-primary) {
  background-color: #404854;
}
.bp6-segmented-control > .bp6-button.bp6-minimal {
  color: #5f6b7c;
}
.bp6-dark .bp6-segmented-control > .bp6-button.bp6-minimal {
  color: #abb3bf;
}
.bp6-segmented-control > .bp6-button.bp6-minimal:disabled {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-dark .bp6-segmented-control > .bp6-button.bp6-minimal:disabled {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-segmented-control {
  background-color: #252a31;
}
@keyframes skeleton-glow {
  from {
    background: rgba(211, 216, 222, 0.2);
    border-color: rgba(211, 216, 222, 0.2);
  }
  to {
    background: rgba(95, 107, 124, 0.2);
    border-color: rgba(95, 107, 124, 0.2);
  }
}
.bp6-skeleton {
  animation: 1000ms linear infinite alternate skeleton-glow;
  background: rgba(211, 216, 222, 0.2);
  background-clip: padding-box !important;
  border-color: rgba(211, 216, 222, 0.2) !important;
  border-radius: 2px;
  box-shadow: none !important;
  color: transparent !important;
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bp6-skeleton::before,
.bp6-skeleton::after,
.bp6-skeleton * {
  visibility: hidden !important;
}
.bp6-tooltip .bp6-popover-arrow {
  height: 22px;
  position: absolute;
  width: 22px;
}
.bp6-tooltip .bp6-popover-arrow::before {
  height: 14px;
  margin: 4px;
  width: 14px;
}
.bp6-tooltip {
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
}
.bp6-tooltip .bp6-popover-content {
  background: #404854;
}
.bp6-tooltip .bp6-popover-content,
.bp6-tooltip .bp6-heading {
  color: #f6f7f9;
}
.bp6-tooltip .bp6-popover-arrow::before {
  box-shadow: 1px 1px 6px rgba(17, 20, 24, 0.2);
}
.bp6-tooltip .bp6-popover-arrow-border {
  fill: #111418;
  fill-opacity: 0.1;
}
.bp6-tooltip .bp6-popover-arrow-fill {
  fill: #404854;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip {
    border: 1px solid buttonborder;
  }
}
.bp6-tooltip {
  transform: scale(1);
}
.bp6-popover-enter > .bp6-tooltip,
.bp6-popover-appear > .bp6-tooltip {
  transform: scale(0.8);
}
.bp6-popover-enter-active > .bp6-tooltip,
.bp6-popover-appear-active > .bp6-tooltip {
  transform: scale(1);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-popover-exit > .bp6-tooltip {
  transform: scale(1);
}
.bp6-popover-exit-active > .bp6-tooltip {
  transform: scale(0.8);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-tooltip {
  color: #f6f7f9;
}
.bp6-tooltip .bp6-text-muted {
  color: #abb3bf;
}
.bp6-tooltip .bp6-text-disabled {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-tooltip .bp6-running-text hr {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-tooltip a {
  color: #8abbff;
}
.bp6-tooltip a:hover {
  color: #8abbff;
}
.bp6-tooltip a .bp6-icon,
.bp6-tooltip a .bp6-icon-standard,
.bp6-tooltip a .bp6-icon-large {
  color: inherit;
}
.bp6-tooltip a code {
  color: inherit;
}
.bp6-tooltip .bp6-code,
.bp6-tooltip .bp6-running-text code {
  background: rgba(17, 20, 24, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #abb3bf;
}
a > .bp6-tooltip .bp6-code,
a > .bp6-tooltip .bp6-running-text code {
  color: inherit;
}
.bp6-tooltip .bp6-code-block,
.bp6-tooltip .bp6-running-text pre {
  background: rgba(17, 20, 24, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #f6f7f9;
}
.bp6-tooltip .bp6-code-block > code,
.bp6-tooltip .bp6-running-text pre > code {
  background: none;
  box-shadow: none;
  color: inherit;
}
.bp6-tooltip .bp6-key,
.bp6-tooltip .bp6-running-text kbd {
  background: #2f343c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px 0 rgba(17, 20, 24, 0.4);
  color: #abb3bf;
}
.bp6-tooltip .bp6-icon.bp6-intent-primary,
.bp6-tooltip .bp6-icon-standard.bp6-intent-primary,
.bp6-tooltip .bp6-icon-large.bp6-intent-primary {
  color: #8abbff;
}
.bp6-tooltip .bp6-icon.bp6-intent-success,
.bp6-tooltip .bp6-icon-standard.bp6-intent-success,
.bp6-tooltip .bp6-icon-large.bp6-intent-success {
  color: #72ca9b;
}
.bp6-tooltip .bp6-icon.bp6-intent-warning,
.bp6-tooltip .bp6-icon-standard.bp6-intent-warning,
.bp6-tooltip .bp6-icon-large.bp6-intent-warning {
  color: #fbb360;
}
.bp6-tooltip .bp6-icon.bp6-intent-danger,
.bp6-tooltip .bp6-icon-standard.bp6-intent-danger,
.bp6-tooltip .bp6-icon-large.bp6-intent-danger {
  color: #fa999c;
}
.bp6-tooltip .bp6-popover-content {
  padding: 8px 12px;
}
.bp6-tooltip.bp6-compact .bp6-popover-content {
  line-height: 1rem;
  padding: 4px 8px;
}
.bp6-tooltip.bp6-compact .bp6-code {
  vertical-align: text-bottom;
}
.bp6-tooltip.bp6-popover-placement-top .bp6-popover-arrow {
  transform: translateY(-3px);
}
.bp6-tooltip.bp6-popover-placement-left .bp6-popover-arrow {
  transform: translateX(-3px);
}
.bp6-tooltip.bp6-popover-placement-bottom .bp6-popover-arrow {
  transform: translateY(3px);
}
.bp6-tooltip.bp6-popover-placement-right .bp6-popover-arrow {
  transform: translateX(3px);
}
.bp6-tooltip.bp6-dark,
.bp6-dark .bp6-tooltip {
  box-shadow: 0 2px 4px rgba(17, 20, 24, 0.4), 0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp6-tooltip.bp6-dark .bp6-popover-content,
.bp6-dark .bp6-tooltip .bp6-popover-content {
  background: #e5e8eb;
}
.bp6-tooltip.bp6-dark .bp6-popover-content,
.bp6-tooltip.bp6-dark .bp6-heading,
.bp6-dark .bp6-tooltip .bp6-popover-content,
.bp6-dark .bp6-tooltip .bp6-heading {
  color: #404854;
}
.bp6-tooltip.bp6-dark .bp6-popover-arrow::before,
.bp6-dark .bp6-tooltip .bp6-popover-arrow::before {
  box-shadow: 1px 1px 6px rgba(17, 20, 24, 0.4);
}
.bp6-tooltip.bp6-dark .bp6-popover-arrow-border,
.bp6-dark .bp6-tooltip .bp6-popover-arrow-border {
  fill: #111418;
  fill-opacity: 0.2;
}
.bp6-tooltip.bp6-dark .bp6-popover-arrow-fill,
.bp6-dark .bp6-tooltip .bp6-popover-arrow-fill {
  fill: #e5e8eb;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-dark .bp6-popover-arrow-fill,
  .bp6-dark .bp6-tooltip .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-dark,
  .bp6-dark .bp6-tooltip {
    border: 1px solid buttonborder;
  }
}
.bp6-tooltip.bp6-dark .bp6-text-muted,
.bp6-dark .bp6-tooltip .bp6-text-muted {
  color: #5f6b7c;
}
.bp6-tooltip.bp6-dark .bp6-text-disabled,
.bp6-dark .bp6-tooltip .bp6-text-disabled {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-tooltip.bp6-dark .bp6-running-text hr,
.bp6-dark .bp6-tooltip .bp6-running-text hr {
  border-color: rgba(17, 20, 24, 0.15);
}
.bp6-tooltip.bp6-dark a,
.bp6-dark .bp6-tooltip a {
  color: #215db0;
}
.bp6-tooltip.bp6-dark a:hover,
.bp6-dark .bp6-tooltip a:hover {
  color: #215db0;
}
.bp6-tooltip.bp6-dark a .bp6-icon,
.bp6-tooltip.bp6-dark a .bp6-icon-standard,
.bp6-tooltip.bp6-dark a .bp6-icon-large,
.bp6-dark .bp6-tooltip a .bp6-icon,
.bp6-dark .bp6-tooltip a .bp6-icon-standard,
.bp6-dark .bp6-tooltip a .bp6-icon-large {
  color: inherit;
}
.bp6-tooltip.bp6-dark a code,
.bp6-dark .bp6-tooltip a code {
  color: inherit;
}
.bp6-tooltip.bp6-dark .bp6-code,
.bp6-tooltip.bp6-dark .bp6-running-text code,
.bp6-dark .bp6-tooltip .bp6-code,
.bp6-dark .bp6-tooltip .bp6-running-text code {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2);
  color: #5f6b7c;
}
a > .bp6-tooltip.bp6-dark .bp6-code,
a > .bp6-tooltip.bp6-dark .bp6-running-text code,
a > .bp6-dark .bp6-tooltip .bp6-code,
a > .bp6-dark .bp6-tooltip .bp6-running-text code {
  color: #2d72d2;
}
.bp6-tooltip.bp6-dark .bp6-code-block,
.bp6-tooltip.bp6-dark .bp6-running-text pre,
.bp6-dark .bp6-tooltip .bp6-code-block,
.bp6-dark .bp6-tooltip .bp6-running-text pre {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.15);
  color: #1c2127;
}
.bp6-tooltip.bp6-dark .bp6-code-block > code,
.bp6-tooltip.bp6-dark .bp6-running-text pre > code,
.bp6-dark .bp6-tooltip .bp6-code-block > code,
.bp6-dark .bp6-tooltip .bp6-running-text pre > code {
  background: none;
  box-shadow: none;
  color: inherit;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-dark .bp6-code-block,
  .bp6-tooltip.bp6-dark .bp6-running-text pre,
  .bp6-dark .bp6-tooltip .bp6-code-block,
  .bp6-dark .bp6-tooltip .bp6-running-text pre {
    border: 1px solid buttonborder;
    box-shadow: none;
  }
}
.bp6-tooltip.bp6-dark .bp6-key,
.bp6-tooltip.bp6-dark .bp6-running-text kbd,
.bp6-dark .bp6-tooltip .bp6-key,
.bp6-dark .bp6-tooltip .bp6-running-text kbd {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.1), 0 1px 1px rgba(17, 20, 24, 0.2);
  color: #5f6b7c;
}
.bp6-tooltip.bp6-dark .bp6-icon.bp6-intent-primary,
.bp6-tooltip.bp6-dark .bp6-icon-standard.bp6-intent-primary,
.bp6-tooltip.bp6-dark .bp6-icon-large.bp6-intent-primary,
.bp6-dark .bp6-tooltip .bp6-icon.bp6-intent-primary,
.bp6-dark .bp6-tooltip .bp6-icon-standard.bp6-intent-primary,
.bp6-dark .bp6-tooltip .bp6-icon-large.bp6-intent-primary {
  color: #215db0;
}
.bp6-tooltip.bp6-dark .bp6-icon.bp6-intent-success,
.bp6-tooltip.bp6-dark .bp6-icon-standard.bp6-intent-success,
.bp6-tooltip.bp6-dark .bp6-icon-large.bp6-intent-success,
.bp6-dark .bp6-tooltip .bp6-icon.bp6-intent-success,
.bp6-dark .bp6-tooltip .bp6-icon-standard.bp6-intent-success,
.bp6-dark .bp6-tooltip .bp6-icon-large.bp6-intent-success {
  color: #1c6e42;
}
.bp6-tooltip.bp6-dark .bp6-icon.bp6-intent-warning,
.bp6-tooltip.bp6-dark .bp6-icon-standard.bp6-intent-warning,
.bp6-tooltip.bp6-dark .bp6-icon-large.bp6-intent-warning,
.bp6-dark .bp6-tooltip .bp6-icon.bp6-intent-warning,
.bp6-dark .bp6-tooltip .bp6-icon-standard.bp6-intent-warning,
.bp6-dark .bp6-tooltip .bp6-icon-large.bp6-intent-warning {
  color: #935610;
}
.bp6-tooltip.bp6-dark .bp6-icon.bp6-intent-danger,
.bp6-tooltip.bp6-dark .bp6-icon-standard.bp6-intent-danger,
.bp6-tooltip.bp6-dark .bp6-icon-large.bp6-intent-danger,
.bp6-dark .bp6-tooltip .bp6-icon.bp6-intent-danger,
.bp6-dark .bp6-tooltip .bp6-icon-standard.bp6-intent-danger,
.bp6-dark .bp6-tooltip .bp6-icon-large.bp6-intent-danger {
  color: #ac2f33;
}
.bp6-tooltip.bp6-intent-primary .bp6-popover-content {
  background: #2d72d2;
  color: #ffffff;
}
.bp6-tooltip.bp6-intent-primary .bp6-popover-arrow-fill {
  fill: #2d72d2;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-intent-primary .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
.bp6-tooltip.bp6-intent-success .bp6-popover-content {
  background: #238551;
  color: #ffffff;
}
.bp6-tooltip.bp6-intent-success .bp6-popover-arrow-fill {
  fill: #238551;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-intent-success .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
.bp6-tooltip.bp6-intent-warning .bp6-popover-content {
  background: #c87619;
  color: #ffffff;
}
.bp6-tooltip.bp6-intent-warning .bp6-popover-arrow-fill {
  fill: #c87619;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-intent-warning .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
.bp6-tooltip.bp6-intent-danger .bp6-popover-content {
  background: #cd4246;
  color: #ffffff;
}
.bp6-tooltip.bp6-intent-danger .bp6-popover-arrow-fill {
  fill: #cd4246;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-intent-danger .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
.bp6-tooltip-indicator {
  border-bottom: dotted 1px;
  cursor: help;
}
.bp6-slider {
  height: 40px;
  min-width: 150px;
  width: 100%;
  cursor: default;
  outline: none;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bp6-slider:hover {
  cursor: pointer;
}
.bp6-slider:active {
  cursor: grabbing;
}
.bp6-slider.bp6-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.bp6-slider.bp6-slider-unlabeled {
  height: 16px;
}
.bp6-slider-track,
.bp6-slider-progress {
  height: 6px;
  left: 0;
  right: 0;
  top: 5px;
  position: absolute;
}
.bp6-slider-track {
  border-radius: 2px;
  overflow: hidden;
}
.bp6-slider-progress {
  background: rgba(95, 107, 124, 0.2);
}
.bp6-dark .bp6-slider-progress {
  background: rgba(17, 20, 24, 0.5);
}
.bp6-slider-progress.bp6-intent-primary {
  background-color: #2d72d2;
}
.bp6-slider-progress.bp6-intent-success {
  background-color: #238551;
}
.bp6-slider-progress.bp6-intent-warning {
  background-color: #c87619;
}
.bp6-slider-progress.bp6-intent-danger {
  background-color: #cd4246;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-slider-progress {
    background: ButtonText;
  }
}
.bp6-slider-handle {
  background-color: #f6f7f9;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.1);
  color: #1c2127;
}
.bp6-slider-handle:hover {
  background-clip: padding-box;
  background-color: #edeff2;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-slider-handle:active,
.bp6-slider-handle.bp6-active {
  background-color: #dce0e5;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-slider-handle:active,
  .bp6-slider-handle.bp6-active {
    background: highlight;
  }
}
.bp6-slider-handle:disabled,
.bp6-slider-handle.bp6-disabled {
  background-color: rgba(211, 216, 222, 0.5);
  box-shadow: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
  outline: none;
}
.bp6-slider-handle:disabled.bp6-active,
.bp6-slider-handle:disabled.bp6-active:hover,
.bp6-slider-handle.bp6-disabled.bp6-active,
.bp6-slider-handle.bp6-disabled.bp6-active:hover {
  background: rgba(211, 216, 222, 0.7);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-slider-handle {
    border: 1px solid buttonborder;
  }
}
.bp6-slider-handle {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.5), 0 1px 1px rgba(17, 20, 24, 0.5);
  cursor: pointer;
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  width: 16px;
}
.bp6-slider-handle:focus {
  z-index: 1;
}
.bp6-slider-handle:hover {
  background-clip: padding-box;
  background-color: #edeff2;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.5), 0 1px 2px rgba(17, 20, 24, 0.6);
  cursor: grab;
  z-index: 2;
}
.bp6-slider-handle.bp6-active {
  background-color: #dce0e5;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), 0 1px 2px rgba(17, 20, 24, 0.2);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-slider-handle.bp6-active {
    background: highlight;
  }
}
.bp6-slider-handle.bp6-active {
  box-shadow:
    inset 0 1px 1px rgba(17, 20, 24, 0.1),
    0 0 0 1px rgba(17, 20, 24, 0.5),
    0 1px 2px rgba(17, 20, 24, 0.2);
  cursor: grabbing;
}
.bp6-disabled .bp6-slider-handle {
  background: #c5cbd3;
  box-shadow: none;
  pointer-events: none;
}
.bp6-dark .bp6-slider-handle {
  background-color: #abb3bf;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.2);
}
.bp6-dark .bp6-slider-handle:hover {
  background-color: #8f99a8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-slider-handle.bp6-active {
  background-color: #738091;
  box-shadow:
    inset 0 1px 1px rgba(17, 20, 24, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 1px 2px rgba(17, 20, 24, 0.4);
}
.bp6-dark .bp6-disabled .bp6-slider-handle {
  background: #5f6b7c;
  border-color: #5f6b7c;
  box-shadow: none;
}
.bp6-slider-handle .bp6-slider-label {
  background: #404854;
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
  color: #f6f7f9;
  margin-left: 8px;
}
.bp6-dark .bp6-slider-handle .bp6-slider-label {
  background: #e5e8eb;
  box-shadow: 0 2px 4px rgba(17, 20, 24, 0.4), 0 8px 24px rgba(17, 20, 24, 0.4);
  color: #404854;
}
.bp6-disabled .bp6-slider-handle .bp6-slider-label {
  box-shadow: none;
}
.bp6-slider-handle.bp6-start,
.bp6-slider-handle.bp6-end {
  width: 8px;
}
.bp6-slider-handle.bp6-start {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.bp6-slider-handle.bp6-end {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 8px;
}
.bp6-slider-handle.bp6-end .bp6-slider-label {
  margin-left: 0;
}
.bp6-slider-label {
  transform: translate(-50%, 20px);
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 2px 4px;
  position: absolute;
  vertical-align: top;
}
.bp6-slider.bp6-vertical {
  height: 150px;
  min-width: 40px;
  width: 40px;
}
.bp6-slider.bp6-vertical .bp6-slider-track,
.bp6-slider.bp6-vertical .bp6-slider-progress {
  bottom: 0;
  height: auto;
  left: 5px;
  top: 0;
  width: 6px;
}
.bp6-slider.bp6-vertical .bp6-slider-progress {
  top: auto;
}
.bp6-slider.bp6-vertical .bp6-slider-label {
  transform: translate(20px, 50%);
}
.bp6-slider.bp6-vertical .bp6-slider-handle {
  top: auto;
}
.bp6-slider.bp6-vertical .bp6-slider-handle .bp6-slider-label {
  margin-left: 0;
  margin-top: -8px;
}
.bp6-slider.bp6-vertical .bp6-slider-handle.bp6-end,
.bp6-slider.bp6-vertical .bp6-slider-handle.bp6-start {
  height: 8px;
  margin-left: 0;
  width: 16px;
}
.bp6-slider.bp6-vertical .bp6-slider-handle.bp6-start {
  border-bottom-right-radius: 2px;
  border-top-left-radius: 0;
}
.bp6-slider.bp6-vertical .bp6-slider-handle.bp6-start .bp6-slider-label {
  transform: translate(20px);
}
.bp6-slider.bp6-vertical .bp6-slider-handle.bp6-end {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 2px;
  margin-bottom: 8px;
}
@keyframes pt-spinner-animation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bp6-spinner {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: visible;
  vertical-align: middle;
}
.bp6-spinner svg {
  display: block;
}
.bp6-spinner path {
  fill-opacity: 0;
}
.bp6-spinner .bp6-spinner-head {
  stroke: rgba(95, 107, 124, 0.8);
  stroke-linecap: round;
  transform-origin: center;
  transition: stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-spinner .bp6-spinner-track {
  stroke: rgba(95, 107, 124, 0.2);
}
.bp6-spinner-animation {
  animation: pt-spinner-animation 500ms linear infinite;
}
.bp6-no-spin > .bp6-spinner-animation {
  animation: none;
}
.bp6-dark .bp6-spinner .bp6-spinner-head {
  stroke: #8f99a8;
}
.bp6-dark .bp6-spinner .bp6-spinner-track {
  stroke: rgba(17, 20, 24, 0.5);
}
.bp6-spinner.bp6-intent-primary .bp6-spinner-head {
  stroke: #2d72d2;
}
.bp6-spinner.bp6-intent-success .bp6-spinner-head {
  stroke: #238551;
}
.bp6-spinner.bp6-intent-warning .bp6-spinner-head {
  stroke: #c87619;
}
.bp6-spinner.bp6-intent-danger .bp6-spinner-head {
  stroke: #cd4246;
}
.bp6-tabs:not(.bp6-vertical).bp6-fill {
  height: 100%;
}
.bp6-tabs:not(.bp6-vertical).bp6-fill .bp6-tab-list {
  height: 100%;
}
.bp6-tabs.bp6-vertical {
  display: flex;
}
.bp6-tabs.bp6-vertical > .bp6-tab-list {
  align-items: flex-start;
  flex-direction: column;
}
.bp6-tabs.bp6-vertical > .bp6-tab-list .bp6-tab {
  align-items: center;
  border-radius: 2px;
  display: flex;
  padding: 0 8px;
  width: 100%;
}
.bp6-tabs.bp6-vertical > .bp6-tab-list .bp6-tab[aria-selected=true] {
  background-color: rgba(45, 114, 210, 0.2);
  box-shadow: none;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tabs.bp6-vertical > .bp6-tab-list .bp6-tab[aria-selected=true] {
    background-color: highlight;
    color: #111418;
  }
}
.bp6-tabs.bp6-vertical > .bp6-tab-list .bp6-tab-indicator-wrapper .bp6-tab-indicator {
  background-color: rgba(45, 114, 210, 0.2);
  border-radius: 2px;
  height: auto;
  inset: 0;
}
.bp6-tabs.bp6-vertical > .bp6-tab-panel {
  margin-top: 0;
  padding-left: 20px;
}
.bp6-tab-list {
  align-items: flex-end;
  border: none;
  -moz-column-gap: 20px;
  column-gap: 20px;
  display: flex;
  flex: 0 0 auto;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.bp6-tab-list .bp6-tabs:not(.bp6-vertical) > .bp6-flex-expander {
  margin-right: -20px;
}
.bp6-tab {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  align-items: center;
  align-self: stretch;
  color: #1c2127;
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 30px;
  max-width: 100%;
  position: relative;
  vertical-align: top;
}
.bp6-tab a {
  color: inherit;
  display: block;
  text-decoration: none;
}
.bp6-tab-indicator-wrapper ~ .bp6-tab {
  background-color: transparent !important;
  box-shadow: none !important;
}
.bp6-tab[aria-disabled=true] {
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tab[aria-disabled=true] {
    color: graytext;
  }
}
.bp6-tab[aria-selected=true] {
  border-radius: 0;
  box-shadow: inset 0 -3px 0 #215db0;
}
.bp6-tab[aria-selected=true],
.bp6-tab:not([aria-disabled=true]):hover {
  color: #215db0;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tab[aria-selected=true],
  .bp6-tab:not([aria-disabled=true]):hover {
    color: highlight;
  }
}
.bp6-tab:focus {
  -moz-outline-radius: 0;
}
.bp6-large > .bp6-tab {
  font-size: 16px;
  line-height: 40px;
}
.bp6-tab-panel {
  margin-top: 20px;
}
.bp6-tab-panel[aria-hidden=true] {
  display: none;
}
.bp6-tab-icon {
  margin-right: 8px;
}
.bp6-tab-tag {
  margin-left: 8px;
}
.bp6-tab-indicator-wrapper {
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(0), translateY(0);
  transition:
    height,
    transform,
    width;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-tab-indicator-wrapper .bp6-tab-indicator {
  background-color: #215db0;
  bottom: 0;
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tab-indicator-wrapper .bp6-tab-indicator {
    background-color: highlight;
  }
}
.bp6-tab-indicator-wrapper.bp6-no-animation {
  transition: none;
}
.bp6-tabs:not(.bp6-vertical) .bp6-tab-indicator-wrapper {
  height: 100%;
}
.bp6-dark .bp6-tab {
  color: #f6f7f9;
}
.bp6-dark .bp6-tab[aria-disabled=true] {
  color: rgba(171, 179, 191, 0.6);
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dark .bp6-tab[aria-disabled=true] {
    color: graytext;
  }
}
.bp6-dark .bp6-tab[aria-selected=true] {
  box-shadow: inset 0 -3px 0 #8abbff;
}
.bp6-dark .bp6-tab[aria-selected=true],
.bp6-dark .bp6-tab:not([aria-disabled=true]):hover {
  color: #8abbff;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dark .bp6-tab[aria-selected=true],
  .bp6-dark .bp6-tab:not([aria-disabled=true]):hover {
    color: highlight;
  }
}
.bp6-dark .bp6-tab-indicator {
  background-color: #8abbff;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-dark .bp6-tab-indicator {
    background-color: highlight;
  }
}
.bp6-flex-expander {
  flex: 1 1;
}
.bp6-tag {
  display: inline-flex;
  flex-direction: row;
}
.bp6-tag > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-tag > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-tag::before,
.bp6-tag > * {
  margin-right: 4px;
}
.bp6-tag:empty::before,
.bp6-tag > :last-child {
  margin-right: 0;
}
.bp6-tag {
  align-items: center;
  background-color: #5f6b7c;
  border: none;
  border-radius: 2px;
  box-shadow: none;
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
  max-width: 100%;
  min-height: 20px;
  min-width: 20px;
  padding: 2px 6px;
  position: relative;
}
.bp6-tag:focus {
  outline: rgba(33, 93, 176, 0.752) solid 2px;
  outline-offset: 0;
  -moz-outline-radius: 6px;
}
.bp6-dark .bp6-tag:focus {
  outline-color: rgba(138, 187, 255, 0.752);
}
.bp6-tag.bp6-interactive {
  cursor: pointer;
}
.bp6-tag.bp6-interactive:hover {
  background: #404854;
}
.bp6-tag.bp6-interactive:active,
.bp6-tag.bp6-interactive.bp6-active {
  background: #383e47;
}
.bp6-tag.bp6-round {
  border-radius: 30px;
  padding-left: 8px;
  padding-right: 8px;
}
.bp6-tag > .bp6-icon,
.bp6-tag .bp6-icon-standard,
.bp6-tag .bp6-icon-large {
  fill: #ffffff;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tag {
    border: 1px solid buttonborder;
  }
}
.bp6-tag.bp6-large::before,
.bp6-tag.bp6-large > *,
.bp6-large .bp6-tag::before,
.bp6-large .bp6-tag > * {
  margin-right: 8px;
}
.bp6-tag.bp6-large:empty::before,
.bp6-tag.bp6-large > :last-child,
.bp6-large .bp6-tag:empty::before,
.bp6-large .bp6-tag > :last-child {
  margin-right: 0;
}
.bp6-tag.bp6-large,
.bp6-large .bp6-tag {
  font-size: 14px;
  line-height: 18px;
  min-height: 30px;
  min-width: 30px;
  padding: 6px 8px;
}
.bp6-tag.bp6-large.bp6-round,
.bp6-large .bp6-tag.bp6-round {
  padding-left: 10px;
  padding-right: 10px;
}
.bp6-tag.bp6-intent-primary {
  background: #2d72d2;
  color: #ffffff;
}
.bp6-tag.bp6-intent-primary.bp6-interactive:hover {
  background-color: #215db0;
}
.bp6-tag.bp6-intent-primary.bp6-interactive:active,
.bp6-tag.bp6-intent-primary.bp6-interactive.bp6-active {
  background-color: #184a90;
}
.bp6-tag.bp6-intent-primary .bp6-tag-remove {
  color: rgba(255, 255, 255, 0.7);
}
.bp6-tag.bp6-intent-primary .bp6-tag-remove:hover,
.bp6-tag.bp6-intent-primary .bp6-tag-remove:active {
  color: #ffffff;
}
.bp6-tag.bp6-intent-success {
  background: #238551;
  color: #ffffff;
}
.bp6-tag.bp6-intent-success.bp6-interactive:hover {
  background-color: #1c6e42;
}
.bp6-tag.bp6-intent-success.bp6-interactive:active,
.bp6-tag.bp6-intent-success.bp6-interactive.bp6-active {
  background-color: #165a36;
}
.bp6-tag.bp6-intent-success .bp6-tag-remove {
  color: rgba(255, 255, 255, 0.7);
}
.bp6-tag.bp6-intent-success .bp6-tag-remove:hover,
.bp6-tag.bp6-intent-success .bp6-tag-remove:active {
  color: #ffffff;
}
.bp6-tag.bp6-intent-warning {
  background: #fbb360;
  color: #1c2127;
}
.bp6-tag.bp6-intent-warning.bp6-interactive:hover {
  background-color: #ec9a3c;
}
.bp6-tag.bp6-intent-warning.bp6-interactive:active,
.bp6-tag.bp6-intent-warning.bp6-interactive.bp6-active {
  background-color: #c87619;
}
.bp6-tag.bp6-intent-warning .bp6-tag-remove {
  color: rgba(28, 33, 39, 0.7);
}
.bp6-tag.bp6-intent-warning .bp6-tag-remove:hover,
.bp6-tag.bp6-intent-warning .bp6-tag-remove:active {
  color: #1c2127;
}
.bp6-tag.bp6-intent-danger {
  background: #cd4246;
  color: #ffffff;
}
.bp6-tag.bp6-intent-danger.bp6-interactive:hover {
  background-color: #ac2f33;
}
.bp6-tag.bp6-intent-danger.bp6-interactive:active,
.bp6-tag.bp6-intent-danger.bp6-interactive.bp6-active {
  background-color: #8e292c;
}
.bp6-tag.bp6-intent-danger .bp6-tag-remove {
  color: rgba(255, 255, 255, 0.7);
}
.bp6-tag.bp6-intent-danger .bp6-tag-remove:hover,
.bp6-tag.bp6-intent-danger .bp6-tag-remove:active {
  color: #ffffff;
}
.bp6-tag.bp6-fill {
  display: flex;
  width: 100%;
}
.bp6-tag.bp6-minimal > .bp6-icon,
.bp6-tag.bp6-minimal .bp6-icon-standard,
.bp6-tag.bp6-minimal .bp6-icon-large {
  fill: #5f6b7c;
}
.bp6-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive {
  cursor: pointer;
}
.bp6-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:hover {
  background-color: rgba(143, 153, 168, 0.3);
  color: #111418;
}
.bp6-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive.bp6-active,
.bp6-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:active {
  background-color: rgba(143, 153, 168, 0.35);
  color: #111418;
}
.bp6-tag.bp6-minimal:not([class*=bp6-intent-]) {
  background-color: rgba(143, 153, 168, 0.15);
  color: #1c2127;
}
.bp6-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-tag-remove {
  color: #5f6b7c;
}
.bp6-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-tag-remove:hover,
.bp6-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-tag-remove:active {
  color: #404854;
}
.bp6-dark .bp6-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive {
  cursor: pointer;
}
.bp6-dark .bp6-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:hover {
  background-color: rgba(143, 153, 168, 0.3);
  color: #ffffff;
}
.bp6-dark .bp6-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive.bp6-active,
.bp6-dark .bp6-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:active {
  background-color: rgba(143, 153, 168, 0.35);
  color: #ffffff;
}
.bp6-dark .bp6-tag.bp6-minimal:not([class*=bp6-intent-]) {
  background-color: rgba(143, 153, 168, 0.15);
  color: #f6f7f9;
}
.bp6-dark .bp6-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-tag-remove {
  color: #abb3bf;
}
.bp6-dark .bp6-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-tag-remove:hover,
.bp6-dark .bp6-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-tag-remove:active {
  color: #d3d8de;
}
.bp6-tag.bp6-minimal.bp6-intent-primary {
  background-color: rgba(45, 114, 210, 0.1);
  color: #215db0;
}
.bp6-tag.bp6-minimal.bp6-intent-primary > .bp6-icon,
.bp6-tag.bp6-minimal.bp6-intent-primary .bp6-icon-standard,
.bp6-tag.bp6-minimal.bp6-intent-primary .bp6-icon-large {
  fill: #215db0;
}
.bp6-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:hover {
  background-color: rgba(45, 114, 210, 0.2);
  color: #184a90;
}
.bp6-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:active,
.bp6-tag.bp6-minimal.bp6-intent-primary.bp6-interactive.bp6-active {
  background-color: rgba(45, 114, 210, 0.3);
  color: #184a90;
}
.bp6-tag.bp6-minimal.bp6-intent-primary .bp6-tag-remove {
  color: #215db0;
}
.bp6-tag.bp6-minimal.bp6-intent-primary .bp6-tag-remove:hover,
.bp6-tag.bp6-minimal.bp6-intent-primary .bp6-tag-remove:active {
  color: #184a90;
}
.bp6-tag.bp6-minimal.bp6-intent-success {
  background-color: rgba(35, 133, 81, 0.1);
  color: #1c6e42;
}
.bp6-tag.bp6-minimal.bp6-intent-success > .bp6-icon,
.bp6-tag.bp6-minimal.bp6-intent-success .bp6-icon-standard,
.bp6-tag.bp6-minimal.bp6-intent-success .bp6-icon-large {
  fill: #1c6e42;
}
.bp6-tag.bp6-minimal.bp6-intent-success.bp6-interactive:hover {
  background-color: rgba(35, 133, 81, 0.2);
  color: #165a36;
}
.bp6-tag.bp6-minimal.bp6-intent-success.bp6-interactive:active,
.bp6-tag.bp6-minimal.bp6-intent-success.bp6-interactive.bp6-active {
  background-color: rgba(35, 133, 81, 0.3);
  color: #165a36;
}
.bp6-tag.bp6-minimal.bp6-intent-success .bp6-tag-remove {
  color: #1c6e42;
}
.bp6-tag.bp6-minimal.bp6-intent-success .bp6-tag-remove:hover,
.bp6-tag.bp6-minimal.bp6-intent-success .bp6-tag-remove:active {
  color: #165a36;
}
.bp6-tag.bp6-minimal.bp6-intent-warning {
  background-color: rgba(200, 118, 25, 0.1);
  color: #935610;
}
.bp6-tag.bp6-minimal.bp6-intent-warning > .bp6-icon,
.bp6-tag.bp6-minimal.bp6-intent-warning .bp6-icon-standard,
.bp6-tag.bp6-minimal.bp6-intent-warning .bp6-icon-large {
  fill: #935610;
}
.bp6-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:hover {
  background-color: rgba(200, 118, 25, 0.2);
  color: #77450d;
}
.bp6-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:active,
.bp6-tag.bp6-minimal.bp6-intent-warning.bp6-interactive.bp6-active {
  background-color: rgba(200, 118, 25, 0.3);
  color: #77450d;
}
.bp6-tag.bp6-minimal.bp6-intent-warning .bp6-tag-remove {
  color: #935610;
}
.bp6-tag.bp6-minimal.bp6-intent-warning .bp6-tag-remove:hover,
.bp6-tag.bp6-minimal.bp6-intent-warning .bp6-tag-remove:active {
  color: #77450d;
}
.bp6-tag.bp6-minimal.bp6-intent-danger {
  background-color: rgba(205, 66, 70, 0.1);
  color: #ac2f33;
}
.bp6-tag.bp6-minimal.bp6-intent-danger > .bp6-icon,
.bp6-tag.bp6-minimal.bp6-intent-danger .bp6-icon-standard,
.bp6-tag.bp6-minimal.bp6-intent-danger .bp6-icon-large {
  fill: #ac2f33;
}
.bp6-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:hover {
  background-color: rgba(205, 66, 70, 0.2);
  color: #8e292c;
}
.bp6-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:active,
.bp6-tag.bp6-minimal.bp6-intent-danger.bp6-interactive.bp6-active {
  background-color: rgba(205, 66, 70, 0.3);
  color: #8e292c;
}
.bp6-tag.bp6-minimal.bp6-intent-danger .bp6-tag-remove {
  color: #ac2f33;
}
.bp6-tag.bp6-minimal.bp6-intent-danger .bp6-tag-remove:hover,
.bp6-tag.bp6-minimal.bp6-intent-danger .bp6-tag-remove:active {
  color: #8e292c;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-primary {
  background-color: rgba(45, 114, 210, 0.2);
  color: #8abbff;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:hover {
  background-color: rgba(45, 114, 210, 0.3);
  color: #99c4ff;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:active,
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-primary.bp6-interactive.bp6-active {
  background-color: rgba(45, 114, 210, 0.35);
  color: #99c4ff;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-primary .bp6-tag-remove {
  color: #8abbff;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-primary .bp6-tag-remove:hover,
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-primary .bp6-tag-remove:active {
  color: #99c4ff;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-success {
  background-color: rgba(35, 133, 81, 0.2);
  color: #72ca9b;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-success.bp6-interactive:hover {
  background-color: rgba(35, 133, 81, 0.3);
  color: #7cd7a2;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-success.bp6-interactive:active,
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-success.bp6-interactive.bp6-active {
  background-color: rgba(35, 133, 81, 0.35);
  color: #7cd7a2;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-success .bp6-tag-remove {
  color: #72ca9b;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-success .bp6-tag-remove:hover,
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-success .bp6-tag-remove:active {
  color: #7cd7a2;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-warning {
  background-color: rgba(200, 118, 25, 0.2);
  color: #fbb360;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:hover {
  background-color: rgba(200, 118, 25, 0.3);
  color: #f5c186;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:active,
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-warning.bp6-interactive.bp6-active {
  background-color: rgba(200, 118, 25, 0.35);
  color: #f5c186;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-warning .bp6-tag-remove {
  color: #fbb360;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-warning .bp6-tag-remove:hover,
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-warning .bp6-tag-remove:active {
  color: #f5c186;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-danger {
  background-color: rgba(205, 66, 70, 0.2);
  color: #fa999c;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:hover {
  background-color: rgba(205, 66, 70, 0.3);
  color: #ffa1a4;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:active,
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-danger.bp6-interactive.bp6-active {
  background-color: rgba(205, 66, 70, 0.35);
  color: #ffa1a4;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-danger .bp6-tag-remove {
  color: #fa999c;
}
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-danger .bp6-tag-remove:hover,
.bp6-dark .bp6-tag.bp6-minimal.bp6-intent-danger .bp6-tag-remove:active {
  color: #ffa1a4;
}
.bp6-tag-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  margin-bottom: -2px;
  margin-right: -6px !important;
  margin-top: -2px;
  padding: 2px;
  padding-left: 0;
}
.bp6-tag-remove:hover {
  background: none;
  color: inherit;
  text-decoration: none;
}
.bp6-tag-remove .bp6-icon:first-child {
  color: inherit;
}
.bp6-tag-remove:hover,
.bp6-tag-remove:active {
  color: #ffffff;
}
.bp6-tag-remove:empty::before {
  font-family: "blueprint-icons-16", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 16px;
  line-height: 1;
  width: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f2ba";
}
.bp6-large .bp6-tag-remove {
  margin-right: -8px !important;
  padding: 0 4px 0 0;
}
.bp6-large .bp6-tag-remove:empty::before {
  font-family: "blueprint-icons-20", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  height: 20px;
  line-height: 1;
  width: 20px;
}
.bp6-compound-tag {
  background: none;
}
.bp6-compound-tag .bp6-compound-tag-left {
  background-color: #404854;
}
.bp6-compound-tag .bp6-compound-tag-right {
  background-color: #5f6b7c;
}
.bp6-compound-tag.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: #383e47;
}
.bp6-compound-tag.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: #404854;
}
.bp6-compound-tag.bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: #2f343c;
}
.bp6-compound-tag.bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: #383e47;
}
.bp6-compound-tag {
  padding: 0;
}
.bp6-compound-tag .bp6-compound-tag-left,
.bp6-compound-tag .bp6-compound-tag-right {
  align-items: center;
  display: inline-flex;
  padding: 2px 4px;
}
.bp6-compound-tag .bp6-compound-tag-left {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-right: 0;
}
.bp6-compound-tag .bp6-compound-tag-left > .bp6-icon,
.bp6-compound-tag .bp6-compound-tag-left .bp6-icon-standard,
.bp6-compound-tag .bp6-compound-tag-left .bp6-icon-large {
  margin-right: 4px;
}
.bp6-compound-tag .bp6-compound-tag-right {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  flex-grow: 1;
  padding: 2px 4px;
}
.bp6-compound-tag .bp6-compound-tag-right > .bp6-icon,
.bp6-compound-tag .bp6-compound-tag-right .bp6-icon-standard,
.bp6-compound-tag .bp6-compound-tag-right .bp6-icon-large {
  margin-left: 4px;
}
.bp6-compound-tag .bp6-compound-tag-right .bp6-compound-tag-right-content {
  flex-grow: 1;
}
.bp6-compound-tag .bp6-compound-tag-right .bp6-tag-remove {
  margin-left: 2px;
  margin-right: -4px !important;
}
.bp6-compound-tag.bp6-round {
  padding: 0;
}
.bp6-compound-tag.bp6-round .bp6-compound-tag-left {
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  padding-left: 8px;
}
.bp6-compound-tag.bp6-round .bp6-compound-tag-right {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  padding-right: 8px;
}
.bp6-compound-tag.bp6-large {
  padding: 0;
}
.bp6-compound-tag.bp6-large .bp6-compound-tag-left,
.bp6-compound-tag.bp6-large .bp6-compound-tag-right {
  padding: 6px 8px;
}
.bp6-compound-tag.bp6-large .bp6-compound-tag-left > .bp6-icon,
.bp6-compound-tag.bp6-large .bp6-compound-tag-left .bp6-icon-standard,
.bp6-compound-tag.bp6-large .bp6-compound-tag-left .bp6-icon-large {
  margin-right: 8px;
}
.bp6-compound-tag.bp6-large .bp6-compound-tag-right > .bp6-icon,
.bp6-compound-tag.bp6-large .bp6-compound-tag-right .bp6-icon-standard,
.bp6-compound-tag.bp6-large .bp6-compound-tag-right .bp6-icon-large {
  margin-left: 8px;
}
.bp6-compound-tag.bp6-large .bp6-tag-remove {
  margin-left: 8px;
  margin-right: -10px !important;
}
.bp6-compound-tag.bp6-large.bp6-round {
  padding: 0;
}
.bp6-compound-tag.bp6-large.bp6-round .bp6-compound-tag-left {
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  padding-left: 10px;
}
.bp6-compound-tag.bp6-large.bp6-round .bp6-compound-tag-right {
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  padding-right: 10px;
}
.bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]) {
  background: none;
}
.bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-compound-tag-left {
  background-color: rgba(95, 107, 124, 0.2);
}
.bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-compound-tag-right {
  background-color: rgba(95, 107, 124, 0.1);
}
.bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(95, 107, 124, 0.3);
}
.bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(95, 107, 124, 0.2);
}
.bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(95, 107, 124, 0.4);
}
.bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(95, 107, 124, 0.3);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-primary {
  background: none;
}
.bp6-compound-tag.bp6-minimal.bp6-intent-primary .bp6-compound-tag-left {
  background-color: rgba(45, 114, 210, 0.2);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-primary .bp6-compound-tag-right {
  background-color: rgba(45, 114, 210, 0.1);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(45, 114, 210, 0.3);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(45, 114, 210, 0.2);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(45, 114, 210, 0.4);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(45, 114, 210, 0.3);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-success {
  background: none;
}
.bp6-compound-tag.bp6-minimal.bp6-intent-success .bp6-compound-tag-left {
  background-color: rgba(35, 133, 81, 0.2);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-success .bp6-compound-tag-right {
  background-color: rgba(35, 133, 81, 0.1);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(35, 133, 81, 0.3);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(35, 133, 81, 0.2);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(35, 133, 81, 0.4);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(35, 133, 81, 0.3);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-warning {
  background: none;
}
.bp6-compound-tag.bp6-minimal.bp6-intent-warning .bp6-compound-tag-left {
  background-color: rgba(200, 118, 25, 0.2);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-warning .bp6-compound-tag-right {
  background-color: rgba(200, 118, 25, 0.1);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(200, 118, 25, 0.3);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(200, 118, 25, 0.2);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(200, 118, 25, 0.4);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(200, 118, 25, 0.3);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-danger {
  background: none;
}
.bp6-compound-tag.bp6-minimal.bp6-intent-danger .bp6-compound-tag-left {
  background-color: rgba(205, 66, 70, 0.2);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-danger .bp6-compound-tag-right {
  background-color: rgba(205, 66, 70, 0.1);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(205, 66, 70, 0.3);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(205, 66, 70, 0.2);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(205, 66, 70, 0.4);
}
.bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(205, 66, 70, 0.3);
}
.bp6-dark .bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]) {
  background: none;
}
.bp6-dark .bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-compound-tag-left {
  background-color: rgba(95, 107, 124, 0.4);
}
.bp6-dark .bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]) .bp6-compound-tag-right {
  background-color: rgba(95, 107, 124, 0.2);
}
.bp6-dark .bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(95, 107, 124, 0.5);
}
.bp6-dark .bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(95, 107, 124, 0.3);
}
.bp6-dark .bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:active .bp6-compound-tag-left,
.bp6-dark .bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(95, 107, 124, 0.55);
}
.bp6-dark .bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive:active .bp6-compound-tag-right,
.bp6-dark .bp6-compound-tag.bp6-minimal:not([class*=bp6-intent-]).bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(95, 107, 124, 0.35);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-primary {
  background: none;
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-primary .bp6-compound-tag-left {
  background-color: rgba(45, 114, 210, 0.4);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-primary .bp6-compound-tag-right {
  background-color: rgba(45, 114, 210, 0.2);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(45, 114, 210, 0.5);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(45, 114, 210, 0.3);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:active .bp6-compound-tag-left,
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(45, 114, 210, 0.55);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive:active .bp6-compound-tag-right,
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-primary.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(45, 114, 210, 0.35);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-success {
  background: none;
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-success .bp6-compound-tag-left {
  background-color: rgba(35, 133, 81, 0.4);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-success .bp6-compound-tag-right {
  background-color: rgba(35, 133, 81, 0.2);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(35, 133, 81, 0.5);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(35, 133, 81, 0.3);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive:active .bp6-compound-tag-left,
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(35, 133, 81, 0.55);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive:active .bp6-compound-tag-right,
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-success.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(35, 133, 81, 0.35);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-warning {
  background: none;
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-warning .bp6-compound-tag-left {
  background-color: rgba(200, 118, 25, 0.4);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-warning .bp6-compound-tag-right {
  background-color: rgba(200, 118, 25, 0.2);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(200, 118, 25, 0.5);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(200, 118, 25, 0.3);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:active .bp6-compound-tag-left,
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(200, 118, 25, 0.55);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive:active .bp6-compound-tag-right,
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-warning.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(200, 118, 25, 0.35);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-danger {
  background: none;
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-danger .bp6-compound-tag-left {
  background-color: rgba(205, 66, 70, 0.4);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-danger .bp6-compound-tag-right {
  background-color: rgba(205, 66, 70, 0.2);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: rgba(205, 66, 70, 0.5);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: rgba(205, 66, 70, 0.3);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:active .bp6-compound-tag-left,
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: rgba(205, 66, 70, 0.55);
}
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive:active .bp6-compound-tag-right,
.bp6-dark .bp6-compound-tag.bp6-minimal.bp6-intent-danger.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: rgba(205, 66, 70, 0.35);
}
.bp6-compound-tag.bp6-intent-primary {
  background: none;
}
.bp6-compound-tag.bp6-intent-primary .bp6-compound-tag-left {
  background-color: #215db0;
}
.bp6-compound-tag.bp6-intent-primary .bp6-compound-tag-right {
  background-color: #2d72d2;
}
.bp6-compound-tag.bp6-intent-primary.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: #184a90;
}
.bp6-compound-tag.bp6-intent-primary.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: #215db0;
}
.bp6-compound-tag.bp6-intent-primary.bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-intent-primary.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: #11376b;
}
.bp6-compound-tag.bp6-intent-primary.bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-intent-primary.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: #184a90;
}
.bp6-compound-tag.bp6-intent-success {
  background: none;
}
.bp6-compound-tag.bp6-intent-success .bp6-compound-tag-left {
  background-color: #1c6e42;
}
.bp6-compound-tag.bp6-intent-success .bp6-compound-tag-right {
  background-color: #238551;
}
.bp6-compound-tag.bp6-intent-success.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: #165a36;
}
.bp6-compound-tag.bp6-intent-success.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: #1c6e42;
}
.bp6-compound-tag.bp6-intent-success.bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-intent-success.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: #0f3e25;
}
.bp6-compound-tag.bp6-intent-success.bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-intent-success.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: #165a36;
}
.bp6-compound-tag.bp6-intent-warning {
  background: none;
}
.bp6-compound-tag.bp6-intent-warning .bp6-compound-tag-left {
  background-color: #ec9a3c;
}
.bp6-compound-tag.bp6-intent-warning .bp6-compound-tag-right {
  background-color: #fbb360;
}
.bp6-compound-tag.bp6-intent-warning.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: #c87619;
}
.bp6-compound-tag.bp6-intent-warning.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: #ec9a3c;
}
.bp6-compound-tag.bp6-intent-warning.bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-intent-warning.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: #935610;
}
.bp6-compound-tag.bp6-intent-warning.bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-intent-warning.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: #c87619;
}
.bp6-compound-tag.bp6-intent-danger {
  background: none;
}
.bp6-compound-tag.bp6-intent-danger .bp6-compound-tag-left {
  background-color: #ac2f33;
}
.bp6-compound-tag.bp6-intent-danger .bp6-compound-tag-right {
  background-color: #cd4246;
}
.bp6-compound-tag.bp6-intent-danger.bp6-interactive:hover .bp6-compound-tag-left {
  background-color: #8e292c;
}
.bp6-compound-tag.bp6-intent-danger.bp6-interactive:hover .bp6-compound-tag-right {
  background-color: #ac2f33;
}
.bp6-compound-tag.bp6-intent-danger.bp6-interactive:active .bp6-compound-tag-left,
.bp6-compound-tag.bp6-intent-danger.bp6-interactive.bp6-active .bp6-compound-tag-left {
  background-color: #782326;
}
.bp6-compound-tag.bp6-intent-danger.bp6-interactive:active .bp6-compound-tag-right,
.bp6-compound-tag.bp6-intent-danger.bp6-interactive.bp6-active .bp6-compound-tag-right {
  background-color: #8e292c;
}
.bp6-tag-input {
  display: flex;
  flex-direction: row;
}
.bp6-tag-input > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-tag-input > .bp6-tag-input-values {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-tag-input {
  align-items: flex-start;
  cursor: text;
  height: auto;
  line-height: inherit;
  min-height: 30px;
  padding-left: 6px;
  padding-right: 0;
}
.bp6-tag-input .bp6-tag-input-icon {
  color: #5f6b7c;
  margin-left: 3px;
  margin-right: 7px;
  margin-top: 7px;
}
.bp6-tag-input .bp6-tag-input-values {
  display: flex;
  flex-direction: row;
}
.bp6-tag-input .bp6-tag-input-values > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-tag-input .bp6-tag-input-values > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-tag-input .bp6-tag-input-values::before,
.bp6-tag-input .bp6-tag-input-values > * {
  margin-right: 4px;
}
.bp6-tag-input .bp6-tag-input-values:empty::before,
.bp6-tag-input .bp6-tag-input-values > :last-child {
  margin-right: 0;
}
.bp6-tag-input .bp6-tag-input-values {
  align-items: center;
  align-self: stretch;
  flex-wrap: wrap;
  margin-right: 4px;
  margin-top: 4px;
  min-width: 0;
  position: relative;
}
.bp6-tag-input .bp6-tag-input-values:first-child .bp6-tag ~ .bp6-input-ghost {
  padding-left: 0;
}
.bp6-tag-input .bp6-tag-input-values:first-child .bp6-input-ghost {
  padding-left: 4px;
}
.bp6-tag-input .bp6-tag-input-values > * {
  margin-bottom: 4px;
}
.bp6-tag-input .bp6-tag {
  overflow-wrap: break-word;
}
.bp6-tag-input .bp6-tag.bp6-active {
  outline: rgba(33, 93, 176, 0.752) solid 2px;
  outline-offset: 0;
  -moz-outline-radius: 6px;
}
.bp6-dark .bp6-tag-input .bp6-tag.bp6-active {
  outline-color: rgba(138, 187, 255, 0.752);
}
.bp6-tag-input .bp6-input-ghost {
  flex: 1 1 auto;
  line-height: 20px;
  width: 80px;
}
.bp6-tag-input .bp6-input-ghost:disabled,
.bp6-tag-input .bp6-input-ghost.bp6-disabled {
  cursor: not-allowed;
}
.bp6-tag-input .bp6-button,
.bp6-tag-input .bp6-spinner {
  margin: 3px;
  margin-left: 0;
}
.bp6-tag-input .bp6-button {
  min-height: 24px;
  min-width: 24px;
  padding: 0 8px;
}
.bp6-tag-input.bp6-large::before,
.bp6-tag-input.bp6-large > * {
  margin-right: 10px;
}
.bp6-tag-input.bp6-large:empty::before,
.bp6-tag-input.bp6-large > :last-child {
  margin-right: 0;
}
.bp6-tag-input.bp6-large {
  height: auto;
  min-height: 40px;
}
.bp6-tag-input.bp6-large .bp6-tag-input-icon {
  margin-left: 6px;
  margin-top: 10px;
}
.bp6-tag-input.bp6-large .bp6-input-ghost {
  line-height: 30px;
}
.bp6-tag-input.bp6-large .bp6-button {
  min-height: 30px;
  min-width: 30px;
  padding: 4px 8px;
  margin: 5px;
  margin-left: 0;
}
.bp6-tag-input.bp6-large .bp6-spinner {
  margin: 8px;
  margin-left: 0;
}
.bp6-tag-input.bp6-active {
  background-color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(33, 93, 176, 0.752),
    0 0 0 1px rgba(33, 93, 176, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-tag-input.bp6-active.bp6-intent-primary {
  box-shadow:
    inset 0 0 0 1px rgba(45, 114, 210, 0.752),
    0 0 0 1px rgba(45, 114, 210, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-tag-input.bp6-active.bp6-intent-success {
  box-shadow:
    inset 0 0 0 1px rgba(35, 133, 81, 0.752),
    0 0 0 1px rgba(35, 133, 81, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-tag-input.bp6-active.bp6-intent-warning {
  box-shadow:
    inset 0 0 0 1px rgba(200, 118, 25, 0.752),
    0 0 0 1px rgba(200, 118, 25, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-tag-input.bp6-active.bp6-intent-danger {
  box-shadow:
    inset 0 0 0 1px rgba(205, 66, 70, 0.752),
    0 0 0 1px rgba(205, 66, 70, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-dark .bp6-tag-input .bp6-tag-input-icon,
.bp6-tag-input.bp6-dark .bp6-tag-input-icon {
  color: #abb3bf;
}
.bp6-dark .bp6-tag-input .bp6-input-ghost::-moz-placeholder,
.bp6-tag-input.bp6-dark .bp6-input-ghost::-moz-placeholder {
  color: #abb3bf;
}
.bp6-dark .bp6-tag-input .bp6-input-ghost:-ms-input-placeholder,
.bp6-tag-input.bp6-dark .bp6-input-ghost:-ms-input-placeholder {
  color: #abb3bf;
}
.bp6-dark .bp6-tag-input .bp6-input-ghost::placeholder,
.bp6-tag-input.bp6-dark .bp6-input-ghost::placeholder {
  color: #abb3bf;
}
.bp6-dark .bp6-tag-input .bp6-input-ghost,
.bp6-tag-input.bp6-dark .bp6-input-ghost {
  color: #f6f7f9;
}
.bp6-dark .bp6-tag-input.bp6-active,
.bp6-tag-input.bp6-dark.bp6-active {
  background-color: rgba(17, 20, 24, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(138, 187, 255, 0.752),
    0 0 0 1px rgba(138, 187, 255, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-tag-input.bp6-active.bp6-intent-primary,
.bp6-tag-input.bp6-dark.bp6-active.bp6-intent-primary {
  box-shadow:
    inset 0 0 0 1px rgba(76, 144, 240, 0.752),
    0 0 0 1px rgba(76, 144, 240, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-tag-input.bp6-active.bp6-intent-success,
.bp6-tag-input.bp6-dark.bp6-active.bp6-intent-success {
  box-shadow:
    inset 0 0 0 1px rgba(50, 164, 103, 0.752),
    0 0 0 1px rgba(50, 164, 103, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-tag-input.bp6-active.bp6-intent-warning,
.bp6-tag-input.bp6-dark.bp6-active.bp6-intent-warning {
  box-shadow:
    inset 0 0 0 1px rgba(236, 154, 60, 0.752),
    0 0 0 1px rgba(236, 154, 60, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-tag-input.bp6-active.bp6-intent-danger,
.bp6-tag-input.bp6-dark.bp6-active.bp6-intent-danger {
  box-shadow:
    inset 0 0 0 1px rgba(231, 106, 110, 0.752),
    0 0 0 1px rgba(231, 106, 110, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-input-ghost::-moz-placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-input-ghost:-ms-input-placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-input-ghost::placeholder {
  color: #5f6b7c;
  opacity: 1;
}
.bp6-input-ghost {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.bp6-input-ghost:focus {
  outline: none !important;
}
.bp6-resizable-input-span {
  max-height: 0;
  max-width: 100%;
  min-width: 80px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  z-index: -1;
}
.bp6-toast.bp6-toast-enter,
.bp6-toast.bp6-toast-appear {
  transform: translateY(-40px);
}
.bp6-toast.bp6-toast-enter-active,
.bp6-toast.bp6-toast-appear-active {
  transform: translateY(0);
  transition-delay: 0;
  transition-duration: 300ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11);
}
.bp6-toast.bp6-toast-enter ~ .bp6-toast,
.bp6-toast.bp6-toast-appear ~ .bp6-toast {
  transform: translateY(-40px);
}
.bp6-toast.bp6-toast-enter-active ~ .bp6-toast,
.bp6-toast.bp6-toast-appear-active ~ .bp6-toast {
  transform: translateY(0);
  transition-delay: 0;
  transition-duration: 300ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.54, 1.12, 0.38, 1.11);
}
.bp6-toast.bp6-toast-exit {
  opacity: 1;
  filter: blur(0);
}
.bp6-toast.bp6-toast-exit-active {
  opacity: 0;
  filter: blur(8px);
  transition-delay: 0;
  transition-duration: 300ms;
  transition-property: opacity, filter;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-toast.bp6-toast-exit ~ .bp6-toast {
  transform: translateY(0);
}
.bp6-toast.bp6-toast-exit-active ~ .bp6-toast {
  transform: translateY(-40px);
  transition-delay: 50ms;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-toast {
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
  display: flex;
  margin: 20px 0 0;
  max-width: min(500px, 100%);
  min-width: min(300px, 100%);
  pointer-events: all;
  position: relative !important;
}
.bp6-toast .bp6-button-group {
  flex: 0 0 auto;
  padding: 5px;
  padding-left: 0;
}
.bp6-toast > .bp6-icon {
  color: #5f6b7c;
  margin: 12px;
  margin-right: 0;
}
.bp6-toast.bp6-dark,
.bp6-dark .bp6-toast {
  background-color: #383e47;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(17, 20, 24, 0.4),
    0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp6-toast.bp6-dark > .bp6-icon,
.bp6-dark .bp6-toast > .bp6-icon {
  color: #abb3bf;
}
.bp6-toast.bp6-dark .bp6-button .bp6-icon,
.bp6-dark .bp6-toast .bp6-button .bp6-icon {
  color: rgba(255, 255, 255, 0.7);
}
.bp6-toast[class*=bp6-intent-] a {
  color: rgba(255, 255, 255, 0.7);
}
.bp6-toast[class*=bp6-intent-] a:hover {
  color: #ffffff;
}
.bp6-toast[class*=bp6-intent-] > .bp6-icon {
  color: #ffffff;
}
.bp6-toast.bp6-intent-primary {
  background-color: #2d72d2;
  color: #ffffff;
}
.bp6-toast.bp6-intent-primary .bp6-icon:first-child {
  color: rgba(255, 255, 255, 0.7);
}
.bp6-toast.bp6-intent-primary {
}
.bp6-toast.bp6-intent-primary .bp6-button {
  background-color: #2d72d2 !important;
  color: #ffffff !important;
}
.bp6-toast.bp6-intent-primary .bp6-button:hover {
  background-color: #215db0 !important;
  color: #ffffff !important;
}
.bp6-toast.bp6-intent-primary .bp6-button:active {
  background-color: #184a90 !important;
  color: #ffffff !important;
}
.bp6-toast.bp6-intent-primary .bp6-button:focus {
  outline-color: rgba(255, 255, 255, 0.75);
}
.bp6-toast.bp6-intent-primary .bp6-button:last-child > .bp6-icon-cross {
  color: rgba(255, 255, 255, 0.7) !important;
}
.bp6-toast.bp6-intent-primary {
}
.bp6-toast.bp6-intent-success {
  background-color: #238551;
  color: #ffffff;
}
.bp6-toast.bp6-intent-success .bp6-icon:first-child {
  color: rgba(255, 255, 255, 0.7);
}
.bp6-toast.bp6-intent-success {
}
.bp6-toast.bp6-intent-success .bp6-button {
  background-color: #238551 !important;
  color: #ffffff !important;
}
.bp6-toast.bp6-intent-success .bp6-button:hover {
  background-color: #1c6e42 !important;
  color: #ffffff !important;
}
.bp6-toast.bp6-intent-success .bp6-button:active {
  background-color: #165a36 !important;
  color: #ffffff !important;
}
.bp6-toast.bp6-intent-success .bp6-button:focus {
  outline-color: rgba(255, 255, 255, 0.75);
}
.bp6-toast.bp6-intent-success .bp6-button:last-child > .bp6-icon-cross {
  color: rgba(255, 255, 255, 0.7) !important;
}
.bp6-toast.bp6-intent-success {
}
.bp6-toast.bp6-intent-warning {
  background-color: #fbb360;
  color: #1c2127;
}
.bp6-toast.bp6-intent-warning .bp6-icon:first-child {
  color: rgba(28, 33, 39, 0.7);
}
.bp6-toast.bp6-intent-warning {
}
.bp6-toast.bp6-intent-warning .bp6-button {
  background-color: #fbb360 !important;
  color: #1c2127 !important;
}
.bp6-toast.bp6-intent-warning .bp6-button:hover {
  background-color: #ec9a3c !important;
  color: #1c2127 !important;
}
.bp6-toast.bp6-intent-warning .bp6-button:active {
  background-color: #c87619 !important;
  color: #1c2127 !important;
}
.bp6-toast.bp6-intent-warning .bp6-button:focus {
  outline-color: rgba(28, 33, 39, 0.75);
}
.bp6-toast.bp6-intent-warning .bp6-button:last-child > .bp6-icon-cross {
  color: rgba(28, 33, 39, 0.7) !important;
}
.bp6-toast.bp6-intent-warning {
}
.bp6-toast.bp6-intent-danger {
  background-color: #cd4246;
  color: #ffffff;
}
.bp6-toast.bp6-intent-danger .bp6-icon:first-child {
  color: rgba(255, 255, 255, 0.7);
}
.bp6-toast.bp6-intent-danger {
}
.bp6-toast.bp6-intent-danger .bp6-button {
  background-color: #cd4246 !important;
  color: #ffffff !important;
}
.bp6-toast.bp6-intent-danger .bp6-button:hover {
  background-color: #ac2f33 !important;
  color: #ffffff !important;
}
.bp6-toast.bp6-intent-danger .bp6-button:active {
  background-color: #8e292c !important;
  color: #ffffff !important;
}
.bp6-toast.bp6-intent-danger .bp6-button:focus {
  outline-color: rgba(255, 255, 255, 0.75);
}
.bp6-toast.bp6-intent-danger .bp6-button:last-child > .bp6-icon-cross {
  color: rgba(255, 255, 255, 0.7) !important;
}
.bp6-toast.bp6-intent-danger {
}
.bp6-toast-message {
  flex: 1 1 auto;
  padding: 11px;
  word-break: break-word;
}
.bp6-toast-container {
  align-items: center;
  display: flex !important;
  flex-direction: column;
  left: 0;
  overflow: hidden;
  padding: 0 20px 20px;
  pointer-events: none;
  right: 0;
  z-index: 40;
}
.bp6-toast-container.bp6-toast-container-in-portal {
  position: fixed;
}
.bp6-toast-container.bp6-toast-container-inline {
  position: absolute;
}
.bp6-toast-container.bp6-toast-container-top {
  top: 0;
}
.bp6-toast-container.bp6-toast-container-bottom {
  bottom: 0;
  flex-direction: column-reverse;
  top: auto;
}
.bp6-toast-container.bp6-toast-container-left {
  align-items: flex-start;
}
.bp6-toast-container.bp6-toast-container-right {
  align-items: flex-end;
}
.bp6-toast-container-bottom .bp6-toast.bp6-toast-enter:not(.bp6-toast-enter-active),
.bp6-toast-container-bottom .bp6-toast.bp6-toast-enter:not(.bp6-toast-enter-active) ~ .bp6-toast,
.bp6-toast-container-bottom .bp6-toast.bp6-toast-appear:not(.bp6-toast-appear-active),
.bp6-toast-container-bottom .bp6-toast.bp6-toast-appear:not(.bp6-toast-appear-active) ~ .bp6-toast,
.bp6-toast-container-bottom .bp6-toast.bp6-toast-exit-active ~ .bp6-toast,
.bp6-toast-container-bottom .bp6-toast.bp6-toast-leave-active ~ .bp6-toast {
  transform: translateY(60px);
}
.bp6-tooltip .bp6-popover-arrow {
  height: 22px;
  position: absolute;
  width: 22px;
}
.bp6-tooltip .bp6-popover-arrow::before {
  height: 14px;
  margin: 4px;
  width: 14px;
}
.bp6-tooltip {
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 2px 4px rgba(17, 20, 24, 0.2),
    0 8px 24px rgba(17, 20, 24, 0.2);
}
.bp6-tooltip .bp6-popover-content {
  background: #404854;
}
.bp6-tooltip .bp6-popover-content,
.bp6-tooltip .bp6-heading {
  color: #f6f7f9;
}
.bp6-tooltip .bp6-popover-arrow::before {
  box-shadow: 1px 1px 6px rgba(17, 20, 24, 0.2);
}
.bp6-tooltip .bp6-popover-arrow-border {
  fill: #111418;
  fill-opacity: 0.1;
}
.bp6-tooltip .bp6-popover-arrow-fill {
  fill: #404854;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip {
    border: 1px solid buttonborder;
  }
}
.bp6-tooltip {
  transform: scale(1);
}
.bp6-popover-enter > .bp6-tooltip,
.bp6-popover-appear > .bp6-tooltip {
  transform: scale(0.8);
}
.bp6-popover-enter-active > .bp6-tooltip,
.bp6-popover-appear-active > .bp6-tooltip {
  transform: scale(1);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-popover-exit > .bp6-tooltip {
  transform: scale(1);
}
.bp6-popover-exit-active > .bp6-tooltip {
  transform: scale(0.8);
  transition-delay: 0;
  transition-duration: 100ms;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-tooltip {
  color: #f6f7f9;
}
.bp6-tooltip .bp6-text-muted {
  color: #abb3bf;
}
.bp6-tooltip .bp6-text-disabled {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-tooltip .bp6-running-text hr {
  border-color: rgba(255, 255, 255, 0.2);
}
.bp6-tooltip a {
  color: #8abbff;
}
.bp6-tooltip a:hover {
  color: #8abbff;
}
.bp6-tooltip a .bp6-icon,
.bp6-tooltip a .bp6-icon-standard,
.bp6-tooltip a .bp6-icon-large {
  color: inherit;
}
.bp6-tooltip a code {
  color: inherit;
}
.bp6-tooltip .bp6-code,
.bp6-tooltip .bp6-running-text code {
  background: rgba(17, 20, 24, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #abb3bf;
}
a > .bp6-tooltip .bp6-code,
a > .bp6-tooltip .bp6-running-text code {
  color: inherit;
}
.bp6-tooltip .bp6-code-block,
.bp6-tooltip .bp6-running-text pre {
  background: rgba(17, 20, 24, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #f6f7f9;
}
.bp6-tooltip .bp6-code-block > code,
.bp6-tooltip .bp6-running-text pre > code {
  background: none;
  box-shadow: none;
  color: inherit;
}
.bp6-tooltip .bp6-key,
.bp6-tooltip .bp6-running-text kbd {
  background: #2f343c;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 1px 1px 0 rgba(17, 20, 24, 0.4);
  color: #abb3bf;
}
.bp6-tooltip .bp6-icon.bp6-intent-primary,
.bp6-tooltip .bp6-icon-standard.bp6-intent-primary,
.bp6-tooltip .bp6-icon-large.bp6-intent-primary {
  color: #8abbff;
}
.bp6-tooltip .bp6-icon.bp6-intent-success,
.bp6-tooltip .bp6-icon-standard.bp6-intent-success,
.bp6-tooltip .bp6-icon-large.bp6-intent-success {
  color: #72ca9b;
}
.bp6-tooltip .bp6-icon.bp6-intent-warning,
.bp6-tooltip .bp6-icon-standard.bp6-intent-warning,
.bp6-tooltip .bp6-icon-large.bp6-intent-warning {
  color: #fbb360;
}
.bp6-tooltip .bp6-icon.bp6-intent-danger,
.bp6-tooltip .bp6-icon-standard.bp6-intent-danger,
.bp6-tooltip .bp6-icon-large.bp6-intent-danger {
  color: #fa999c;
}
.bp6-tooltip .bp6-popover-content {
  padding: 8px 12px;
}
.bp6-tooltip.bp6-compact .bp6-popover-content {
  line-height: 1rem;
  padding: 4px 8px;
}
.bp6-tooltip.bp6-compact .bp6-code {
  vertical-align: text-bottom;
}
.bp6-tooltip.bp6-popover-placement-top .bp6-popover-arrow {
  transform: translateY(-3px);
}
.bp6-tooltip.bp6-popover-placement-left .bp6-popover-arrow {
  transform: translateX(-3px);
}
.bp6-tooltip.bp6-popover-placement-bottom .bp6-popover-arrow {
  transform: translateY(3px);
}
.bp6-tooltip.bp6-popover-placement-right .bp6-popover-arrow {
  transform: translateX(3px);
}
.bp6-tooltip.bp6-dark,
.bp6-dark .bp6-tooltip {
  box-shadow: 0 2px 4px rgba(17, 20, 24, 0.4), 0 8px 24px rgba(17, 20, 24, 0.4);
}
.bp6-tooltip.bp6-dark .bp6-popover-content,
.bp6-dark .bp6-tooltip .bp6-popover-content {
  background: #e5e8eb;
}
.bp6-tooltip.bp6-dark .bp6-popover-content,
.bp6-tooltip.bp6-dark .bp6-heading,
.bp6-dark .bp6-tooltip .bp6-popover-content,
.bp6-dark .bp6-tooltip .bp6-heading {
  color: #404854;
}
.bp6-tooltip.bp6-dark .bp6-popover-arrow::before,
.bp6-dark .bp6-tooltip .bp6-popover-arrow::before {
  box-shadow: 1px 1px 6px rgba(17, 20, 24, 0.4);
}
.bp6-tooltip.bp6-dark .bp6-popover-arrow-border,
.bp6-dark .bp6-tooltip .bp6-popover-arrow-border {
  fill: #111418;
  fill-opacity: 0.2;
}
.bp6-tooltip.bp6-dark .bp6-popover-arrow-fill,
.bp6-dark .bp6-tooltip .bp6-popover-arrow-fill {
  fill: #e5e8eb;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-dark .bp6-popover-arrow-fill,
  .bp6-dark .bp6-tooltip .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-dark,
  .bp6-dark .bp6-tooltip {
    border: 1px solid buttonborder;
  }
}
.bp6-tooltip.bp6-dark .bp6-text-muted,
.bp6-dark .bp6-tooltip .bp6-text-muted {
  color: #5f6b7c;
}
.bp6-tooltip.bp6-dark .bp6-text-disabled,
.bp6-dark .bp6-tooltip .bp6-text-disabled {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-tooltip.bp6-dark .bp6-running-text hr,
.bp6-dark .bp6-tooltip .bp6-running-text hr {
  border-color: rgba(17, 20, 24, 0.15);
}
.bp6-tooltip.bp6-dark a,
.bp6-dark .bp6-tooltip a {
  color: #215db0;
}
.bp6-tooltip.bp6-dark a:hover,
.bp6-dark .bp6-tooltip a:hover {
  color: #215db0;
}
.bp6-tooltip.bp6-dark a .bp6-icon,
.bp6-tooltip.bp6-dark a .bp6-icon-standard,
.bp6-tooltip.bp6-dark a .bp6-icon-large,
.bp6-dark .bp6-tooltip a .bp6-icon,
.bp6-dark .bp6-tooltip a .bp6-icon-standard,
.bp6-dark .bp6-tooltip a .bp6-icon-large {
  color: inherit;
}
.bp6-tooltip.bp6-dark a code,
.bp6-dark .bp6-tooltip a code {
  color: inherit;
}
.bp6-tooltip.bp6-dark .bp6-code,
.bp6-tooltip.bp6-dark .bp6-running-text code,
.bp6-dark .bp6-tooltip .bp6-code,
.bp6-dark .bp6-tooltip .bp6-running-text code {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2);
  color: #5f6b7c;
}
a > .bp6-tooltip.bp6-dark .bp6-code,
a > .bp6-tooltip.bp6-dark .bp6-running-text code,
a > .bp6-dark .bp6-tooltip .bp6-code,
a > .bp6-dark .bp6-tooltip .bp6-running-text code {
  color: #2d72d2;
}
.bp6-tooltip.bp6-dark .bp6-code-block,
.bp6-tooltip.bp6-dark .bp6-running-text pre,
.bp6-dark .bp6-tooltip .bp6-code-block,
.bp6-dark .bp6-tooltip .bp6-running-text pre {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.15);
  color: #1c2127;
}
.bp6-tooltip.bp6-dark .bp6-code-block > code,
.bp6-tooltip.bp6-dark .bp6-running-text pre > code,
.bp6-dark .bp6-tooltip .bp6-code-block > code,
.bp6-dark .bp6-tooltip .bp6-running-text pre > code {
  background: none;
  box-shadow: none;
  color: inherit;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-dark .bp6-code-block,
  .bp6-tooltip.bp6-dark .bp6-running-text pre,
  .bp6-dark .bp6-tooltip .bp6-code-block,
  .bp6-dark .bp6-tooltip .bp6-running-text pre {
    border: 1px solid buttonborder;
    box-shadow: none;
  }
}
.bp6-tooltip.bp6-dark .bp6-key,
.bp6-tooltip.bp6-dark .bp6-running-text kbd,
.bp6-dark .bp6-tooltip .bp6-key,
.bp6-dark .bp6-tooltip .bp6-running-text kbd {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.1), 0 1px 1px rgba(17, 20, 24, 0.2);
  color: #5f6b7c;
}
.bp6-tooltip.bp6-dark .bp6-icon.bp6-intent-primary,
.bp6-tooltip.bp6-dark .bp6-icon-standard.bp6-intent-primary,
.bp6-tooltip.bp6-dark .bp6-icon-large.bp6-intent-primary,
.bp6-dark .bp6-tooltip .bp6-icon.bp6-intent-primary,
.bp6-dark .bp6-tooltip .bp6-icon-standard.bp6-intent-primary,
.bp6-dark .bp6-tooltip .bp6-icon-large.bp6-intent-primary {
  color: #215db0;
}
.bp6-tooltip.bp6-dark .bp6-icon.bp6-intent-success,
.bp6-tooltip.bp6-dark .bp6-icon-standard.bp6-intent-success,
.bp6-tooltip.bp6-dark .bp6-icon-large.bp6-intent-success,
.bp6-dark .bp6-tooltip .bp6-icon.bp6-intent-success,
.bp6-dark .bp6-tooltip .bp6-icon-standard.bp6-intent-success,
.bp6-dark .bp6-tooltip .bp6-icon-large.bp6-intent-success {
  color: #1c6e42;
}
.bp6-tooltip.bp6-dark .bp6-icon.bp6-intent-warning,
.bp6-tooltip.bp6-dark .bp6-icon-standard.bp6-intent-warning,
.bp6-tooltip.bp6-dark .bp6-icon-large.bp6-intent-warning,
.bp6-dark .bp6-tooltip .bp6-icon.bp6-intent-warning,
.bp6-dark .bp6-tooltip .bp6-icon-standard.bp6-intent-warning,
.bp6-dark .bp6-tooltip .bp6-icon-large.bp6-intent-warning {
  color: #935610;
}
.bp6-tooltip.bp6-dark .bp6-icon.bp6-intent-danger,
.bp6-tooltip.bp6-dark .bp6-icon-standard.bp6-intent-danger,
.bp6-tooltip.bp6-dark .bp6-icon-large.bp6-intent-danger,
.bp6-dark .bp6-tooltip .bp6-icon.bp6-intent-danger,
.bp6-dark .bp6-tooltip .bp6-icon-standard.bp6-intent-danger,
.bp6-dark .bp6-tooltip .bp6-icon-large.bp6-intent-danger {
  color: #ac2f33;
}
.bp6-tooltip.bp6-intent-primary .bp6-popover-content {
  background: #2d72d2;
  color: #ffffff;
}
.bp6-tooltip.bp6-intent-primary .bp6-popover-arrow-fill {
  fill: #2d72d2;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-intent-primary .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
.bp6-tooltip.bp6-intent-success .bp6-popover-content {
  background: #238551;
  color: #ffffff;
}
.bp6-tooltip.bp6-intent-success .bp6-popover-arrow-fill {
  fill: #238551;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-intent-success .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
.bp6-tooltip.bp6-intent-warning .bp6-popover-content {
  background: #c87619;
  color: #ffffff;
}
.bp6-tooltip.bp6-intent-warning .bp6-popover-arrow-fill {
  fill: #c87619;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-intent-warning .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
.bp6-tooltip.bp6-intent-danger .bp6-popover-content {
  background: #cd4246;
  color: #ffffff;
}
.bp6-tooltip.bp6-intent-danger .bp6-popover-arrow-fill {
  fill: #cd4246;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-tooltip.bp6-intent-danger .bp6-popover-arrow-fill {
    fill: buttonborder;
  }
}
.bp6-tooltip-indicator {
  border-bottom: dotted 1px;
  cursor: help;
}
.bp6-tree .bp6-icon,
.bp6-tree .bp6-icon-standard,
.bp6-tree .bp6-icon-large {
  color: #5f6b7c;
}
.bp6-tree .bp6-icon.bp6-intent-primary,
.bp6-tree .bp6-icon-standard.bp6-intent-primary,
.bp6-tree .bp6-icon-large.bp6-intent-primary {
  color: #2d72d2;
}
.bp6-tree .bp6-icon.bp6-intent-success,
.bp6-tree .bp6-icon-standard.bp6-intent-success,
.bp6-tree .bp6-icon-large.bp6-intent-success {
  color: #238551;
}
.bp6-tree .bp6-icon.bp6-intent-warning,
.bp6-tree .bp6-icon-standard.bp6-intent-warning,
.bp6-tree .bp6-icon-large.bp6-intent-warning {
  color: #c87619;
}
.bp6-tree .bp6-icon.bp6-intent-danger,
.bp6-tree .bp6-icon-standard.bp6-intent-danger,
.bp6-tree .bp6-icon-large.bp6-intent-danger {
  color: #cd4246;
}
.bp6-tree-node-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.bp6-tree-root {
  background-color: transparent;
  cursor: default;
  padding-left: 0;
  position: relative;
}
.bp6-tree-node-content-0 {
  padding-left: 0px;
}
.bp6-tree-node-content-1 {
  padding-left: 22px;
}
.bp6-tree-node-content-2 {
  padding-left: 44px;
}
.bp6-tree-node-content-3 {
  padding-left: 66px;
}
.bp6-tree-node-content-4 {
  padding-left: 88px;
}
.bp6-tree-node-content-5 {
  padding-left: 110px;
}
.bp6-tree-node-content-6 {
  padding-left: 132px;
}
.bp6-tree-node-content-7 {
  padding-left: 154px;
}
.bp6-tree-node-content-8 {
  padding-left: 176px;
}
.bp6-tree-node-content-9 {
  padding-left: 198px;
}
.bp6-tree-node-content-10 {
  padding-left: 220px;
}
.bp6-tree-node-content-11 {
  padding-left: 242px;
}
.bp6-tree-node-content-12 {
  padding-left: 264px;
}
.bp6-tree-node-content-13 {
  padding-left: 286px;
}
.bp6-tree-node-content-14 {
  padding-left: 308px;
}
.bp6-tree-node-content-15 {
  padding-left: 330px;
}
.bp6-tree-node-content-16 {
  padding-left: 352px;
}
.bp6-tree-node-content-17 {
  padding-left: 374px;
}
.bp6-tree-node-content-18 {
  padding-left: 396px;
}
.bp6-tree-node-content-19 {
  padding-left: 418px;
}
.bp6-tree-node-content-20 {
  padding-left: 440px;
}
.bp6-tree-node-content {
  align-items: center;
  background: none;
  display: flex;
  height: 30px;
  padding-right: 4px;
  width: 100%;
}
.bp6-tree-node-content:hover {
  background-color: rgba(143, 153, 168, 0.15);
}
.bp6-tree-node-content:active {
  background-color: rgba(143, 153, 168, 0.3);
}
.bp6-tree-node-caret,
.bp6-tree-node-caret-none {
  min-width: 30px;
}
.bp6-tree-node-caret {
  color: #5f6b7c;
}
.bp6-tree-node-caret:hover {
  color: #1c2127;
}
.bp6-dark .bp6-tree-node-caret {
  color: #abb3bf;
}
.bp6-dark .bp6-tree-node-caret:hover {
  color: #f6f7f9;
}
.bp6-tree-node-caret {
  cursor: pointer;
  padding: 8px;
  transform: rotate(0deg);
  transition: transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-tree-node-caret:hover {
  color: #1c2127;
}
.bp6-tree-node-caret.bp6-tree-node-caret-open {
  transform: rotate(90deg);
}
.bp6-tree-node-caret.bp6-icon-standard::before {
  content: "\f14d";
}
.bp6-tree-node-icon {
  margin-right: 8px;
  position: relative;
}
.bp6-tree-node-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  flex: 1 1 auto;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bp6-tree-node-label span {
  display: inline;
}
.bp6-tree-node-secondary-label {
  padding: 0 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bp6-tree-node-secondary-label .bp6-popover-wrapper,
.bp6-tree-node-secondary-label .bp6-popover-target {
  align-items: center;
  display: flex;
}
.bp6-tree-node.bp6-disabled .bp6-tree-node-content {
  background-color: inherit;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-tree-node.bp6-disabled .bp6-tree-node-caret,
.bp6-tree-node.bp6-disabled .bp6-tree-node-icon {
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content {
  background-color: #2d72d2;
}
.bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content,
.bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content .bp6-icon,
.bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content .bp6-icon-standard,
.bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content .bp6-icon-large {
  color: #ffffff;
}
.bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content .bp6-tree-node-caret::before {
  color: rgba(255, 255, 255, 0.7);
}
.bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content .bp6-tree-node-caret:hover::before {
  color: #ffffff;
}
.bp6-tree.bp6-compact .bp6-tree-node-content {
  height: 24px;
}
.bp6-tree.bp6-compact .bp6-tree-node-caret {
  margin-right: 3px;
  min-width: 24px;
  padding: 4px;
}
.bp6-dark .bp6-tree-node-content:hover {
  background-color: rgba(95, 107, 124, 0.3);
}
.bp6-dark .bp6-tree .bp6-icon,
.bp6-dark .bp6-tree .bp6-icon-standard,
.bp6-dark .bp6-tree .bp6-icon-large {
  color: #abb3bf;
}
.bp6-dark .bp6-tree .bp6-icon.bp6-intent-primary,
.bp6-dark .bp6-tree .bp6-icon-standard.bp6-intent-primary,
.bp6-dark .bp6-tree .bp6-icon-large.bp6-intent-primary {
  color: #8abbff;
}
.bp6-dark .bp6-tree .bp6-icon.bp6-intent-success,
.bp6-dark .bp6-tree .bp6-icon-standard.bp6-intent-success,
.bp6-dark .bp6-tree .bp6-icon-large.bp6-intent-success {
  color: #72ca9b;
}
.bp6-dark .bp6-tree .bp6-icon.bp6-intent-warning,
.bp6-dark .bp6-tree .bp6-icon-standard.bp6-intent-warning,
.bp6-dark .bp6-tree .bp6-icon-large.bp6-intent-warning {
  color: #fbb360;
}
.bp6-dark .bp6-tree .bp6-icon.bp6-intent-danger,
.bp6-dark .bp6-tree .bp6-icon-standard.bp6-intent-danger,
.bp6-dark .bp6-tree .bp6-icon-large.bp6-intent-danger {
  color: #fa999c;
}
.bp6-dark .bp6-tree-node:not(.bp6-disabled) .bp6-tree-node-caret:hover {
  color: #f6f7f9;
}
.bp6-dark .bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content {
  background-color: #2d72d2;
}
.bp6-dark .bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content .bp6-icon,
.bp6-dark .bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content .bp6-icon-standard,
.bp6-dark .bp6-tree-node.bp6-tree-node-selected > .bp6-tree-node-content .bp6-icon-large {
  color: #ffffff;
}

/* node_modules/@blueprintjs/datetime/lib/css/blueprint-datetime.css */
.rdp {
  --rdp-cell-size:40px;
  --rdp-caption-font-size:18px;
  --rdp-accent-color:#0000ff;
  --rdp-background-color:#e7edff;
  --rdp-accent-color-dark:#3003e1;
  --rdp-background-color-dark:#180270;
  --rdp-outline:2px solid var(--rdp-accent-color);
  --rdp-outline-selected:3px solid var(--rdp-accent-color);
  --rdp-selected-color:#fff;
  margin: 1em;
}
.rdp-vhidden {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: absolute !important;
  top: 0;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  border: 0 !important;
}
.rdp-button_reset {
  appearance: none;
  position: relative;
  margin: 0;
  padding: 0;
  cursor: default;
  color: inherit;
  background: none;
  font: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.rdp-button_reset:focus-visible {
  outline: none;
}
.rdp-button {
  border: 2px solid transparent;
}
.rdp-button[disabled]:not(.rdp-day_selected) {
  opacity: 0.25;
}
.rdp-button:not([disabled]) {
  cursor: pointer;
}
.rdp-button:focus-visible:not([disabled]) {
  color: inherit;
  background-color: var(--rdp-background-color);
  border: var(--rdp-outline);
}
.rdp-button:hover:not([disabled]):not(.rdp-day_selected) {
  background-color: var(--rdp-background-color);
}
.rdp-months {
  display: flex;
}
.rdp-month {
  margin: 0 1em;
}
.rdp-month:first-child {
  margin-left: 0;
}
.rdp-month:last-child {
  margin-right: 0;
}
.rdp-table {
  margin: 0;
  max-width: calc(var(--rdp-cell-size) * 7);
  border-collapse: collapse;
}
.rdp-with_weeknumber .rdp-table {
  max-width: calc(var(--rdp-cell-size) * 8);
  border-collapse: collapse;
}
.rdp-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  text-align: left;
}
.rdp-multiple_months .rdp-caption {
  position: relative;
  display: block;
  text-align: center;
}
.rdp-caption_dropdowns {
  position: relative;
  display: inline-flex;
}
.rdp-caption_label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 0.25em;
  white-space: nowrap;
  color: currentColor;
  border: 0;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: var(--rdp-caption-font-size);
  font-weight: bold;
}
.rdp-nav {
  white-space: nowrap;
}
.rdp-multiple_months .rdp-caption_start .rdp-nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.rdp-multiple_months .rdp-caption_end .rdp-nav {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.rdp-nav_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--rdp-cell-size);
  height: var(--rdp-cell-size);
  padding: 0.25em;
  border-radius: 100%;
}
.rdp-dropdown_year,
.rdp-dropdown_month {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.rdp-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: inherit;
  opacity: 0;
  border: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.rdp-dropdown[disabled] {
  opacity: unset;
  color: unset;
}
.rdp-dropdown:focus-visible:not([disabled]) + .rdp-caption_label {
  background-color: var(--rdp-background-color);
  border: var(--rdp-outline);
  border-radius: 6px;
}
.rdp-dropdown_icon {
  margin: 0 0 0 5px;
}
.rdp-head {
  border: 0;
}
.rdp-head_row,
.rdp-row {
  height: 100%;
}
.rdp-head_cell {
  vertical-align: middle;
  font-size: 0.75em;
  font-weight: 700;
  text-align: center;
  height: 100%;
  height: var(--rdp-cell-size);
  padding: 0;
  text-transform: uppercase;
}
.rdp-tbody {
  border: 0;
}
.rdp-tfoot {
  margin: 0.5em;
}
.rdp-cell {
  width: var(--rdp-cell-size);
  height: 100%;
  height: var(--rdp-cell-size);
  padding: 0;
  text-align: center;
}
.rdp-weeknumber {
  font-size: 0.75em;
}
.rdp-weeknumber,
.rdp-day {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: var(--rdp-cell-size);
  max-width: var(--rdp-cell-size);
  height: var(--rdp-cell-size);
  margin: 0;
  border: 2px solid transparent;
  border-radius: 100%;
}
.rdp-day_today:not(.rdp-day_outside) {
  font-weight: bold;
}
.rdp-day_selected,
.rdp-day_selected:focus-visible,
.rdp-day_selected:hover {
  color: var(--rdp-selected-color);
  opacity: 1;
  background-color: var(--rdp-accent-color);
}
.rdp-day_outside {
  opacity: 0.5;
}
.rdp-day_selected:focus-visible {
  outline: var(--rdp-outline);
  outline-offset: 2px;
  z-index: 1;
}
.rdp:not([dir=rtl]) .rdp-day_range_start:not(.rdp-day_range_end) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rdp:not([dir=rtl]) .rdp-day_range_end:not(.rdp-day_range_start) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.rdp[dir=rtl] .rdp-day_range_start:not(.rdp-day_range_end) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.rdp[dir=rtl] .rdp-day_range_end:not(.rdp-day_range_start) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rdp-day_range_end.rdp-day_range_start {
  border-radius: 100%;
}
.rdp-day_range_middle {
  border-radius: 0;
}
.bp6-datepicker-content .rdp {
  --rdp-cell-size:30px;
  --rdp-accent-color:#2d72d2;
  --rdp-background-color:#ffffff;
  --rdp-accent-color-dark:#215db0;
  --rdp-background-color-dark:#2f343c;
  --rdp-outline:2px solid var(--rdp-accent-color);
  --rdp-outline-selected:2px solid rgba(0, 0, 0, 75%);
  margin: 0;
  min-width: auto;
}
.bp6-date-input .bp6-input-action {
  display: flex;
  flex-direction: row;
}
.bp6-datepicker {
  background: #ffffff;
  border-radius: 2px;
  display: flex;
  padding: 4px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bp6-datepicker .rdp {
  display: inline-block;
  min-width: 210px;
  position: relative;
  vertical-align: top;
}
.bp6-datepicker .rdp:focus {
  outline: none;
}
.bp6-datepicker .rdp-month {
  display: flex;
  flex-direction: column;
  margin: 0 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bp6-datepicker .rdp-month + .bp6-datepicker .rdp-month {
  margin-left: 8px;
}
.bp6-datepicker .rdp-caption {
  border-bottom: solid 1px rgba(17, 20, 24, 0.15);
  padding-bottom: 4px;
}
.bp6-datepicker .rdp-table {
  align-self: center;
}
.bp6-datepicker .rdp-head_cell {
  font-size: inherit;
  font-weight: 600;
  padding-top: 4px;
  text-decoration: none;
  text-transform: none;
}
.bp6-datepicker .rdp-weeknumber {
  color: #5f6b7c;
}
.bp6-datepicker .rdp-day {
  border-radius: 2px;
}
.bp6-datepicker .rdp-day.rdp-day_outside {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-datepicker .rdp-day.rdp-day_today {
  font-weight: 400;
}
.bp6-datepicker .rdp-day:not([disabled], .rdp-day_selected):hover,
.bp6-datepicker .rdp-day:not([disabled], .rdp-day_selected):focus {
  background: rgba(143, 153, 168, 0.15);
  color: #1c2127;
}
.bp6-datepicker .rdp-day:not([disabled], .rdp-day_selected):active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-datepicker .rdp-day.rdp-day_disabled {
  background: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-datepicker .rdp-day.rdp-day_selected {
  background-color: #2d72d2;
  border-radius: 2px;
  color: #ffffff;
}
.bp6-datepicker .rdp-day.rdp-day_selected:hover {
  background-color: #215db0;
  color: #ffffff;
}
.bp6-datepicker .rdp-day.rdp-day_selected:active {
  background-color: #184a90;
}
.bp6-datepicker.bp6-datepicker-highlight-current-day .rdp-day.rdp-day_today {
  border: 1px solid rgba(17, 20, 24, 0.15);
}
.bp6-datepicker.bp6-datepicker-reverse-month-and-year .rdp-caption_dropdowns {
  flex-direction: row-reverse;
}
.bp6-datepicker-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bp6-datepicker-content > .bp6-divider {
  margin: 0;
  width: calc(100% - 8px);
}
.bp6-datepicker-month-select select,
.bp6-datepicker-year-select select {
  font-weight: 600;
  padding-left: 4px;
  padding-right: 16px;
}
.bp6-datepicker-month-select select + .bp6-icon,
.bp6-datepicker-year-select select + .bp6-icon {
  right: 2px;
}
.bp6-datepicker-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.bp6-dark .bp6-datepicker {
  background: #2f343c;
}
.bp6-dark .bp6-datepicker .rdp-week-number {
  color: #abb3bf;
}
.bp6-dark .bp6-datepicker .rdp-day.rdp-day_outside {
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-datepicker .rdp-day:not([disabled], .rdp-day_selected):hover,
.bp6-dark .bp6-datepicker .rdp-day:not([disabled], .rdp-day_selected):focus {
  background: rgba(143, 153, 168, 0.15);
  color: #ffffff;
}
.bp6-dark .bp6-datepicker .rdp-day:not([disabled], .rdp-day_selected):active {
  background: rgba(143, 153, 168, 0.3);
}
.bp6-dark .bp6-datepicker .rdp-day.rdp-day_selected {
  background-color: #2d72d2;
}
.bp6-dark .bp6-datepicker .rdp-day.rdp-day_selected:hover {
  background-color: #215db0;
}
.bp6-dark .bp6-datepicker .rdp-day.rdp-day_selected:active {
  background-color: #184a90;
}
.bp6-dark .bp6-datepicker .rdp-day.rdp-day_disabled {
  background: none;
  color: rgba(171, 179, 191, 0.6);
}
.bp6-dark .bp6-datepicker.bp6-datepicker-highlight-current-day .rdp-day.rdp-day_today {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.bp6-dark .bp6-datepicker .bp6-datepicker-footer {
  border-top-color: rgba(17, 20, 24, 0.4);
}
.bp6-datepicker-timepicker-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.bp6-datepicker-timepicker-wrapper .bp6-timepicker-arrow-row:empty + .bp6-timepicker-input-row {
  margin: 4px 0;
}
.bp6-datepicker-caption {
  display: flex;
  flex-direction: row;
}
.bp6-datepicker-caption > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-datepicker-caption > :first-child {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-datepicker-caption {
  justify-content: space-between;
  margin: 0 26px 4px;
}
.bp6-datepicker-caption .bp6-html-select select {
  font-weight: 600;
  padding-left: 4px;
  padding-right: 16px;
}
.bp6-datepicker-caption .bp6-html-select select + .bp6-icon {
  right: 2px;
}
.bp6-datepicker-caption + .bp6-divider {
  margin: 0;
}
.bp6-datepicker-caption.rdp-caption {
  display: flex;
  flex-direction: row;
}
.bp6-datepicker-caption.rdp-caption > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-datepicker-caption.rdp-caption > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-datepicker-caption.rdp-caption {
  justify-content: space-between;
  margin: 0;
}
.bp6-datepicker-caption.rdp-caption .bp6-html-select select {
  font-weight: 600;
  padding-left: 4px;
  padding-right: 16px;
}
.bp6-datepicker-caption.rdp-caption .bp6-html-select select + .bp6-icon {
  right: 2px;
}
.bp6-datepicker-caption.rdp-caption + .bp6-divider {
  margin: 0;
}
.bp6-datepicker-caption.rdp-caption .bp6-datepicker-nav-button-hidden {
  visibility: hidden;
}
.bp6-datepicker-month-select {
  flex-shrink: 1;
}
.bp6-datepicker-year-select {
  flex-shrink: 1;
  min-width: 60px;
}
.bp6-datepicker-caption-measure {
  font-weight: 600;
  padding-left: 4px;
}
.bp6-daterangepicker {
  display: flex;
}
.bp6-daterangepicker.bp6-daterangepicker-contiguous .rdp {
  min-width: 218px;
}
.bp6-daterangepicker.bp6-daterangepicker-single-month .rdp {
  min-width: 210px;
}
.bp6-daterangepicker .rdp.rdp-multiple_months .rdp-caption {
  display: flex;
  flex-direction: row;
}
.bp6-daterangepicker .rdp.rdp-multiple_months .rdp-caption > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.bp6-daterangepicker .rdp.rdp-multiple_months .rdp-caption > .bp6-fill {
  flex-grow: 1;
  flex-shrink: 1;
}
.bp6-daterangepicker .rdp.rdp-multiple_months .rdp-caption {
  justify-content: space-between;
}
.bp6-daterangepicker .rdp.rdp-multiple_months .rdp-caption_start .rdp-caption {
  flex-direction: row-reverse;
}
.bp6-daterangepicker .rdp.rdp-multiple_months .rdp-caption_start .rdp-caption::before {
  content: "";
  height: 30px;
  width: 30px;
}
.bp6-daterangepicker .rdp.rdp-multiple_months .rdp-caption_end .rdp-caption {
  flex-direction: row;
}
.bp6-daterangepicker .rdp.rdp-multiple_months .rdp-caption_end .rdp-caption::before {
  content: "";
  height: 30px;
  width: 30px;
}
.bp6-daterangepicker .rdp.rdp-multiple_months .rdp-nav {
  left: initial;
  position: initial;
  top: initial;
  transform: none;
}
.bp6-daterangepicker.bp6-datepicker .rdp-day_outside {
  visibility: hidden;
}
.bp6-daterangepicker.bp6-datepicker .rdp-day_hovered:not(.rdp-day_selected) {
  border-radius: 0;
  color: #215db0;
}
.bp6-daterangepicker.bp6-datepicker .rdp-day_hovered:not(.rdp-day_selected):not(.rdp-day_range_start, .rdp-day_range_middle, .rdp-day_range_end) {
  background-color: rgba(45, 114, 210, 0.1);
}
.bp6-daterangepicker.bp6-datepicker .rdp-day_range_middle {
  background-color: rgba(45, 114, 210, 0.1);
  border-radius: 0;
  color: #215db0;
}
.bp6-daterangepicker.bp6-datepicker .rdp-day_range_middle:hover {
  background-color: rgba(45, 114, 210, 0.2);
  color: #215db0;
}
.bp6-daterangepicker.bp6-datepicker .rdp-day_range_start:not(.rdp-day_range_end, .rdp-day_hovered_end) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.bp6-daterangepicker.bp6-datepicker .rdp-day_range_end:not(.rdp-day_range_start, .rdp_day_hovered_start) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.bp6-daterangepicker.bp6-datepicker .rdp-day_hovered_start:not(.rdp-day_hovered_end) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.bp6-daterangepicker.bp6-datepicker .rdp-day_hovered_end:not(.rdp-day_hovered_start) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.bp6-daterangepicker.bp6-datepicker-highlight-current-day .rdp-day.rdp-day_today {
  border: 1px solid rgba(17, 20, 24, 0.15);
}
.bp6-daterangepicker {
}
.bp6-daterangepicker.bp6-daterangepicker-reverse-month-and-year.bp6-daterangepicker-contiguous.rdp-caption_dropdowns {
  flex-direction: row-reverse;
}
.bp6-daterangepicker-calendars {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}
.bp6-daterangepicker-timepickers {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}
.bp6-daterangepicker-timepickers.bp6-daterangepicker-timepickers-stacked {
  align-items: center;
  flex-direction: column;
}
.bp6-daterangepicker-timepickers .bp6-timepicker-arrow-row:empty + .bp6-timepicker-input-row {
  margin: 4px 0;
}
.bp6-dark .bp6-daterangepicker.bp6-datepicker .rdp-day_hovered {
  color: #f6f7f9;
}
.bp6-dark .bp6-daterangepicker.bp6-datepicker .rdp-day_hovered:not(.rdp-day_selected, .rdp-day_range_start, .rdp-day_range_middle, .rdp-day_range_end) {
  background-color: rgba(45, 114, 210, 0.2);
}
.bp6-dark .bp6-daterangepicker.bp6-datepicker .rdp-day_range_middle {
  background-color: rgba(45, 114, 210, 0.2);
  color: #f6f7f9;
}
.bp6-dark .bp6-daterangepicker.bp6-datepicker .rdp-day_range_middle:hover {
  background-color: rgba(45, 114, 210, 0.4);
}
.bp6-dark .bp6-daterangepicker.bp6-datepicker-highlight-current-day .rdp-day.rdp-day_today {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.bp6-menu.bp6-daterangepicker-shortcuts {
  min-width: 120px;
  padding: 0;
}
.bp6-timepicker {
  white-space: nowrap;
}
.bp6-timepicker .bp6-timepicker-arrow-row {
  padding: 0 1px;
}
.bp6-timepicker .bp6-timepicker-arrow-button {
  color: #5f6b7c;
}
.bp6-timepicker .bp6-timepicker-arrow-button:hover {
  color: #1c2127;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-arrow-button {
  color: #abb3bf;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-arrow-button:hover {
  color: #f6f7f9;
}
.bp6-timepicker .bp6-timepicker-arrow-button {
  display: inline-block;
  padding: 4px 0;
  text-align: center;
  width: 32px;
}
.bp6-timepicker .bp6-timepicker-arrow-button + .bp6-timepicker-arrow-button {
  margin-left: 8px;
}
.bp6-timepicker .bp6-timepicker-arrow-button:hover {
  cursor: pointer;
}
.bp6-timepicker .bp6-timepicker-input-row {
  background: #ffffff;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(17, 20, 24, 0.2), inset 0 1px 1px rgba(17, 20, 24, 0.3);
  display: inline-block;
  height: 30px;
  line-height: 28px;
  padding: 0 1px;
  vertical-align: middle;
}
.bp6-timepicker .bp6-timepicker-divider-text {
  color: #5f6b7c;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  width: 8px;
}
.bp6-timepicker .bp6-timepicker-input {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  background: transparent;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 0 0 0 rgba(33, 93, 176, 0), 0 0 0 0 rgba(33, 93, 176, 0);
  color: #1c2127;
  height: 28px;
  outline: 0;
  padding: 0;
  text-align: center;
  transition: box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  width: 32px;
}
.bp6-timepicker .bp6-timepicker-input:focus {
  box-shadow: inset 0 0 0 1px rgba(33, 93, 176, 0.752), 0 0 0 1px rgba(33, 93, 176, 0.752);
}
.bp6-timepicker .bp6-timepicker-input::-webkit-outer-spin-button,
.bp6-timepicker .bp6-timepicker-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-primary {
  box-shadow:
    0 0 0 0 rgba(45, 114, 210, 0),
    0 0 0 0 rgba(45, 114, 210, 0),
    inset 0 0 0 1px #2d72d2,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-primary:focus {
  box-shadow:
    inset 0 0 0 1px rgba(45, 114, 210, 0.752),
    0 0 0 2px rgba(45, 114, 210, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-primary[readonly] {
  box-shadow: inset 0 0 0 1px #2d72d2;
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-primary:disabled,
.bp6-timepicker .bp6-timepicker-input.bp6-intent-primary.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-primary {
  box-shadow:
    0 0 0 0 rgba(76, 144, 240, 0),
    0 0 0 0 rgba(76, 144, 240, 0),
    inset 0 0 0 1px #4c90f0,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-primary:focus {
  box-shadow:
    inset 0 0 0 1px rgba(76, 144, 240, 0.752),
    0 0 0 2px rgba(76, 144, 240, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-primary[readonly] {
  box-shadow: inset 0 0 0 1px #4c90f0;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-primary:disabled,
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-primary.bp6-disabled {
  box-shadow: none;
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-success {
  box-shadow:
    0 0 0 0 rgba(35, 133, 81, 0),
    0 0 0 0 rgba(35, 133, 81, 0),
    inset 0 0 0 1px #238551,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-success:focus {
  box-shadow:
    inset 0 0 0 1px rgba(35, 133, 81, 0.752),
    0 0 0 2px rgba(35, 133, 81, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-success[readonly] {
  box-shadow: inset 0 0 0 1px #238551;
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-success:disabled,
.bp6-timepicker .bp6-timepicker-input.bp6-intent-success.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-success {
  box-shadow:
    0 0 0 0 rgba(50, 164, 103, 0),
    0 0 0 0 rgba(50, 164, 103, 0),
    inset 0 0 0 1px #32a467,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-success:focus {
  box-shadow:
    inset 0 0 0 1px rgba(50, 164, 103, 0.752),
    0 0 0 2px rgba(50, 164, 103, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-success[readonly] {
  box-shadow: inset 0 0 0 1px #32a467;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-success:disabled,
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-success.bp6-disabled {
  box-shadow: none;
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-warning {
  box-shadow:
    0 0 0 0 rgba(200, 118, 25, 0),
    0 0 0 0 rgba(200, 118, 25, 0),
    inset 0 0 0 1px #c87619,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-warning:focus {
  box-shadow:
    inset 0 0 0 1px rgba(200, 118, 25, 0.752),
    0 0 0 2px rgba(200, 118, 25, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-warning[readonly] {
  box-shadow: inset 0 0 0 1px #c87619;
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-warning:disabled,
.bp6-timepicker .bp6-timepicker-input.bp6-intent-warning.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-warning {
  box-shadow:
    0 0 0 0 rgba(236, 154, 60, 0),
    0 0 0 0 rgba(236, 154, 60, 0),
    inset 0 0 0 1px #ec9a3c,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-warning:focus {
  box-shadow:
    inset 0 0 0 1px rgba(236, 154, 60, 0.752),
    0 0 0 2px rgba(236, 154, 60, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-warning[readonly] {
  box-shadow: inset 0 0 0 1px #ec9a3c;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-warning:disabled,
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-warning.bp6-disabled {
  box-shadow: none;
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-danger {
  box-shadow:
    0 0 0 0 rgba(205, 66, 70, 0),
    0 0 0 0 rgba(205, 66, 70, 0),
    inset 0 0 0 1px #cd4246,
    inset 0 0 0 1px rgba(17, 20, 24, 0.2),
    inset 0 1px 1px rgba(17, 20, 24, 0.3);
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-danger:focus {
  box-shadow:
    inset 0 0 0 1px rgba(205, 66, 70, 0.752),
    0 0 0 2px rgba(205, 66, 70, 0.752),
    inset 0 1px 1px rgba(17, 20, 24, 0.2);
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-danger[readonly] {
  box-shadow: inset 0 0 0 1px #cd4246;
}
.bp6-timepicker .bp6-timepicker-input.bp6-intent-danger:disabled,
.bp6-timepicker .bp6-timepicker-input.bp6-intent-danger.bp6-disabled {
  box-shadow: none;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-danger {
  box-shadow:
    0 0 0 0 rgba(231, 106, 110, 0),
    0 0 0 0 rgba(231, 106, 110, 0),
    inset 0 0 0 1px #e76a6e,
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-danger:focus {
  box-shadow:
    inset 0 0 0 1px rgba(231, 106, 110, 0.752),
    0 0 0 2px rgba(231, 106, 110, 0.752),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-danger[readonly] {
  box-shadow: inset 0 0 0 1px #e76a6e;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-danger:disabled,
.bp6-dark .bp6-timepicker .bp6-timepicker-input.bp6-intent-danger.bp6-disabled {
  box-shadow: none;
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .bp6-timepicker .bp6-timepicker-input {
    border: 1px solid buttonborder;
  }
}
.bp6-timepicker .bp6-timepicker-ampm-select {
  margin-left: 4px;
}
.bp6-timepicker.bp6-disabled .bp6-timepicker-input-row {
  background: rgba(211, 216, 222, 0.5);
  box-shadow: none;
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
  resize: none;
}
.bp6-timepicker.bp6-disabled .bp6-timepicker-input-row::-moz-placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-timepicker.bp6-disabled .bp6-timepicker-input-row:-ms-input-placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-timepicker.bp6-disabled .bp6-timepicker-input-row::placeholder {
  color: rgba(95, 107, 124, 0.6);
}
.bp6-timepicker.bp6-disabled .bp6-timepicker-input,
.bp6-timepicker.bp6-disabled .bp6-timepicker-divider-text {
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-timepicker.bp6-disabled .bp6-timepicker-arrow-button,
.bp6-timepicker.bp6-disabled .bp6-timepicker-arrow-button:hover {
  color: rgba(95, 107, 124, 0.6);
  cursor: not-allowed;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input-row {
  background: rgba(17, 20, 24, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 1px 0 rgba(255, 255, 255, 0.3);
}
.bp6-dark .bp6-timepicker .bp6-timepicker-divider-text {
  color: #abb3bf;
}
.bp6-dark .bp6-timepicker .bp6-timepicker-input {
  color: #f6f7f9;
}
.bp6-dark .bp6-timepicker.bp6-disabled .bp6-timepicker-input,
.bp6-dark .bp6-timepicker.bp6-disabled .bp6-timepicker-divider-text,
.bp6-dark .bp6-timepicker.bp6-disabled .bp6-timepicker-arrow-button,
.bp6-dark .bp6-timepicker.bp6-disabled .bp6-timepicker-arrow-button:hover {
  color: rgba(171, 179, 191, 0.6);
}

/* node_modules/@blueprintjs/select/lib/css/blueprint-select.css */
.bp6-multi-select {
  min-width: 150px;
}
.bp6-multi-select-popover .bp6-popover-content {
  padding: 4px;
}
.bp6-multi-select-popover .bp6-multi-select-popover-default-width {
  max-width: 350px;
}
.bp6-multi-select-popover .bp6-multi-select-popover-tag-input-margin {
  margin-bottom: 1px;
}
.bp6-multi-select-popover .bp6-menu {
  margin-left: -4px;
  margin-right: -4px;
  max-height: 300px;
  max-width: 400px;
  overflow: auto;
}
.bp6-multi-select-popover.bp6-popover-match-target-width {
  width: 100%;
}
.bp6-multi-select-popover.bp6-popover-match-target-width .bp6-menu {
  max-width: none;
  min-width: 0;
}
.bp6-omnibar {
  filter: blur(0);
  opacity: 1;
}
.bp6-omnibar.bp6-overlay-enter,
.bp6-omnibar.bp6-overlay-appear {
  filter: blur(20px);
  opacity: 0;
}
.bp6-omnibar.bp6-overlay-enter-active,
.bp6-omnibar.bp6-overlay-appear-active {
  filter: blur(0);
  opacity: 1;
  transition-delay: 0;
  transition-duration: 200ms;
  transition-property: filter, opacity;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-omnibar.bp6-overlay-exit {
  filter: blur(0);
  opacity: 1;
}
.bp6-omnibar.bp6-overlay-exit-active {
  filter: blur(20px);
  opacity: 0;
  transition-delay: 0;
  transition-duration: 200ms;
  transition-property: filter, opacity;
  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);
}
.bp6-omnibar {
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow:
    0 0 0 1px rgba(17, 20, 24, 0.1),
    0 4px 8px rgba(17, 20, 24, 0.2),
    0 18px 46px 6px rgba(17, 20, 24, 0.2);
  left: calc(50% - 250px);
  top: 20vh;
  width: 500px;
  z-index: 21;
}
.bp6-omnibar .bp6-input {
  background-color: transparent;
  border-radius: 0;
}
.bp6-omnibar .bp6-input,
.bp6-omnibar .bp6-input:focus {
  box-shadow: none;
}
.bp6-omnibar .bp6-menu {
  background-color: transparent;
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(17, 20, 24, 0.15);
  max-height: calc(60vh - 40px);
  overflow: auto;
}
.bp6-omnibar .bp6-menu:empty {
  display: none;
}
.bp6-dark .bp6-omnibar,
.bp6-omnibar.bp6-dark {
  background-color: #2f343c;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 4px 8px rgba(17, 20, 24, 0.4),
    0 18px 46px 6px rgba(17, 20, 24, 0.4);
}
.bp6-omnibar-overlay .bp6-overlay-backdrop {
  background-color: rgba(17, 20, 24, 0.2);
}
.bp6-select-popover .bp6-popover-content {
  padding: 4px;
}
.bp6-select-popover .bp6-input-group {
  margin-bottom: 0;
}
.bp6-select-popover .bp6-menu {
  margin-left: -4px;
  margin-right: -4px;
  max-height: 300px;
  max-width: 400px;
  overflow: auto;
  padding: 0 4px;
}
.bp6-select-popover .bp6-menu:not(:first-child) {
  padding-top: 4px;
}
.bp6-select-popover.bp6-popover-match-target-width {
  width: 100%;
}
.bp6-select-popover.bp6-popover-match-target-width .bp6-menu {
  max-width: none;
  min-width: 0;
}
.bp6-suggest-popover .bp6-menu {
  max-height: 300px;
  max-width: 400px;
  overflow: auto;
}
.bp6-suggest-popover.bp6-popover-match-target-width {
  width: 100%;
}
.bp6-suggest-popover.bp6-popover-match-target-width .bp6-menu {
  max-width: none;
  min-width: 0;
}
/*! Bundled license information:

@simonwep/pickr/dist/themes/monolith.min.css:
  (*! Pickr 1.9.1 MIT | https://github.com/Simonwep/pickr *)
*/
/*# sourceMappingURL=/assets/application.css.map */
