@charset "UTF-8";
.offcanvas {
  position: fixed;
  z-index: 9999;
  top: 101px;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #fff;
  overflow-y: auto;
  transform: translateX(-105%);
  transition: transform 250ms ease;
  border-right: 1px solid #dcdcdc;
}
@media (max-width: 991px) {
  .offcanvas {
    top: 67px;
    width: 100vw;
    max-width: 100vw;
  }
}
.offcanvas.is-open {
  transform: translateX(0);
}
.offcanvas__toggler {
  width: 30px;
  height: 26px;
  aspect-ratio: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .offcanvas__toggler {
    margin-right: 50px;
  }
}
@media (max-width: 991px) {
  .offcanvas__toggler {
    margin-right: 20px !important;
  }
}
.offcanvas__toggler > div {
  width: 30px;
  height: 1px;
  background-color: #000;
  position: relative;
}
.offcanvas__toggler > div:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #000;
  transform: translateY(-12.5px);
}
.offcanvas__toggler > div:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #000;
  transform: translateY(12.5px);
}
.offcanvas__toggler {
  /* Stato quando offcanvas è aperto */
}
.offcanvas__toggler__open {
  width: 0;
  min-width: 0;
  margin-right: 0 !important;
}
.offcanvas-left {
  left: 0;
}
.offcanvas__header {
  display: table;
  width: 100%;
  padding: 25px 25px 0 25px;
  display: flex;
  justify-content: end;
}
.offcanvas__close {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}
.offcanvas__body {
  padding: 25px;
}
.offcanvas__link {
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  transition: all 0.2s ease-in-out;
}
.offcanvas__link:hover {
  color: #cd2c1e;
  text-indent: 5px;
}