body {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.container {
	width: 200px;
	height: 200px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}

.counter-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	background: #3978ef;
	border-radius: 20px;
	overflow: hidden;
}

.counter {
	display: flex;
	font-size: 60px;
	font-weight: bold;
	flex: 0 1;
	color: white;
	text-align: center;
	border: none;
	outline: none;
	background-color: transparent;
	width: 80px;
	height: 80px;
	border-radius: 20px;
	box-sizing: border-box;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.2s linear;
}

.btn {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: #3979ef49;
	border: none;
	cursor: pointer;
	position: relative;
	padding: 0;
}

.btn:hover {
	background-color: #3979efa0;
}

.btn--increment::before,
.btn--decrement::before,
.btn--increment::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 2px;
	background-color: white;
	left: 50%;
	transform: translateX(-50%);
}

.btn--increment::after {
	height: 20px;
	width: 2px;
	top: 25%;
	background-color: white;
}

input[type="number"] {
	-moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
