.urunbg{background: #ffffff no-repeat center center; background-size: contain;}

.whatsapp {
    position: fixed;
    left: 10px;
    bottom: 0;
    background: #00ba07;
    border-radius: 10px 10px 0 0;
    color: #fff;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0px 2px 14px 0px #000;
    -moz-box-shadow: 0px 2px 14px 0px #000;
    -webkit-box-shadow: 0px 2px 14px 0px #000;
    z-index: 999;
}

.waves {
	position: fixed;
	bottom: 40px;
	left: 40px;
	background-color: rgba(0,0,0,1);
	background-size: 100%;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	-webkit-backface-visibility: hidden;
	text-align: center;
	line-height: 22px;
	font-size: 15px;
	display: block;
	font-weight: bold;
	color: #fff!important;
	cursor: pointer;
	z-index:999;
	text-decoration: none;	
}
	
.waves:before {
	position: absolute;
	background-color:  var(--primary);
	width: 70px;
	height: 70px;
	-webkit-transform:translate(-50%,-50%);
	  -ms-transform:translate(-50%,-50%);
		  transform:translate(-50%,-50%);
	
	content: "";
	display: block;
	border-radius: 50%;
	-webkit-backface-visibility: hidden;
	-webkit-animation: wave-animate 3s infinite linear;
		  animation: wave-animate 3s infinite linear;
}
.waves.no_before:before {
	display: none!important;
}
.waves:after {
	position: absolute;
	background:  var(--primary);
	top: 0;
	width: 70px;
	height: 70px;
	content: "";
	display: block;
	border-radius: 50%;
	-webkit-backface-visibility: hidden;
	opacity: 0;
	-webkit-animation: wave-animate 3s 1.5s infinite linear;
		  animation: wave-animate 3s 1.5s infinite linear;
}
@-webkit-keyframes wave-animate {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@keyframes wave-animate {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}