.interactive-scheme-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--purpure);
  color: var(--warm-silver-light);
  padding: 8.75rem;
}

.interactive-scheme-wrapper > div:not(:last-child) {
  width: 100%;
  max-width: 900px;
}

.interactive-scheme-legend {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}

.legend-box-wrapper {
  width: 88px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}

.legend-box {
  height: 12px;
  width: 12px;
}

#legend-box-available {
  background-color: var(--warm-silver-light);
}

#legend-box-reserved {
  background-color: var(--blue-light);
}

.interactive-scheme > svg {
  width: 100%;
  height: fit-content;
}

.interactive-scheme > svg > .sold {
  fill: var(--purpure);
}

.interactive-scheme > svg > .reserved {
  fill: var(--blue-light);
}

.interactive-scheme-zone {
  fill: transparent;
  fill-opacity: 0.75;
  pointer-events: all;
  fill: var(--warm-silver-light);
  transition: fill 0.25s;
  opacity: 0;
  animation: 1s ease-out 0.5s interactiveShemeZoneInitial forwards;
}

@keyframes interactiveShemeZoneInitial {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

svg > .interactive-scheme-zone:hover {
  fill: var(--point);
}

.interactive-sheme-zone-description {
  text-align: center;
  display: none;
}

.interactive-sheme-zone-description,
.interactive-scheme-message-text {
  height: 46px;
}

@media (max-width: 1024px) {
  .interactive-scheme-wrapper {
    padding: 8.75rem 2.5rem;
  }
}
