/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.Tag {
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
  border-radius: 3px;
  color: #040404;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  overflow: hidden;
}
.Button .Tag {
  margin: -4px 0 -4px 8px;
}
.Tag.Tag--critical, .Tag.Tag--warning, .Tag.Tag--success, .Tag.Tag--info, .Tag.Tag--inactive, .Tag.Tag--inverse {
  color: white;
}
.Tag.Tag--critical .Tag__close:hover, .Tag.Tag--warning .Tag__close:hover, .Tag.Tag--success .Tag__close:hover, .Tag.Tag--info .Tag__close:hover, .Tag.Tag--inactive .Tag__close:hover, .Tag.Tag--inverse .Tag__close:hover {
  color: white;
}
.Tag.Tag--critical {
  background-color: #e13212;
}
.Tag.Tag--warning {
  background-color: #b14c00;
}
.Tag.Tag--success {
  background-color: #007a4d;
}
.Tag.Tag--info {
  background-color: #6954c0;
}
.Tag.Tag--inactive, .Tag.Tag--inverse {
  background-color: #6a7a85;
}
.Tag.Tag--default {
  background-color: #eaeff2;
  color: #444445;
  font-weight: 400;
}
.Tag.Tag--compact {
  font-size: 12px;
}
.Tag.Tag--subtle:not(.Tag--badge) {
  font-weight: 400;
}
.Tag.Tag--subtle.Tag--critical {
  background-color: #ffece9;
  color: #bf2a00;
}
.Tag.Tag--subtle.Tag--warning {
  background-color: #ffeccc;
  color: #444445;
}
.Tag.Tag--subtle.Tag--success {
  background-color: #cef8e0;
  color: #005132;
}
.Tag.Tag--subtle.Tag--info {
  background-color: #f1edff;
  color: #422799;
}
.Tag.Tag--subtle.Tag--inactive, .Tag.Tag--subtle.Tag--inverse {
  background-color: #d0d8dd;
  color: #444445;
}
.Tag.Tag--subtle.Tag--default {
  background-color: transparent;
  box-shadow: 0 0 0 1px #d0d8dd inset;
  color: var(--colorsTextOnGrey, #444445);
}
.Tag.Tag--subtle.Tag--default .Tag__close.Button {
  color: inherit;
}
.Tag.Tag--badge {
  border-radius: 12px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}
.Tag.Tag--badge.Tag--compact {
  border-radius: 9px;
  min-width: 18px;
}
.Tag .Tag__icon {
  padding-left: 6px;
  line-height: normal;
  margin-right: -0.2em;
}
.Tag--compact.Tag .Tag__icon {
  padding-left: 4px;
}

.Tag .Tag__icon .a-Icon {
  margin-bottom: -0.2em;
}
.Tag--compact.Tag .Tag__icon .a-Icon {
  margin-bottom: 0;
}

.Tag .Tag__body {
  /* ... */
  margin: 4px 8px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  white-space: nowrap;
  width: 100%;
  max-width: 270px;
}
.Tag--compact.Tag .Tag__body {
  margin: 2px 6px;
}

.Tag .Tag__body > .a-Icon {
  margin-top: -0.1em;
  margin-bottom: -0.1em;
  position: relative;
  top: -1px;
}
.Tag .Tag__body > .a-Icon:first-child {
  margin-right: 6px;
}
.Tag .Tag__close.Button {
  align-items: center;
  color: #ffffff;
  padding: 0 8px;
  margin-left: -4px;
  border-radius: 0;
}
.Tag--subtle.Tag--critical.Tag .Tag__close.Button {
  color: #bf2a00;
}

.Tag--subtle.Tag--warning.Tag .Tag__close.Button {
  color: #444445;
}

.Tag--subtle.Tag--success.Tag .Tag__close.Button {
  color: #005132;
}

.Tag--subtle.Tag--info.Tag .Tag__close.Button {
  color: #422799;
}

.Tag--default.Tag .Tag__close.Button,
.Tag--subtle.Tag--inactive.Tag .Tag__close.Button,
.Tag--subtle.Tag--inverse.Tag .Tag__close.Button {
  color: #444445;
}

.Tag .Tag__close.Button .a-Icon {
  display: inline;
}
.Tag .Tag__close.Button .a-Icon > svg {
  height: 14px;
  width: 14px;
}
.Tag--compact.Tag .Tag__close.Button .a-Icon > svg {
  height: 12px;
  width: 12px;
}

.Tag--critical.Tag .Tag__close.Button:hover {
  background-color: #bf2a00;
}

.Tag--warning.Tag .Tag__close.Button:hover {
  background-color: #7a2f00;
}

.Tag--success.Tag .Tag__close.Button:hover {
  background-color: #005132;
}

.Tag--info.Tag .Tag__close.Button:hover {
  background-color: #422799;
}

.Tag--inactive.Tag .Tag__close.Button:hover,
.Tag--inverse.Tag .Tag__close.Button:hover {
  background-color: #576671;
}

.Tag--default.Tag .Tag__close.Button:hover {
  background-color: #d0d8dd;
}

.Tag--subtle.Tag--critical.Tag .Tag__close.Button:hover {
  background-color: rgba(191, 42, 0, 0.2);
}

.Tag--subtle.Tag--warning.Tag .Tag__close.Button:hover {
  background-color: rgba(122, 47, 0, 0.2);
}

.Tag--subtle.Tag--success.Tag .Tag__close.Button:hover {
  background-color: rgba(0, 81, 50, 0.2);
}

.Tag--subtle.Tag--info.Tag .Tag__close.Button:hover {
  background-color: rgba(66, 39, 153, 0.2);
}

.Tag--subtle.Tag--inactive.Tag .Tag__close.Button:hover,
.Tag--subtle.Tag--inverse.Tag .Tag__close.Button:hover {
  background-color: rgba(87, 102, 113, 0.2);
}

.Tag--subtle.Tag--default.Tag .Tag__close.Button:hover {
  background-color: rgba(208, 216, 221, 0.2);
}

.Tag .Tag__close.Button:focus {
  box-shadow: none;
  background-color: rgba(4, 4, 4, 0.2);
}
.Tag--subtle.Tag .Tag__close.Button:focus,
.Tag--default.Tag .Tag__close.Button:focus {
  background-color: rgba(4, 4, 4, 0.1);
}

.Tag--lightText,
.Tag--lightText .Tag__close.Button,
.Tag--lightText .Tag__close.Button:hover {
  color: #fafafa;
}

.Tag--darkText,
.Tag--darkText .Tag__close.Button,
.Tag--darkText .Tag__close.Button:hover {
  color: #2d2e31;
}

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