h1.ipceiTitle {
  position: absolute;
  margin-block-start: 0px;
  color: var(--bmwi_white_100);
  font-size: var(--mainHeaderSize);
  font-family: 'BundesSansWeb', Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.ipceiLayer {
  width: calc(var(--singleUserWindowWidth) - (var(--singleUserWindowBorderSize) * 2));
  height: calc(var(--singleUserWindowHeight) - (var(--singleUserWindowBorderSize) * 2));
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  background-image: linear-gradient(to bottom, var(--bmwi_blue_100) , var(--bmwi_white_100));
  overflow: hidden;
}

.gallery {
  width: 100%;
  position:relative;
  margin-top: 200px;
}

.gallery-container {
  align-items: center;
  display: flex;
  height: 400px;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  user-select: none;
}

.gallery-item {
  position: absolute;
  background-color: white;
  box-shadow: 5px 5px 11px #004b76;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  height: 450px;
  width: 350px;
  user-select: none;
  cursor: pointer;
  left: 50%;
}

.gallery-item p {
  text-align: left;
  font-family: 'BundesSansWeb', Verdana, Arial, Helvetica, sans-serif;
  padding: 45px 45px 0px 45px;
  font-weight: bold;
  color: rgb(0, 119, 182);
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-size: var(--cardFontSize);
  line-height: var(--cardLineHeight);
  margin-block-start:0px;
  margin-block-end:0px;
}

.longText {
  text-align: left;
  font-family: 'BundesSansWeb', Verdana, Arial, Helvetica, sans-serif;
  display: none;
  font-size: var(--mainFontSize);
  font-weight: normal;
  line-height: var(--mainLineHeight);
  padding: 0px;
  margin: 0px;
  margin-top: calc(var(--mainLineHeight) * 2);
  padding-bottom: var(--mainLineHeight);
  color: var(--bmwi_blue_100);
  position: absolute;
  top: 475px;
  user-select: none;
}

.longText.selected {
  display: block;
}

.gallery-item-icon{
  max-width: 250px;
  max-height: 200px;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.gallery-item-icon-container {
  flex: 1;
  display: flex;
  pointer-events: none;
  min-height: 0;
  padding-bottom: 45px;
}

.ipceiTouchZone {
    width: 140%;
    height: 120%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
    cursor: pointer;
    user-select: none;
    touch-action: none;
}

.ipceiCardSnapping {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.ipceiGalleryDots {
    position: absolute;
    top: 445px;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.gallery-nav {
  list-style: none;
  padding: 0;
  width: 3%;
}

.gallery-nav:not(:first-child) {
    margin-left: 7.5px;
}

.gallery-nav:not(:last-child) {
    margin-right: 7.5px;
}

.gallery-nav li{
  border: solid 1px rgb(0,119,182);
  background-color: none;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  border: solid 1px rgb(0,119,182);
  cursor: pointer;
}

.gallery-nav.selected li {
  background: rgb(0,117,160);
}
