@charset "utf-8";
/* CSS Document */
*{
	margin:0;
	padding: 0;
}
html{
	scroll-behavior:smooth;
}
/*----------------------------*/
/*:target::before{
	content:"";
	display:block;
	height: 30px;
	margin-top: -30px;
}*/

.scrollmenuMov {
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: medium;
	margin: 0;
	padding: 0;
	position:fixed;
	bottom: 0;
	box-sizing: border-box;	
	width:100%;
	background-color:#002171;
	overflow: auto;
	white-space: nowrap;
	display:flex;
	flex-direction:row;
}
.scrollmenuMov::-webkit-scrollbar {
 height: 30px;
}
.scrollmenuMov::-webkit-scrollbar-thumb {
 background: linear-gradient(13deg, #ff003c 14%,#a6030e 64%);
 border-radius: 15px;
	width: 15px;
}
.scrollmenuMov::-webkit-scrollbar-thumb:hover{
 background: linear-gradient(13deg, #3d0101 14%,#800000 64%);		
}
.scrollmenuMov::-webkit-scrollbar-track{
 background: #002171;
 border-radius: 0px;
 box-shadow: inset 0px 0px 12px #000045;
}
.linkMenuItem {
  /*display: inline-block;*/
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  margin-bottom: 10px;
	transition: .5s all;
}
.linkMenuItemActive {
background-color: #c4001d;
}