/*to use global variables, import them into your component stylesheet*/
@import "./../../../styles/global.scss";

.menu-toggle {
	display: none;
}

.drawer-container {
	color: $white;
	display: flex;
	flex-direction: column;
	height: 100vh;
	transition: height 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
	user-select: none;
	width: 250px;
	white-space: nowrap;
}
.logo-image {
	display: block;
	height: 36px;
	margin: 40px;
	margin-bottom: 64px;
}
.drawer-title {
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1px;
	padding: 40px;
	padding-top: 16px;
}

.drawer-links {
	flex: 1;
	display: flex;
	flex-direction: column;
}
@media (min-width: 801px) {
	.links {
		margin-bottom: 24px;
	}
}

@media all and (max-width: 800px) {
	.menu-toggle {
		align-items: center;
		cursor: pointer;
		display: flex;
		font-size: 14px;
		height: 64px;
		opacity: 0.75;
		padding: 0 22px;
	}
	.drawer-container {
		border-right: none;
		bottom: 0;
		height: 64px;
		left: 0;
		overflow: hidden;
		position: fixed;
		right: 0;
		top: 0;
		width: auto;
		z-index: 999;
		&.active {
			height: 100%;
			overflow-y: scroll;
		}

	}
	.logo-image {
		height: 24px;
		margin: 20px 24px;
	}
	.drawer-title {
		padding: 24px;
	}
	.meta {
		display: flex;
		justify-content: space-between;
		min-height: 64px;
	}
	.links {
		margin-top: 24px;
	}
}
