.template-container {
	color: var(--black);
	position: fixed;
	right: 0;
	top: 10rem;
	z-index: 999;
	overflow: hidden;
}

.template-container a {
	color: var(--black);
}

.template-container__sidebar {
	display: flex;
	justify-content: flex-end;
}

.bt-toggle-templates {
	background: var(--white);
}

.template-container__main {
	background: var(--white);
	border-radius: .5rem;
	border: 1px solid currentColor;
	padding: 1.25rem;
	display: none;
}

.template-container__main ul {
	padding: 0 0 0 1rem;
}

.template-button__container {
	display: flex;
	justify-content: flex-end;
	padding: 1rem 0 0;
}

.active .template-container__main {
	display: block;
}