* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	background-color: #7d29df;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.icon-container {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 400px;
	height: 80px;
	background-color: white;
	border-radius: 15px;
	padding: 15px 0px;
	position: relative;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
i {
	font-size: 1.5em;
	color: black;
	cursor: pointer;
}
i:hover,
i.active {
	color: #7d29df;
}
.current-item {
	position: absolute;
	transition: all 0.3s ease-in-out;
	width: 10px;
	height: 10px;
	top: 90%;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 15px solid #7d29df;
}
