div.menu_top{
	width: 100%;
	position: relative;
	padding-left: 0px;
}

div.menu_top a{

}

div.menu_top a div{
	float: left;
	padding: 10px;
	color: #fff;
	margin: 5px 0px;
	/*transition: all 200ms linear 0s;*/
}

div.menu_top a div:hover{
	background: #026FFC;
}
div.menu_top a:hover .drop {
	display: flex;
}

div.menu_top a div.home{
	width: 45px;
	height: 40px;
	float: left;
	color: #fff;
	margin: 5px ;
	background: url('./home-icon4.png') no-repeat;
	background-position: 0 0;
}

div.menu_top a div.home:hover{
	background-position: 0 -40px;
}

div.menu_top a div.selected{
	background: #026FFC;
}

div.menu_mobile{
	display: none;
	width: 100%;
    position: relative;
    padding-left: 0px;
}

div.menu_mobile a div.home {
    width: 35px;
    height: 40px;
    float: left;
    color: #fff;
    margin: 5px;
    background: url(./home-icon4.png) no-repeat;
    background-position: 0 0;
}

div.menu_mobile a div {
    float: left;
    padding: 10px;
    color: #fff;
    margin: 5px 0px;
}

#mobile_slider{
	display: none;
}
#pc_slider{
	display: block;
}

@media (max-width: 1170px){
	div.menu_top{
		display: none;
	}
	div.menu_mobile{
		display: flex;
		align-items: center;
		justify-content: space-between;
    	position: fixed;
		top: 0;
    	z-index: 2000;
    	background: #a50e0e;
	}
	#mobile_slider{
		display: block;
	}
	#pc_slider{
		display: none;
	}

	.menu_mobile-link {
		display: flex;
		flex-direction: column;
		order: 3;
		font-size: 11px;
		color: #fff;
		margin-right: 15px;
		flex-shrink: 0;
	}

	.link--dir {
		order: 0;
		margin-right: 0;
		margin-left: 45px;
	}

	.menu_mobile-link:hover {
		color: #ffd2d2;
	}

}
