	/* MENU SUPERIOR */
	#logo_cabecera.conscroll {
		width: 80px;
	}

	#logo_cabecera {
	width: 80px; 
	  transition-property: width;
	  transition-duration: 500ms;
	  transition-timing-function: linear;
	}

	@media only screen and (max-width: 1000px) {
		#logo_cabecera {
			width: 80px; 
		}
	}

	@media only screen and (max-width: 500px) {
		#logo_cabecera {
			width: 100px; 
		}
    }	

	.mobile-nav-toggle {
		position: fixed;
		right: 15px;
		top: 15px;
		z-index: 9998;
		border: 0;
		font-size: 24px;
		transition: all 0.4s;
		outline: none !important;
		background-color: black;
		color: #fff;
		width: 40px;
		height: 40px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		line-height: 0;
		border-radius: 5px;
		cursor: pointer;
	}
	
	
	
	