.widget_recentlyusedtags_widget ul.wp-tag-cloud a{
	display: block;
	font-size:15px;
	width:100%;
	color: #fff;
}




.wp-tag-cloud {
	list-style: none;
	margin: 0;
	overflow: hidden; 
	padding: 0;
	display:flex;
	flex-wrap:wrap;
}

.wp-tag-cloud li {
	min-width:50%;
	flex:1 0 auto;
	padding:0 5px;
}

.wp-tag-cloud a {
	background: #0097A8;
	border-radius: 3px 0 0 3px;
	color: #fff;
	display: inline-block;
	height: 26px;
	line-height: 26px;
	padding: 0 20px 0 23px;
	position: relative;
	margin: 0 10px 10px 0;
	text-decoration: none;
	transition:0.2s;
}

.wp-tag-cloud a::before {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
	content: '';
	height: 6px;
	left: 10px;
	position: absolute;
	width: 6px;
	top: 10px;
	transition:0.2s;

}

.wp-tag-cloud a::after {
	background: #fff;
	border-bottom: 13px solid transparent;
	border-left: 10px solid #0097A8;
	border-top: 13px solid transparent;
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	transition:0.2s;
}

.wp-tag-cloud a:hover {
	background-color: #75B407;
	color: white;
	transition:0.2s;
}

.wp-tag-cloud a:hover::after {
	transition:0.2s;
	border-left-color: #75B407; 
}