#tagsgallery {
	width: 1100px;
	display: flex;
}
#tags {
	width: 225px;
	padding-left: 5px;
	display: flex;
	flex-direction: column;	
}
.tag {
	display: inline-block;
	color: #EDF0EE;
	position: relative;
	padding: 1px 35px 4px 10px;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	text-decoration: none;
	-webkit-transition: right 0.2s ease-in;
	-moz-transition: right 0.2s ease-in;
	-ms-transition: right 0.2s ease-in;
	background-color: #82A640;
}
.tag:before {
	background: #EDF0EE;
	width: 6px;
	height: 6px;
	content: "";
	display: inline-block;
	border-radius: 20px;
	margin: 0 5px 2px 0;
}
.tag:after {
	content: "";
	border-radius: 5px;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.tag .arrow {
	display: inline-block;
	border: 24px solid;
	border-color: #EDF0EE #EDF0EE #EDF0EE transparent;
	height: 2px;
	z-index: 1;
	pointer-events: none;
	position: absolute;
	-webkit-transition: right 0.2s ease-in;
	right: -20px;
	top: -12px;
	content: "";
	display: inline-block;
}
.tag:hover {
	position: relative;
	right: 8px;
	color: #304131;
	background: #789C36;
}

.tag:hover .arrow {
	right: -23px;
}