.pp-contact-slideout {
  position: fixed;
  z-index: 99;
  display: flex;
  align-items: stretch;
  color: var(--pp-cs-text, #111111);
  font-family: inherit;
}

.pp-contact-slideout--right {
  right: 0;
  transform: translateX(calc(100% - 40px));
}

.pp-contact-slideout--left {
  left: 0;
  flex-direction: row-reverse;
  transform: translateX(calc(-100% + 40px));
}

.pp-contact-slideout--top {
  top: 18vh;
}

.pp-contact-slideout--center {
  top: 50%;
  translate: 0 -50%;
}

.pp-contact-slideout--bottom {
  bottom: 18vh;
}

.pp-contact-slideout,
.pp-contact-slideout__tab,
.pp-contact-slideout__panel {
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.pp-contact-slideout.is-open,
.pp-contact-slideout--hover:hover,
.pp-contact-slideout:focus-within {
  transform: translateX(0);
}

.pp-contact-slideout__tab {
  display: grid;
  place-items: center;
  width: 40px;
  min-height: 190px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
}

.pp-contact-slideout--right .pp-contact-slideout__tab {
  border-right: 0;
  border-radius: 15px;
  border: 1px solid #ffffff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: #000;
}

.pp-contact-slideout--left .pp-contact-slideout__tab {
  border-left: 0;
  border-radius: 0 32px 32px 0;
}

.pp-contact-slideout__tab span {
  display: block;
  white-space: nowrap;
  transform: rotate(-90deg);
  font-size: 20px;
  line-height: 1;
  left: -43px;
  font-family: "Lora", serif;
  position: absolute;
}

.pp-contact-slideout--left .pp-contact-slideout__tab span {
  transform: rotate(90deg);
}

.pp-contact-slideout__panel {
  width: min(var(--pp-cs-width, 360px), calc(100vw - 58px));
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-right: 0;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.13);
}

.pp-contact-slideout__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  min-height: 76px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #111111;
  color: var(--pp-cs-text, #111111);
  text-decoration: none;
}

.pp-contact-slideout__item:last-child {
  border-bottom: 0;
}

.pp-contact-slideout__item:hover,
.pp-contact-slideout__item:focus {
  background: color-mix(in srgb, var(--pp-cs-accent, #5965f3) 10%, #ffffff);
  color: var(--pp-cs-text, #111111);
  outline: none;
}
.pp-contact-slideout__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
}

.pp-contact-slideout__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: currentColor;
}

.pp-contact-slideout__item--whatsapp .pp-contact-slideout__icon svg {
  width: 36px;
  height: 36px;
}

.pp-contact-slideout__copy {
  min-width: 0;
}

.pp-contact-slideout__label,
.pp-contact-slideout__value {
  display: block;
}

.pp-contact-slideout__label {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.15;
}

.pp-contact-slideout__value {
  margin-top: 0.15rem;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
  line-height: 1.2;
}

@media (max-width: 680px) {
  .pp-contact-slideout {
    right: 0;
    left: 0;
    bottom: 0;
    top: auto;
    translate: none;
    display: block;
    transform: translateY(calc(100% - 40px));
  }

  .pp-contact-slideout--left,
  .pp-contact-slideout--right {
    transform: translateY(calc(100% - 40px));
  }

  .pp-contact-slideout.is-open,
  .pp-contact-slideout--hover:hover,
  .pp-contact-slideout:focus-within {
    transform: translateY(0);
  }

  .pp-contact-slideout__tab {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-top: 3px solid color-mix(in srgb, var(--pp-cs-accent-hover, #4250d8) 80%, #000000);
    border-radius: 18px 18px 0 0;
  }

  .pp-contact-slideout__tab span,
  .pp-contact-slideout--left .pp-contact-slideout__tab span {
    transform: none;
    font-size: 1rem;
  }

  .pp-contact-slideout__panel {
    width: 100%;
    border: 0;
  }

  .pp-contact-slideout__item {
    min-height: 64px;
    padding: 0.85rem 1rem;
  }

  .pp-contact-slideout__label {
    font-size: 1rem;
  }

  .pp-contact-slideout__value {
    font-size: 0.95rem;
  }
}
