.menu {
	position: fixed;
	z-index: 30;
	top: 2.7rem;
	left: 10rem;
	right: 10rem;
	background-color: var(--dark-color);
	padding: 1rem;
	border-radius: .2rem;
}
.menu .row {
	margin-left: 0;
	margin-right: 0;
}
.menu .column {
	padding-left: 0;
	padding-right: 0;
}

.dropdown_btn {
	margin:0;
	width: 100%;
	height: 1.75rem;
	justify-content: start;
	border: none;
	background-color: #46545c;
	color: #DBE3E6;
	line-height: 1.5;
	font-weight: 400;
	border: 1px solid #B0BEC5;
}
.dropdown_btn:not([href])::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown {
	position: relative;
}

.dropdown-menu {
	width: fit-content;
	position: absolute;
	z-index: 40;
	top: 1.75rem;
	right: 0;
	left: 0;
	padding: .75rem;
	background-color: #808E95;
}

.dropdown-menu_btn {
	margin:0;
	min-width: 100%;
	display: inline-block;
	text-align: left;
	text-wrap: nowrap;
	border: none;
	background-color: #46545c;
	color: #DBE3E6;
	line-height: 1.5;
	font-weight: 400;
	border: 1px solid #B0BEC5;
}

@media screen and (max-width: 1500px) {
	.menu {
		left: 0;
		right: 0;
	}
}