/*
 * Copyright (c) 2021 SPAR Business Services GmbH. All rights reserved.
 */

body{
  position: relative;
}

.node-info {
  display: none;
  color: transparent;
  bottom: 60px;
  position: absolute;
}

@media (min-width: 768px) {
  .node-info {
    display: block;
  }
}

@media (min-width: 1280px) {
  .node-info {
    bottom: 0;
  }
}

.node-info::selection {
  background: green;
  color: white;
}
