html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.remodal,
[data-remodal-id] {
  display: none;
}

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  display: inline-block;
}
.pulse-button {
	display: block; 
	position: fixed;
	bottom: 50px;
	right: 50px;
	outline: none;
	width: 60px;
	height: 60px;
	border: none;
	box-shadow: 0 0 0 0 rgba(50, 155, 100, 0.7);
	border-radius: 50%;
	background-color: #f8f8f8;
	background-image: url(/ajaxform/img/phone.png);
	z-index: 9999;
	background-size: 80%;
	background-repeat: no-repeat;
	cursor: pointer;
	-webkit-animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
	-moz-animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
	-ms-animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
	animation: pulse 2.25s infinite cubic-bezier(0.66, 0, 0, 1);
	background-position: center;
}
.pulse-button:hover 
{
  -webkit-animation: none;-moz-animation: none;-ms-animation: none;animation: none;
}
@-webkit-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(255, 65, 85, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(255, 65, 85, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(255, 65, 85, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 45px rgba(255, 65, 85, 0);}}