.header-user-menu--login {
  margin-left: 31px;
  background: #CFD6E5;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 15px;
  letter-spacing: 0.07em;
  color: #002F87;
  min-height: 60px;
  display: flex;
  transition: all 0.2s ease-in-out !important;
  align-items: center;
}
.header-user-menu--login:hover {
  background: #002F87;
  color: #fff;
}
.header-user-menu--login:hover span {
  border-color: rgba(255, 255, 255, 0.15);
}
.header-user-menu--login span {
  padding-right: 16px;
  border-right: 2px solid rgba(0, 47, 135, 0.15);
  line-height: 40px;
}
.header-user-menu--login svg {
  margin-left: 16px;
}
.header-user-menu--block {
  position: relative;
}
.header-user-menu--block-button {
  margin-left: 31px;
  background: #CFD6E5;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 15px;
  letter-spacing: 0.07em;
  color: #002F87;
  min-height: 60px;
  display: flex;
  transition: all 0.2s ease-in-out;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-user-menu--block-dropdown {
  position: absolute;
  right: -13px;
  background: white;
  border-radius: 10px;
  top: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 999;
}
.header-user-menu--block-dropdown-wrap {
  min-width: 200px;
  display: flex;
  flex-direction: column;
}
.header-user-menu--block-dropdown-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.header-user-menu--block-dropdown-row:hover:not(.disabled) {
  background: #CFD6E5;
}
.header-user-menu--block-dropdown-row:first-of-type {
  padding-top: 20px;
}
.header-user-menu--block-dropdown-row:last-of-type {
  padding-bottom: 20px;
}
.header-user-menu--block-dropdown-row.disabled {
  cursor: not-allowed;
}
.header-user-menu--block.active .header-user-menu--block-dropdown {
  top: calc(100% + 20px);
  max-height: 400px;
}

@media only screen and (max-width: 1440px) {
  .page-template-dashboard .header-user-menu--block-dropdown {
    right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .public-header .header-user-menu {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .mobile-menu .header-user-menu--login {
    margin: 0;
  }
  .mobile-menu .header-user-menu--login span {
    width: 100%;
  }
  .mobile-menu .header-user-menu--block-button {
    margin: 0;
  }
  .mobile-menu .header-user-menu--block-dropdown {
    right: 0;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.2588235294);
    width: 100%;
  }
}