.question-tags {
    text-align: center;
	margin-top: 20px;
}
.question-tags ul.list-content {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.question-tags li.list-item {
    border: 2px solid #e2e7ed;
    border-radius: 50px;
    padding: 5px 15px; 
	font-size: 14px;
	cursor: pointer;
}
.question-tags .regenerate-tag-btn {
    font-size: .75em;
    font-weight: 800;
}
.question-tags .list-loader {
	border: 5px solid #8c273d;
	width: 30px;
    height: 30px;
	border-bottom-color: transparent;
}
.biz-loader {
    width: 20px;
    height: 20px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: flex;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
	margin: 0 auto;
}
button.regenerate-tag-btn {
    width: 100%;
    max-width: 109px;
	height: 33px;
}
button.regenerate-tag-btn:hover .biz-loader,
button.regenerate-tag-btn:focus .biz-loader{
	border: 5px solid #83162d;
	border-bottom-color: #fff;
}
.biz-loader {
	display:none;
}
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
} 