/* MAX contact button: appearance and destination match imkart.ru. */
.zp-max-contact {
  position: fixed;
  right: 40px;
  bottom: 80px;
  right: calc(40px + env(safe-area-inset-right, 0px));
  bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, .4);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.zp-max-contact img {
  display: block;
  width: 48px;
  height: 48px;
}

.zp-max-contact:focus-visible {
  outline: 3px solid #5333ee;
  outline-offset: 5px;
}

@media (max-width: 768px) {
  .zp-max-contact {
    right: 20px;
    bottom: 40px;
    right: calc(20px + env(safe-area-inset-right, 0px));
    bottom: calc(40px + env(safe-area-inset-bottom, 0px));
    width: 60px;
    height: 60px;
  }

  .zp-max-contact img {
    width: 36px;
    height: 36px;
  }
}

@media print {
  .zp-max-contact { display: none; }
}
