/* src/css/_colors.css */
:root {
  --ids-color-sot: rgb(31, 33, 30);
  --ids-color-sot-10: rgb(232, 232, 232);
  --ids-color-sot-20: rgb(210, 211, 210);
  --ids-color-sot-50: rgb(143, 144, 142);
  --ids-color-sot-60: rgb(98, 99, 97);
  --ids-color-sot-80: rgb(76, 77, 75);
  --ids-color-stein: rgb(126, 128, 130);
  --ids-color-stein-10: rgb(242, 242, 242);
  --ids-color-stein-20: rgb(229, 230, 230);
  --ids-color-stein-30: rgb(216, 217, 217);
  --ids-color-stein-50: rgb(190, 191, 193);
  --ids-color-stein-80: rgb(152, 153, 155);
  --ids-color-skygge: rgb(244, 243, 243);
  --ids-color-himmel: #fffdfa;
  --ids-color-mose: rgb(63, 70, 60);
  --ids-color-mose-10: rgba(63, 70, 60, 0.1);
  --ids-color-gress: rgb(73, 97, 75);
  --ids-color-gress-10: rgba(73, 97, 75, 0.1);
  --ids-color-gress-50: rgba(73, 97, 75, 0.5);
  --ids-color-gress-80: rgba(73, 97, 75, 0.8);
  --ids-color-gressGult-dark: #7f602f;
  --ids-color-gressGult: rgb(168, 127, 62);
  --ids-color-gressGult-10: rgb(246, 242, 235);
  --ids-color-gressGult-20: rgb(238, 229, 216);
  --ids-color-lyng: rgb(109, 50, 50);
}

/* src/css/_typography.css */
:root {
  --font-body: "Inter", sans-serif;
  --font-heading: "Alegreya", serif;
}
body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 24px;
}
p {
  display: block;
  margin-bottom: 12px;
  margin-top: 0;
}
strong {
  font-weight: 600;
}
.font-weight--bold {
  font-weight: 600;
}
.small-meta {
  font-size: 10px;
  line-height: 12px;
}

/* src/css/core.css */
:root {
  --ids-border-radius: 0.5rem;
}

/* src/components/AlertBanner/AlertBanner.css */
.ids-alert-banner {
  background-color: var(--ids-color-gressGult-20);
  border-bottom: 1px solid var(--ids-color-gressGult);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.ids-alert-banner__container {
  color: var(--ids-color-gressGult-dark);
  font-size: 12px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}
.ids-alert-banner__message {
  margin-left: 20px;
  padding-left: 5px;
  position: relative;
  width: 100%;
}
.ids-alert-banner__message a {
  color: var(--ids-color-gress);
}
.ids-alert-banner__message a:hover {
  color: var(--ids-color-gress-80);
}
.ids-alert-banner__exclamation-triangle {
  margin-right: 5px;
  width: 14px;
  fill: var(--ids-color-gressGult-dark);
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
@media (max-width: 1280px) {
  .ids-alert-banner__container {
    padding-left: 35px;
    padding-right: 35px;
  }
}

/* src/components/Button/Button.css */
.ids-button {
  background-color: transparent;
  box-shadow: initial;
  border-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-radius: var(--ids-border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0px;
  padding: 10px 44px;
  position: relative;
  text-transform: initial;
  transition: all 0.3s;
  color: var(--ids-color-sot);
  margin: 2px;
  cursor: pointer;
}
.ids-button:active {
  top: 2px;
}
.ids-button:disabled {
  opacity: 0.6;
  cursor: auto;
}
.ids-button:disabled:active {
  top: 0;
}
.ids-button.ids-button-primary {
  background-color: var(--ids-color-mose);
  color: var(--ids-color-himmel);
}
.ids-button.ids-button-secondary {
  border-color: var(--ids-color-sot);
  color: var(--ids-color-sot);
}
.ids-button.ids-button-secondary:hover {
  background-color: var(--ids-color-sot);
  color: var(--ids-color-skygge);
}
.ids-button.ids-button-danger {
  background-color: var(--ids-color-lyng);
  color: var(--ids-color-skygge);
}
.ids-button.ids-button-danger:hover {
  border-color: var(--ids-color-lyng);
  background-color: transparent;
  color: var(--ids-color-lyng);
}
.ids-button.ids-button-tertiary:hover {
  background-color: var(--ids-color-skygge);
}
.ids-button.ids-button-tertiary--mobile {
  text-decoration: underline;
  margin: 0;
  padding: 0;
}
.ids-button__busy .ids-button-text {
  opacity: 0;
}
.ids-button__busy .ids-button-icon::after {
  animation: drawCircular 1.2s linear infinite;
  border: 2px solid var(--ids-color-sot);
  border-color: var(--ids-color-sot) transparent var(--ids-color-sot) transparent;
  border-radius: 50%;
  content: " ";
  display: block;
  height: 18px;
  left: calc(50% - 10px);
  margin: auto;
  position: absolute;
  top: 8px;
  width: 18px;
}
@keyframes drawCircular {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ids-button-primary .ids-button__busy .ids-button-icon::after,
.ids-button-secondary:hover .ids-button__busy .ids-button-icon::after,
.ids-button-danger .ids-button__busy .ids-button-icon::after {
  border: 2px solid var(--ids-color-himmel);
  border-color: var(--ids-color-himmel) transparent var(--ids-color-himmel) transparent;
}
.ids-button-danger:hover .ids-button__busy .ids-button-icon::before,
.ids-button-danger:hover .ids-button__busy .ids-button-icon::after {
  color: var(--ids-color-lyng);
  border-color: var(--ids-color-lyng) transparent var(--ids-color-lyng) transparent;
}
.ids-button__success .ids-button-text {
  opacity: 0;
}
.ids-button__success .ids-button-icon {
  display: inline-block;
  height: 18px;
  left: calc(50% - 10px);
  opacity: 1;
  position: absolute;
  transition: width 0.3s ease;
  top: 7px;
  width: 18px;
}
.ids-button__success .ids-button-icon::before,
.ids-button__success .ids-button-icon::after {
  background: var(--ids-color-sot);
  content: "";
  position: absolute;
  transform-origin: left bottom;
  transform: translateX(10px) rotate(-45deg);
}
.ids-button__success .ids-button-icon::before {
  height: 0;
  left: 0px;
  top: 50%;
  width: 2px;
  animation-name: drawSuccessBefore;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes drawSuccessBefore {
  0% {
    height: 0;
  }
  100% {
    height: 50%;
  }
}
.ids-button__success .ids-button-icon::after {
  bottom: 0;
  height: 2px;
  left: 0px;
  width: 0;
  animation-name: drawSuccessAfter;
  animation-duration: 0.2s;
  animation-delay: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes drawSuccessAfter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.ids-button__failure .ids-button-text {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.ids-button__failure .ids-button-icon {
  height: 0;
  opacity: 1;
  transform: scale(0) translate(-9px, -9px);
  width: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  animation-delay: 0.1s;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-name: drawCross;
  animation-timing-function: ease-in-out;
}
@keyframes drawCross {
  0% {
    transform: scale(0) translate(-9px, -9px);
  }
  100% {
    transform: scale(1) translate(-9px, -9px);
  }
}
.ids-button__failure .ids-button-icon::before,
.ids-button__failure .ids-button-icon::after {
  background: var(--ids-color-sot);
  content: "";
  height: 2px;
  width: 18px;
  position: absolute;
  left: 0;
  top: 8px;
}
.ids-button__failure .ids-button-icon::before {
  transform: rotate(-45deg);
}
.ids-button__failure .ids-button-icon::after {
  transform: rotate(45deg);
}
.ids-button.ids-button-primary .ids-button__success .ids-button-icon::before,
.ids-button.ids-button-primary .ids-button__success .ids-button-icon::after,
.ids-button.ids-button-primary .ids-button__failure .ids-button-icon::before,
.ids-button.ids-button-primary .ids-button__failure .ids-button-icon::after,
.ids-button.ids-button-secondary:hover .ids-button__success .ids-button-icon::before,
.ids-button.ids-button-secondary:hover .ids-button__success .ids-button-icon::after,
.ids-button.ids-button-secondary:hover .ids-button__failure .ids-button-icon::before,
.ids-button.ids-button-secondary:hover .ids-button__failure .ids-button-icon::after,
.ids-button.ids-button-danger .ids-button__success .ids-button-icon::before,
.ids-button.ids-button-danger .ids-button__success .ids-button-icon::after,
.ids-button.ids-button-danger .ids-button__failure .ids-button-icon::before,
.ids-button.ids-button-danger .ids-button__failure .ids-button-icon::after {
  background: var(--ids-color-himmel);
}
.ids-button.ids-button-danger:hover .ids-button__success .ids-button-icon::before,
.ids-button.ids-button-danger:hover .ids-button__success .ids-button-icon::after,
.ids-button.ids-button-danger:hover .ids-button__failure .ids-button-icon::before,
.ids-button.ids-button-danger:hover .ids-button__failure .ids-button-icon::after {
  background: var(--ids-color-lyng);
}
.ids-button[data-state=retry] {
  overflow: hidden;
  padding-left: 15px;
  padding-right: 15px;
}
.ids-button .ids-button__retry {
  align-items: center;
  display: flex;
}
.ids-button__retry .ids-button-text {
  left: 0;
  margin-right: 35px;
  opacity: 1;
  position: relative;
}
.ids-button__retry .ids-button-icon {
  display: inline-block;
  height: 18px;
  position: absolute;
  right: 15px;
  top: 10px;
  width: 18px;
}
.ids-button__retry .ids-button-icon::before,
.ids-button__retry .ids-button-icon::after {
  box-sizing: border-box;
  content: "";
  display: block;
}
.ids-button__retry .ids-button-icon::before {
  border-color: transparent var(--ids-color-sot) var(--ids-color-sot) var(--ids-color-sot);
  border-radius: 50%;
  border-style: solid;
  border-width: 2px;
  height: 16px;
  width: 16px;
  transform: rotate(45deg);
}
.ids-button__retry .ids-button-icon::after {
  border-color: transparent transparent transparent var(--ids-color-sot);
  border-style: solid;
  border-width: 4px 0 4px 5px;
  height: 0;
  width: 0;
  position: absolute;
  left: calc(50% - 2px);
  top: -3px;
}
.ids-button__retry,
.ids-button__retry .ids-button-icon,
.ids-button[data-state=retry],
.ids-button__retry .ids-button-text {
  transition-duration: 0.25s;
  transition-property:
    left,
    right,
    opacity,
    padding;
  transition-timing-function: ease-in-out;
}
.ids-button:hover .ids-button__retry .ids-button-text {
  left: -100%;
  opacity: 0;
}
.ids-button:hover .ids-button__retry .ids-button-icon {
  right: calc(50% - 10px);
}
.ids-button-primary .ids-button__retry .ids-button-icon::before,
.ids-button-secondary:hover .ids-button__retry .ids-button-icon::before,
.ids-button-danger .ids-button__retry .ids-button-icon::before {
  border-color: transparent var(--ids-color-himmel) var(--ids-color-himmel) var(--ids-color-himmel);
}
.ids-button-primary .ids-button__retry .ids-button-icon::after,
.ids-button-secondary:hover .ids-button__retry .ids-button-icon::after,
.ids-button-danger .ids-button__retry .ids-button-icon::after {
  border-color: transparent transparent transparent var(--ids-color-himmel);
}
.ids-button-danger:hover .ids-button__retry .ids-button-icon::before {
  border-color: transparent var(--ids-color-lyng) var(--ids-color-lyng) var(--ids-color-lyng);
}
.ids-button-danger:hover .ids-button__retry .ids-button-icon::after {
  border-color: transparent transparent transparent var(--ids-color-lyng);
}

/* src/components/Heading/Heading.css */
.ids-h1,
.ids-h2,
.ids-h3,
.ids-h4,
.ids-h5 {
  display: block;
  margin-top: 0;
}
.ids-h1 {
  color: rgba(64, 64, 64, 1);
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  margin-bottom: 10px;
}
.ids-h2 {
  color: rgba(64, 64, 64, 1);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 6px;
}
.ids-h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 12px;
}
.ids-h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}
.ids-h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 770px) {
  .ids-h1 {
    font-size: 26px;
  }
  .ids-h2 {
    font-size: 17px;
  }
  .ids-h3 {
    font-size: 15px;
    font-weight: bold;
  }
  .ids-h4 {
    font-size: 14px;
  }
}

/* src/components/Label/Label.css */
.ids-label-tag {
  background-color: var(--ids-color-stein-30);
  font-family: var(--font-body);
  letter-spacing: 0.4px;
  padding: 1px 8px 1px 8px;
}
.ids-label-meta {
  color: var(--ids-color-sot-80);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}
.ids-label-default {
  font-family: var(--font-body);
  letter-spacing: 0.4px;
}
.ids-label-strong {
  font-weight: 600;
}
.ids-label-small {
  font-size: 12px;
}
.ids-label-medium {
  font-size: 14px;
}
.ids-label-large {
  font-size: 16px;
}
.ids-label-uppercase {
  text-transform: uppercase;
}
.ids-label__textColor--gress {
  color: var(--ids-color-gress);
}
.ids-label__textColor--gressgult {
  color: var(--ids-color-gressGult);
}
.ids-label__textColor--himmel {
  color: var(--ids-color-himmel);
}
.ids-label__textColor--lyng {
  color: var(--ids-color-lyng);
}
.ids-label__textColor--mose {
  color: var(--ids-color-mose);
}
.ids-label__textColor--skygge {
  color: var(--ids-color-skygge);
}
.ids-label__textColor--sot {
  color: var(--ids-color-sot);
}
.ids-label__textColor--sot-60 {
  color: var(--ids-color-sot-60);
}
.ids-label__textColor--stein {
  color: var(--ids-color-stein);
}

/* src/components/Card/Card.css */
.ids-card {
  border: 1px solid var(--ids-color-stein-20);
  display: flex;
  flex-direction: column;
  max-height: 600px;
  min-width: 260px;
  position: relative;
  width: 100%;
}
.ids-card[data-href=true]:hover {
  background-color: var(--ids-color-skygge);
}
.ids-card__header,
.ids-card__image {
  max-height: 248px;
  min-height: 28px;
}
.ids-card__header {
  position: relative;
}
.ids-card__image {
  object-fit: cover;
  width: 100%;
}
.ids-card__footer {
  text-align: right;
  min-height: 69px;
}
.ids-card__divider--vertical {
  border-left: 1px solid var(--ids-color-sot);
  height: 10px;
  margin: 0 5px;
}
.ids-card__divider--horizontal {
  border-bottom: 1px solid var(--ids-color-stein-20);
  margin-bottom: 15px;
  margin-top: 5px;
  width: 50px;
}
.ids-card__contentContainer {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}
.ids-card__heading {
  display: -webkit-box;
  max-height: 60px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.ids-card__metadata {
  align-items: center;
  display: flex;
}
.ids-card__link {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}
.ids-card__tagList {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}
.ids-card__tagList:after {
  content: "";
  display: table;
  clear: both;
}
.ids-card__tagList li:not(:first-child):before {
  color: var(--ids-color-sot-50);
  content: "\2022";
  font-size: 12px;
  margin-left: 6px;
  margin-right: 6px;
}
.ids-card__tagList li {
  float: left;
  line-height: 12px;
}
.ids-card__tagList span {
  color: var(--ids-color-sot-60);
}
.ids-card__footer-elements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-top: 5px;
  word-break: break-word;
}
.ids-card__footer-element-left {
  text-align: left;
}
.ids-card__footer-element-right {
  grid-column: 2;
}
.ids-card__banner {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border: 25px solid transparent;
  border-bottom: 25px solid var(--ids-color-sot-10);
  box-sizing: content-box;
  color: var(--ids-color-sot-80);
  padding: 0 10px;
  position: absolute;
  right: -50px;
  top: 32px;
  size: 11px;
  width: 144px;
}
.ids-card__banner-text {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .ids-card__header,
  .ids-card__image {
    max-height: 200px;
  }
  p {
    margin-bottom: 7px;
  }
  .ids-card__contentContainer {
    padding: 15px;
  }
  .ids-card__tagList {
    margin-bottom: 5px;
  }
  .ids-card__heading {
    font-size: 16px;
  }
  .ids-card__metadata span {
    font-size: 10px;
  }
  .ids-card__body {
    font-size: 12px;
  }
  .ids-card__footer {
    min-height: 64px;
  }
  .ids-card__banner {
    padding: 0 10px;
    right: -40px;
    top: 8px;
    size: 11px;
    width: 75px;
  }
}

/* src/components/Checkbox/Checkbox.css */
.ids-checkbox-container {
  display: block;
}
.ids-checkbox {
  display: flex;
  --checkbox-size: 16px;
}
.ids-checkbox-input-container {
  padding-top: 3px;
  position: relative;
}
.ids-checkbox [type=checkbox] {
  appearance: none;
  user-select: none;
  display: inline-block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  height: var(--checkbox-size);
  width: var(--checkbox-size);
  background-origin: border-box;
  box-sizing: content-box;
  background-color: var(--ids-color-himmel);
  color: var(--ids-color-mose);
  border-color: var(--ids-color-mose);
  border-style: solid;
  border-radius: 3px;
  border-width: 1px;
}
.ids-checkbox-label-container {
  display: inline;
  padding-left: 0.75rem;
}
.ids-checkbox label {
  cursor: pointer;
  padding: 0;
}
.ids-checkbox [type=checkbox].ids-checkbox--filled:checked {
  background-color: var(--ids-color-mose);
}
.ids-checkbox [type=checkbox].ids-checkbox--filled:after {
  box-shadow: 4px 4px 0px 0px var(--ids-color-himmel);
}
.ids-checkbox-disabled,
.ids-checkbox [type=checkbox]:disabled {
  opacity: 0.6;
  cursor: auto;
}
.ids-checkbox-errorMessage {
  color: var(--ids-color-stein);
  font-size: 12px;
  display: block;
  margin-left: 30px;
}
.ids-checkbox [type=checkbox].ids-checkbox--error {
  border-color: var(--ids-color-lyng);
  box-shadow: 0px 0px 1px 1px var(--ids-color-lyng);
}
.ids-checkbox [type=checkbox]:after {
  content: "";
  background-color: transparent;
  display: block;
  position: absolute;
  top: 11px;
  left: 50%;
  width: 0.6rem;
  height: var(--checkbox-size);
  box-shadow: 4px 4px 0px 0px var(--ids-color-mose);
  transform: translate(-50%, -85%) scale(0) rotate(45deg);
}
.ids-checkbox [type=checkbox]:checked:after {
  animation: toggleOnCheckbox 0.2s ease forwards;
}
@keyframes toggleOnCheckbox {
  0% {
    opacity: 0;
    transform: translate(-50%, -85%) scale(0.7) rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -85%) scale(0.8) rotate(45deg);
  }
}

/* src/components/ContextualTextInput/ContextualTextInput.css */
.ids-contextual-text-input__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2px;
}
.ids-contextual-text-input__action-container {
  display: flex;
  height: 43px;
  max-height: 43px;
  width: 100%;
}
.ids-contextual-text-input__dropdown-container {
  position: relative;
  margin: 0;
  flex-grow: 1;
}
.ids-contextual-text-input__dropdown {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--ids-color-stein-10);
  border: 2px solid transparent;
  border-right: 1px solid var(--ids-color-stein-50);
  border-radius: var(--ids-border-radius);
  height: 43px;
  margin: 0;
  min-width: 75px;
  padding: 10px 40px 10px 10px;
  width: 100%;
}
.ids-contextual-text-input__textinput-container {
  display: flex;
  margin-left: -2px !important;
  flex-grow: 2;
}
.ids-contextual-text-input__textinput {
  background-color: var(--ids-color-stein-10);
  border: 2px solid transparent;
  box-sizing: border-box;
  color: var(--ids-color-sot);
  font-size: 14px;
  height: 43px;
  margin: 0 !important;
  padding: 10px 15px;
  width: 100%;
}
.ids-contextual-text-input__label {
  font-size: 12px;
  margin-right: 8px;
}
.ids-contextual-text-input__dropdown-caret {
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.ids-contextual-text-input--error {
  border-left-color: var(--ids-color-lyng);
  border-top-color: var(--ids-color-lyng);
  border-bottom-color: var(--ids-color-lyng);
}
input[type=text].ids-contextual-text-input--error {
  border-left: none;
  border-color: var(--ids-color-lyng);
}
.ids-contectual-text-input-errorMessage {
  color: var(--ids-color-stein);
  font-size: 12px;
  display: block;
  margin-left: 4px;
}
@media (max-width: 550px) {
  .ids-contextual-text-input__container input.ids-contextual-text-input__textinput {
    font-size: 16px;
  }
}

/* src/components/Counter/Counter.css */
.ids-counter-label {
  font-size: 12px;
  margin-right: 8px;
  display: block;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.ids-counter__inputContainer {
  border: 1px solid var(--ids-color-stein-10);
  border-radius: var(--ids-border-radius);
  display: inline-block;
}
.ids-counter-input {
  background-color: var(--ids-color-stein-10);
  border: 0;
  box-sizing: border-box;
  font-size: 14px;
  height: 42px;
  padding: 10px 3px;
  text-align: center;
  width: 60px;
}
.ids-counter-input .ids-textinput,
.ids-counter-input input {
  margin: 0;
}
.ids-counter-button {
  background-color: transparent;
  border-width: 0;
  box-shadow: none;
  color: var(--ids-color-sot);
  cursor: pointer;
  font-size: 18px;
  height: 42px;
  padding: 0;
  vertical-align: bottom;
  width: 42px;
}
@media (max-width: 550px) {
  .ids-counter input.ids-counter-input {
    font-size: 16px;
  }
}

/* src/components/Dialog/Dialog.css */
.ids-dialog-overlay,
.ids-dialog-wrapper::backdrop {
  background-color: #000;
  height: 100%;
  opacity: 0.4;
  width: 100%;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 1040;
}
#ids-dialog-wrapper {
  height: 100%;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1050;
}
.ids-dialog-title {
  max-width: 95%;
}
.ids-dialog-container {
  background-color: white;
  border-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-radius: var(--ids-border-radius);
  height: fit-content;
  min-width: 320px;
  padding: 25px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.ids-dialog-header-container {
  flex-direction: column;
  padding: 20px 25px 0px 25px;
}
.ids-dialog-body {
  max-height: 60vh;
  overflow: auto;
  margin-bottom: 25px;
  margin-top: 10px;
}
.ids-dialog-description {
  height: fit-content;
  overflow-y: auto;
  padding: 0 25px 15px 25px;
}
.ids-dialog-action-container {
  border-top: var(--ids-color-skygge) solid 1px;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
}
.ids-dialog__closeButton {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--ids-color-stein);
  cursor: pointer;
  min-width: unset;
  padding: initial;
  position: absolute;
  right: 25px;
  top: 25px;
  outline: none;
}
.ids-dialog__closeButton:focus {
  outline: none;
}
@media (max-width: 884px) {
  .ids-dialog-container {
    max-height: fit-content;
  }
  .ids-dialog-header-container {
    margin-bottom: 5px;
  }
  .ids-dialog-body {
    max-height: 50vh;
  }
  .ids-dialog-action-container {
    box-sizing: border-box;
    flex-direction: column;
    padding: 25px;
    width: 100%;
  }
}

/* src/components/Dropdown/Dropdown.css */
.ids-dropdown {
  position: relative;
  margin: 1px;
}
.ids-dropdown_caret {
  pointer-events: none;
  position: absolute;
  right: 15px;
  bottom: 18px;
}
.ids-dropdown_select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--ids-color-stein-10);
  border-radius: var(--ids-border-radius);
  border: 2px solid transparent;
  box-sizing: border-box;
  color: var(--ids-color-sot);
  display: block;
  font-size: 14px;
  height: 43px;
  margin: 1px;
  max-width: 100%;
  padding: 10px 40px 10px 15px;
  width: 100%;
}
.ids-dropdown-label {
  display: block;
  font-size: 12px;
  margin-left: 1px;
}
@media (max-width: 550px) {
  .ids-dropdown select.ids-dropdown_select {
    font-size: 16px;
  }
}

/* src/components/Icon/Icon.css */
.ids-icon__fillColor--gress path,
.ids-icon__fillColor--gress rect {
  fill: var(--ids-color-gress);
}
.ids-icon__strokeColor--gress path {
  stroke: var(--ids-color-gress);
}
.ids-icon__fillColor--gressGult path,
.ids-icon__fillColor--gressGult rect {
  fill: var(--ids-color-gressGult);
}
.ids-icon__strokeColor--gressGult path {
  stroke: var(--ids-color-gressGult);
}
.ids-icon__fillColor--himmel path,
.ids-icon__fillColor--himmel rect {
  fill: var(--ids-color-himmel);
}
.ids-icon__strokeColor--himmel path {
  stroke: var(--ids-color-himmel);
}
.ids-icon__fillColor--lyng path,
.ids-icon__fillColor--lyng rect {
  fill: var(--ids-color-lyng);
}
.ids-icon__strokeColor--lyng path {
  stroke: var(--ids-color-lyng);
}
.ids-icon__fillColor--mose path,
.ids-icon__fillColor--mose rect {
  fill: var(--ids-color-mose);
}
.ids-icon__strokeColor--mose path {
  stroke: var(--ids-color-mose);
}
.ids-icon__fillColor--skygge path,
.ids-icon__fillColor--skygge rect {
  fill: var(--ids-color-skygge);
}
.ids-icon__strokeColor--skygge path {
  stroke: var(--ids-color-skygge);
}
.ids-icon__fillColor--sot path,
.ids-icon__fillColor--sot rect {
  fill: var(--ids-color-sot);
}
.ids-icon__strokeColor--sot path {
  stroke: var(--ids-color-sot);
}
.ids-icon__fillColor--stein path,
.ids-icon__fillColor--stein rect {
  fill: var(--ids-color-stein);
}
.ids-icon__strokeColor--stein path,
.ids-icon__strokeColor--stein rect {
  stroke: var(--ids-color-stein);
}

/* src/components/HelpText/HelpText.css */
.helptext__button {
  border-radius: 50%;
  background-color: transparent;
  border: transparent;
  border-width: 1px;
  padding: 1px;
  line-height: 0;
  cursor: pointer;
  box-shadow: unset;
  min-width: unset;
  margin: unset;
}
.helptext__button:hover {
  opacity: 0.92;
}
.helptext__content {
  background-color: rgba(0, 0, 0, 0.8);
  fill: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 1.625;
  overflow: hidden;
  padding: 10px;
  text-align: center;
}
.helptext__wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}
.helptext__wrapper .ids-label-small ~ .helptext__button {
  margin-bottom: 2px;
}
.helptext__wrapper .ids-label-large ~ .helptext__button {
  margin-bottom: 3px;
}

/* src/components/InfoBanner/InfoBanner.css */
.ids-info-banner {
  background-color: var(--ids-color-gress-10);
  border-bottom: 1px solid var(--ids-color-sot-80);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.ids-info-banner__container {
  color: var(--ids-color-sot-80);
  font-size: 12px;
  position: relative;
}
.ids-info-banner__message {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ids-info-banner__content {
  flex-grow: 1;
}
.ids-info-banner__message a {
  color: var(--ids-color-sot-80);
}
.ids-info-banner__message a:hover {
  color: var(--ids-color-sot-50);
}
.ids-info-banner__close-symbol {
  width: 12px;
  cursor: pointer;
  opacity: 0.7;
}
@media (max-width: 1280px) {
  .ids-info-banner__container {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (min-width: 1200px) {
  .ids-info-banner__container {
    padding: 0 100px;
  }
}

/* src/components/TextInput/textinput.css */
.ids-textinput {
  display: inline-block;
  margin: 1px;
}
.ids-textinput.ids-textinput--error {
  margin-bottom: 30px;
}
.ids-textinput-errorMessage {
  color: rgb(126, 128, 130);
  color: var(--ids-color-stein);
  font-size: 12px;
  display: block;
  margin-left: 4px;
  position: absolute;
}
.ids-textinput-container {
  min-width: 90px;
  position: relative;
}
input[type=text].ids-textinput-input,
input[type=email].ids-textinput-input,
input[type=tel].ids-textinput-input,
input[type=number].ids-textinput-input,
input[type=password].ids-textinput-input {
  background-color: #197e8082;
  background-color: var(--ids-color-stein-10);
  border: 2px solid transparent;
  box-sizing: border-box;
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
  font-size: 14px;
  height: 43px;
  margin: 1px;
  padding: 10px 15px;
  width: 100%;
}
.ids-textinput-input::placeholder {
  color: #cc7e8082;
  color: var(--ids-color-stein-80);
}
input[type=text].ids-textinput-input--error,
input[type=email].ids-textinput-input--error,
input[type=tel].ids-textinput-input--error,
input[type=number].ids-textinput-input--error,
input[type=password].ids-textinput-input--error {
  border-color: var(--ids-color-lyng);
}
.ids-textinput-input--disabled {
  opacity: 0.5;
}
.ids-textinput-label {
  font-size: 12px;
  margin-right: 8px;
}
@media (max-width: 550px) {
  .ids-textinput input.ids-textinput-input {
    font-size: 16px;
  }
}

/* src/components/Tile/Tile.css */
.ids-tile {
  border: 1px solid var(--ids-color-stein-20);
  max-width: 610px;
  min-width: 300px;
  position: relative;
  width: 100%;
}
.ids-tile[data-href=true]:hover {
  background-color: var(--ids-color-skygge);
}
.ids-tile__footer {
  text-align: right;
  width: 100%;
  min-height: 69px;
}
.ids-tile__divider--vertical {
  border-left: 1px solid var(--ids-color-sot);
  height: 10px;
  margin: 0 5px;
}
.ids-tile__divider--horizontal {
  border-bottom: 1px solid var(--ids-color-stein-20);
  margin-bottom: 15px;
  margin-top: 15px;
  width: 50px;
}
.ids-tile__contentContainer {
  display: flex;
  height: 100%;
}
.ids-tile__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  height: auto;
  padding: 20px 20px 10px 20px;
  position: relative;
}
.ids-tile__heading {
  display: -webkit-box;
  max-height: 60px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.ids-tile__metadata {
  align-items: center;
  display: flex;
}
.ids-tile__image-wrapper {
  position: relative;
  max-width: 150px;
  width: 100%;
}
.ids-tile__image {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ids-tile__link {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}
.ids-tile__tagList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ids-tile__tagList:after {
  content: "";
  display: table;
  clear: both;
}
.ids-tile__tagList li:not(:first-child):before {
  color: var(--ids-color-sot-50);
  content: "\2022";
  font-size: 12px;
  margin-left: 6px;
  margin-right: 6px;
}
.ids-tile__tagList li {
  float: left;
  line-height: 12px;
}
.ids-tile__tagList span {
  color: var(--ids-color-sot-60);
}
.ids-tile__footer-elements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-top: 5px;
  word-break: break-word;
}
.ids-tile__footer-element-left {
  text-align: left;
}
.ids-tile__footer-element-right {
  grid-column: 2;
}
.ids-tile__banner {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border: 25px solid transparent;
  border-bottom: 25px solid var(--ids-color-sot-10);
  box-sizing: content-box;
  color: var(--ids-color-sot-80);
  padding: 0 10px;
  position: absolute;
  right: -50px;
  top: 32px;
  size: 11px;
  width: 144px;
}
.ids-tile__banner-text {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 625px) {
  .ids-tile__heading {
    font-size: 16px;
  }
  .ids-tile__metadata span {
    font-size: 10px;
  }
  .ids-tile__body {
    font-size: 12px;
  }
  .ids-tile__banner {
    padding: 0 10px;
    right: -40px;
    top: 8px;
    size: 11px;
    width: 75px;
  }
}
@media (max-width: 550px) {
  .ids-tile__image-wrapper {
    max-width: 68px;
  }
}

/* src/components/ToggleSwitch/toggleswitch.css */
.ids-toggleswitch {
  --toggleswitch-height: 44px;
  display: block;
  line-height: var(--toggleswitch-height);
}
.ids-toggleswitch:after {
  content: "";
  display: table;
  clear: both;
}
.ids-toggleswitch-label {
  display: inline-block;
  font-size: 12px;
  margin-left: 0;
}
.ids-toggleswitch-label.ids-toggleswitch-label--left {
  float: left;
  margin-right: 4px;
}
.ids-toggleswitch-label.ids-toggleswitch-label--right {
  margin-left: 4px;
}
.ids-toggleswitch-switch {
  display: inline-block;
  height: var(--toggleswitch-height);
  margin-left: 4px;
  margin-right: 4px;
  position: relative;
  width: 30px;
}
.ids-toggleswitch-switch input {
  height: 0;
  opacity: 0;
  width: 0;
}
.ids-toggleswitch-slider {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ccc;
  border-radius: 12px;
  cursor: pointer;
  height: 12px;
  transition: 0.3s;
}
.ids-toggleswitch-slider:before {
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid var(--ids-color-sot);
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 18px;
  width: 18px;
  transition: 0.3s;
}
.ids-toggleswitch-switch input:checked + .ids-toggleswitch-slider {
  background-color: var(--ids-color-gress);
}
.ids-toggleswitch-switch input:focus + .ids-toggleswitch-slider {
  outline: 1px auto -webkit-focus-ring-color;
}
.ids-toggleswitch-switch input:checked + .ids-toggleswitch-slider:before {
  transform: translate(15px, -50%);
}

/* src/components/Loading/Loading.css */
.ids-loading::after {
  animation: drawCircular 1.2s linear infinite;
  border: 2px solid var(--ids-color-sot);
  border-color: var(--ids-color-sot) transparent var(--ids-color-sot) transparent;
  border-radius: 50%;
  content: " ";
  display: block;
  height: 18px;
  left: calc(50% - 10px);
  position: absolute;
  width: 18px;
}
@keyframes drawCircular {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* src/components/SearchField/SearchField.css */
.ids-search-field {
  display: flex;
}
.ids-search-field__input {
  background-color: var(--ids-color-stein-10);
  border: 0;
  border-radius: var(--ids-border-radius);
  box-sizing: border-box;
  display: block;
  font-size: 14px;
  height: 44px;
  padding: 10px 15px;
  width: 100%;
}
.ids-search-field__searchContainer {
  background-color: #fffdf9 !important;
  width: 100% !important;
}
.ids-search-field__searchContainer:after {
  content: "";
  display: table;
  clear: both;
}
.ids-search-field__input::placeholder {
  color: var(--ids-color-stein);
}
.ids-search-field__input:focus {
  border-bottom-color: var(--ids-color-lyng);
}
.ids-search-field__input:disabled {
  opacity: 0.5;
}
.ids-search-field__input:not(.ids-search-field__input::placeholder) {
  border-bottom-color: var(--ids-color-lyng);
}
.ids-search-field__input::-ms-clear,
.ids-search-field__input::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}
.ids-search-field__input::-webkit-search-decoration,
.ids-search-field__input::-webkit-search-cancel-button,
.ids-search-field__input::-webkit-search-results-button,
.ids-search-field__input::-webkit-search-results-decoration {
  display: none;
}
.ids-search-field__button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  margin-left: -44px;
  width: 44px;
  height: 44px;
  position: relative;
  padding: 0;
  border-width: 0;
  float: right;
}
.ids-search-field__clearSearch {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: 12px;
}
.ids-search-field__button--clear-search {
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  height: 44px;
  padding: 0;
  width: 44px;
}
@media (max-width: 550px) {
  .ids-search-field input.ids-search-field__input {
    font-size: 16px;
  }
}

/* src/components/Jumbotron/Jumbotron.css */
.ids-jumbotron {
  display: grid;
  grid-template-rows: min-content auto;
  row-gap: 1rem;
  border-radius: 12px;
  padding: 3rem;
}
.ids-jumbotron h1 {
  color: var(--ids-color-sot);
  margin-bottom: 0;
  text-align: center;
  font-size: 1.85rem;
}
.ids-jumbotron p {
  color: var(--ids-color-sot);
  margin-bottom: 0;
  text-align: center;
}
.ids-jumbotron__links {
  display: flex;
  column-gap: 2rem;
  row-gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.ids-jumbotron a {
  color: var(--ids-color-sot);
  text-transform: uppercase;
  text-align: center;
}
.ids-jumbotron__logo {
  display: flex;
  justify-content: center;
}
.ids-jumbotron--green {
  background-color: #dbdfb7;
}
.ids-jumbotron--orange {
  background-color: #ea9a58;
}
.ids-jumbotron--yellow {
  background-color: #f7dd61;
}
.ids-jumbotron--grey {
  background-color: #ebebe6;
}
@media (min-width: 1280px) {
  .ids-jumbotron__links {
    flex-wrap: nowrap;
  }
}

/* src/css/_colors.css */
:root {
  --ids-color-sot: rgb(31, 33, 30);
  --ids-color-sot-10: rgb(232, 232, 232);
  --ids-color-sot-20: rgb(210, 211, 210);
  --ids-color-sot-50: rgb(143, 144, 142);
  --ids-color-sot-60: rgb(98, 99, 97);
  --ids-color-sot-80: rgb(76, 77, 75);
  --ids-color-stein: rgb(126, 128, 130);
  --ids-color-stein-10: rgb(242, 242, 242);
  --ids-color-stein-20: rgb(229, 230, 230);
  --ids-color-stein-30: rgb(216, 217, 217);
  --ids-color-stein-50: rgb(190, 191, 193);
  --ids-color-stein-80: rgb(152, 153, 155);
  --ids-color-skygge: rgb(244, 243, 243);
  --ids-color-himmel: #fffdfa;
  --ids-color-mose: rgb(63, 70, 60);
  --ids-color-mose-10: rgba(63, 70, 60, 0.1);
  --ids-color-gress: rgb(73, 97, 75);
  --ids-color-gress-10: rgba(73, 97, 75, 0.1);
  --ids-color-gress-50: rgba(73, 97, 75, 0.5);
  --ids-color-gress-80: rgba(73, 97, 75, 0.8);
  --ids-color-gressGult-dark: #7f602f;
  --ids-color-gressGult: rgb(168, 127, 62);
  --ids-color-gressGult-10: rgb(246, 242, 235);
  --ids-color-gressGult-20: rgb(238, 229, 216);
  --ids-color-lyng: rgb(109, 50, 50);
}

/* src/css/_typography.css */
:root {
  --font-body: "Inter", sans-serif;
  --font-heading: "Alegreya", serif;
}
body {
  font-family: "Inter", sans-serif;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 24px;
}
p {
  display: block;
  margin-bottom: 12px;
  margin-top: 0;
}
strong {
  font-weight: 600;
}
.font-weight--bold {
  font-weight: 600;
}
.small-meta {
  font-size: 10px;
  line-height: 12px;
}

/* src/css/core.css */
:root {
  --ids-border-radius: 0.5rem;
}

/* src/components/AlertBanner/AlertBanner.css */
.ids-alert-banner {
  background-color: rgb(238, 229, 216);
  background-color: var(--ids-color-gressGult-20);
  border-bottom: 1px solid rgb(168, 127, 62);
  border-bottom: 1px solid var(--ids-color-gressGult);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.ids-alert-banner__container {
  color: #7f602f;
  color: var(--ids-color-gressGult-dark);
  font-size: 12px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}
.ids-alert-banner__message {
  margin-left: 20px;
  padding-left: 5px;
  position: relative;
  width: 100%;
}
.ids-alert-banner__message a {
  color: rgb(73, 97, 75);
  color: var(--ids-color-gress);
}
.ids-alert-banner__message a:hover {
  color: rgba(73, 97, 75, 0.8);
  color: var(--ids-color-gress-80);
}
.ids-alert-banner__exclamation-triangle {
  margin-right: 5px;
  width: 14px;
  fill: #7f602f;
  fill: var(--ids-color-gressGult-dark);
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
@media (max-width: 1280px) {
  .ids-alert-banner__container {
    padding-left: 35px;
    padding-right: 35px;
  }
}

/* src/components/Button/Button.css */
.ids-button {
  background-color: transparent;
  box-shadow: none;
  box-shadow: initial;
  border-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-radius: 0.5rem;
  border-radius: var(--ids-border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0px;
  padding: 10px 44px;
  position: relative;
  text-transform: none;
  text-transform: initial;
  transition: all 0.3s;
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
  margin: 2px;
  cursor: pointer;
}
.ids-button:active {
  top: 2px;
}
.ids-button:disabled {
  opacity: 0.6;
  cursor: auto;
}
.ids-button:disabled:active {
  top: 0;
}
.ids-button.ids-button-primary {
  background-color: rgb(63, 70, 60);
  background-color: var(--ids-color-mose);
  color: #fffdfa;
  color: var(--ids-color-himmel);
}
.ids-button.ids-button-secondary {
  border-color: rgb(31, 33, 30);
  border-color: var(--ids-color-sot);
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
}
.ids-button.ids-button-secondary:hover {
  background-color: rgb(31, 33, 30);
  background-color: var(--ids-color-sot);
  color: rgb(244, 243, 243);
  color: var(--ids-color-skygge);
}
.ids-button.ids-button-danger {
  background-color: rgb(109, 50, 50);
  background-color: var(--ids-color-lyng);
  color: rgb(244, 243, 243);
  color: var(--ids-color-skygge);
}
.ids-button.ids-button-danger:hover {
  border-color: rgb(109, 50, 50);
  border-color: var(--ids-color-lyng);
  background-color: transparent;
  color: rgb(109, 50, 50);
  color: var(--ids-color-lyng);
}
.ids-button.ids-button-tertiary:hover {
  background-color: rgb(244, 243, 243);
  background-color: var(--ids-color-skygge);
}
.ids-button.ids-button-tertiary--mobile {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  margin: 0;
  padding: 0;
}
.ids-button__busy .ids-button-text {
  opacity: 0;
}
.ids-button__busy .ids-button-icon::after {
  animation: drawCircular 1.2s linear infinite;
  border: 2px solid rgb(31, 33, 30);
  border: 2px solid var(--ids-color-sot);
  border-color: rgb(31, 33, 30) transparent rgb(31, 33, 30) transparent;
  border-color: var(--ids-color-sot) transparent var(--ids-color-sot) transparent;
  border-radius: 50%;
  content: " ";
  display: block;
  height: 18px;
  left: calc(50% - 10px);
  margin: auto;
  position: absolute;
  top: 8px;
  width: 18px;
}
@keyframes drawCircular {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ids-button-primary .ids-button__busy .ids-button-icon::after,
.ids-button-secondary:hover .ids-button__busy .ids-button-icon::after,
.ids-button-danger .ids-button__busy .ids-button-icon::after {
  border: 2px solid #fffdfa;
  border: 2px solid var(--ids-color-himmel);
  border-color: #fffdfa transparent #fffdfa transparent;
  border-color: var(--ids-color-himmel) transparent var(--ids-color-himmel) transparent;
}
.ids-button-danger:hover .ids-button__busy .ids-button-icon::before,
.ids-button-danger:hover .ids-button__busy .ids-button-icon::after {
  color: rgb(109, 50, 50);
  color: var(--ids-color-lyng);
  border-color: rgb(109, 50, 50) transparent rgb(109, 50, 50) transparent;
  border-color: var(--ids-color-lyng) transparent var(--ids-color-lyng) transparent;
}
.ids-button__success .ids-button-text {
  opacity: 0;
}
.ids-button__success .ids-button-icon {
  display: inline-block;
  height: 18px;
  left: calc(50% - 10px);
  opacity: 1;
  position: absolute;
  transition: width 0.3s ease;
  top: 7px;
  width: 18px;
}
.ids-button__success .ids-button-icon::before,
.ids-button__success .ids-button-icon::after {
  background: rgb(31, 33, 30);
  background: var(--ids-color-sot);
  content: "";
  position: absolute;
  transform-origin: left bottom;
  transform: translateX(10px) rotate(-45deg);
}
.ids-button__success .ids-button-icon::before {
  height: 0;
  left: 0px;
  top: 50%;
  width: 2px;
  animation-name: drawSuccessBefore;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes drawSuccessBefore {
  0% {
    height: 0;
  }
  100% {
    height: 50%;
  }
}
.ids-button__success .ids-button-icon::after {
  bottom: 0;
  height: 2px;
  left: 0px;
  width: 0;
  animation-name: drawSuccessAfter;
  animation-duration: 0.2s;
  animation-delay: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes drawSuccessAfter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.ids-button__failure .ids-button-text {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.ids-button__failure .ids-button-icon {
  height: 0;
  opacity: 1;
  transform: scale(0) translate(-9px, -9px);
  width: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  animation-delay: 0.1s;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-name: drawCross;
  animation-timing-function: ease-in-out;
}
@keyframes drawCross {
  0% {
    transform: scale(0) translate(-9px, -9px);
  }
  100% {
    transform: scale(1) translate(-9px, -9px);
  }
}
.ids-button__failure .ids-button-icon::before,
.ids-button__failure .ids-button-icon::after {
  background: rgb(31, 33, 30);
  background: var(--ids-color-sot);
  content: "";
  height: 2px;
  width: 18px;
  position: absolute;
  left: 0;
  top: 8px;
}
.ids-button__failure .ids-button-icon::before {
  transform: rotate(-45deg);
}
.ids-button__failure .ids-button-icon::after {
  transform: rotate(45deg);
}
.ids-button.ids-button-primary .ids-button__success .ids-button-icon::before,
.ids-button.ids-button-primary .ids-button__success .ids-button-icon::after,
.ids-button.ids-button-primary .ids-button__failure .ids-button-icon::before,
.ids-button.ids-button-primary .ids-button__failure .ids-button-icon::after,
.ids-button.ids-button-secondary:hover .ids-button__success .ids-button-icon::before,
.ids-button.ids-button-secondary:hover .ids-button__success .ids-button-icon::after,
.ids-button.ids-button-secondary:hover .ids-button__failure .ids-button-icon::before,
.ids-button.ids-button-secondary:hover .ids-button__failure .ids-button-icon::after,
.ids-button.ids-button-danger .ids-button__success .ids-button-icon::before,
.ids-button.ids-button-danger .ids-button__success .ids-button-icon::after,
.ids-button.ids-button-danger .ids-button__failure .ids-button-icon::before,
.ids-button.ids-button-danger .ids-button__failure .ids-button-icon::after {
  background: #fffdfa;
  background: var(--ids-color-himmel);
}
.ids-button.ids-button-danger:hover .ids-button__success .ids-button-icon::before,
.ids-button.ids-button-danger:hover .ids-button__success .ids-button-icon::after,
.ids-button.ids-button-danger:hover .ids-button__failure .ids-button-icon::before,
.ids-button.ids-button-danger:hover .ids-button__failure .ids-button-icon::after {
  background: rgb(109, 50, 50);
  background: var(--ids-color-lyng);
}
.ids-button[data-state=retry] {
  overflow: hidden;
  padding-left: 15px;
  padding-right: 15px;
}
.ids-button .ids-button__retry {
  align-items: center;
  display: flex;
}
.ids-button__retry .ids-button-text {
  left: 0;
  margin-right: 35px;
  opacity: 1;
  position: relative;
}
.ids-button__retry .ids-button-icon {
  display: inline-block;
  height: 18px;
  position: absolute;
  right: 15px;
  top: 10px;
  width: 18px;
}
.ids-button__retry .ids-button-icon::before,
.ids-button__retry .ids-button-icon::after {
  box-sizing: border-box;
  content: "";
  display: block;
}
.ids-button__retry .ids-button-icon::before {
  border-color: transparent rgb(31, 33, 30) rgb(31, 33, 30) rgb(31, 33, 30);
  border-color: transparent var(--ids-color-sot) var(--ids-color-sot) var(--ids-color-sot);
  border-radius: 50%;
  border-style: solid;
  border-width: 2px;
  height: 16px;
  width: 16px;
  transform: rotate(45deg);
}
.ids-button__retry .ids-button-icon::after {
  border-color: transparent transparent transparent rgb(31, 33, 30);
  border-color: transparent transparent transparent var(--ids-color-sot);
  border-style: solid;
  border-width: 4px 0 4px 5px;
  height: 0;
  width: 0;
  position: absolute;
  left: calc(50% - 2px);
  top: -3px;
}
.ids-button__retry,
.ids-button__retry .ids-button-icon,
.ids-button[data-state=retry],
.ids-button__retry .ids-button-text {
  transition-duration: 0.25s;
  transition-property:
    left,
    right,
    opacity,
    padding;
  transition-timing-function: ease-in-out;
}
.ids-button:hover .ids-button__retry .ids-button-text {
  left: -100%;
  opacity: 0;
}
.ids-button:hover .ids-button__retry .ids-button-icon {
  right: calc(50% - 10px);
}
.ids-button-primary .ids-button__retry .ids-button-icon::before,
.ids-button-secondary:hover .ids-button__retry .ids-button-icon::before,
.ids-button-danger .ids-button__retry .ids-button-icon::before {
  border-color: transparent #fffdfa #fffdfa #fffdfa;
  border-color: transparent var(--ids-color-himmel) var(--ids-color-himmel) var(--ids-color-himmel);
}
.ids-button-primary .ids-button__retry .ids-button-icon::after,
.ids-button-secondary:hover .ids-button__retry .ids-button-icon::after,
.ids-button-danger .ids-button__retry .ids-button-icon::after {
  border-color: transparent transparent transparent #fffdfa;
  border-color: transparent transparent transparent var(--ids-color-himmel);
}
.ids-button-danger:hover .ids-button__retry .ids-button-icon::before {
  border-color: transparent rgb(109, 50, 50) rgb(109, 50, 50) rgb(109, 50, 50);
  border-color: transparent var(--ids-color-lyng) var(--ids-color-lyng) var(--ids-color-lyng);
}
.ids-button-danger:hover .ids-button__retry .ids-button-icon::after {
  border-color: transparent transparent transparent rgb(109, 50, 50);
  border-color: transparent transparent transparent var(--ids-color-lyng);
}

/* src/components/Heading/Heading.css */
.ids-h1,
.ids-h2,
.ids-h3,
.ids-h4,
.ids-h5 {
  display: block;
  margin-top: 0;
}
.ids-h1 {
  color: rgba(64, 64, 64, 1);
  font-family: "Alegreya", serif;
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  margin-bottom: 10px;
}
.ids-h2 {
  color: rgba(64, 64, 64, 1);
  font-family: "Alegreya", serif;
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 6px;
}
.ids-h3 {
  font-family: "Alegreya", serif;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 12px;
}
.ids-h4 {
  font-family: "Inter", sans-serif;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}
.ids-h5 {
  font-family: "Inter", sans-serif;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 770px) {
  .ids-h1 {
    font-size: 26px;
  }
  .ids-h2 {
    font-size: 17px;
  }
  .ids-h3 {
    font-size: 15px;
    font-weight: bold;
  }
  .ids-h4 {
    font-size: 14px;
  }
}

/* src/components/Label/Label.css */
.ids-label-tag {
  background-color: rgb(216, 217, 217);
  background-color: var(--ids-color-stein-30);
  font-family: "Inter", sans-serif;
  font-family: var(--font-body);
  letter-spacing: 0.4px;
  padding: 1px 8px 1px 8px;
}
.ids-label-meta {
  color: rgb(76, 77, 75);
  color: var(--ids-color-sot-80);
  font-family: "Inter", sans-serif;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}
.ids-label-default {
  font-family: "Inter", sans-serif;
  font-family: var(--font-body);
  letter-spacing: 0.4px;
}
.ids-label-strong {
  font-weight: 600;
}
.ids-label-small {
  font-size: 12px;
}
.ids-label-medium {
  font-size: 14px;
}
.ids-label-large {
  font-size: 16px;
}
.ids-label-uppercase {
  text-transform: uppercase;
}
.ids-label__textColor--gress {
  color: rgb(73, 97, 75);
  color: var(--ids-color-gress);
}
.ids-label__textColor--gressgult {
  color: rgb(168, 127, 62);
  color: var(--ids-color-gressGult);
}
.ids-label__textColor--himmel {
  color: #fffdfa;
  color: var(--ids-color-himmel);
}
.ids-label__textColor--lyng {
  color: rgb(109, 50, 50);
  color: var(--ids-color-lyng);
}
.ids-label__textColor--mose {
  color: rgb(63, 70, 60);
  color: var(--ids-color-mose);
}
.ids-label__textColor--skygge {
  color: rgb(244, 243, 243);
  color: var(--ids-color-skygge);
}
.ids-label__textColor--sot {
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
}
.ids-label__textColor--sot-60 {
  color: rgb(98, 99, 97);
  color: var(--ids-color-sot-60);
}
.ids-label__textColor--stein {
  color: rgb(126, 128, 130);
  color: var(--ids-color-stein);
}

/* src/components/Card/Card.css */
.ids-card {
  border: 1px solid rgb(229, 230, 230);
  border: 1px solid var(--ids-color-stein-20);
  display: flex;
  flex-direction: column;
  max-height: 600px;
  min-width: 260px;
  position: relative;
  width: 100%;
}
.ids-card[data-href=true]:hover {
  background-color: rgb(244, 243, 243);
  background-color: var(--ids-color-skygge);
}
.ids-card__header,
.ids-card__image {
  max-height: 248px;
  min-height: 28px;
}
.ids-card__header {
  position: relative;
}
.ids-card__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.ids-card__footer {
  text-align: right;
  min-height: 69px;
}
.ids-card__divider--vertical {
  border-left: 1px solid rgb(31, 33, 30);
  border-left: 1px solid var(--ids-color-sot);
  height: 10px;
  margin: 0 5px;
}
.ids-card__divider--horizontal {
  border-bottom: 1px solid rgb(229, 230, 230);
  border-bottom: 1px solid var(--ids-color-stein-20);
  margin-bottom: 15px;
  margin-top: 5px;
  width: 50px;
}
.ids-card__contentContainer {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}
.ids-card__heading {
  display: -webkit-box;
  max-height: 60px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.ids-card__metadata {
  align-items: center;
  display: flex;
}
.ids-card__link {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}
.ids-card__tagList {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}
.ids-card__tagList:after {
  content: "";
  display: table;
  clear: both;
}
.ids-card__tagList li:not(:first-child):before {
  color: rgb(143, 144, 142);
  color: var(--ids-color-sot-50);
  content: "\2022";
  font-size: 12px;
  margin-left: 6px;
  margin-right: 6px;
}
.ids-card__tagList li {
  float: left;
  line-height: 12px;
}
.ids-card__tagList span {
  color: rgb(98, 99, 97);
  color: var(--ids-color-sot-60);
}
.ids-card__footer-elements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 5px;
  gap: 5px;
  margin-top: 5px;
  word-break: break-word;
}
.ids-card__footer-element-left {
  text-align: left;
}
.ids-card__footer-element-right {
  grid-column: 2;
}
.ids-card__banner {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border: 25px solid transparent;
  border-bottom: 25px solid rgb(232, 232, 232);
  border-bottom: 25px solid var(--ids-color-sot-10);
  box-sizing: content-box;
  color: rgb(76, 77, 75);
  color: var(--ids-color-sot-80);
  padding: 0 10px;
  position: absolute;
  right: -50px;
  top: 32px;
  size: 11px;
  width: 144px;
}
.ids-card__banner-text {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .ids-card__header,
  .ids-card__image {
    max-height: 200px;
  }
  p {
    margin-bottom: 7px;
  }
  .ids-card__contentContainer {
    padding: 15px;
  }
  .ids-card__tagList {
    margin-bottom: 5px;
  }
  .ids-card__heading {
    font-size: 16px;
  }
  .ids-card__metadata span {
    font-size: 10px;
  }
  .ids-card__body {
    font-size: 12px;
  }
  .ids-card__footer {
    min-height: 64px;
  }
  .ids-card__banner {
    padding: 0 10px;
    right: -40px;
    top: 8px;
    size: 11px;
    width: 75px;
  }
}

/* src/components/Checkbox/Checkbox.css */
.ids-checkbox-container {
  display: block;
}
.ids-checkbox {
  display: flex;
  --checkbox-size: 16px;
}
.ids-checkbox-input-container {
  padding-top: 3px;
  position: relative;
}
.ids-checkbox [type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  height: var(--checkbox-size);
  width: var(--checkbox-size);
  background-origin: border-box;
  box-sizing: content-box;
  background-color: #fffdfa;
  background-color: var(--ids-color-himmel);
  color: rgb(63, 70, 60);
  color: var(--ids-color-mose);
  border-color: rgb(63, 70, 60);
  border-color: var(--ids-color-mose);
  border-style: solid;
  border-radius: 3px;
  border-width: 1px;
}
.ids-checkbox-label-container {
  display: inline;
  padding-left: 0.75rem;
}
.ids-checkbox label {
  cursor: pointer;
  padding: 0;
}
.ids-checkbox [type=checkbox].ids-checkbox--filled:checked {
  background-color: rgb(63, 70, 60);
  background-color: var(--ids-color-mose);
}
.ids-checkbox [type=checkbox].ids-checkbox--filled:after {
  box-shadow: 4px 4px 0px 0px #fffdfa;
  box-shadow: 4px 4px 0px 0px var(--ids-color-himmel);
}
.ids-checkbox-disabled,
.ids-checkbox [type=checkbox]:disabled {
  opacity: 0.6;
  cursor: auto;
}
.ids-checkbox-errorMessage {
  color: rgb(126, 128, 130);
  color: var(--ids-color-stein);
  font-size: 12px;
  display: block;
  margin-left: 30px;
}
.ids-checkbox [type=checkbox].ids-checkbox--error {
  border-color: rgb(109, 50, 50);
  border-color: var(--ids-color-lyng);
  box-shadow: 0px 0px 1px 1px rgb(109, 50, 50);
  box-shadow: 0px 0px 1px 1px var(--ids-color-lyng);
}
.ids-checkbox [type=checkbox]:after {
  content: "";
  background-color: transparent;
  display: block;
  position: absolute;
  top: 11px;
  left: 50%;
  width: 0.6rem;
  height: var(--checkbox-size);
  box-shadow: 4px 4px 0px 0px rgb(63, 70, 60);
  box-shadow: 4px 4px 0px 0px var(--ids-color-mose);
  transform: translate(-50%, -85%) scale(0) rotate(45deg);
}
.ids-checkbox [type=checkbox]:checked:after {
  animation: toggleOnCheckbox 0.2s ease forwards;
}
@keyframes toggleOnCheckbox {
  0% {
    opacity: 0;
    transform: translate(-50%, -85%) scale(0.7) rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -85%) scale(0.8) rotate(45deg);
  }
}

/* src/components/ContextualTextInput/ContextualTextInput.css */
.ids-contextual-text-input__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2px;
}
.ids-contextual-text-input__action-container {
  display: flex;
  height: 43px;
  max-height: 43px;
  width: 100%;
}
.ids-contextual-text-input__dropdown-container {
  position: relative;
  margin: 0;
  flex-grow: 1;
}
.ids-contextual-text-input__dropdown {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(242, 242, 242);
  background-color: var(--ids-color-stein-10);
  border: 2px solid transparent;
  border-right: 1px solid rgb(190, 191, 193);
  border-right: 1px solid var(--ids-color-stein-50);
  border-radius: 0.5rem;
  border-radius: var(--ids-border-radius);
  height: 43px;
  margin: 0;
  min-width: 75px;
  padding: 10px 40px 10px 10px;
  width: 100%;
}
.ids-contextual-text-input__textinput-container {
  display: flex;
  margin-left: -2px !important;
  flex-grow: 2;
}
.ids-contextual-text-input__textinput {
  background-color: rgb(242, 242, 242);
  background-color: var(--ids-color-stein-10);
  border: 2px solid transparent;
  box-sizing: border-box;
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
  font-size: 14px;
  height: 43px;
  margin: 0 !important;
  padding: 10px 15px;
  width: 100%;
}
.ids-contextual-text-input__label {
  font-size: 12px;
  margin-right: 8px;
}
.ids-contextual-text-input__dropdown-caret {
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.ids-contextual-text-input--error {
  border-left-color: rgb(109, 50, 50);
  border-left-color: var(--ids-color-lyng);
  border-top-color: rgb(109, 50, 50);
  border-top-color: var(--ids-color-lyng);
  border-bottom-color: rgb(109, 50, 50);
  border-bottom-color: var(--ids-color-lyng);
}
input[type=text].ids-contextual-text-input--error {
  border-left: none;
  border-color: rgb(109, 50, 50);
  border-color: var(--ids-color-lyng);
}
.ids-contectual-text-input-errorMessage {
  color: rgb(126, 128, 130);
  color: var(--ids-color-stein);
  font-size: 12px;
  display: block;
  margin-left: 4px;
}
@media (max-width: 550px) {
  .ids-contextual-text-input__container input.ids-contextual-text-input__textinput {
    font-size: 16px;
  }
}

/* src/components/Counter/Counter.css */
.ids-counter-label {
  font-size: 12px;
  margin-right: 8px;
  display: block;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.ids-counter__inputContainer {
  border: 1px solid rgb(242, 242, 242);
  border: 1px solid var(--ids-color-stein-10);
  border-radius: 0.5rem;
  border-radius: var(--ids-border-radius);
  display: inline-block;
}
.ids-counter-input {
  background-color: rgb(242, 242, 242);
  background-color: var(--ids-color-stein-10);
  border: 0;
  box-sizing: border-box;
  font-size: 14px;
  height: 42px;
  padding: 10px 3px;
  text-align: center;
  width: 60px;
}
.ids-counter-input .ids-textinput,
.ids-counter-input input {
  margin: 0;
}
.ids-counter-button {
  background-color: transparent;
  border-width: 0;
  box-shadow: none;
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
  cursor: pointer;
  font-size: 18px;
  height: 42px;
  padding: 0;
  vertical-align: bottom;
  width: 42px;
}
@media (max-width: 550px) {
  .ids-counter input.ids-counter-input {
    font-size: 16px;
  }
}

/* src/components/Dialog/Dialog.css */
.ids-dialog-wrapper::-ms-backdrop {
  background-color: #000;
  height: 100%;
  opacity: 0.4;
  width: 100%;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 1040;
}
.ids-dialog-overlay,
.ids-dialog-wrapper::backdrop {
  background-color: #000;
  height: 100%;
  opacity: 0.4;
  width: 100%;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 1040;
}
#ids-dialog-wrapper {
  height: 100%;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1050;
}
.ids-dialog-title {
  max-width: 95%;
}
.ids-dialog-container {
  background-color: white;
  border-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-radius: 0.5rem;
  border-radius: var(--ids-border-radius);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 320px;
  padding: 25px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.ids-dialog-header-container {
  flex-direction: column;
  padding: 20px 25px 0px 25px;
}
.ids-dialog-body {
  max-height: 60vh;
  overflow: auto;
  margin-bottom: 25px;
  margin-top: 10px;
}
.ids-dialog-description {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow-y: auto;
  padding: 0 25px 15px 25px;
}
.ids-dialog-action-container {
  border-top: rgb(244, 243, 243) solid 1px;
  border-top: var(--ids-color-skygge) solid 1px;
  display: flex;
  justify-content: flex-end;
  padding: 15px;
}
.ids-dialog__closeButton {
  background: none;
  border: none;
  box-shadow: none;
  color: rgb(126, 128, 130);
  color: var(--ids-color-stein);
  cursor: pointer;
  min-width: 0;
  min-width: initial;
  padding: 0;
  padding: initial;
  position: absolute;
  right: 25px;
  top: 25px;
  outline: none;
}
.ids-dialog__closeButton:focus {
  outline: none;
}
@media (max-width: 884px) {
  .ids-dialog-container {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .ids-dialog-header-container {
    margin-bottom: 5px;
  }
  .ids-dialog-body {
    max-height: 50vh;
  }
  .ids-dialog-action-container {
    box-sizing: border-box;
    flex-direction: column;
    padding: 25px;
    width: 100%;
  }
}

/* src/components/Dropdown/Dropdown.css */
.ids-dropdown {
  position: relative;
  margin: 1px;
}
.ids-dropdown_caret {
  pointer-events: none;
  position: absolute;
  right: 15px;
  bottom: 18px;
}
.ids-dropdown_select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(242, 242, 242);
  background-color: var(--ids-color-stein-10);
  border-radius: 0.5rem;
  border-radius: var(--ids-border-radius);
  border: 2px solid transparent;
  box-sizing: border-box;
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
  display: block;
  font-size: 14px;
  height: 43px;
  margin: 1px;
  max-width: 100%;
  padding: 10px 40px 10px 15px;
  width: 100%;
}
.ids-dropdown-label {
  display: block;
  font-size: 12px;
  margin-left: 1px;
}
@media (max-width: 550px) {
  .ids-dropdown select.ids-dropdown_select {
    font-size: 16px;
  }
}

/* src/components/Icon/Icon.css */
.ids-icon__fillColor--gress path,
.ids-icon__fillColor--gress rect {
  fill: rgb(73, 97, 75);
  fill: var(--ids-color-gress);
}
.ids-icon__strokeColor--gress path {
  stroke: rgb(73, 97, 75);
  stroke: var(--ids-color-gress);
}
.ids-icon__fillColor--gressGult path,
.ids-icon__fillColor--gressGult rect {
  fill: rgb(168, 127, 62);
  fill: var(--ids-color-gressGult);
}
.ids-icon__strokeColor--gressGult path {
  stroke: rgb(168, 127, 62);
  stroke: var(--ids-color-gressGult);
}
.ids-icon__fillColor--himmel path,
.ids-icon__fillColor--himmel rect {
  fill: #fffdfa;
  fill: var(--ids-color-himmel);
}
.ids-icon__strokeColor--himmel path {
  stroke: #fffdfa;
  stroke: var(--ids-color-himmel);
}
.ids-icon__fillColor--lyng path,
.ids-icon__fillColor--lyng rect {
  fill: rgb(109, 50, 50);
  fill: var(--ids-color-lyng);
}
.ids-icon__strokeColor--lyng path {
  stroke: rgb(109, 50, 50);
  stroke: var(--ids-color-lyng);
}
.ids-icon__fillColor--mose path,
.ids-icon__fillColor--mose rect {
  fill: rgb(63, 70, 60);
  fill: var(--ids-color-mose);
}
.ids-icon__strokeColor--mose path {
  stroke: rgb(63, 70, 60);
  stroke: var(--ids-color-mose);
}
.ids-icon__fillColor--skygge path,
.ids-icon__fillColor--skygge rect {
  fill: rgb(244, 243, 243);
  fill: var(--ids-color-skygge);
}
.ids-icon__strokeColor--skygge path {
  stroke: rgb(244, 243, 243);
  stroke: var(--ids-color-skygge);
}
.ids-icon__fillColor--sot path,
.ids-icon__fillColor--sot rect {
  fill: rgb(31, 33, 30);
  fill: var(--ids-color-sot);
}
.ids-icon__strokeColor--sot path {
  stroke: rgb(31, 33, 30);
  stroke: var(--ids-color-sot);
}
.ids-icon__fillColor--stein path,
.ids-icon__fillColor--stein rect {
  fill: rgb(126, 128, 130);
  fill: var(--ids-color-stein);
}
.ids-icon__strokeColor--stein path,
.ids-icon__strokeColor--stein rect {
  stroke: rgb(126, 128, 130);
  stroke: var(--ids-color-stein);
}

/* src/components/HelpText/HelpText.css */
.helptext__button {
  border-radius: 50%;
  background-color: transparent;
  border: transparent;
  border-width: 1px;
  padding: 1px;
  line-height: 0;
  cursor: pointer;
  box-shadow: none;
  box-shadow: initial;
  min-width: 0;
  min-width: initial;
  margin: 0;
  margin: initial;
}
.helptext__button:hover {
  opacity: 0.92;
}
.helptext__content {
  background-color: rgba(0, 0, 0, 0.8);
  fill: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 1.625;
  overflow: hidden;
  padding: 10px;
  text-align: center;
}
.helptext__wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}
.helptext__wrapper .ids-label-small ~ .helptext__button {
  margin-bottom: 2px;
}
.helptext__wrapper .ids-label-large ~ .helptext__button {
  margin-bottom: 3px;
}

/* src/components/InfoBanner/InfoBanner.css */
.ids-info-banner {
  background-color: rgba(73, 97, 75, 0.1);
  background-color: var(--ids-color-gress-10);
  border-bottom: 1px solid rgb(76, 77, 75);
  border-bottom: 1px solid var(--ids-color-sot-80);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.ids-info-banner__container {
  color: rgb(76, 77, 75);
  color: var(--ids-color-sot-80);
  font-size: 12px;
  position: relative;
}
.ids-info-banner__message {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ids-info-banner__content {
  flex-grow: 1;
}
.ids-info-banner__message a {
  color: rgb(76, 77, 75);
  color: var(--ids-color-sot-80);
}
.ids-info-banner__message a:hover {
  color: rgb(143, 144, 142);
  color: var(--ids-color-sot-50);
}
.ids-info-banner__close-symbol {
  width: 12px;
  cursor: pointer;
  opacity: 0.7;
}
@media (max-width: 1280px) {
  .ids-info-banner__container {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (min-width: 1200px) {
  .ids-info-banner__container {
    padding: 0 100px;
  }
}

/* src/components/TextInput/textinput.css */
.ids-textinput {
  display: inline-block;
  margin: 1px;
}
.ids-textinput.ids-textinput--error {
  margin-bottom: 30px;
}
.ids-textinput-errorMessage {
  color: rgb(126, 128, 130);
  color: var(--ids-color-stein);
  font-size: 12px;
  display: block;
  margin-left: 4px;
  position: absolute;
}
.ids-textinput-container {
  min-width: 90px;
  position: relative;
}
input[type=text].ids-textinput-input,
input[type=email].ids-textinput-input,
input[type=tel].ids-textinput-input,
input[type=number].ids-textinput-input,
input[type=password].ids-textinput-input {
  background-color: rgba(25,126,128,0.5098);
  background-color: rgb(242, 242, 242);
  background-color: var(--ids-color-stein-10);
  border: 2px solid transparent;
  box-sizing: border-box;
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
  font-size: 14px;
  height: 43px;
  margin: 1px;
  padding: 10px 15px;
  width: 100%;
}
.ids-textinput-input::-moz-placeholder {
  color: rgba(204,126,128,0.5098);
  color: rgb(152, 153, 155);
  color: var(--ids-color-stein-80);
}
.ids-textinput-input::-ms-input-placeholder {
  color: rgba(204,126,128,0.5098);
  color: rgb(152, 153, 155);
  color: var(--ids-color-stein-80);
}
.ids-textinput-input::placeholder {
  color: rgba(204,126,128,0.5098);
  color: rgb(152, 153, 155);
  color: var(--ids-color-stein-80);
}
input[type=text].ids-textinput-input--error,
input[type=email].ids-textinput-input--error,
input[type=tel].ids-textinput-input--error,
input[type=number].ids-textinput-input--error,
input[type=password].ids-textinput-input--error {
  border-color: rgb(109, 50, 50);
  border-color: var(--ids-color-lyng);
}
.ids-textinput-input--disabled {
  opacity: 0.5;
}
.ids-textinput-label {
  font-size: 12px;
  margin-right: 8px;
}
@media (max-width: 550px) {
  .ids-textinput input.ids-textinput-input {
    font-size: 16px;
  }
}

/* src/components/Tile/Tile.css */
.ids-tile {
  border: 1px solid rgb(229, 230, 230);
  border: 1px solid var(--ids-color-stein-20);
  max-width: 610px;
  min-width: 300px;
  position: relative;
  width: 100%;
}
.ids-tile[data-href=true]:hover {
  background-color: rgb(244, 243, 243);
  background-color: var(--ids-color-skygge);
}
.ids-tile__footer {
  text-align: right;
  width: 100%;
  min-height: 69px;
}
.ids-tile__divider--vertical {
  border-left: 1px solid rgb(31, 33, 30);
  border-left: 1px solid var(--ids-color-sot);
  height: 10px;
  margin: 0 5px;
}
.ids-tile__divider--horizontal {
  border-bottom: 1px solid rgb(229, 230, 230);
  border-bottom: 1px solid var(--ids-color-stein-20);
  margin-bottom: 15px;
  margin-top: 15px;
  width: 50px;
}
.ids-tile__contentContainer {
  display: flex;
  height: 100%;
}
.ids-tile__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  height: auto;
  padding: 20px 20px 10px 20px;
  position: relative;
}
.ids-tile__heading {
  display: -webkit-box;
  max-height: 60px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.ids-tile__metadata {
  align-items: center;
  display: flex;
}
.ids-tile__image-wrapper {
  position: relative;
  max-width: 150px;
  width: 100%;
}
.ids-tile__image {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ids-tile__link {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}
.ids-tile__tagList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ids-tile__tagList:after {
  content: "";
  display: table;
  clear: both;
}
.ids-tile__tagList li:not(:first-child):before {
  color: rgb(143, 144, 142);
  color: var(--ids-color-sot-50);
  content: "\2022";
  font-size: 12px;
  margin-left: 6px;
  margin-right: 6px;
}
.ids-tile__tagList li {
  float: left;
  line-height: 12px;
}
.ids-tile__tagList span {
  color: rgb(98, 99, 97);
  color: var(--ids-color-sot-60);
}
.ids-tile__footer-elements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 5px;
  gap: 5px;
  margin-top: 5px;
  word-break: break-word;
}
.ids-tile__footer-element-left {
  text-align: left;
}
.ids-tile__footer-element-right {
  grid-column: 2;
}
.ids-tile__banner {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border: 25px solid transparent;
  border-bottom: 25px solid rgb(232, 232, 232);
  border-bottom: 25px solid var(--ids-color-sot-10);
  box-sizing: content-box;
  color: rgb(76, 77, 75);
  color: var(--ids-color-sot-80);
  padding: 0 10px;
  position: absolute;
  right: -50px;
  top: 32px;
  size: 11px;
  width: 144px;
}
.ids-tile__banner-text {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 625px) {
  .ids-tile__heading {
    font-size: 16px;
  }
  .ids-tile__metadata span {
    font-size: 10px;
  }
  .ids-tile__body {
    font-size: 12px;
  }
  .ids-tile__banner {
    padding: 0 10px;
    right: -40px;
    top: 8px;
    size: 11px;
    width: 75px;
  }
}
@media (max-width: 550px) {
  .ids-tile__image-wrapper {
    max-width: 68px;
  }
}

/* src/components/ToggleSwitch/toggleswitch.css */
.ids-toggleswitch {
  --toggleswitch-height: 44px;
  display: block;
  line-height: 44px;
  line-height: var(--toggleswitch-height);
}
.ids-toggleswitch:after {
  content: "";
  display: table;
  clear: both;
}
.ids-toggleswitch-label {
  display: inline-block;
  font-size: 12px;
  margin-left: 0;
}
.ids-toggleswitch-label.ids-toggleswitch-label--left {
  float: left;
  margin-right: 4px;
}
.ids-toggleswitch-label.ids-toggleswitch-label--right {
  margin-left: 4px;
}
.ids-toggleswitch-switch {
  display: inline-block;
  height: var(--toggleswitch-height);
  margin-left: 4px;
  margin-right: 4px;
  position: relative;
  width: 30px;
}
.ids-toggleswitch-switch input {
  height: 0;
  opacity: 0;
  width: 0;
}
.ids-toggleswitch-slider {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ccc;
  border-radius: 12px;
  cursor: pointer;
  height: 12px;
  transition: 0.3s;
}
.ids-toggleswitch-slider:before {
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid rgb(31, 33, 30);
  border: 1px solid var(--ids-color-sot);
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 18px;
  width: 18px;
  transition: 0.3s;
}
.ids-toggleswitch-switch input:checked + .ids-toggleswitch-slider {
  background-color: rgb(73, 97, 75);
  background-color: var(--ids-color-gress);
}
.ids-toggleswitch-switch input:focus + .ids-toggleswitch-slider {
  outline: 1px auto -webkit-focus-ring-color;
}
.ids-toggleswitch-switch input:checked + .ids-toggleswitch-slider:before {
  transform: translate(15px, -50%);
}

/* src/components/Loading/Loading.css */
.ids-loading::after {
  animation: drawCircular 1.2s linear infinite;
  border: 2px solid rgb(31, 33, 30);
  border: 2px solid var(--ids-color-sot);
  border-color: rgb(31, 33, 30) transparent rgb(31, 33, 30) transparent;
  border-color: var(--ids-color-sot) transparent var(--ids-color-sot) transparent;
  border-radius: 50%;
  content: " ";
  display: block;
  height: 18px;
  left: calc(50% - 10px);
  position: absolute;
  width: 18px;
}
@keyframes drawCircular {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* src/components/SearchField/SearchField.css */
.ids-search-field {
  display: flex;
}
.ids-search-field__input {
  background-color: rgb(242, 242, 242);
  background-color: var(--ids-color-stein-10);
  border: 0;
  border-radius: 0.5rem;
  border-radius: var(--ids-border-radius);
  box-sizing: border-box;
  display: block;
  font-size: 14px;
  height: 44px;
  padding: 10px 15px;
  width: 100%;
}
.ids-search-field__searchContainer {
  background-color: #fffdf9 !important;
  width: 100% !important;
}
.ids-search-field__searchContainer:after {
  content: "";
  display: table;
  clear: both;
}
.ids-search-field__input::-moz-placeholder {
  color: rgb(126, 128, 130);
  color: var(--ids-color-stein);
}
.ids-search-field__input::-ms-input-placeholder {
  color: rgb(126, 128, 130);
  color: var(--ids-color-stein);
}
.ids-search-field__input::placeholder {
  color: rgb(126, 128, 130);
  color: var(--ids-color-stein);
}
.ids-search-field__input:focus {
  border-bottom-color: rgb(109, 50, 50);
  border-bottom-color: var(--ids-color-lyng);
}
.ids-search-field__input:disabled {
  opacity: 0.5;
}
.ids-search-field__input:not(.ids-search-field__input::-moz-placeholder) {
  border-bottom-color: rgb(109, 50, 50);
  border-bottom-color: var(--ids-color-lyng);
}
.ids-search-field__input:not(.ids-search-field__input::-ms-input-placeholder) {
  border-bottom-color: rgb(109, 50, 50);
  border-bottom-color: var(--ids-color-lyng);
}
.ids-search-field__input:not(.ids-search-field__input::placeholder) {
  border-bottom-color: rgb(109, 50, 50);
  border-bottom-color: var(--ids-color-lyng);
}
.ids-search-field__input::-ms-clear,
.ids-search-field__input::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}
.ids-search-field__input::-webkit-search-decoration,
.ids-search-field__input::-webkit-search-cancel-button,
.ids-search-field__input::-webkit-search-results-button,
.ids-search-field__input::-webkit-search-results-decoration {
  display: none;
}
.ids-search-field__button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  margin-left: -44px;
  width: 44px;
  height: 44px;
  position: relative;
  padding: 0;
  border-width: 0;
  float: right;
}
.ids-search-field__clearSearch {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: 12px;
}
.ids-search-field__button--clear-search {
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  height: 44px;
  padding: 0;
  width: 44px;
}
@media (max-width: 550px) {
  .ids-search-field input.ids-search-field__input {
    font-size: 16px;
  }
}

/* src/components/Jumbotron/Jumbotron.css */
.ids-jumbotron {
  display: grid;
  grid-template-rows: -webkit-min-content auto;
  grid-template-rows: min-content auto;
  grid-row-gap: 1rem;
  row-gap: 1rem;
  border-radius: 12px;
  padding: 3rem;
}
.ids-jumbotron h1 {
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
  margin-bottom: 0;
  text-align: center;
  font-size: 1.85rem;
}
.ids-jumbotron p {
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
  margin-bottom: 0;
  text-align: center;
}
.ids-jumbotron__links {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.ids-jumbotron a {
  color: rgb(31, 33, 30);
  color: var(--ids-color-sot);
  text-transform: uppercase;
  text-align: center;
}
.ids-jumbotron__logo {
  display: flex;
  justify-content: center;
}
.ids-jumbotron--green {
  background-color: #dbdfb7;
}
.ids-jumbotron--orange {
  background-color: #ea9a58;
}
.ids-jumbotron--yellow {
  background-color: #f7dd61;
}
.ids-jumbotron--grey {
  background-color: #ebebe6;
}
@media (min-width: 1280px) {
  .ids-jumbotron__links {
    flex-wrap: nowrap;
  }
}

/* src/Header/Header.css */
#main-header {
  height: 136px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  padding-left: 100px;
  height: 58px;
}
.logo a {
  display: inline-block;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.slogan {
  color: #5f6162;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.95px;
  line-height: 14px;
  margin-top: -4px;
  padding-left: 38px;
}
.navigation-container {
  padding-right: 100px;
  padding-left: 25px;
}
.modal-container {
  padding: 0 100px 10px 10px;
}
@media (max-width: 1280px) {
  .logo {
    padding-left: 35px;
  }
  .modal-container {
    padding-right: 35px;
  }
  .navigation-container {
    padding-right: 35px;
  }
}
@media (max-width: 770px) {
  .slogan {
    display: none;
    margin-top: 40px;
    position: absolute;
  }
}

/* src/Footer/Footer.css */
.ids-footer {
  background-color: rgb(31, 33, 30);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
  gap: 2rem;
}
.ids-footer h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}
.ids-footer ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.ids-footer li a {
  color: #ffffff;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

