.menu {
	background-color: #46545c;
	z-index: 100;
	display: block;
	position: fixed;
	top: 60px;
	left: 0;
	right: 0;
	transform: scale(0);
	transition: all 0.1s ease-out;
	margin: 0 auto;
	max-width: 1200px;
}
.show {
	transform: none;
}
.menu button[type=button]:focus {
	background-color: #46545c;
}
.menu a {
	border: none;
}
.menu button:hover {
	background-color: #46545c;
}
.dropdown-menu {
	background-color: #B0BEC5;
}
.nav-wrapper {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
.nav-box-first {
	min-width: 15%;
}

.btn-secondary,
.dropdown-item {
	text-align: left;
	background-color: #46545c;
	font-size: 12px;
}

.btn-group {
	border: 1px solid #B0BEC5;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	border-radius: 4px;
	background-color: #46545c;
}
.btn-group button {
	width: 100%;
	box-sizing: border-box;
}
.btn-group a {
	padding: 0 !important;
	background-color: #B0BEC5;
}
.btn-group a:hover {
	background-color: #B0BEC5;
}
.dropdown-menu {
	min-width: 100%;
	padding: 1em;
}
.bottom {
	margin-top: 10px;
}
.dropdown-menu .btn {
	margin-bottom: 2px;
}