.btn {
	position: relative;
	cursor: pointer;
	transition: all 0.35s ease;
	overflow: hidden;
	font-size: 12px;
}
.btn:link {
	color: #808080;
}
.btn:after {
	content: '';
	position: absolute;
	bottom: -50%;
	right: -50%;
	z-index: 1;
	overflow: hidden;
	width: 0;
	height: 0;
	transition: all 0.35s ease;
}
.btn:active:after, .btn.dropdown-open:after {
	width: 200%;
	height: 200%;
}
.btn:hover {
	color: #fff;
}
.btn.dropdown-open + .outer-list {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.dropdown {
	display: inline-block;
	margin-right: 15px;
}
.dropdown > .outer-list {
	/*position: absolute;*/ /* not supporting with fixed header */
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s ease;
}
.dropdown > .outer-list.top {
	align-items: flex-start;
	transform-origin: 50% 0;
}
.dropdown > .outer-list.left {
	justify-content: flex-start;
}
.dropdown > .outer-list.bottom {
	align-items: flex-end;
	transform-origin: 50% 100%;
}
.dropdown > .outer-list.right {
	justify-content: flex-end;
}
.dropdown > .outer-list > div {
	background: #000000;
	padding: 10px;
	position: relative;
}
.dropdown > .outer-list > div > ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid #d3a052;
	width: 210px;
	height: 310px;
}
.dropdown > .outer-list > div > ul li {
	padding: 5px 0px;
	width: 100%;
	cursor: pointer;
	transition: background 0.35s ease;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 20px;
	font-size: 12px;
	color: #ffffff;
}
.dropdown > .outer-list > div > ul li:hover {
	color: #d3a052;
}
.dropdown > .outer-list > div > ul li:first-child {
	color: #d3a052;
}
