.portal-menu {
  display: flex;
  gap: 30px;
}
.portal-menu-item {
  display: flex;
}
.portal-menu-button {
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  fill: #1b2482;
  color: #1b2482;
  padding: 0px 0px 0px 0px;
  display: flex;
  gap: 6px;
  cursor: pointer;
}
.portal-menu-button:hover {
  color: #1b2482;
  fill: #1b2482;
}
.portal-menu-text {
  position: relative;
}
.portal-menu-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1b2482;
  opacity: 0;
  transition: all 0.3s;
  transition-timing-function: ease-out;
}
.portal-menu-button:hover .portal-menu-text:after {
  opacity: 1;
}
.field-portal-menu {
  position: relative;
}
.portal-menu-location-items {
  position: absolute;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 10px;
  z-index: 3;
  background-color: #ffffff;
  width: 420px;
  right: 0;
}
.portal-menu-location-items {
  display: none;
}
.field-portal-menu.drop-active .portal-menu-location-items {
  display: block;
}
