.PressHomepageBookDescription {
  position: fixed;
  top: 50%;
  right: 20%;
  max-width: calc(var(--vh)*50);
  width: 400px;
  padding: 0;
  font-size: 16px;
  font-family: Ivar Headline;
  font-style: italic;
  letter-spacing: .32px;
  line-height: 1.5;
  z-index: 3;
  opacity: 0;
  display: none;
  pointer-events: none
}

.PressHomepageBookDescription__text {
  color: var(--backgroundColor);
  background: var(--color);
  padding: 12px 24px;
  border-radius: 2px
}

.PressHomepage--isDragging:not(.PressHomepage--isActiveProduct) .PressHomepageBookDescription {
  display: block;
  animation: DescriptionFadeIn .5s ease .3s forwards
}

@keyframes DescriptionFadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: .9
  }
}
