/* ===== MENU POPUP LAYOUT ===== */
#contact-popup {
  z-index: 665;
  width: 100%;
  max-width: 545px;
  min-height: 100vh;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-110%);
  position: fixed;
  overflow: auto;
  background-color: white;
  transition: transform 300ms ease-in-out;
  transition-delay: 100ms;
}
#contact-popup.is-active {
  transform: translateX(0%);
  transition: transform 300ms ease-in-out;
}
#contact-popup.is-active #contact-close-button {
  transform: rotation();
}

/* ===== CLOSE BUTTON ANIMATION ===== */
#contact-close-button {
  display: block;
  color: black;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 10px;
  position: absolute;
  top: 0px;
  left: 13px;
  cursor: pointer;
}
#contact-close-button:before {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024' fill='currentColor' overflow='hidden'%3E%3Cpath d='M810.66 170.66q18.33 0 30.495 12.165 12.165 12.165 12.165 30.495 0 18.002-12.329 30.331L572.314 511.98l268.677 268.329q12.329 12.329 12.329 30.331 0 18.33-12.165 30.495-12.165 12.165-30.495 12.165-18.002 0-30.331-12.329L512 572.293 243.671 840.97q-12.329 12.329-30.331 12.329-18.33 0-30.495-12.165-12.165-12.165-12.165-30.495 0-18.002 12.329-30.331L451.686 511.98 183.009 243.651q-12.329-12.329-12.329-30.331 0-18.33 12.165-30.495 12.165-12.165 30.495-12.165 18.002 0 30.331 12.329L512 451.666l268.329-268.677q12.329-12.329 30.331-12.329z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: absolute;
  left: -20px;
  top: -3px;
  transition-delay: 100ms;
  transition: transform 300ms ease;
}
#contact-close-button:hover:before {
  transform: rotate(180deg);
  transition: transform 300ms ease;
  transition-delay: 100ms;
}

/* ===== MENU POPUP STYLE ===== */
#contact-popup .popup-content {
  height: fit-content;
  position: relative;
}
#contact-popup .popup-content {
  padding: 80px 0 !important;
}
@media (min-width: 992px) {
  #contact-popup .popup-content {
    padding: 100px 0 !important;
  }
}
#contact-popup .sopratitolo {
  color: black;
  font-size: 14px;
  font-weight: 600;
}
#contact-popup .title {
  color: black;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 1.75px;
}
#contact-popup .text {
  color: black;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 300;
  max-width: 380px;
}
#contact-popup .contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
}
#contact-popup .contact-info p.text-link {
  font-size: 20px;
  font-weight: 200;
}
#contact-popup .contact-info a {
  font-weight: 500;
  font-size: 20px;
  color: black;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  line-height: 1.2em;
}
#contact-popup .popup-contatti-logo {
  z-index: -1;
  opacity: 0.2;
  width: auto;
  height: 180px;
  bottom: -150px;
  left: -90px;
  filter: invert(1);
  display: none;
}
#contact-popup .popup-contatti-logo img {
  width: 100%;
  height: 100%;
}

#contact-popup .wrap-calendario, #contact-popup .calendly-inline-widget, #contact-popup iframe {
  overflow: visible !important;
  height: 1075px;
}