
.praxis-floating-contact {
  position: fixed;
  top: 52%;
  right: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateY(-50%);
}

.praxis-floating-phone {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #80C9BF;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: width 0.3s ease;
}

.praxis-floating-contact:hover .praxis-floating-phone,
.praxis-floating-phone:focus {
  width: 184px;
  color: #fff;
}

.praxis-floating-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.praxis-floating-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.praxis-floating-number {
  padding-right: 14px;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.2s ease 0.08s,
    transform 0.2s ease 0.08s;
}

.praxis-floating-contact:hover .praxis-floating-number,
.praxis-floating-phone:focus .praxis-floating-number {
  opacity: 1;
  transform: translateX(0);
}

.praxis-floating-top {
  width: 40px;
  height: 40px;
  margin-top: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #80C9BF;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.praxis-floating-top:hover {
  background: #69bbb3;
}

.praxis-floating-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .praxis-floating-contact {
    top: 52%;
  }

  .praxis-floating-contact:hover .praxis-floating-phone,
  .praxis-floating-phone:focus {
    width: 184px;
  }
}