* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.p-container {
    max-width: 360px;
    -webkit-box-shadow: 0px 4px 15px 0px rgb(0 0 0 / 40%);
    box-shadow: 0px 4px 15px 0px rgb(0 0 0 / 40%);
   
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction:column;
    justify-content:center;
    margin: 0 auto;
    margin-top:60px;
    overflow: hidden;
    background: rgba(255,255,255,0.8);
}
.p-container .logo {
    display: flex;
    justify-content:center;
    align-items:center;
    margin: 20px 0px;
}

.p-container .logo img {
    width: 100px;
    height: 100px;
}

.bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #b9d1ff 50%, #313cd8 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
  }
  
  .bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
  }
  
  .bg3 {
    animation-duration:5s;
  }

  @keyframes slide {
    0% {
      transform:translateX(-25%);
    }
    100% {
      transform:translateX(25%);
    }
  }

  .mdtc-clnplra-main-player .mdtc-clnplra-interface {
    background: #b9d1ff;
  }


  /* News */
  a{
    text-decoration: none;
    color: inherit;
  }
  .news, .playing-now{
    padding: 10px;
    display:none;
}
  h4 {
    margin-bottom: 5px;
  }
 .divider {
    width: 30px;
    height: 2px;
    background: #313cd8;
    margin-bottom: 20px;
  }
   .article {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    opacity: 0.8;
    border-top: 1px solid #d1d1d1;
    transition: all 0.3s ease-in-out;
  }
   .article img {
    width: 50px;
    height: 50px;
    border-radius:5px;
    -webkit-box-shadow: 0px 4px 15px 0px rgb(0 0 0 / 40%);
    box-shadow: 0px 4px 15px 0px rgb(0 0 0 / 40%);
    object-fit: cover;
  }
   .news-details {
    /* background: #fff; */
    padding: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
   .article .news-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    color: #3e3e3e;
  }
   .article:hover {
    opacity: 1;
    background: rgba(255,255,255,0.8);
  }