@charset "utf-8";

/**
 * @license Copyright (c) 2015-2016 Radiant Media Player | https://www.radiantmediaplayer.com
 * rmp-ad-blocker-detection 0.1.1 | https://github.com/radiantmediaplayer/rmp-ad-blocker-detection
 * Released under the MIT license
 * Contact information: https://www.radiantmediaplayer.com/contact.html
 */

.rmp-ad-block-container {
  position: absolute;
  background: rgba(0, 0, 0, 0.33);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.rmp-ad-block-container > .rmp-ad-block-text {
  position: absolute;
  left: 10%;
  width: 80%;
  top: 50%;
  height: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FFFFFF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  background: #212121;
  border: 1px solid #000000;
  padding: 10px;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.rmp-ad-block-detected .rmp-poster {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}