.spotr-spot {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 1000;
  border: none;
  padding: 0;
  background: none;
}

.spotr-spot img {
  width: 100%;
  height: auto;
}

.st-name {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 5px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  -webkit-line-clamp: 2;
}


.spotr-tooltip.tooltip.bs-tooltip-top .arrow:before {
  border-top-color: #003764!important;
}

.spotr-tooltip.tooltip.show { opacity: 1; }
.spotr-tooltip .tooltip-inner {
  background-color: none!important;
  color: #003764;
  opacity: 1.0;
  filter: alpha(opacity=100);
}




@supports (-webkit-line-clamp: 2) {
  .st-name {
    white-space: initial;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
}

.spotrTooltip-inner {
  display: flex;
  width: 100%;
  flex-direction: row;
  overflow: hidden;
}

.shop-this-image {
  background: #FFFFFF;
  opacity: 0.8;
  border-radius: 0;
  justify-content: center;
  border: 2px solid #003764;
}

.shop-this-image img {
  width: 18px;
  height: 18px;
  margin: auto 6px;
}

.shop-this-image.btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 30px;
  background: #ffffff;
  color: #003764;
  font: normal normal bold 15px/17px Ubuntu;
  z-index: 1000;
}

.spotrTooltip {
  /* max-width: 250px; */
  width: auto;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
}

.st-img {
  flex: 40% 0 0;
  max-width: 40%;
  background: white;
  padding-left: 2px;
  height: 100%;
}

.st-img img {
  width: 80px;
  height: 80px;
  background: white;
}

.st-link,
.st-link:hover,
.st-link:link {
 color:#FFFFFF;
  font-weight: bold;
  text-decoration: underline;
  text-transform: uppercase;

}

.st-price {
  font-size: 13px;
  font-weight: 600;
}

.st-info {
  flex: 50% 0 0;
  max-width: 50%;
  padding: 0.25rem;
  color: #ffffff;
  background-color: #003764;
}
/* .st-info {
  flex: 65% 0 0;
  max-width: 100%;
  padding: 0.25rem;
} */

.spotr-spots-added .spotr-spot {
  animation-name: spotBounce;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.280, 0.840, 0.420, 1);
  animation-delay: 0ms;
  opacity: 1; 
}

/* Spotr yellow border tooltip "fix" 2021-11-29 SL */
.spotr-tooltip.tooltip .tooltip-inner {
  background-color: transparent!important;
  padding: 0!important;
  max-width: 200px;
}
/*.spotr-tooltip.tooltip .tooltip-inner {
  background-color: transparent;
  color: #003764;
  opacity: 1.0;
  max-width: 80%;
}
*/
.spotr-tooltip.tooltip.bs-tooltip-top .arrow:before {
  border-top-color: #003764;
}

/* end of tooltip fix */
.spotr-spots-added .spotr-spot:nth-child(4n) { animation-delay: 0ms; }
.spotr-spots-added .spotr-spot:nth-child(4n+1) { animation-delay: 100ms; }
.spotr-spots-added .spotr-spot:nth-child(4n+2) { animation-delay: 200ms; }
.spotr-spots-added .spotr-spot:nth-child(4n+3) { animation-delay: 300ms; }

@keyframes spotBounce {
  0%   { transform: scale(1,1)      translateY(0); opacity: 0; }
  10%  { transform: scale(1.1,.9)   translateY(0); }
  30%  { transform: scale(.9,1.1)   translateY(-12px); }
  50%  { transform: scale(1.05,.95) translateY(0); opacity: 1; }
  57%  { transform: scale(1,1)      translateY(-1px); }
  64%  { transform: scale(1,1)      translateY(0); }
  100% { transform: scale(1,1)      translateY(0); }
}