

	.floating{
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	right:70px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
       font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.float-button{
	margin-top:16px;
} 

.minus {
    background: 0 0;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
    box-shadow: none;
    color: #5e5e5e;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    line-height: 13px;
    margin: 0;
    overflow: visible;
    outline: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    vertical-align: text-top;
    width: 40px;
    border-radius: 0.25rem 0 0 0.25rem;
}

.plus {
    background: 0 0;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
    box-shadow: none;
    color: #5e5e5e;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    line-height: 13px;
    margin: 0;
    overflow: visible;
    outline: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    vertical-align: text-top;
    width: 40px;
    border-radius: 0 0.25rem 0.25rem 0;
    right: 0;
    top: 0;
}

.qty {
    border: 1px solid #f0f0f0;
    box-shadow: none;
    float: left;
    height: 40px;
    padding: 0 39px;
    text-align: center;
    width: 125px;
    font-weight: 700;
    font-size: 1em;
    outline: 0;
    border-radius: 0.25rem;
}

.quantity {
    margin: 0 15px 25px 0;
    overflow: hidden;
    position: relative;
    width: 125px;
    height: 40px;
    float: left;
}

 .blink-button {
      background-color: #FAC868;
      color: black;
      padding: 8px 12px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      animation: blink 2s infinite;
      /*box-shadow: 0 0 10px #ff4d4d;*/
      transition: transform 0.3s ease;
    }

    .blink-button:hover {
      transform: scale(1.1);
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }