.product__item {
      position: absolute;
      z-index: 3;
}

@keyframes pulse-animation {
      0% {
            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.7);
      }

      100% {
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
      }
}

.product__item:hover .item__cta {
      background: white;
}

.product__item:hover .item__cta .item__message {
      display: none;
}

.product__item .item__cta {
      cursor: pointer;
      position: relative;
      width: 20px;
      height: 20px;
      background: white;
      border-radius: 50%;
      box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px;
}

.product__item .item__cta.pulse {
      z-index: 2;
      animation: pulse-animation 1.5s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      line-height: 1rem;
}

.product__item .item__cta .item__message {
      bottom: -270%;
      transition: 0.2s all ease-in;
      z-index: 3;
      border-radius: 2rem;
      position: absolute;
      transform: translate(-50%);
      left: 50%;
      padding: 0.15rem 0.7rem 0 0.5rem;
      opacity: 0;
      color: black;
      height: auto;
      background: white;
      display: none;
}

.product__item .item__cta .item__message .item__text {
      text-transform: uppercase;
      white-space: nowrap;
      margin: 0;
}

@media screen and (min-width: 1024px) {
      .product__item:hover .item__cta .item__message {
            height: auto;
            opacity: 1;
            bottom: -160%;
            display: block;
      }
      .product__item .item__cta {
            width: 20px;
            height: 20px;
      }
}

/*# sourceMappingURL=/product-markers.9f17cca7.css.map */