.M-HotspotList {
  --_hotspot-button-size: 32px;
  --_hotspot-button-font-size: 16px;
  --_hotspot-list-item-size: 32px;
  --_hotspot-list-item-font-size: 18px;
  --_hotspot-line-size: 60px;
  --_hotspot-dot-size: 6px;
  --_hotspot-transition-time: 300ms;
}
@media screen and (min-width: 480px) {
  .M-HotspotList {
    --_hotspot-button-size: 48px;
    --_hotspot-button-font-size: 24px;
    --_hotspot-list-item-size: 32px;
    --_hotspot-list-item-font-size: 16px;
  }
}
.M-HotspotList__headline {
  margin: 0 0 24px;
  font-size: 40px;
  line-height: 42px;
  font-weight: bold;
}
.M-HotspotList__subline {
  margin-top: 32px;
  font-size: 24px;
  line-height: 42px;
}
.M-HotspotList__container {
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  .M-HotspotList__mainContainer {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 32px;
  }
}
.M-HotspotList__imageContainer {
  grid-column: 1/-1;
  align-self: start;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .M-HotspotList__imageContainer {
    grid-column: 1/8;
    max-width: unset;
    margin: 0;
  }
}
.M-HotspotList__imageContainer .A-Image__figure {
  display: contents;
}
.M-HotspotList__imageContainer .A-Image__figure picture {
  grid-column: 1;
  grid-row: 1;
}
.M-HotspotList__imageContainer .A-Image__figure .A-Image__caption {
  grid-column: 1;
  grid-row: 2;
}
.M-HotspotList__imageContainer .M-HotspotList__hotspotContainer {
  grid-column: 1;
  grid-row: 1;
}
.M-HotspotList__hotspotContainer {
  position: relative;
}
.M-HotspotList__hotspot {
  display: grid;
  align-items: start;
  justify-items: center;
  position: absolute;
  isolation: isolate;
  height: var(--_hotspot-button-size);
  pointer-events: none;
}
.M-HotspotList__hotspot::before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(0.5 * var(--_hotspot-button-size) + 0.5 * var(--_hotspot-dot-size));
  width: 2px;
  height: calc(0.5 * var(--_hotspot-button-size) - 0.5 * var(--_hotspot-dot-size));
  margin: auto;
  background-color: var(--accent-major__enabled__default__fill);
  z-index: -1;
}
.M-HotspotList__hotspot::after {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(0.5 * var(--_hotspot-button-size) - 0.5 * var(--_hotspot-dot-size));
  width: var(--_hotspot-dot-size);
  height: var(--_hotspot-dot-size);
  border-radius: 100%;
  background-color: var(--accent-major__enabled__default__fill);
  z-index: -1;
}
.M-HotspotList__hotspot.-loaded, .M-HotspotList__hotspot.-loaded::before, .M-HotspotList__hotspot.-loaded::after {
  transition-property: height, transform;
  transition-duration: var(--_hotspot-transition-time);
  transition-timing-function: ease;
}
.M-HotspotList__hotspot.-expand-bottom {
  align-items: end;
}
.M-HotspotList__hotspot.-expand-bottom::before {
  bottom: unset;
  top: calc(0.5 * var(--_hotspot-button-size) + 0.5 * var(--_hotspot-dot-size));
}
.M-HotspotList__hotspot.-expand-bottom::after {
  bottom: unset;
  top: calc(0.5 * var(--_hotspot-button-size) - 0.5 * var(--_hotspot-dot-size));
}
.M-HotspotList__hotspot--selected {
  height: calc(1.5 * var(--_hotspot-button-size) + var(--_hotspot-line-size) + 0.5 * var(--_hotspot-dot-size));
  transform: translateY(calc(-1 * var(--_hotspot-line-size) - 0.5 * var(--_hotspot-button-size) - 0.5 * var(--_hotspot-dot-size)));
  z-index: 1;
}
.M-HotspotList__hotspot--selected::before {
  height: var(--_hotspot-line-size);
}
.M-HotspotList__hotspot--selected.-expand-bottom {
  transform: none;
}
.M-HotspotList__hotspotButton {
  display: grid;
  place-items: center;
  width: var(--_hotspot-button-size);
  height: var(--_hotspot-button-size);
  border: none;
  border-radius: 100%;
  background-color: var(--accent-nested-major__enabled__default__fill);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.26);
  padding: 0;
  font-size: var(--_hotspot-button-font-size);
  font-weight: bold;
  color: var(--accent-nested-major__enabled__default__front);
  cursor: pointer;
  transition-property: width, height;
  transition-duration: var(--_hotspot-transition-time);
  transition-timing-function: ease;
  pointer-events: all;
}
.M-HotspotList__hotspotButton:hover {
  border: none;
  background-color: var(--accent-major__enabled__default__fill);
  color: white;
}
.M-HotspotList__hotspotButton:active {
  border: none;
  color: white;
}
.M-HotspotList__hotspotButton:focus-visible {
  border: 2px solid var(--accent-nested-major__enabled__default__front);
  outline: 2px solid var(--accent-nested-major__enabled__default__fill);
}
.M-HotspotList__hotspot--selected .M-HotspotList__hotspotButton {
  border: none;
  background-color: var(--accent-major__enabled__default__fill);
  color: white;
}
.M-HotspotList__list {
  grid-column: 1/-1;
  display: none;
  flex-direction: column;
  row-gap: 24px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .M-HotspotList__list {
    grid-column: 8/13;
    display: flex;
  }
}
.M-HotspotList__list li {
  margin: 0;
  padding: 0;
}
.M-HotspotList__list li::before {
  display: none;
}
.M-HotspotList__item {
  display: grid;
  grid-template-rows: min-content minmax(0, 0fr);
  grid-template-areas: "item-link" "extra-content";
  clip-path: inset(-4px);
  transition: grid-template-rows var(--_hotspot-transition-time) ease;
}
.M-HotspotList__item:not(.M-HotspotList__item--selected) :hover .M-HotspotList__itemLink__headline {
  text-decoration: underline;
}
.M-HotspotList__item--selected {
  grid-template-rows: min-content minmax(0, 1fr);
}
.M-HotspotList__item--selected .M-HotspotList__itemLink__label {
  border: none;
  background-color: var(--accent-major__enabled__default__fill);
  color: white;
}
.M-HotspotList__item--selected .M-HotspotList__itemLink__headline {
  font-weight: bold;
}
.M-HotspotList__itemLink {
  grid-area: item-link;
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
}
.M-HotspotList__itemLink:focus-visible {
  outline: 2px solid var(--accent-nested-major__enabled__default__fill);
  outline-offset: 2px;
}
.M-HotspotList__itemLink__label {
  display: grid;
  place-items: center;
  flex-grow: 0;
  flex-shrink: 0;
  width: var(--_hotspot-list-item-size);
  height: var(--_hotspot-list-item-size);
  border: 1px solid var(--_hotspot-list-item-font-size);
  border-radius: 100%;
  font-size: var(--_hotspot-list-item-font-size);
  font-weight: bold;
  color: var(--accent-pure__enabled__default__front);
}
.M-HotspotList__itemLink__headlineContainer {
  display: grid;
}
.M-HotspotList__itemLink__headlineContainer > * {
  grid-row: 1;
  grid-column: 1;
}
.M-HotspotList__itemLink__headlineContainer .hidden-bold-text {
  font-weight: bold;
  visibility: hidden;
}
.M-HotspotList__itemLink__headline {
  margin: 0;
  font-weight: normal;
}
.M-HotspotList__itemLink:hover .M-HotspotList__itemLink__label {
  /*border: none;
  background-color: var(--bosch-blue-40);
  color: var(--bosch-white);*/
}
.M-HotspotList__extraContent {
  grid-area: extra-content;
  margin-left: calc(var(--_hotspot-list-item-size) + 16px);
}
.M-HotspotList__extraContent__description {
  margin: 8px 0 16px;
}
.M-HotspotList__swiperContainer {
  max-width: calc(100vw - 32px - 48px);
  margin: 0 auto;
  padding-top: 24px;
}
@media screen and (min-width: 375px) {
  .M-HotspotList__swiperContainer {
    max-width: calc((100vw - 32px - 352px) / 12 * 8 + 288px);
  }
}
@media screen and (min-width: 768px) {
  .M-HotspotList__swiperContainer {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .M-HotspotList--portrait .M-HotspotList__imageContainer {
    grid-column: 2/7;
  }
}
/*# sourceMappingURL=hotspot-list.css.map */
