.wrapper-dropdown {
	font-weight: 300;
	font-size: 1rem;
	color: #333;

	/* Size & position */
	position: relative;
	width: 44px;
	margin: 0 auto;
	padding: 3px 6px;

	/* Styles */
	background: #fff;
	border-radius: 2px;
	box-shadow: 0 1px 0 rgba(0,0,0,0.2);
	cursor: pointer;
	outline: none;

	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.wrapper-dropdown:after { /* Little arrow */
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 50%;
	right: 8px;
	margin-top: -3px;
	border-width: 6px 6px 0 6px;
	border-style: solid;
	border-color: #4cbeff transparent;
}

.wrapper-dropdown .dropdown {
	/* Size & position */
	position: absolute;
	top: 100%;
	/*left: 0;*/
	right: 0;
	width: 220px;
	text-align: right;

	/* Styles */
	background: #fff;
	border-radius: 0 0 5px 5px;
	border: 1px solid rgba(0,0,0,0.2);
	border-top: none;
	border-bottom: none;
	list-style: none;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;

	/* Hiding */
	max-height: 0;
	overflow: hidden;
}

.wrapper-dropdown .dropdown li {
	padding: 0 0 4px 0;
	margin: 6px 10px;
	border-bottom: 1px solid #e6e8ea;
}
.wrapper-dropdown .dropdown li:last-of-type { padding-bottom: 0; border: none; }

.wrapper-dropdown .dropdown li a {
	display: block;
	text-decoration: none;
	color: #000000;
	padding: 0;
	transition: all 0.3s ease-out;
}

.wrapper-dropdown .dropdown li i {
	margin-right: 5px;
	color: inherit;
	vertical-align: middle;
}

/* Hover state */
.wrapper-dropdown .dropdown li:hover a { color: var(--global-color-numred); }

/* Active state */
.wrapper-dropdown.active {
	border-radius: 5px 5px 0 0;
	background: #4cbeff;
	box-shadow: none;
	border-bottom: none;
	/* color: white; */
}

.wrapper-dropdown.active:after { border-color: #82d1ff transparent; }

.wrapper-dropdown.active .dropdown {
	border-bottom: 1px solid rgba(0,0,0,0.2);
	max-height: 400px;
}

/*
.wrapper_entete .topuser_icon i.fa { font-size: 1.250rem;	color: #ffffff; }
.wrapper_entete .topuser_icon:hover i.fa { color: #b70005; }

.wrapper_entete .wrapper-dropdown {
	background: transparent;
	color: #818181;
	box-shadow: none;
	padding: 0;
	z-index: 701;
}

.wrapper_entete .wrapper-dropdown .dropdown { width: 180px; }
.wrapper_entete .wrapper-dropdown:after { content: none; }
.wrapper_entete .wrapper-dropdown.active { background: transparent; }
*/