now-playing
{

}
now-playing > .song
{
   display: flex;
   align-items: center;
   padding-bottom: 8px;
   margin-bottom: 10px;
}
now-playing > .song > img
{
   width: 55px;
   height: 55px;
   object-fit: cover;
   border-radius: var(--kl-border-radius);
}
now-playing > .song > .info
{
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   height: 58px;
}
now-playing > .song > .info > .title,
now-playing > .song > .info > .artist
{
   margin: 0px 10px;

   display: -webkit-box;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
}
now-playing > .song > .info > .title
{
   font-size: 20px;
   font-weight: 700;
   line-height: 26px;
}
now-playing > .song > .info > .artist
{
   font-size: 16px;
   font-weight: 300;
   line-height: 21px;
}
now-playing > .song > regular-icon[type="state"]
{
   width: 54px;
   height: 54px;
}
now-playing > .vote
{
   box-sizing: border-box;
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 208px;
   height: 40px;
   margin: 10px auto;
   padding: 8px 12px;
   border-radius: var(--kl-border-radius);
   background-color: #505050;
}
now-playing > .vote > span
{
   font-size: 16px;
   font-weight: 700;
   line-height: 21px;
   background: var(--kl-color-gradient);
   -webkit-background-clip: text;
           background-clip: text;
   -webkit-text-fill-color: transparent;
}
