.rf.item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
}
.rf.item-wrapper .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  position: relative;
  background-position: center;
  background-position-x: right;
  background-repeat: no-repeat;
  background-size: 12px;
  background-image: url(/static/frontend/Custom/Custom/en_US/images/arrow-down.webp);
  padding-right: 15px;
}
.rf.item-wrapper .menu-item .submenu {
  background: #F5F5F5;
  box-shadow: 0px 3px 6px #00000029;
  padding: 15px;
  min-width: 250px;
}
.rf.item-wrapper .menu-item .submenu-wrapper {
  position: absolute;
  left: 0;
  top: calc(100%);
  padding-block: 10px;
  transition: 0.12s;
  opacity: 0;
  pointer-events: none;
}
.rf.item-wrapper .menu-item .submenu-wrapper:hover {
  opacity: 1;
  pointer-events: all;
}
.rf.item-wrapper .menu-item:hover .submenu-wrapper {
  opacity: 1;
  pointer-events: all;
}