/**
 * Dropdown
 * =========================================== */

/* Item Actions */
.item-actions {
	position: relative;
}
.item-actions > .item-btn {
	display: block;
	width: 28px;
	height: 28px;
	font-size: 20px;
	text-align: center;
	line-height: 28px;
	color: #0073aa;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.2s;
}
.item-actions.open > .item-btn,
.item-actions > .item-btn:hover {
	background-color: #e3e4e8;
}
.item-actions.open > .item-btn {
	transform: rotate(-90deg);
}
.item-actions > .dropdown-menu {
	position: absolute;
	top: 100%;
	right: -22px;
	left: auto;
	z-index: 1000;
	min-width: 160px;
	padding: 5px 0;
	margin: 5px 0 0;
	list-style: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 2px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
}
.item-actions.open > .dropdown-menu {
	display: block;
	font-size: 13px;
}
.item-actions > .dropdown-menu:after,
.item-actions > .dropdown-menu:before {
	content: '';
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	height: 0;
	width: 0;
	bottom: 100%;
	right: 30px;
	margin-right: -1px;
	border-bottom-color: #fff;
	border-width: 6px;
}
.item-actions > .dropdown-menu:before {
	border-bottom-color: #ccc;
}
.item-actions > .dropdown-menu:after {
	margin-bottom: -1px;
}
.item-actions > .dropdown-menu > li > a {
	padding: 5px 15px;
}
.item-actions > .dropdown-menu > li > a:hover {
	background-color: #e3e4e8;
}
.item-actions > .dropdown-menu > li > .disabled {
	background-color: #f1f1f1;
	color: #cecbcb;
	pointer-events: none;
}
.item-actions .divider {
	margin: 3px 0;
}
.item-actions-colored > .dropdown-menu {
	background-color: var(--blue);
	border: 0;
}
.item-actions-colored > .dropdown-menu:before {
	content: none;
}
.item-actions-colored > .dropdown-menu:after {
	border-bottom-color: var(--blue);
}
.item-actions-colored > .dropdown-menu > li > a {
	color: #fff;
}
.item-actions-colored > .dropdown-menu > li > a:hover {
	background-color: var(--medium-blue);
}
.item-actions-colored > .dropdown-menu .divider {
	background-color: var(--medium-blue);
	opacity: .4;
}
.item-actions > .btn.has-icon:after {
	content: '\f204';
	font-family: "UTP Fonts";
	display: inline-block;
	font-size: 16px;
	margin-top: -2px;
	vertical-align: middle;
	line-height: 1;
	transition: all .3s;
}
.item-actions > .btn.has-icon:not(:empty):after {
	margin-left: 10px;
}
.item-actions.open > .btn.has-icon:after {
	transform: rotate(-90deg);
}
