.info__icon {
  cursor: pointer;
}

.info__tooltop {
  pointer-events: none;
  transition: opacity 0.25s;
  background: white;
  padding: 1em;
  z-index: 2;
  display: block;
  opacity: 0;
}

:focus > .info__tooltop,
:hover > .info__tooltop {
  opacity: 1;
  pointer-events: all;
}

.info__tooltop > blockquote {
  margin: 0;
}

.info__tooltop cite {
  display: block;
  text-align: right;
  font-style: normal;
}

@media (min-width: 1073px) {
  .info {
    position: relative;
  }

  .info__tooltop {
    position: absolute;
    left: 0;
    top: 100%;
  }
  .info__tooltop--long {
    min-width: 30em;
  }
}

@media (max-width: 1072px) {
  .info__tooltop {
    position: fixed;
    top: 50%;
    left: 30px;
    right: 30px;
    transform: translateY(-50%);
    font-size: 18px;
  }
}
