#whatsapp_widget {display: flex;justify-content: center;align-items: center;z-index:9999; position: fixed; right: 65px; bottom:161px; width: 50px; height: 50px;  background-color: #FFF; border-radius: 50px; box-shadow: 0px 6px 25px rgb(0 0 0 / 25%) }
#whatsapp_widget svg {margin:2px 1px 0 0;transition: height 0.4s; height: 90%; fill: #27D246;}
#whatsapp_widget:hover svg {height: 95%;}
#whatsapp_widget {animation: 3s radial-pulse 10s infinite; }
@media (max-width : 800px) {  
#whatsapp_widget {   
    
    bottom: 161px; /*отступ кнопки снизу от экрана*/
    right: 10px; /*отступ кнопки слева от экрана(right - справа)*/
  1
}
@keyframes radial-pulse { 0% {box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);} 50% {box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);} 100% {box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);} }
