#mb-whp-contact {
  position: fixed;
  bottom: 30px;
  left: 20px;
  -webkit-animation: zoomInDown 1.5s;
  animation: zoomInDown 1.5s;
  z-index: 9999;
}

.whp-contact-icon {
  background: #dd3333;
  color: #fff;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px;
  cursor: pointer;
  position: relative;
}

.whp-contact-icon.hide {
  display: none;
}

.whp-contact-icon svg {
  width: 60px;
}

.whp-contact-item {
  position: relative;
}

.whp-contact-content {
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 140%;
  min-width: 320px;
  border-radius: 5px;
  box-sizing: border-box;
  transform-origin: 80% 105%;
  -o-transition: ease-out 0.2s all;
  transition: ease-out 0.2s all;
  transform: translateY(20px);
}

.whp-contact-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

div#mb-whp-contact>*:not(:last-child) {
  margin-bottom: 20px;
}

.whp-contact-button {
  position: relative;
}

.whp-contact-icon:before,
.whp-contact-icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  width: 80px;
  background: #dd3333;
  opacity: 0.5;
  z-index: -1;
  left: -15px;
  top: -14px;
  border-radius: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-animation: mbwph-pulse 2s infinite;
  animation: mbwph-pulse 2s infinite;
}

.whp-contact-icon:after {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.whp-contact-greeting {
  position: absolute;
  top: 0;
  left: 140%;
  max-width: 250px;
  width: 400px;
}

.whp-contact-greeting span {
  background: #fff;
  padding: 15px;
  font-size: 14px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: block;
  color: #787878;
}

.whp-contact-greeting:before {
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid #fff;
  top: 50%;
  left: -16px;
  z-index: 999;
  position: absolute;
  height: 1px;
  transform: translateY(-50%);
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
}

.whp-contact-close-greeting {
  position: absolute;
  top: -10px;
  right: -5px;
  z-index: 9999;
  width: 20px;
  background: #dd3333;
  color: #fff;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  box-sizing: border-box;
  padding: 2px;
  cursor: pointer;
  transition: 0.4s linear;
  opacity: 0;
  visibility: hidden;
}

.whp-contact-greeting:hover .whp-contact-close-greeting {
  opacity: 1;
  visibility: visible;
}

.whp-contact-icon-close {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  display: flex;
  -webkit-transform: rotate(180deg) scale(0);
  -ms-transform: rotate(180deg) scale(0);
  -webkit-transition: ease-in 0.12s all;
  -o-transition: ease-in 0.12s all;
  transition: ease-in 0.12s all;
  position: absolute;
}

.whp-contact-icon.show-close>svg {
  display: none;
}

.whp-contact-icon-close svg {
  width: 30px;
}

.active.whp-contact-icon-close {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
}

.whp-contact-greeting.hide {
  display: none;
}

.whp-contact-content-head {
  background: #dd3333;
  color: #fff;
  padding: 10px;
  border-radius: 5px 5px 0 0;
}

.whp-contact-content-body>*:hover {
  background: #eee;
}

.whp-contact-content-body>* {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.whp-contact-content-item>*:not(:last-child) {
  margin-right: 15px;
}

.whp-contact-content-item * {
  display: flex;
  width: 300px;
  text-decoration: none;
  align-items: center;
}

.whp-contact-content-item span {
  word-break: break-all !important;
}

.whp-content-item-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

#mb-whp-contact.whp-contact.mbwp-ct-right {
  right: 20px;
  left: inherit;
}

.whp-contact.mbwp-ct-right .whp-contact-content {
  left: inherit;
  right: 0;

}

.whp-contact.mbwp-ct-right .whp-contact-greeting {
  right: 140%;
  left: inherit;
}

.whp-contact.mbwp-ct-right .whp-contact-greeting:before {
  right: -15px;
  border-right: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid #fff;
  border-bottom: 8px solid transparent;
  left: inherit;
}

.whp-contact-content-item .whp-content-item-phone {
  flex-direction: column;
  align-items: baseline;
}



.whp-contact-content-item .whp-content-item-phone>* {
  margin: 0;
}

.whp-contact-content-item .whp-content-item-phone .whp-content-item-title {
  font-size: 18px;
}

.whp-contact-content-item .whp-content-item-phone p {
  font-size: 16px;
  color: #787878b8;
}

@-webkit-keyframes mbwph-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes mbwphRotate {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes mbwphRotate {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -500px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -500px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -500px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -500px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}


.woocommerce div.product form.cart .button {
  min-width: 130px !important;
  max-width: 200px !important;
  margin: 0px 5px;
}

.lst-n {
  list-style: none;
  display: inline-flex;

}

.lst-n li {
  margin: 0px 5px;
}

.lst-n li img {
  font-size: 14px;
}

.whp-qr {
  display: block;
  margin-inline: 0px;

}

.whp-qr h4 {
  text-align: center;
}

.whp-qr img {
  width: 150px;
  height: 150px;
  margin-inline: auto;
  display: block;
  margin-bottom: 40px;
}