.dropdown-add-button {
	display: block;
	width: 50px;
	min-width: 50px;
	height: 50px;
	line-height: 50px;
	position: relative;
	text-align: center;
	transition: all 0.2s ease-out;
	padding: 0 !important;

	.icon-add {
		position: absolute;
		top: 12px;
		right: 8px;
		font-size: 12px;
		color: rgba(0,0,0,0.3);
		transition: color 0.2s ease-out;
	}

	.icon {
		font-size: 16px;
	}

	&:hover {
		cursor: pointer;
		background: rgba(0,0,0,0.1);

		.icon-add {
			color: $color__primary;
		}
	}
}
