.overlay{
 background: rgba(0,0,0,0.75);
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  position: absolute;
  z-index:10000;  
  position: fixed;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


.overlay {
  animation: 1250ms 1 forwards blendin;
  animation-delay: 3s;
}

@keyframes blendin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.wrapper-outer-center,
.wrapper-outer-top,
.wrapper-outer-bottom,
.fb-wrapper{
  animation: 2500ms 1 forwards blurry;
  animation-delay: 3s;
}


@keyframes blurry {
  0% {
    filter: blur(0px);
  }
  100% {
   filter: blur(5px);
  }
}




.overlay-inner{
  background: rgba(255,255,255,1.0);
  max-width: 320px;
  height: auto;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.30);
}

.overlay-inner span{
  font-size: 1.25rem;
margin-bottom: 5px;
  display: block;
  font-weight: bold;
}

.overlay-inner span.mini{
  font-size: 0.75rem;
margin-top: 5px;
}


.overlay-inner p{
line-height: 135%;
  padding-top: 10px;
}

.overlay-inner a{
display: inline-block;
  background: #D0B700;
  color: #fff;
  text-decoration: none;
  padding: 0.3rem;
  margin-top: 15px;
  border-radius: 7px;
  font-weight: bold;
}