.userpanel_threads_icons .thread_status {
	position: relative;
	right: auto;
	bottom: auto;
}

.thread_status {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 100px;
	cursor: help;
	margin-top: .5em;
}

.thread_status.dot_folder,
.thread_status.folder {
	background-color: rgb(255,147,0);
	background-image: linear-gradient(0deg, rgba(255,147,0,1) 0%, rgba(255,132,27,1) 100%);
}

.thread_status.dot_newfolder,
.thread_status.newfolder {
	background: #726d27;
}


.thread_status.dot_hotclosefolder,
.thread_status.dot_closefolder,
.thread_status.dot_newhotclosefolder,
.thread_status.dot_newclosefolder,
.thread_status.hotclosefolder,
.thread_status.closefolder,
.thread_status.newhotfolder,
.thread_status.newhotclosefolder,
.thread_status.newclosefolder {
	background: #8a3660;
}

.thread_status.dot_hotfolder,
.thread_status.dot_newhotfolder,
.thread_status.hotfolder {
	background: #4e6a2d;
	-webkit-animation: thread_status 1.5s infinite;
	animation: thread_status 1.5s infinite;
}

.thread_status.movefolder {
	background: #6a2d59;
}


@-webkit-keyframes thread_status {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, .4);
  }
  75% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

@keyframes thread_status {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, .4);
  }
  75% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}
		
		
		
		
		
		
		
		
		
		
		
		