
.age_buttons input:focus, .age_buttons textarea:focus, .age_buttons select:focus{
        outline: none!important;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10;
}
/*Theme Bubbles*/
.soo-agerestriction-area{
    width: 100%;
    height:100vh;
}
.soo-agerestriction-circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.soo-agerestriction-circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.soo-agerestriction-circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.soo-agerestriction-circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.soo-agerestriction-circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.soo-agerestriction-circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.soo-agerestriction-circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.soo-agerestriction-circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.soo-agerestriction-circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.soo-agerestriction-circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.soo-agerestriction-circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.soo-agerestriction-circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
/* just some content with arbitrary styles for explanation purposes */
.modall {
    width: 300px;
    height: 200px;
    line-height: 200px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -150px;
    background-color: #f1c40f;
    border-radius: 5px;
    text-align: center;
    z-index: 11; /* 1px higher than the overlay layer */
}

#agerestriction_box {
    z-index: 99999;
}

#agerestriction_outer {
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}
.raindrop.raindrop-roundedsmall {-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;}
.raindrop.raindrop-roundedlarge {-webkit-border-bottom-right-radius: 15px;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomright: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;}

header.raindrop {
  height: 15px;
  position: relative;
}
header.raindrop .drip {
  position: absolute;
  width: 250px;
  height: 75%;
  bottom: 2px;
  left: 5%;
  cursor: pointer;
  -webkit-filter: url("#goo");
  filter: url("#goo");
}
header.raindrop .drip .drop {
  position: absolute;
  top: 0;
  left: 75%;
  width: 30px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
header.raindrop .drip .drop:hover {
  height: 70px;
}
header.raindrop .drip .droplet {
  position: absolute;
  top: 0;
  left: 64%;
  width: 20px;
  height: 25px;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-animation: droplet 1.4s 0.4s cubic-bezier(0.895, 0.03, 0.685, 0.22) 1;
          animation: droplet 1.4s 0.4s cubic-bezier(0.895, 0.03, 0.685, 0.22) 1;
}
header.raindrop .drip .droplet:hover {
  top: 20px;
  width: 40px;
  left: 63%;
  -webkit-animation: reset;
          animation: reset;
}
header.raindrop .drip .droplet2 {
  position: absolute;
  top: 20px;
  left: 76%;
  width: 20px;
  height: 35px;
  border-radius: 50%;
  z-index: 3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
header.raindrop .drip .droplet2.dripit {
  -webkit-animation: droplet 1s 0.6s cubic-bezier(0.895, 0.03, 0.685, 0.22) 1;
          animation: droplet 1s 0.6s cubic-bezier(0.895, 0.03, 0.685, 0.22) 1;
}

@-webkit-keyframes drop {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    height: 40px;
    width: 40px;
  }
  100% {
    -webkit-transform: translate(0, 550px);
            transform: translate(0, 550px);
  }
}
@keyframes drop {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    height: 40px;
    width: 40px;
  }
  100% {
    -webkit-transform: translate(0, 550px);
            transform: translate(0, 550px);
  }
}
@-webkit-keyframes droplet {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    height: 30px;
    width: 30px;
  }
  100% {
    -webkit-transform: translate(0, 700px);
            transform: translate(0, 700px);
  }
}
@keyframes droplet {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    height: 30px;
    width: 30px;
  }
  100% {
    -webkit-transform: translate(0, 700px);
            transform: translate(0, 700px);
  }
}
.sooajax-roundedsmall,.sooajax-roundedsmall button, .sooajax-roundedsmall input {-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;}
.sooajax-roundedlarge,.sooajax-roundedlarge button, .sooajax-roundedlarge input {-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;}
.sooajax-title{font-size:1.5em; font-weight:bold;padding: 30px 0px 20px;}
.sooajax-description{padding:20px 5px 30px}
#agerestriction_inner {
    z-index: 100001;
    position: fixed;
    left: 50%;
    top: 50%;
text-align:center;
    margin-top: -207px;
    margin-left: -190px;
    width: 380px;
    padding-top: 20px;
}
.age_text p{
    text-align: center;
    font-weight: lighter;
    font-size: 21px;
    width: 77%;
    margin: 0 auto;
    line-height: 27px;
    margin-bottom: 17px;
}
.age_buttons {
    margin: 0 auto 31px;
    width: 345px;}

.age_buttons button{
padding:10px 15px; margin:0px 5px;
background-color:#FFF;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  font-size:.8em;
border-width:0px;
}
.age_buttons button:hover {
  background-color: #1abc9c;
  box-shadow: 0px 15px 20px rgba(26, 188, 156, 0.4);
  color: #fff;
  transform: translateY(-7px);
}
.age_buttons button#declineb:hover {
  background-color: #e74c3c;
  box-shadow: 0px 15px 20px rgba(231, 76, 60, 0.4);
}

.age_day {
    text-align: center;
    font-size: 16px;
    letter-spacing: .065em;
    padding: 10px 14px;
    background: none;
    margin: 0;
    margin-left: 10px;
    text-transform: uppercase;
    text-decoration: none;
    width: 80px;
    height: 45px;
}
.sooajax-light .sooajax-title,.sooajax-light .sooajax-description,.sooajax-light .age-buttons{color:#fff}
.sooajax-dark .sooajax-title,.sooajax-dark .sooajax-description,.sooajax-dark .age-buttons{color:#333}
.sooajax-light .age_day,.sooajax-light .age_month,.sooajax-light .age_year{border-color:#FFF;color:#fff}
.sooajax-dark .age_day,.sooajax-dark .age_month,.sooajax-dark .age_year{border-color:#333; color:#333}
.age_day,.age_month,.age_year {border-width:1px; border-style:solid}
.age_month {
    text-align: center;
    font-size: 16px;
    letter-spacing: .065em;
    padding: 10px 14px;
    background: none;
    margin: 0;
    margin-left: 10px;
    text-transform: uppercase;
    text-decoration: none;
    width: 80px;
    height: 45px;
}

.age_year {
    text-align: center;
    font-size: 16px;
    letter-spacing: .065em;
    padding: 10px 14px;
    background: none;
    margin: 0;
    margin-left: 10px;
    text-transform: uppercase;
    text-decoration: none;
    width: 80px;
    height: 45px;
}

.age_buttons input::-webkit-input-placeholder {
    color: white !important;
}

.age_buttons input:-moz-placeholder {
    color: white !important;
}

.age_buttons input::-moz-placeholder {
    color: white !important;
}

.age_buttons input:-ms-input-placeholder {
    color: white !important;
}

#declineb:hover {
    color: #DB8F8F;
    border-color: #DB8F8F;
}

@media(max-width: 430px) {
    #agerestriction_inner {
        width: 300px!important;
        margin-left: -150px!important;
    }
    #confirmb {
        width: auto;
    }
    .sooajax-description {
      font-size: .8rem!important;
    }
    #declineb {
        width: auto;
    }

    .age_buttons {
        width: 100%;
    }
    .age_buttons input.age_day,.age_buttons input.age_month,.age_buttons input.age_year {
      padding:2px 5px!important;
      width:50px!important;
    }
}
