#menuTrigger {
  background-color: white;
  position:fixed;
  top: 50%;
  left: -125px;
  height: 250px;
  width: 150px;
  z-index: 9999;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  transition: left 0.3s ease;
  border-top-right-radius:5px;
	border-bottom-right-radius:5px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
}

/* Aggiunta della classe .open per spostare il menu */
span.arrow-icon {
  	cursor: pointer;
    z-index: 99999;
    width: 28px;
    height: 28px;
    
    transition: transform 0.3s ease;
}

span.arrow-icon img{
	height: 100%;
    width: 100%;
    object-fit: cover;
}

.menu-trigger.open span.arrow-icon {
  transform: rotate(-180deg);
}

#menuTrigger.open {
	left:0;
}

span.arrow-icon:hover {
  color: #2FA2EF;
}

ul#offcanvas-menu {
  display: flex;
  flex-direction: column;
}

ul#offcanvas-menu li {
  margin: 0px 15px;
border-top:0px !important	;
}

ul#offcanvas-menu li:hover {
  border-top:0px !important	;
}

