stream-item > .now-playing-and-social-media > .now-playing
{
   display: flex;
   column-gap: 20px;
   height: 258px;
   width: 100%;
   justify-content: space-between;
   margin-bottom: 20px;
   border-radius: var(--kl-border-radius);
   background: var(--kl-bg-color);
   overflow: hidden;
   cursor: pointer;
   color: var(--kl-text-color-light);
}
stream-item > .now-playing-and-social-media > .now-playing > .left-content
{
   display: none;
   flex: 1;
   color: var(--kl-text-color-dark);
}
stream-item > .now-playing-and-social-media > .now-playing > .left-content > .current-song
{
   height: 47px;
   font-size: 20px;
   font-weight: 700;
   line-height: 26px;
}
stream-item > .now-playing-and-social-media > .now-playing > .left-content > .artist
{
   min-height: 47px;
   font-size: 36px;
   font-weight: 700;
   line-height: 45px;
}
stream-item > .now-playing-and-social-media > .now-playing > .left-content > .title
{
   height: 27px;
   font-size: 24px;
   font-weight: 700;
   line-height: 30px;
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content
{
   position: relative;
   width: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > .on-air
{
   position: absolute;
   display: flex;
   align-items: center;
   top: 8px;
   right: 8px;
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > .on-air > span
{
   margin-left: 4px;
   font-size: 8px;
   font-weight: 600;
   line-height: 10.4px;
   color: var(--kl-text-color-light);
   text-transform: uppercase;
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > .on-air:before
{
   content: '';
   display: block;
   width: 16px;
   height: 16px;
   border-radius: calc(16px / 2);
   background-color: var(--kl-color-1);
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > img
{
   width: 100%;
   height: 258px;
   object-fit: cover;
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container
{
   box-sizing: border-box;
   position: absolute;
   bottom: 0px;
   display: flex;
   align-items: center;
   width: 100%;
   height: 68px;
   padding: 0px 11px;
   background-color: var(--kl-bg-color-2);
   border-radius: var(--kl-border-radius);
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > .action.start
{
   display: none;
   font-size: 16px;
   font-weight: 700;
   line-height: 20px;
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > regular-icon[type="state"]
{
   width: 54px;
   height: 54px;
   margin: 3px;
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > .current-song
{
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   flex: 1;
   height: 46px;
   margin-left: 20px;
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > .current-song > .artist
{
   font-size: 20px;
   font-weight: 700;
   line-height: 26px;
}
stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > .current-song > .title
{
   font-size: 13px;
   font-weight: 300;
   line-height: 17px;
}

@media screen and (min-width: 744px)
{
   section-title:has(+stream-item)
   {
      display: none;
   }
   stream-item > .now-playing-and-social-media > .now-playing
   {
      box-sizing: border-box;
      width: 584px;
      height: 406px;
      margin-left: auto;
      margin-right: 25px;
      padding: 22px 24px;
      background-color: #FFFFFF33;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .left-content
   {
      display: flex;
      flex-direction: column;
      justify-content: center;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content
   {
      width: 260px;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .on-air
   {
      position: initial;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .on-air > span
   {
      margin-left: 8px;
      font-size: 13px;
      font-weight: 800;
      line-height: 10.16px;
      color: var(--kl-text-color-dark);
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .on-air:before
   {
         width: 19px;
         height: 19px;
         border-radius: calc(19px / 2);
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > img
   {
      width: 260px;
      height: 260px;
      border-radius: var(--kl-border-radius);
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container
   {
      position: initial;
      display: flex;
      justify-content: space-between;
      width: 172px;
      height: 48px;
      padding: 4px 12px;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > .current-song
   {
      display: none;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > regular-icon[type="state"]
   {
      width: 33px;
      height: 33px;
      margin: 3.5px;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > .action.start
   {
      display: inherit;
   }
}

@media screen and (min-width: 1440px)
{
   stream-item > .now-playing-and-social-media > .now-playing
   {
      width: 877px;
      height: 513px;
      margin-right: 94px;
      padding: 25px;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .left-content
   {
      margin-left: 40px;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content
   {
      width: 473px;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > img
   {
      width: 355px;
      height: 338px;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container
   {
      width: 254px;
      height: 64px;
      padding: 4px 30px;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > regular-icon[type="state"]
   {
      width: 54px;
      height: 54px;
      margin: 5px;
   }
   stream-item > .now-playing-and-social-media > .now-playing > .right-content > .current-song-container > .action.start
   {
      font-size: 20px;
      font-weight: 700;
      line-height: 26px;
   }
}