.productPin {
  position: absolute;
  font-size: 10px;
  color: #fff;
}

.productPin > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 3;
  display: block;
  transition: all 0.2s ease-out;
  transform-origin: 50% 50%;
}

.productPin.isLoaded:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 0.1s linear 0.2s;
  z-index: 1;
  pointer-events: none;
}

.productPin > span > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #292929;
  opacity: 0;
  text-decoration: none;
  font-family: "LacosteSansCondensedBold";
  font-size: 17px;
  transition: opacity 0.1s linear;
  width: 100px;
  text-align: center;
}

.productPin > span > span .icon {
  display: inline-block;
  font-size: 10px;
  margin-left: 10px;
  top: -3px;
  position: relative;
}

.productPin .loaderContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*****************
 * MEDIA QUERIES *
 *****************/
/* DESKTOP ONLY */
@media screen and (min-width: 1280px) {
  .productPin:hover > span {
    height: 30px;
    width: 100px;
    border-radius: 15px;
  }

  .productPin.isLoaded:hover:before {
    opacity: 0;
    transition: opacity 0.1s linear 0s;
    animation: none;
  }

  .productPin:hover > span > span {
    opacity: 1;
    transition: opacity 0.2s linear 0.2s;
  }

  .productPin.isLoaded:before {
    animation: pinBorderAnimation 1.5s linear infinite;
  }
}
@keyframes pinBorderAnimation {
  from {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  to {
    width: 60px;
    height: 60px;
    opacity: 0;
  }
}
@-webkit-keyframes pinBorderAnimation {
  from {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  to {
    width: 60px;
    height: 60px;
    opacity: 0;
  }
}
@-moz-keyframes pinBorderAnimation {
  from {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  to {
    width: 60px;
    height: 60px;
    opacity: 0;
  }
}

/*# sourceMappingURL=productPin.css.map */
