/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/

/* Плавающая кнопка WhatsApp */
.fixed_whatsapp {
	position: fixed;
    bottom: 30px; 
    right: 30px;
    z-index: 9999;
	background: #25d366;
	font-size: 1.5rem !important;
	line-height: 4rem;
	text-align: center;
	height: 4rem !important;
	width: 4rem !important;
	border-radius: 50%;
	transition: 0.3s ease all;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.fixed_whatsapp:hover {
	transform: scale(1.1);
}

.fixed_whatsapp a,
.fixed_whatsapp a:hover {
	color: white;
    padding-top: 4px;
    padding-left: 1px;
}

.pulse {
	box-shadow: 0 0 0 rgba(204,169,44, 0.4);
	animation: pulse 2s infinite;
}

.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}