.in-stock.sale { top: calc(2px + 59px); }

.in-stock,
.in-stock.sale.only { pointer-events: none; top: 0; margin: 2px; }

.in-stock .position-relative {
  transform: scale(.5);
  transform-origin: 0 17px;
}
.in-stock .info {
  color: var(--cf7_success);
  margin-left: 23px;
  padding-top: 5px;
}
.in-stock.sale .info {
  color: var(--sale);
}
.in-stock .pulsating-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
}
.in-stock .pulsating-circle:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background-color: var(--cf7_success);
  -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.in-stock.sale .pulsating-circle:before {
  background-color: var(--sale);
}
.in-stock .pulsating-circle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
          animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}

@media (min-width: 394px) {
  .in-stock.sale { top: calc(2px + 38px); }
}

@media (min-width: 576px) {
  .in-stock.sale { top: calc(2px + 59px); }
}

@media (min-width: 1600px) {
  .in-stock.sale { top: calc(2px + 38px); }
}