//Bloque del menu de incorporaciones (Bloque lateral flotante) 
.block-menu-menu-incorporaci-n {
    background: tint($c-brand-green, 20);
    max-height: 160px;
    min-height: 160px;
    right: 0;
    overflow: hidden;
    padding: 10px 12px 10px 44px;
    position: fixed;
    top: 65px;
    
    @media screen and (min-width: $s-tb) and (max-width: $s-lg + 76) {
        padding-left: 34px;
    }
    &.active {
    	background: rgba(tint($c-brand-green, 10), 0.8);
    	padding-left: 64px;

        .content-title {
            background: url('../images/withe-arrow.png') no-repeat 7px center;
        }
	}

	.content-title {
        background: url('../images/withe-arrow-left.png') no-repeat 7px center;
    	cursor: pointer;
		float: left;
    	height: 180px;
    	left: 0;
    	position: absolute;
    	top: 0;
    	width: 54px;
	}

	.block-title {	
    	color: $c-white;
	    font-size: 1.1em;
    	font-weight: 100;
    	left: -26px;
    	position: absolute;
		transform: rotate(-90deg);
    	top: 79px;
	}

	> .content {
    	background: rgba($c-black, 0.9);
    	display: none;
    	float: right;
    	max-height: 160px;
        min-height: 160px;
   		width: 900px;
		
        .thumbnail-incorporaciones {
            float: left;
            width: 19%;

            img {
                max-height: 160px;
            }
        }

        .menu {
            float: right;
            margin: 0;
            padding: 2%;
            width: 77%;
        } 

		.menu-item {
			clear: left;
			float: left;
			list-style: none;
            width: 50%;

			&:nth-child(2n) {
				clear: right;
				float: right;
			}

			a, a:link {
				color: $c-expanded-menu;
				padding-left: 10px;
				font-weight: 500;
				font-size: 0.9em;
                position: relative;

                &:before {
                    @include size(6px, 10px);
                    content: '';
                    background: url('../images/sprite.png') no-repeat -211px -19px;
                    left: 0;
                    position: absolute;
                    top: 5px;
                }
			}
		}
	}	
}


