//Estilos del menu de udiario editor de unidad.
.block-policia-editor-unidades {
	@include inline-block(top);
	margin-left: 3%; 
	max-width: 9%;
	
	@media screen and (min-width: $s-tb) and (max-width: $s-lg + 108) {
		margin-left: 1%;
	}
	.menu-editor {
    	cursor: pointer;
    	color: $c-brand-green-dark;
    	font-size: 114%;
    	font-weight: normal;

		@media screen and (min-width: $s-tb) and (max-width: $s-lg + 108) {
			font-size: 107%;
		}
	}

	> .content {
		ul {
			list-style: none;
			margin: 0;
		}

		ul.menu-list-1 {
			@include element-invisible;
		}
		.menu-editor-creation {
			background-image: url("../images/withe-arrow-bottom.png");
			background-repeat: no-repeat;
			background-position: 95% center;
			padding: 2% 5%;
    		display: block;
    		cursor: pointer;
    		color: $c-white;
    		font-size: 95%;

    		&.active {
				background-image: url("../images/withe-arrow-top.png");
    			background-color: shade($c-menu-observatory, 30);
				background-repeat: no-repeat;
				background-position: 95% center;
    		}

    		&:hover {
    			background-color: shade($c-menu-observatory, 30);
    		}
		}

		li.user-menu {
			border:none;
			position: relative;
		}

		ul.user-menu {
    		background: $c-menu-observatory;
    		box-shadow: 1px 1px 5px $c-black;
			position: absolute;
			z-index: 20;
   	 		display: inline-block;
    		width: 220px;
    		right: 0;
		}

		ul.user-submenu {
			display: none;

			li {
				a {
    				padding-left: 12%;
			        background-position: 15px 15px;
    				width: 83%;  
				}
			}
		}

		li.user-submenu {
			padding: 0;
			border: none;
		}

		li {
    		display: inline-block;
    		width: 100%;
    		
    		a {
    			background-image: url("../images/menu-bullet.png");
    			background-position: 9px 15px;;
    			background-repeat: no-repeat;
    			cursor: pointer;
    			color: #fff;
    			font-size: 95%;
    			font-weight: normal;
    			display: inline-block;
    			padding: 2% 5% 2% 8%;
   				width: 87%;

    			&:hover {
    				background-color: shade($c-menu-observatory, 30);
    				text-decoration: none;
    			}
    		}	
		}
	}
}