/* RocketWishlist CSS Files */

/**	Product list **/
.btn-addwishlist{
	line-height: 1.1;
	padding-top: 0;
	padding-bottom: 0;
	border-width: 0;
	outline: none !important;
}
.btn-addwishlist:hover{
	animation: pulse 1s infinite;

}

.wlproductpage-abs{
  position: absolute;
  top:10px;
  right: 10px;
  z-index: 2;
}
.quickview .wlproductpage-abs{
left: 10px;
}
/*small bug in BS or PS...*/
.btn.wl-split{
line-height: 1.5 !important
}

@keyframes pulse {
  0%, 20% {
    transform:scale(1);
  }
  30% {
    transform:scale(1.2);
  }
  50% {
    transform:scale(1);
  }
  60% {
    transform:scale(1.1);
  }
  70%, 100% {
    transform:scale(1);
  }
}
.btn-sm .material-icons
{
  font-size: 1.125rem;

}

/*Product page*/
.dropdownwishlist{
min-height: 60px;

}
.dropdownwishlist button{
  cursor: pointer;
}



.animated-background {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
  animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: #eeeeee;
  background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eeeeee), color-stop(18%, #dddddd), color-stop(33%, #eeeeee));
  background: -webkit-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  -webkit-background-size: 800px 104px;
  background-size: 800px 104px;
  height: 18px;
  position: relative;
  margin:0 1rem .5rem;
}
.animated-background:last-child {
margin-bottom: 0;
}




@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0
  }
  100% {
    background-position: 468px 0
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0
  }
  100% {
    background-position: 468px 0
  }
}
/*if you use last version of twitter bootstrap, remove these lines*/
.d-none{
display: none;
}
.float-left {
  float: left;
}

.float-right {
  float: right;
}
.text-center{
  text-align: center;
}
@media (min-width: 992px) {

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .float-lg-right{
    float: right;
  }

  .text-lg-right{
    text-align: right;
  }

  .d-lg-none{
    display: none;
  }

  .d-lg-block{
    display: block;
  }

}


