/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../node_modules/postcss-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/tag/tag.scss ***!
  \*******************************************************************************************************************************************************************************************/
/** GLOBALS **/
/************
/** VARIABLES
/****************************************/
/* EASING */
/* Font settings */
/** GLOBALS **/
/************
/** DEFINITION OF OWN MIXINS
/****************************************/
@keyframes shineEffect {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.tags__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/** GLOBALS **/
/** GLOBALS **/
/** GLOBALS **/
.tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.tag {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.0175rem;
  line-height: 0.875rem;
  padding: 5px 12px;
  border-radius: var(--border-radius-l);
  display: inline-flex;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.tag.tag--blue {
  color: var(--color-content-on-action-2-for-darkmode);
  border: 1px solid var(--color-surface-action-3-for-darkmode);
  background: var(--color-surface-action-3-for-darkmode);
}
.tag.tag--blue svg {
  fill: var(--color-content-on-action-2-for-darkmode);
}
.tag.tag--flight-blue {
  color: var(--color-content-on-action-2-for-darkmode);
  border: 1px solid var(--color-surface-action-3-for-darkmode);
  background: var(--color-surface-action-3-for-darkmode);
}
.tag.tag--flight-blue svg {
  fill: var(--color-content-on-action-2-for-darkmode);
}
.tag.tag--flight-black {
  color: var(--color-content-base-2);
  border: 1px solid var(--color-surface-action-3-for-darkmode);
  background: var(--color-surface-action-3-for-darkmode);
}
.tag.tag--flight-black svg {
  fill: var(--color-content-on-action-2-for-darkmode);
}
.tag.tag--red {
  border: 1px solid var(--color-surface-error-1-for-darkmode);
  background: var(--color-surface-error-1-for-darkmode);
  color: var(--color-content-error-1);
}
.tag.tag--red svg {
  fill: var(--color-content-error-1);
}
.tag.tag--flight-red {
  background: var(--color-surface-error-1-for-darkmode);
  color: var(--color-content-error-1);
}
.tag.tag--flight-red svg {
  fill: var(--color-content-error-1);
}
.tag.tag--deal {
  background: var(--color-surface-action-3-for-darkmode);
  color: var(--color-content-on-action-2-for-darkmode);
}
.tag.tag--deal svg {
  fill: var(--color-content-on-action-2-for-darkmode);
}
.tag.tag--ad {
  background: var(--color-surface-base-5);
  color: var(--color-content-base-6);
}
.tag.tag--ad svg {
  fill: var(--color-content-base-6);
}
.tag.tag--default {
  border: 1px solid var(--color-content-on-action-2);
  background: var(--color-surface-base-1);
  color: var(--color-content-on-action-2);
}
.tag.tag--default svg {
  fill: var(--color-content-on-action-2);
}
.tag.tag--job {
  border: 1px solid var(--color-border-base-1);
  background: transparent;
  color: var(--color-content-base-2);
}
.tag.tag--job svg {
  fill: var(--color-content-base-2);
}
.tag[disabled] {
  background: transparent;
  color: var(--color-content-disabled-1);
  border: 1px solid var(--color-content-disabled-1);
  cursor: not-allowed;
}
.tag[disabled] svg {
  fill: var(--color-content-disabled-1);
}
.tag > span {
  display: inline-block;
  max-width: 210px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  padding-block: 3px;
}
.tag:has(svg) {
  padding-right: 42px;
  position: relative;
}
.tag:has(svg) svg {
  position: absolute;
  right: 12px;
  top: 4px;
}
.tag:has(svg).tag--icon-reverse {
  padding-right: 12px;
  padding-left: 42px;
}
.tag:has(svg).tag--icon-reverse svg {
  right: unset;
  left: 12px;
}
.tag:focus-visible {
  outline-offset: 2px;
  outline-color: var(--color-border-focus-1);
  outline-style: solid;
  outline-width: 2px;
  border-radius: var(--border-radius-xl);
}

.theme--dark .siteheader__search-tags .tag--blue {
  color: var(--color-content-base-6);
  border: 1px solid var(--color-border-base-6);
  background: transparent;
}
.theme--dark .siteheader__search-tags .tag--blue svg {
  fill: var(--color-content-base-6);
}
.theme--dark .parking-map__tags .tag--default {
  color: var(--color-content-base-2);
  border: 1px solid var(--color-border-base-1);
  background: transparent;
}
.theme--dark .parking-map__tags .tag--default svg {
  fill: var(--color-content-base-2);
}
