html {
  margin: 0;
  padding: 0;
}

//body {
//background-color: green;
//  margin: 0;
//  padding: 0;
//  box-sizing: border-box;
//  background-image: url(img/stars.gif);
//  background-attachment: fixed;
//}

body nav {
  position: sticky;
  top: 0;
//  background-image: url("img/stars.gif");
  background-color: #334;
  z-index: 10;
}

.navbutton {
  background-color: transparent;
  border: none;
  color: white;
  padding: 10px 5px;
  //width: 100px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  transition-duration: 0.3s;
}

.navbutton:hover {
  background-color: rgba(255, 0, 0, 0.5);
}

.navbutton2 {
  background-color: #8080ff;
  border: none;
  color: white;
  padding: 10px 5px;
  //width: 100px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  transition-duration: 0.3s;
}

.navbutton2:hover {
  background-color: rgba(255, 0, 0, 0.5);
}

.divbutton {
  background-color: #008CBA;
  border: 2px solid grey;
  color: white;
  padding: 5px 5px;
  width: 110px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  transition-duration: 0.3s;
}

.divbutton:hover {
  background-color: white;
  border: 2px solid #008CBA;
  color: black;
}

.artistbutton {
  background-color: #008CBA;
  border: 2px solid grey;
  color: white;
  padding: 5px 5px;
  width: 180px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  transition-duration: 0.3s;
}

.artistbutton:hover {
  background-color: #80A0D0;
  border: 2px solid #008CBA;
  color: black;
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-image: url("img/stars.gif");
   //background-color: #001;
   color: white;
   text-align: center;
}

span {
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  position: relative;
  width: 170px;
  height: 170px;
  background: linear-gradient(0deg, #000, #272727);
}

.container:before, .container:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
    #0000ff, #00ff00,#ffff00, #ff0000);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  //animation: steam 20s linear infinite;
}

.container:after {
  filter: blur(25px);
}

.container:hover .overlay {
  opacity: 1;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: transparent;
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  cursor: pointer;
  transition: .3s ease;
}

.icon2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0;
}

.icon:hover {
  opacity: 0.8;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.genre {
  font-size: 20px;
  color: #8080ff;
  //animation: genreanim 3s linear infinite;
}

.genre2 {
  font-size: 16px;
  color: #c0c0ff;
  //animation: genreanim 3s linear infinite;
}

@keyframes genreanim {
  0% {color: red;}
  25% {color: yellow;}
  50% {color: blue;}
  75% {color: violet;}
  100% {color: red;}
}

.barcontainer {
  width: 50%;
  height: 5px;
  background: #ddd;
  text-align: center;
  margin-top: 10px;
}

.progress {
  width: 1px;
  height: 5px;
  background: #00a000;
  transition: width .1s linear;
}

.audiobutton {
  cursor: pointer;
  opacity: 0;
  transition: .3s ease;
}

.audiobutton:hover {
  transform: scale(1.1);
}

li {
  display:inline;
}

li a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 10px 60px;
  text-decoration: none;
}

li a:hover {
  background-color: rgba(255, 0, 0, 0.5);
}

.time {
  font-size:18px;
  color:#b0b0ff;
}

.navimg {
  cursor: pointer;
  transition: .3s ease;
}

.navimg:hover {
  transform: scale(1.1);
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 3em;
  height: 3em;
}
.loader {
  font-size: 8px;
  position: relative;
//  text-indent: -9999em;
  border-top: 1.1em solid rgba(45, 45, 45, 0.5);
  border-right: 1.1em solid rgba(45, 45, 45, 0.5);
  border-bottom: 1.1em solid rgba(45, 45, 45, 0.5);
  border-left: 1.1em solid #b0b0ff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.5s infinite linear;
  animation: load8 1.5s infinite linear;
}

.loader_save {
  font-size: 8px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(45, 45, 45, 0.5);
  border-right: 1.1em solid rgba(45, 45, 45, 0.5);
  border-bottom: 1.1em solid rgba(45, 45, 45, 0.5);
  border-left: 1.1em solid #b0b0ff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.5s infinite linear;
  animation: load8 1.5s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

input[type=range] {
  width: 70px;
  height: 5px;
  -webkit-appearance: none;
  background: transparent;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #b0b0ff;
  border-radius: 1px;
  border: 0px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid #2497E3;
  height: 15px;
  width: 15px;
  border-radius: 25px;
  background: #b0b0ff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #2497E3;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #2497E3;
  border-radius: 1px;
  border: 0px solid #000000;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid #2497E3;
  height: 15px;
  width: 15px;
  border-radius: 20px;
  background: #b0b0ff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2497E3;
  border: 0px solid #000000;
  border-radius: 2px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-fill-upper {
  background: #2497E3;
  border: 0px solid #000000;
  border-radius: 2px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-thumb {
  //margin-top: 1px;
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid #2497E3;
  height: 15px;
  width: 15px;
  border-radius: 25px;
  background: #b0b0ff;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #2497E3;
}
input[type=range]:focus::-ms-fill-upper {
  background: #2497E3;
}

.outer-container {
    border: 1px dotted black;
    width: 100%;
    height: 100%;
    text-align: center;
}
.inner-container {
    border: 1px solid black;
    display: inline-block;
    position: relative;
}
.video-loader,
.video-loader:after {
  border-radius: 50%;
  width: 3em;
  height: 3em;
}

.video-loader {
    position: absolute;
    top: 45%;
    left: 45%;

    text-indent: -9999em;
    border-top: 1.1em solid rgba(45, 45, 45, 0.3);
    border-right: 1.1em solid rgba(45, 45, 45, 0.3);
    border-bottom: 1.1em solid rgba(45, 45, 45, 0.3);
    border-left: 1.1em solid #a0a0ff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.5s infinite linear;
    animation: load8 1.5s infinite linear;

    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.video {
  height: 100%;
  width: 100%;
}
