@charset "utf-8";
.wrap-w {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 80px;
  right: 28px;
  z-index: 999;
}

.button-w {
  width: 53px;
  height: 53px;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #313133;
  background: #4FD1C5;
background: linear-gradient(90deg, #3fd432 0%, #21c313 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 0 2px 19px rgba(61,61,61,.85);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }

button-w::before {
content: '';
  border-radius: 1000px;
  min-width: calc(50px + 12px);
  min-height: calc(50px + 12px);
  border: 6px solid #00FFCB;
  box-shadow: 0 0 60px rgba(61,61,61,.85);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button-w:hover, .button:focus {
  color: #313133;
  transform: translateY(-6px);
}

.button-w:hover::before, .button-w:focus::before {
  opacity: 1;
}

.button-w::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #21c313;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.button-w:hover::after, .button-w:focus::after {
  animation: none;
  display: none;
}

.text-call{
	position: absolute;
  right: 67px;
  bottom: 11px;
  font-size: 16px;
  background: #fff;
  padding: 5px 12px;
  border-radius: 15px;
	color: #000;
	box-shadow: var(--box-shadow2);
}

.text-call img{
	position: absolute;
  right: -7px;
  top: 7px;
}
@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}
  
@media (max-width: 599px) {
    /*.wrap-w {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 25px;
  right: 28px;
  z-index: 999;
}*/
    
}

