#mediaDiv {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
  background: #555 url("../images/media/images/pan.png") no-repeat center center;
  background-size: 100% 100%;
  opacity: 0.6;
}

/*#mediaDiv:hover {
    opacity: 1.0;
}*/

#mediaDiv div.playing {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2px;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  background: #555 url("../images/media/images/play.png") no-repeat center
    center;
  background-size: 100% 100%;
}

#mediaDiv div.on {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  background: url("../images/media/images/music.png") no-repeat center center;
  background-size: 35% 35%;
  /* opacity: 0.5; */
}

/*@media (max-width: 1050px) {
    .site-title {
        font-size: 38px;
        font-size: 3.85rem;
        letter-spacing: -0.01em;
    }
}*/

@media (max-width: 650px) {
  #mediaDiv {
    width: 50px;
    height: 50px;
    top: 5px;
    right: 5px;
    bottom: 10px;
  }

  #mediaDiv div.on {
    width: 50px;
    height: 50px;
  }
}

.animate {
  animation: round 10s linear infinite;
  -webkit-animation: round 10s linear infinite;
  -moz-animation: round 10s linear infinite;
  -ms-animation: round 10s linear infinite;
}

@keyframes round {
  100% {
    transform: rotate(1turn);
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
    -ms-transform: rotate(1turn);
    -o-transform: rotate(1turn);
  }
}
