.fullscreen {
	bottom: 20px;
	right: 20px;
	padding: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
}

.fullscreen:hover {
	background: var(--white);
	color: var(--black);
}

.fullscreen-icon {
	display: inline-block;
	width: 22px;
	height: 22px;
	position: relative;
}
.fullscreen-icon::before,
.fullscreen-icon::after {
	content: '';
	position: absolute;
	border: 3px solid currentColor;
	border-radius: 0 2px 0 2px;
	width: 12px;
	height: 12px;
}
.fullscreen-icon::before {
	top: 0;
	left: 0;
	border-right: none;
	border-bottom: none;
}
.fullscreen-icon::after {
	bottom: 0;
	right: 0;
	border-left: none;
	border-top: none;
}
