.nature-design-tag-cloud {
	position: relative;
	margin: 0 auto;
	&-get-size {
		opacity: 0;
		height: 0;
		overflow: hidden;
	}
	&-page-btn {
		position: absolute;
		top: 50%;
		display: inline-block;
		cursor: pointer;
		height: 20px;
		width: 20px;
		border-radius: 50%;
		text-align: center;
		line-height: 20px;
		&:hover {
			background-color: #ccc;
			color: #fff;
		}
		&.prev {
			left: -10px;
			transform: rotate(-90deg);
			
		}
		&.next {
			right: -10px;
			transform: rotate(90deg);
		}
	}
	&-no-data{
		padding-top: 50px;		
		.no-data-icon {
			margin: auto;
			background-size: contain;
		}
		.no-data-title{
			font-size:14px;
			color:#bbbfef;
			text-align:center;
			margin-top: 10px;
		}
	}
}