.svg-icon {
  width: 1em;
  height: 1em;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
  fill: #4691f6;
}

.svg-icon circle {
  stroke: #4691f6;
  stroke-width: 1;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1015;
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.main-playlist-panel-item {
	font-family:helvetica;
	font-size:14px;
	color:rgb(230, 230, 230);
	line-height:24px;
	width:100%;
	display:block;
	box-sizing:border-box;
	overflow-wrap:break-word;
	transition-duration:.2s;
}

.main-playlist-panel-item:hover {
	cursor:pointer;
	color:rgb(255,166,0);
}

.main-playlist-panel-item.is-disabled {
	color:rgb(100,100,100);
	cursor:default;
}

.main-playlist-panel-item.is-disabled:hover {
	color:rgb(100,100,100);
}

.MemberOffline {
    opacity: 0.3;
}

.LeftBarSearch {
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
	color: rgb(230, 230, 230);
    outline: none;
}

.LeftBarSearch::placeholder {
    color: rgb(230, 230, 230);
	transition: .2s;
}

.LeftBarSearch:hover::placeholder {
    color: transparent;
	transition: .2s;
}
