
/******** TOP MENU ****/
.top-menu{
	position: relative;
	display: flex;
	flex-direction: row;
	min-width: 1100px;
	height: 46px;
	background-color: #edf2f2;
	font-size: 16px;
	color: #4e5661;
}
.top-menu .elements{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.top-menu .name{
	min-width: 100px;
	color: #b2bac5;
	/* height: 50px; */
	/* line-height: 50px; */
	font-size: 18px;
	font-weight: bold;
	margin: 0 15px 0 0;
}
.top-menu .name-second{
	min-width: 70px;
	color: #b2bac5;
	/* height: 50px; */
	/* line-height: 50px; */
	font-size: 18px;
	font-weight: bold;
	margin: 0 15px 0 50px;
}
.top-menu .button{
	background-color: inherit;
	border: none;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 4px;
	border: 2px #b2bac5 solid;
	background-color: white;
	font-size: 14px;
	color: #4e5661;
	font-weight: 600;
	padding: 5px 10px;
	margin: 0 12px 0 0;
	box-sizing: border-box;
	text-transform: uppercase;
}
.top-menu .button:hover{
	background-color: rgb(240, 240, 240);
	color: #4e5661;

	cursor: pointer;
	/* border: 2px #b2bac5 solid; */

	font-weight: 600;

}
.top-menu .button:focus{
	outline: none;
	/* border: 0; */
}
.top-menu .selected{
	background-color: #b2bac5;

	/* background-color: #cc4d4fdd; */
	color: white;

	/* background-color: #cc4d4f29; */
}
.get-pdf{
	margin-left: auto;
	color: #b2bac5;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
}
