/**
 * This CSS file contains styling used in buzz.js
 */

#buzzPopin,
#buzzPopin * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#buzzPopin {
    position: fixed;
    display: block;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
    z-index: 9999;
}
#buzzPopin.hidden {
    display: none;
}
#buzzPopinContainer {
    position: absolute;
    top: calc(10% + 25px);
    left: 10%;
    width: 80%;
    height: 80%;
    overflow: auto;
    color: #000;
    background: #eeeeee;
}

#buzzPopinTitle,
#buzzPopinClose {
    font-size: 1.4em;
    position: fixed;
    width: 80%;
    height: 50px;
    background: #fff;
    padding: .5em;
    margin: -50px 0 0 0;
    color: #000000;
}
#buzzPopinClose {
    text-align: right;
    text-decoration: none;
    font-weight: bold;
    background: none;
}

#buzzPopinContent {
    padding: 1em;
    font-size: 1em;
}

.buzz-off-screen {
    opacity: 0;
    transition: opacity .3s ease-out;
}
.buzz-off-screen.buzz-animate {
    opacity: 1;
}
.buzz-animate:not(.buzz-already-on-screen) {
    transform: translateY(25px);
    animation: come-in 0.8s ease forwards;
}
.buzz-animate:not(.buzz-already-on-screen):nth-child(odd) {
  animation-duration: 0.6s; /* So they look staggered */
}

@keyframes come-in {
  to { transform: translateY(0); }
}