
/*------------------------- BOTÓN ABRIR MENÚ --------------------------------------*/

.button-social {
    position: fixed;
    width: 35px;
    height: 136.5px;
    top: 0;
    bottom: 300px;
    right: -36.333%;
    margin: auto;
    z-index: 150003;
    background-image: url(/sitio/portal/.content/imagenes/barra-accesos/redesMedios.png);
    background-position: 0 0;
    box-shadow: 0 0 10px #000;
    border-right: none;
    cursor: pointer;
	transition: 0.5s ease-out right !important
}

.button-social:hover{
	background-position: 0 136.5px;
} 

.button-social.showBtnSocial{
    background-position: 0px 0;
	right: 0;

}

@media(max-width: 991px){
	.button-social.showBtnSocial{
		display: none !important;
	}
}

.button-social.showBtnSocial:hover{
    background-position: 0px 136.5px;

}

@media (max-width: 767px){
	.button-social.showBtnSocial{
		right: 0 !important;
	}
}



