@charset "UTF-8";
/* ===== MENU POPUP LAYOUT ===== */
#menu-popup {
  visibility: hidden;
  z-index: 665;
  width: 100%;
  max-width: 745px;
  height: 100%;
  top: 0;
  right: 0;
  transform: translateX(110%);
  position: fixed;
  overflow-y: auto;
  background-color: white;
  transition: transform 300ms ease-in-out;
  transition-delay: 100ms;
}
#menu-popup.is-active {
  visibility: visible;
  transform: translateX(0%);
  transition: transform 300ms ease-in-out;
}

/* ===== CLOSE BUTTON ANIMATION ===== */
#menu-close-button {
  display: block;
  color: black;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 10px;
  position: absolute;
  top: 75px;
  left: 63px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  #menu-close-button {
    left: 115px;
  }
}
#menu-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;
}
#menu-close-button:hover:before {
  transform: rotate(180deg);
  transition: transform 300ms ease;
  transition-delay: 100ms;
}

/* ===== MENU POPUP STYLE ===== */
#menu-popup {
  /* Quando si passa il mouse su un elemento del menu, tutte le altre voci diventano più chiare */
}
#menu-popup .menu-wrap {
  padding-top: 100px !important;
}
#menu-popup .menu-wrap a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  color: black;
  font-size: 25px;
  margin: 10px 0;
}
@media (min-width: 992px) {
  #menu-popup .menu-wrap a {
    font-size: 40px;
  }
}
#menu-popup .menu-wrap .text-red a {
  color: #d1342d;
}
#menu-popup .social a:before {
  color: black;
  font-size: 25px;
}
#menu-popup .social a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}
#menu-popup .top.menu-wrap li {
  display: flex;
}
#menu-popup .top.menu-wrap ul#menu-main-menu li.menu-item a, #menu-popup .top.menu-wrap .search-form {
  opacity: 1;
  transition: opacity 0.3s ease;
}
#menu-popup .top.menu-wrap:hover ul#menu-main-menu li.menu-item a:not(:hover) {
  opacity: 0.5;
}
#menu-popup .top.menu-wrap:hover .search-form:not(:hover) {
  opacity: 0.5;
}

/* ===== MENU POPUP LOGO ===== */
.popup-logo-wrap {
  width: auto;
  height: 75px;
  top: 75px;
  right: 45px;
  filter: invert(1);
}
@media (min-width: 992px) {
  .popup-logo-wrap {
    height: 150px;
  }
}
.popup-logo-wrap img {
  width: 100%;
  height: 100%;
}

#menu-popup .search-form label {
  text-transform: capitalize !important;
  text-decoration: none;
  font-weight: 600;
  color: black;
  margin: 0;
  font-size: 25px;
}
#menu-popup .search-form input[type=text] {
  color: black;
  padding: 0 15px 0 10px;
}
#menu-popup .search-form input[type=submit] {
  filter: brightness(0);
}
#menu-popup .search-form.is-active input[type=text] {
  border-bottom-color: black;
}