
/*--------------------------------------------------------- scrollUp --------------------------------------------------*/

.scrollUp {
    width:30px;
    height:50px;
    position:fixed;
    bottom:30px; /* conviene que quede arriba del footer */
    right:40px; /* Izquierda o derecha según el diseño*/
    display:none;
    background: url('../img/ScrollUp.png') no-repeat; /* nuestra imagen*/
	background-size:100% 100%;
	z-index:500;
	opacity:0.7;
	
	-o-transition: all 700ms;
	-moz-transition: all 700ms;
	-webkit-transition: all 700ms;
	transition: all 700ms;
}

.scrollUp:hover {
	/*transform:scale(1.1);*/
    bottom:40px;
    height:60px;
	opacity:1;
}

.nicescroll-rails {
	border:1px solid #000;

	box-shadow: inset 0px 0px 15px #000;
   -webkit-box-shadow: inset 0px 0px 15px #000;
   -moz-box-shadow: inset 0px 0px 15px #000;
	
	}

/********** ScrollBar para IE ***************/	
/*
body {
	scrollbar-face-color:#ffc016;
	scrollbar-highlight-color:#000;
	scrollbar-shadow-color:#422c04;
	scrollbar-3dlight-color:#000;
	scrollbar-arrow-color:#ffc016; 
	scrollbar-track-color:#422c04; 
	scrollbar-drakshadow-color:#103047;
}
*/
/**************** ScrollBar para Chrome **********************/
/*
::-webkit-scrollbar {
    width: 10px;
}
	 
::-webkit-scrollbar-track {
	-webkit-box-shadow: #210d0e;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

::-webkit-scrollbar-track-piece {
	-webkit-box-shadow: #210d0e;
	-webkit-border-radius: 3px;
	background-color: #422c04;
}
	 
::-webkit-scrollbar-thumb {
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	background: #ffc016;
	height:15%;
}
*/

