<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Copyright (c) 2014 
 * Licensed under the MIT License
 * version: 0.0.1
 */
.popup-player-layer{
  background-color: #000;
  display: none;
  height: 100%;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  opacity: .8;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.popup-player-modal{
  background-color: #FFF;
  display: none;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 1001;
}
.popup-player-modal-inner{
  height: 100%;
  width: 100%;
} 
.popup-player-modal iframe{
  height: 100%;
  vertical-align: bottom;
  width: 100%;
}
.popup-player-close{
  background-color: #333;
  border-radius: 30px;
  color: #FFF;
  cursor: pointer;
  display: none;
  font-size: 30px;
  font-weight: bold;
  height: 60px;
  left: 20px;
  line-height: 60px;
  opacity: 0.8;
  position: fixed;
  text-align: center;
  top: 20px;
  width: 60px;
  z-index: 1003;
  zoom: 1;
}

@media screen and (max-width: 480px) {
.popup-player-close{ 
  background-color: #333;
  border-radius: 30px;
  color: #FFF;
  cursor: pointer;
  display: none;
  font-size: 20px;
  font-weight: bold;
  height: 40px;
  left: 5px;
  line-height: 40px;
  opacity: 0.8;
  position: fixed;
  text-align: center;
  top: 5px;
  width: 40px;
  z-index: 1003;
  zoom: 1;
}
}</pre></body></html>