/**
HTML structure:

<div class="widget-placeholder">
	<div class="widget-placeholder-body">
		<div class="widget-placeholder-content">
			<p>...</p>
			<a class="widget-placeholder-btn">...</a>
		</div>
	</div>
</div>
*/
.widget-placeholder {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.widget-placeholder.type-twitter-timeline {
  background-image: url('img/placeholder-twitter.gif');
  background-position: top left;
}
.widget-placeholder.type-map {
  background-image: url('img/placeholder-map.gif?210302');
  background-position: top left;
}
.widget-placeholder.type-map .widget-placeholder-body {
  min-height: 300px;
}
.widget-placeholder-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: 200px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 0;
  animation: placeholder-show 1200ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.widget-placeholder > *,
.widget-placeholder-body > * {
  width: 100%;
}
.widget-placeholder-content {
  background: rgba(30, 30, 30, 0.9);
  color: #fff;
  padding: 20px;
  font-family: "AvenirNextCondensed-Medium", "Ubuntu Condensed", "Franklin Gothic Medium Cond", "Arial Narrow", sans-serif-condensed, Arial, sans-serif;
  font-stretch: condensed;
  font-weight: normal;
  font-style: normal;
}
.widget-placeholder-content p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 22px;
}
.widget-placeholder-content a {
  color: #fff;
  text-decoration: underline;
  font-size: 16px;
  line-height: 22px;
}
.widget-placeholder-content a.widget-placeholder-btn {
  background: #00b000;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 2px 12px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
}
.widget-placeholder-content a.widget-placeholder-btn:before {
  content: '\2713';
  padding-right: 3px;
}
.embed-responsive-16by9 {
  position: relative;
}
.embed-responsive-16by9 .widget-placeholder {
  height: 0;
  padding-bottom: 56.25%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.embed-responsive-16by9 .widget-placeholder-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
@keyframes placeholder-show {
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=widget_placeholder.css.map */
