li.profile_dropdown {
	position: relative;
	float: left;
	margin-right: 10px;
}
.dropdown-item {
    display: flex;
    width: 100%;
    padding: 10px 20px;
    clear: both;
    /* font-weight: 600; */
    color: darkslategray;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    /* justify-content: space-between; */
    align-items: center;
    font-size: 15px;
}
li.profile_dropdown a.rounded-circle .budget {
	position: absolute;
	font-size: 12px;
	right: 0;
	background-color: #38d2b5;
	/* padding: 5px; */
	width: 17px;
	height: 17px;
	border-radius: 50%;
	text-align: center;
	line-height: 17px;
	font-weight: 700;
	top: 10px;
	box-shadow: 0px 0px 5px gray;
}
.profile_img{
    width:40px;
    height:40px;
}
li.profile_dropdown a.rounded-circle {
	color: #fff;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 25px;
	padding: 10px;
	position: relative;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    background-color: #11bf9d;
}
.dropdown-item i {
    font-size: 19px;
    /*color: #0da487;*/
    width: 30px;
}
.profile_dropdown_menu {
    width: max-content;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in;
    position: absolute;
    background-color: #fff;
    right: 0;
    min-width: 160px;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
    border-radius: 0.5rem;
    line-height:22px;
}
.profile_menu_div {
    display: flex;
    justify-content: end;
}
/*.list-unstyled {*/
/*    width: max-content;*/
/*}*/
.profile_dropdown:hover > .profile_dropdown_menu {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.dropdown-submenu:hover > .profile_dropdown_menu {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 990px) {
  .dropright-lg {
    position: relative;
  }
  .dropright-lg .profile_dropdown_menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-right: 0.125rem;
  }
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: ">";
  border-top: 0rem;
  border-right: 0rem;
  border-bottom: 0;
  border-left: 0rem;
  float: right;
}