/* .haven-paywall-is-active is added by js, .haven-pubs-* is added by taxonomy slugs in wp */

#haven-paywall-overlay {
  display: none;
}

/*
copy the following to your _custom.scss and
replace the have-pubs-<publication slug> with site specific urls


.haven-paywall-is-active.haven-pubs-special-issues #haven-paywall-overlay,
.haven-paywall-is-active.haven-pubs-ceramics-monthly #haven-paywall-overlay,
.haven-paywall-is-active.haven-pubs-pottery-making-ilustrated #haven-paywall-overlay{
  z-index: 100000;
  display: block;
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: .9;
  position: fixed;
  left: 0;
  top: 0;
  animation-name: animate-overlay;
  animation-duration: 5s;
}

.haven-paywall-is-active.haven-pubs-special-issues #haven-paywall-alert,
.haven-paywall-is-active.haven-pubs-ceramics-monthly #haven-paywall-alert,
.haven-paywall-is-active.haven-pubs-pottery-making-ilustrated #haven-paywall-alert {
  z-index: 100001;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: animate-alert;
  animation-duration: 5s;
}

*/

#haven-paywall-alert {
  display: none;
}



@keyframes animate-alert {
	0%		{ top: -100%; }
	80%		{ top: -100%; }
	100%	{ top: 50%; }
}

@keyframes animate-overlay {
	0%		{ opacity: 0; }
	80%		{ opacity: 0; }
	100%	{ opacity: .9; }
}

/*
* paywall floater redirect text
*/
.floater-redirect{
  color:#000000;
  padding-bottom:2px;
  font-family:Candara;
  font-weight:600;
  border-bottom:.5px solid #000000;
  font-size:13px;
  transform : scale(1,1.3);
  -webkit-transform:scale(1,1.3); /* Safari and Chrome */
  -moz-transform:scale(1,1.3); /* Firefox */
  -ms-transform:scale(1,1.3); /* IE 9+ */
  -o-transform:scale(1,1.3); /* Opera */
}
