.arrow {
	position: relative;
	display: block;
	height: 1.6em;
	width: 1em;
	border-color: #fff;
	font-size: 1rem;
}

.arrow::before {
	content: '';
	position: absolute;
	top: 50%;
	display: block;
	height: 1.1em;
	width: 1.1em;
	border-width: 0px;
	border-style: solid;
	border-color: inherit;
	border-top-width: 2px;
	border-left-width: 2px;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.arrow-l::before {
	left: 50%;
	-webkit-transform: translate(-20%, -50%) rotate(-45deg);
	-ms-transform: translate(-20%, -50%) rotate(-45deg);
	transform: translate(-20%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1023px) {
	.arrow:not(.arrow-round) {
		height: 2em;
		width: 2em;
		border: 2px solid #fff;
		border-radius: 50%;
		-webkit-transition: all 0.3s linear 0.3s;
		-o-transition: all 0.3s linear 0.3s;
		transition: all 0.3s linear 0.3s;
	}
	.arrow:not(.arrow-round)::before {
		height: 32%;
		width: 32%;
		border-color: #fff;
		-webkit-transition: all 0.3s linear 0.3s;
		-o-transition: all 0.3s linear 0.3s;
		transition: all 0.3s linear 0.3s;
	}
	.arrow:not(.arrow-round).arrow-l::before {
		-webkit-transform: translate(-50%, -30%) rotate(45deg);
    	-ms-transform: translate(-50%, -30%) rotate(45deg);
    	transform: translate(-50%, -30%) rotate(45deg);
	}
}