.site-wrapper {
  background-color: #bdb8b3;
  width: 100vw;
  height: 100vh;
}

.padding-global {
  padding: 20px;
}

.container {
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  display: flex;
}

.details-section {
  z-index: 999;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-color: #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 300px;
  height: 300px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: flex;
}

.details-section.is-right {
  justify-content: flex-start;
  align-items: flex-end;
}

.body {
  color: #000;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.text {
  font-size: 1em;
  line-height: 14px;
  transition: font-variation-settings .4s cubic-bezier(1, 0, 0, 1), transform .4s cubic-bezier(1, 0, 0, 1);
  user-select: text;
  -webkit-user-select: text;
}

.text:hover {
  font-weight: 600;
  transform: translate(10px);
}

.text.is-caps {
  text-transform: uppercase;
  font-size: 1em;
}

.text.is-line-normal {
  line-height: 20px;
}

.div-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.coord-x, .coord-y {
  width: 50px;
  line-height: 14px;
}

.code-embed {
  height: 0;
  display: block;
}

.coordinates__inner {
  z-index: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.coordinates__p {
  text-transform: uppercase;
  width: 50px;
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.25;
}

@media screen and (max-width: 479px) {
  .details-section {
    aspect-ratio: 1;
    max-width: 100%;
  }
}


