#ubaplayer-fallback {
	display: none;
}

.ubaplayer-button{    
	width: 30px;
	height: 30px;
	position: relative;
	/*margin: 2% 0 0 10%;*/
	border-radius: 45px;
    /*border:3px solid #000;*/
	cursor: pointer;
    background-color: #000;
}

.ubaplayer-controls a:hover{    
	
    background-color: #434343;
}
.ubaplayer-button:before, .ubaplayer-button:after {
	content: "";
	position: absolute;
	border: 8px solid #fff;
    top: 22%;
    left: 40%;
    height: 0;
    border-right-color: transparent;
    border-top-color: transparent;
    border-bottom-color: transparent;
	border-right: 0;	
}
.ubaplayer-button.ubaplayer-playing:before{
	border: 2px solid #fff;
    top: 10px;
    left: 9px;
    height: 10px;
}

.ubaplayer-button.ubaplayer-playing:after{
	content: "";
    position: absolute;
    border: 2px solid #fff;
    top: 10px;
    left: 17px;
    height: 10px;
}

.ubaplayer-button.ubaplayer-loading,
.ubaplayer-button.ubaplayer-loading:hover {
  margin: 6em auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 4px solid #808080;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #808080;
  border-left: 4px solid #fff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;

}
.ubaplayer-button.ubaplayer-loading,
.ubaplayer-button.ubaplayer-loading:after,
.ubaplayer-button.ubaplayer-loading:before {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border:none;
  
}
@-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);
  }
}