.lv-grid-menu-content {
  display: grid;
  gap: 48px;
  grid-template-columns: 304px 1fr;
  grid-template-areas: "left right";

  @media (max-width: 1023px) {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "right"
      "left";
  }
}

.lv-grid-left {
  grid-area: left;
}

.lv-grid-right {
  grid-area: right;
}

.lv-column-gap40 {
  display: flex;
  flex-direction: column;
  row-gap: 40px;

  @media (max-width: 1023px) {
    row-gap: 24px;
  }
}

.lv-column-gap4 {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.lv-menu-item {
  background: white;
  border: none;
  height: 48px;
  padding: 14px 16px;
  text-align: start;
  width: 100%;

  &.active {
    background-color: rgba(59, 67, 149, 0.35);

    &:hover {
      background-color: rgba(59, 67, 149, 0.55);
    }
  }

  &:hover {
    background-color: rgba(59, 67, 149, 0.15);
  }
}

.hidden {
  display: none;
}

.lv-info-box {
  background: white;
  display: flex;
  flex-direction: column;
  padding: 24px;
  row-gap: 14px;
}

.lv-code-box {
  background: rgba(235, 249, 254, 1);
  font-family: 'Roboto Mono', monospace;
  padding: 24px;
  text-align: center;
  font-weight: bold;
}

.lv-info-box-content {
  display: flex;
  flex-direction: row;

  @media (max-width: 1023px) {
    flex-direction: column;
  }
}

.lv-text {
  line-height: 140%;
}

.lv-link {
  color: var(--linkcolor);
}

.lv-info-icon-container {
  column-gap: 8px;
  display: flex;
  padding-left: 18px;
}

.lv-row-spaceBetween {
  display: flex;
  justify-content: space-between;
}

.lv-buttons-right {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.lv-image {
  min-width: 212px;
  align-self: center;
}

.lv-image-full {
  width: 100%;
}

.lv-arrow-down {
  text-align: center;
}

.lv-icon-size-24 {
  height: 24px;
  width: 24px;
}
