/*** User Menu ***/
body:not(.user-logged-in) .um-menu {
  display: none;
}

.um-menu {
  --um-user-circle-size: 35px;
  --um-arrow-size: 15px;
  --um-offset-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.um-welcome {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.6363636363;
  text-transform: uppercase;
  color: var(--black);
  margin-right: var(--um-offset-gap);
}

.um-circle {
  font-size: 0;
  background: url(img/user-default-pic.svg) center no-repeat;
  background-size: contain;
  width: var(--um-user-circle-size);
  height: var(--um-user-circle-size);
  border-radius: 100%;
  pointer-events: none;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bg-c4);
  margin-right: var(--um-offset-gap);
  display: flex;
  align-items: center;
  justify-content: center;
}

.um-circle img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: var(--um-user-circle-size);
  background-color: var(--white);
}

.header-loaded .um-circle {
  pointer-events: auto;
}

.um-circle-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.um-circle-arrow {
  font-size: 0;
  display: flex;
  width: var(--um-arrow-size);
  height: var(--um-arrow-size);
  background: url(img/down.svg) center no-repeat;
  transition: transform 0.3s ease;
  background-size: contain;
}

.um-circle-wrap:hover .um-circle-arrow {
  background-image: url(img/down_hover.svg);
}

.open .um-circle-arrow {
  transform: rotate(180deg);
}

/* .um-circle:hover::after,
.open .um-circle::after {
  background: url(img/dropdown_hover.svg) center no-repeat;
} */

.um-box {
  display: none;
  position: absolute;
  top: var(--header-height);
  max-width: 150px;
  border: 1px solid var(--br-c1);
  padding: 10px 15px;
  width: 100%;
  transition: top var(--header-animation-time) ease;
  background: var(--header-bg);
}

.um-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.um-links li a {
  display: block;
  color: var(--primary);
  padding: 0 0 5px;
}

.um-links li:not(:last-child) a {
  margin-bottom: 5px;
  border-bottom: 1px solid var(--br-c1);
}


.um-links .active a,
.um-links a:hover {
  color: var(--secondary);
}

/*** END OF User Menu ***/
