
#station-app-cover.hidden ,
#app-cover.hidden {
    bottom: -200px;
}
#station-app-cover ,
#app-cover {
    transition: all .5s ease-in-out ;
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    max-width: 400px;
    width: 100%;
    height: 60px;
    direction: ltr;
  }
  
  
  #bg-layer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.51;
    z-index: 2;
  }
  
  #station-player, 
  #player {
    position: relative;
    height: 100%;
    z-index: 3;
  }
  
  #station-player-track ,
  #player-track {
    position: absolute;
    top: 0;
    right: 15px;
    left: 10px;
    padding: 13px 22px 32px 170px;
    background-color: #fff7f7;
    border-radius: 15px 15px 0 0;
    transition: 0.3s ease top;
    z-index: 1;
  }
  
  #station-player-track  {
    padding: 13px 22px 32px 140px;
  }
  #player-track.active {
    top: -115px;
  }
  #station-player-track {
    top: -90px
  }

  
  #station-album-name {
    color: #54576f;
    font-size: 17px;
    font-weight: bold;
  }
  
  #station-track-name {
    color: #acaebd;
    font-size: 13px;
    margin: 2px 0 7px 0;
  }
  
  #track-time {
    height: 25px;
    margin-bottom: 3px;
    /* overflow: hidden; */
  }
  
  #current-time {
    float: left;
  }
  
  #track-length {
    float: right;
  }
  
  #current-time,
  #track-length {
    /* color: transparent; */
    font-size: 14px;
    border-radius: 10px;
    transition: 0.3s ease all;
  }
  
  #track-time.active #current-time,
  #track-time.active #track-length {
    color: #f86d92;
    background-color: transparent;
  }
  
  #s-area,
  #seek-bar {
    position: relative;
    height: 8px;
    border-radius: 4px;
  }
  
  #s-area {
    background-color: #ffe8ee;
    cursor: pointer;
  }
  
  #ins-time {
    position: absolute;
    top: -29px;
    color: #fff;
    font-size: 12px;
    white-space: pre;
    padding: 5px 6px;
    border-radius: 4px;
    display: none;
  }
  
  #s-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    z-index: 2;
  }
  
  #ins-time,
  #s-hover {
    background-color: #3b3d50;
  }
  
  #seek-bar {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #fd6d94;
    transition: 0.2s ease width;
    z-index: 1;
  }
  
  #station-player-content ,
  #player-content {
    position: relative;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 30px 80px #656565;
    border-radius: 15px;
    z-index: 2;
  }
  .dark #station-player-content ,
  .dark #station-player-track, 
  .dark #player-track,
  .dark #player-content {    
    background-color: #111827;
  }
  #album-art {
    position: absolute;
    top: -40px;
    width: 90px;
    height: 90px;
    margin-left: 20px;
    transform: rotateZ(0);
    transition: 0.3s ease all;
    box-shadow: 0 0 0 10px #fff;
    border-radius: 50%;
    overflow: hidden;
  }
  
  #album-art.active {
    top: -60px;
    box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
  }
  .dark #album-art.active {
    box-shadow: 0 0 0 4px #303e53, 0 30px 50px -15px #111827;
  }
  
  #album-art:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: -10px auto 0 auto;
    background-color: #d6dee7;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
    z-index: 2;
  }
  
  #album-art img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
  }
  
  #album-art img.active {
    opacity: 1;
    z-index: 1;
  }
  
  #album-art.active img.active {
    z-index: 1;
    animation: rotateAlbumArt 3s linear 0s infinite forwards;
  }
  
  @keyframes rotateAlbumArt {
    0% {
      transform: rotateZ(0);
    }
    100% {
      transform: rotateZ(360deg);
    }
  }
  
  #buffer-box {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 13px;
    color: #1f1f1f;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    padding: 6px;
    margin: -12px auto 0 auto;
    background-color: rgba(255, 255, 255, 0.19);
    opacity: 0;
    z-index: 2;
  }
  
  #album-art img,
  #buffer-box {
    transition: 0.1s linear all;
  }
  
  #album-art.buffering img {
    opacity: 0.25;
  }
  
  #album-art.buffering img.active {
    opacity: 0.8;
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  
  #album-art.buffering #buffer-box {
    opacity: 1;
  }
  
  #station-player-controls ,
  #player-controls {
    width: 250px;
    height: 100%;
    margin: 0 5px 0 141px;
    float: right;
    overflow: hidden;
  }
  
  .control {
    width: 24.753%;
    float: left;
    padding: 17px 0;
  }
  
  .button {
    /* width: 26px;
    height: 26px; */
    padding: 4px 20px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .button i {
    display: block;
    color: #d6dee7;
    font-size: 26px;
    text-align: center;
    line-height: 1;
  }
  
  .button,
  .button i {
    transition: 0.2s ease all;
  }
  
  .button:hover i {
    color: #fff;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  
  @font-face {
      font-family: 'balooregular';
      src: url('../fonts/Baloo-Regular-webfont.ttf');
      src: url('../fonts/Baloo-Regular-webfont.woff') format('woff'),
           url('../fonts/Baloo-Regular-webfont.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
  }
  
  [lang="en"]  .en-rtl ,
  .rtl {
      direction: rtl;
  }
  [lang="ar"]  .ar-ltr ,
    .ltr {
      direction: ltr;
  }
  
  body {
      font-family: 'Poppins';
  }
  p {
      font-family: 'Amaranth';
  }
  h1,h2,h3,h4,h5,h6, .main_font {
      font-family: 'balooregular';
  }
  .red-gradient
  {
      background: rgb(139,21,26);
      background: linear-gradient(121deg, rgba(139,21,26,1) 0%, rgba(146,23,26,1) 15%, rgba(184,31,25,1) 100%);
  }
  .cyan-gradient
  {
      background: rgb(75,135,133);
      background: linear-gradient(121deg, rgba(75,135,133,1) 0%, rgba(75,135,133,1) 40%, rgba(75,135,133,0) 100%);
      opacity: .1;
  }
  
  
  
  
  
  
  
  /**
  *   Header styles
  */
  #main-header h1 span,
   h3 span
  {
      color: #E2342D;
  }
  
  .color-img {
      display: none;
  }
  .products-list .color-img ,
  .product-card:hover .color-img {
      display: inline-block;
  }
  
  
#station-volume-bar, #volume-bar {display: none; left: 30px; top: 14px}
#volume-mute:hover  #volume-bar ,
#volume-mute:hover #station-volume-bar {display: block;}

.active#station-player-pause-button .play ,
#station-player-pause-button .pause ,
.active#player-pause-button .play ,
#player-pause-button .pause {
    display: none;
}
.active#station-player-pause-button .pause ,
.active#player-pause-button .pause {
    display: block;
}






:root {
    --d: 700ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
    --font-sans: "Rubik", sans-serif;
    --font-serif: "Cardo", serif;
  }
.card-overlay {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
    text-align: center;
    color: whitesmoke;
    background-color: whitesmoke;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
  }
  @media (min-width: 600px) {
    .card-overlay {
      height: 350px;
    }
  }
  .card-overlay .bg {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(var(--d) * 1.5) var(--e);
    pointer-events: none;
  }
  .card-overlay:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
  }
  
  .card-overlay
  .content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform var(--d) var(--e);
    z-index: 1;
  }
  .card-overlay
  .content > * + * {
    margin-top: 1rem;
  }
  .card-overlay
  .title {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.2;
  }
  .card-overlay
  .copy {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.35;
  }
  .card-overlay
  .btn {
    cursor: pointer;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    color: white;
    background-color: black;
    border: none;
  }
  .card-overlay
  .btn:hover {
    background-color: #0d0d0d;
  }
  .card-overlay
  .btn:focus {
    outline: 1px dashed yellow;
    outline-offset: 3px;
  }
  
  @media (hover: hover) and (min-width: 600px) {
    .card-overlay
    .card-overlay:after {
      transform: translateY(0);
    }
    .card-overlay
    .content {
      transform: translateY(calc(100% - 4.5rem));
    }
    .card-overlay
    .content > *:not(.title) {
      opacity: 0;
      transform: translateY(1rem);
      transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    }
  
    .card-overlay:hover,
  .card-overlay:focus-within {
      align-items: center;
    }
    .card-overlay:hover .bg,
  .card-overlay:focus-within .bg {
      transform: translateY(-4%);
    }
    .card-overlay:hover:after,
  .card-overlay:focus-within:after {
      transform: translateY(-50%);
    }
    .card-overlay:hover .content,
  .card-overlay:focus-within .content {
      transform: translateY(0);
    }
    .card-overlay:hover .content > *:not(.title),
  .card-overlay:focus-within .content > *:not(.title) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: calc(var(--d) / 8);
    }
  
    .card-overlay:focus-within .bg, .card-overlay:focus-within:after,
  .card-overlay:focus-within .content,
  .card-overlay:focus-within .content > *:not(.title) {
      transition-duration: 0s;
    }
  }