.musiclist {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 5px;
	margin-top: 20px;
}

.musiclist a {
	display: block;
	padding: 6px;
	position: relative;
	background-color: rgba(0, 0, 0, 0.2);
	border: 2px solid gray;
	cursor: pointer;
}
.musiclist a:hover {
	background-color: rgba(0, 0, 0, 0.5);
	border-color: #eee;
	color: yellow;
}
.musiclist a div:nth-child(1) {
	color: silver;
	text-align: center;
	margin-bottom: 5px;
}
.musiclist a:hover div:nth-child(1) {
	color: yellow;
}
.musiclist a div:nth-child(2) {
	color: white;
	text-align: center;
}

#player {
    width: 80%;
	display: block;
	text-align: center;
    background: #333;
    padding: 20px;
	margin-left: auto;
	margin-right: auto;
    border-radius: 1rem;
    box-shadow: black 0 0 15px;
	color: #ccc;
    font-family: "Noto Sans Light", "Open Sans Light", "Comic Sans MS", "Comic Sans", "Yosemite Sans", "Comic Neue", Chilanka, sans-serif;
}

#player #title {
	font-size: 1.1rem;
}

#controls, #slider {
	display: none;
}
#files {
	margin-top: 10px;
	margin-bottom: 10px;
}
#description {
	text-align: center;
}
#player button {
    background: #444;
    border: solid #555;
    padding: 0.5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    margin: 0.3rem;
    display: inline-block;
	color: white;
	font-size: 1.1rem;
}
#player button:hover {
    filter: brightness(1.1);
}
#player button:active {
    transform: scale(0.9);
}
#player input[type='range'] {
    width: 100%;
}
#player select, option:hover {
    color: #000;
	font-size: 1.1rem;
}
#player option {
	color: #555;
}
#terms-container { display: none; border: 1px solid #ccc; padding: 10px; margin-top: 10px; }

#btnNext {
  position: relative;
}

#btnNext.anim::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: red;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg) translateX(20px);
  animation: tiirle 1s linear forwards;
}

@keyframes tiirle {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(20px);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(20px);
  }
}

.blue-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background-color: #538fbe;
    padding: 8px 12px 8px 12px;
    font-size: 12pt;
    border: 2px solid #2d6898;
    background-image: linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -o-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
 
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(73,132,180)),
        color-stop(1, rgb(97,155,203))
    );
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
	text-align: center;
}
.blue-btn:enabled:active {
    background-image: linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -o-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
 
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(88,154,204)),
        color-stop(1, rgb(90,150,199))
    );
}
.blue-btn:enabled:hover {border: 2px solid #6AD;}
.blue-btn:disabled {
	opacity: 0.75;
}