main{
  position: relative;
  top: /*70px*/30vh;
}

/*.dashed-border{
  border: 1px dashed var(--darkish-sky);
}*/

/* Bottom menu and player*/
#currSong, #vol_input, .closeBtn, #list-icon, #listIcon{display: none;}
#player, #player2{
  display: block;
  position: fixed;
  top: 0;
  z-index: 100;
  float:none;
  box-sizing: content-box;
  width: 100%;
  background-color: var(--dark-smoke);
  /*padding: 5px 0px;*/
}
#player{height: 48px;}
#player2{
  height: 30vh;/*64px;*/
  background-repeat: no-repeat;
  background-size: cover;
  /*background-position-y:center;*/
}

/*vol_input
.volume-vertical{
  display: flex; position: fixed; bottom: 73px;
  transform:rotate(-90deg);  width: 80px;
}.volume-none{display: none;}*/

/*img{filter: opacity(30%);}*/
.colArtist{
  width: 65%;
  padding: 5px 10px;}
.colImg{
  width: 20%;
  padding: 7px;
}
.colImg img, .col15 img{border-radius: 5px;}

.bkg_cd_case{
  background-size:320px;
  background-image: url("../assets/cd_case.svg");
  background-repeat: no-repeat;
  background-position-x: center;
}

.bkg_cd_icon{
  height: 280px;
  background-image: url("../assets/CD_icon.svg");
  background-repeat: no-repeat;
  background-position-x: right;
}
#coverCD img{margin-left: 25px;}
#coverCD{
  background-size:280px;
  display: grid;
  place-items: center;
}

/*Player controls*/
.paused path{
  fill: var(--smoke);
  stroke: var(--smoke);
}
.paused circle{
  fill: var(--light-sky);
  stroke:var(--smoke);
}
.play_on circle{
  fill: var(--wine);
  stroke: var(--smoke);
}

#station_info{
  background-color: var(--dark-smoke);
  position: fixed;
  bottom: 58px;
  width: 100%;
}
#stat_name h3{margin:0px;}

#cover_art{
  position: relative;
  text-align: center;
}
/*#cover_art img{
  filter: opacity(50%);blur(1px);
}*/

#timer{margin-top: -15px;}

table {
  /*table-layout: fixed;border: 3px solid purple;*/
  width: 100%;
  border-collapse: collapse;
}
table td{
  padding: 4px 5px;
  /*letter-spacing: 1px;*/
}
table th{text-align: left;}
#artwork .smoke-bkg{height: 220px;}
#artwork{display: none;}
.no_desktop{display: none;}

.loader {
  /*border: 4px dashed var(--lemon);
  border-radius: 50%;
  border-top: 4px dashed var(--wine);
  border-bottom: 4px solid var(--wine);*/

  width: 40px;
  height: 40px;
  -webkit-animation: spin 30s linear infinite;
  animation: spin 1.5s linear infinite;
  background-color:transparent;
}
.stop_loader{
  animation: none;
}
@media (max-width: 700px) {
  #amia{height: 115vh;}
  #now_song, .no_mobil {display: none;}
  /*#timerr, #timer_0, #timer_1, #timer_2, #timer_3, #timer_4{}*/
  /*.bottomText h2{line-height: normal;}*/
  .colImg img{
    width: 64px;
    height: 64px;
  }
  .colImg{padding: 10px 5px;}
  .colArtist{padding: 5px;}   
  .col_50{width: 80%;}
  .col2{width: 100%;}
  .col70{width: 100%;overflow:visible;}
  .half_col{width: 50%;}
  #listIcon{display: block;}
  #list-icon{
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background-color: var(--light-sky);
    border: 1px solid var(--light-sky);
  }
}
/*@media(prefers-reduced-motion: no-preference){
  .moving-text{animation: marque 20s linear infinite;}
}
@media (prefers-color-scheme: light){
  body{
    color:var(--smoke);
    background: var(--light-sky);
  }
}
@media (prefers-color-scheme:dark){
  body{
    color: var(--light-sky);
    background: var(--smoke);
  }
}*/
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

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