
.mejs-controls{
	display: none;
}
.mejs__duration-container {visibility:hidden !important;display:none !important;}

.vjs-default-skin.vjs-paused .vjs-big-play-button {
  display: none;
}
.vjs-play-control {
  display: none;
}

.video-js.vjs-playing .vjs-tech {
  pointer-events: none;
}

.video-js .vjs-play-control {
  cursor: pointer;
  display: none;
}

.wrapper {
	/*width: 90%; 
	margin: auto;*/
	position: relative;
}

.overlay {
  width: 100%;
  background: rgba(0,0,0,1);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  height: 100%;
}
.videoBox {
  position: fixed;
  width: 90%;
  left: 50%;
  top:50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 5px;
  background: #000000;
  text-align: center;
  border-radius: 5px;
}
.videoBox video {
  width: 100%;
}
.close {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 30px;
  left: 30px;
  display: block;
  /*opacity: 1;*/
  /*background: transparent url(/images/2763138.png) no-repeat center center;*/
  background: transparent url(/images/close-64-256-1.png) round;
  
  /*transition-property: opacity;*/
  /*opacity: 1;*/
  z-index: 1;
}
.close:hover {
  transition-delay: 0.1s;
  opacity: 1;
}
.close.change:hover {
  transition-delay: 0.1s;
  opacity: 1;
}
.close.change {
  /*transition-delay: 2s;
  opacity: .3;*/
  transition: all .5s;
  opacity: .1;
}

@-webkit-keyframes smooth {
  0% { opacity: .3;}
  100% { opacity: 1;}
}

@-moz-keyframes smooth {
  0% { opacity: .3;}
  100% { opacity: 1;}
}

@-o-keyframes smooth {
  0% { opacity: .3;}
  100% { opacity: 1;}
}

@keyframes smooth {
  0% { opacity: .3;}
  100% { opacity: 1;}
}

video { 
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  /*transform: translateX(-50%) translateY(-50%);*/
  background: url('/images/blu+2.jpg') no-repeat;
  background-size: cover;
  transition: 1s opacity;
}

.video-js {
  font-size: 18px!important;
}

span.buttonerrorclose {
  display: inline-block;
  padding: 0.35em 1.2em;
  border: 0.1em solid #FFFFFF;
  margin: 0 0.3em 0.3em 0;
  border-radius: 0.12em;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Roboto',sans-serif;
  font-weight: 300;
  color: #FFFFFF;
  text-align: center;
  transition: all 0.2s;
}

span.buttonerrorclose:hover{
  color: #000000;
  background-color: #FFFFFF;
}

.zoom-in-out-logo-radio {
  animation: zoom-in-zoom-out 5s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    scale: 90%;
  }
  50% {
    scale: 110%;
  }
  100% {
    scale: 90%;
  }
}

/*
.icon {
  color: white;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
*/

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
  z-index: 999;
}