.pop-drop-wrapper{
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
}
.blueGradient {
    color: white;
    background: #06a8dc;
    background: -moz-linear-gradient(top, #06a8dc 0%, #0076a9 100%);
    background: -webkit-linear-gradient(top, #06a8dc 0%,#0076a9 100%);
    background: linear-gradient(to bottom, #06a8dc 0%,#0076a9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#06a8dc', endColorstr='#0076a9',GradientType=0 ); /* IE6-9 */
}
.greenGradient {
    color: white;
    background: #b4ec51;
    background: -moz-linear-gradient(top, #b4ec51 0%, #429321 100%);
    background: -webkit-linear-gradient(top, #b4ec51 0%,#429321 100%);
    background: linear-gradient(to bottom, #b4ec51 0%,#429321 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4ec51', endColorstr='#429321',GradientType=0 );
}
#startButton {
    width:70%;
    padding:15px 0;
    border-radius: 50px;
    margin-top: 40px;
}
#startButton p {
    font-size:24px;
    letter-spacing: 2px;
    margin: 0;
}
#muteButton {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-image: url("https://av.sc.com/in/content/images/3-soundOn-ntbc.png");
    background-size:cover;
}
#muteButton.soundOn {
    background-image: url("https://av.sc.com/in/content/images/3-soundOff-ntbc.png");
}
.timer {
    color: white;
    font-weight: bold;
    position: absolute;
    right: 10px;
    z-index: 3;
    top: 30px;
    right: 30px;
    font-size: 30px;
    display: none;
    text-align:center;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    padding: 0 30px;
    line-height: 1.5
}
.scoreBoard {
    color: white;
    font-weight: bold;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
    font-size: 30px;
    display: none;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.7);
    background-color: blue;
    text-align:center;
    border-radius: 50px;
    padding: 0 30px;
    line-height: 1.5;
}
.playGround{
    position: absolute;
    overflow: hidden;
    top:0;
    left:0;
}
.controlSection{
    position: absolute;
    display: inline;
    justify-content: space-between;    
}
.start{
    height: 80px;
    width: 100px;
    background-color: lightskyblue;
    color: white;
    border-radius: 40px;
    font-size: 16pt;
    outline-style:none;
    box-shadow:none;
    border-color:transparent;
}
.flap{
    height: 80px;
    width: 100px;
    border-radius: 40px;
    background-color: lightcoral;
    color: white;
    font-size: 16pt;
    outline-style:none;
    box-shadow:none;
    border-color:transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

/* pagination css */
html, body {
    height: 100%;
    margin: 0;
    padding-top:0!important;
}
.center {
    text-align: center;
}
.container {
    display:none;
    flex-direction: column;
    height: 100%;
}
.logo-size {
    width: 350px;
    height: 67px;
}
.top {
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.content {
    height:100%; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    background-image: url('https://av.sc.com/in/content/images/cloud-ntbc.png');
    background-position: 100% 50%;
    background-size: contain;
    background-repeat: no-repeat;
}
.white {
    text-shadow: 0 1px 4px #000000;
    color: white;
}
.black {
   color:  #4a4a4a;
}
.descText p {
    font-size: 1.1em;
    -webkit-margin-before: 0.3em;
    -webkit-margin-after: 0.3em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: 500;
    color: #0074A0;
}
.descText p.congrats{
    font-size: 1.4rem;
}
.static-monster {
    position: absolute;
    left: 0;
    top: 111px;
}
.score-text {
    font-size: 2.3em;
    color: #0074A0;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.mt-1 {
    margin-top: 1rem!important;
}
.mb-5 {
    margin-bottom: 5rem!important;
}
@media (max-width: 320px){
    .img-fluid {
        max-width: 90%;
        height: auto;
    }
    .static-monster {
        max-width: 83%;
        height: auto;
    }
}
.drop.animating {
    background-size: cover;
    width:50px;
    height:68px;
    position: absolute;
    top: -40px;
    -webkit-animation: droplet 2s linear forwards;
    -moz-animation: droplet 2s linear forwards;
    animation: droplet 2s linear forwards;
}

@keyframes droplet {
	to {
        top:100%;
    }
}
@-webkit-keyframes droplet {
	to {
        top:100%;
    }
}
@-moz-keyframes droplet {
	to {
        top:100%;
    }
}