.CURSOR{
	position: relative;

	z-index: 1;

}

.CURSOR::before{
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	border-left: solid 1px;
	border-width: 2px;
	border-color: black;

	content: "";

	z-index: -1;
}