.plus-button {
	border: 2px solid #41b922;
	background-color: #e5ffdf;
	font-size: 12px;
	height: 2em;
	width: 2em;
	border-radius: 999px;
	position: relative;
    cursor: pointer;

	&:after,
	&:before {
		content: "";
		display: block;
		background-color: #41b922;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	&:before {
		height: 1em;
		width: 0.2em;
	}

	&:after {
		height: 0.2em;
		width: 1em;
	}
}

.minus-button {
	border: 2px solid #cd2026;
	background-color: #cd2026;
	font-size: 12px;
	height: 2em;
	width: 2em;
	border-radius: 999px;
	position: relative;
    cursor: pointer;

	&:after,
	&:before {
		content: "";
		display: block;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	&:after {
		height: 0.2em;
		width: 1em;
	}
}



