/* Keyboard */

.keyboard {
  display: flex;
  padding: 12px;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 12px 80px;
}

.key {
  width: 58px;
  height: 42px;
  display: flex;
  border-radius: 12px;
  position: relative;
  flex-direction: column;
  user-select: none;
  cursor: pointer;
}

.keyboard .key > div {
  z-index: 2;
  position: absolute;
  background: #e8e8e8;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0px;
  transition: all 200ms ease;
  transform: translate(0, -7px);
}

.keyboard .key::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #b3b3b3;
  border-radius: 12px;
}

.keyboard .key:hover > div {
  transform: translate(0, -9px);
}

.keyboard .key.active > div {
  box-shadow: 0px 1px 14px 0px rgba(245, 43, 43, 0.35) inset;
}

.keyboard .key.active > div {
  transform: translate(0, 0px);
}

/* Map */

.map-container {
  background: #a3a3a3;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map img {
  display: block;
}

.map {
  width: 1280px;
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  border: 3px solid #a3a3a3;
  border-radius: 24px;
  overflow: hidden;
  background: #7f7f7f;
  position: relative;
  box-sizing: border-box;
}

.map .bg {
  width: 100%;
}

.map .artikel {
  position: absolute;
  opacity: 0;
  transition: all 100ms ease-in;
  transform: translate(0, -50px);
  pointer-events: none;
  cursor: pointer;
}

.map .artikel.active {
  opacity: 1;
  transform: translate(0, 0px);
  pointer-events: all;
}

.map .artikel .info-card {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 8px;
  transform: translate(-50%, -10%);
  transition: all 200ms ease;
  max-width: min-content;
  min-width: 300px;
}

.map .artikel .info-card .headline-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 8px;
}

.map .artikel .info-card .headline-container .number-block {
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.05);
  height: 52px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map .artikel .info-card .headline-container .number-block .name {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 400;
}

.map .artikel .info-card .headline-container .number-block .number {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin-left: 2px;
}

.map .artikel .info-card .headline-container h3 {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
}

.map .artikel .info-card .text-container {
  padding: 12px;
}

.map .artikel .info-card .text-container p {
  margin: 0;
}

.map .artikel .img-container {
  position: relative;
  transition: all 100ms ease;
}

.map .artikel .img-container img.hover-img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.map .artikel:hover {
  z-index: 20;
}
.map .artikel:hover .info-card {
  opacity: 1;
  /* pointer-events: all; */
  transform: translate(-50%, 0%);
}

.map .artikel:hover .img-container {
  transform: translate(0, -5px);
}

.map .artikel:hover .img-container img.hover-img {
  opacity: 1;
}

.map .artikel:hover .img-container img.normal-img {
  opacity: 0;
}

.map .artikel .audio-container {
  display: none;
}
