/**
 * PrestaShop module created by bahman.rostampoor
 *
 * @author mypresta.ir
 * @license EULA: This program is not free software and you can't resell and redistribute it
 *
 * CONTACT WITH DEVELOPER http://mypresta.ir
 * support@mypresta.ir
 */
 
 .go_cart {
  color: #242424 ;
  border: 0;
  border-radius: 7px;
  margin: 5px;
  display:inline-block;
  background: #fff;
  font-size: 14px;
  padding: 9px;
}
.js-product-availability .alert{
		border:1px solid rgba(0,0,0,0.07)
}
.js-product-availability{
	display:none !important;
}
.js-product-availability.bahman{
	display:block !important;

}
.arroanim {
  display: inline-flex;
  margin-right: 10px !important;
  animation: slide1 1s ease-in-out infinite;
}
@media (max-width: 768px) {
.js-product-availability .alert {
  background: #ecfaff;
  margin-bottom: 0 !important;
  position: fixed;
  z-index: 999999;
  bottom: 0;
  width: 100%;
  left: 0;
  box-shadow: 0 -1px 1px rgba(0,0,0,.14),0 -2px 2px rgba(0,0,0,.05);
  border: 0;
}
}


@keyframes slide1{0%,100%{transform:translate(0,0)}50%{transform:translate(8px,0)}}