.near-me-account {
  position: relative;
}  

.near-me-account summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 2px 4px;
  color: #676767;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.near-me-account summary::-webkit-details-marker {
  display: none;
}

.near-me-account summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.near-me-account[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.near-me-account summary:hover {
  color: #03a9f3;
}

.near-me-account summary:focus {
  outline: none;
}

.near-me-account-avatar {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(3, 169, 243, .24);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #03a9f3;
  background: #f4fbff;
  flex: 0 0 auto;
}

.near-me-account-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.near-me-account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1000;
  width: 210px;
  padding: 7px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
}

.near-me-account-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.near-me-account-menu a:hover {
  color: #03a9f3;
  background: #f4fbff;
}

.near-me-account-menu a + a {
  margin-top: 3px;
  border-top: 1px solid #e5e7eb;
}
