/* DEFAULT CSS */

#ouibounce-modal {
  font-family: arial;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}
#ouibounce-modal .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
  z-index: -999;
}
#ouibounce-modal .modal {
    width: 70%;
    height: 70%;
    
    z-index: 100;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation: popin 0.3s;
    animation: popin 0.3s;
    padding: 15px;
}
/* ADDITIONAL CSS */

#ouibounce-modal .modal-coupon {

  background-color: #dbf3ff;
  border: 3px dashed #04b404;
  text-align: center;
  margin:20px;
  padding:15px;
  background-repeat: no-repeat;
}
#ouibounce-modal .modal-ms {
  height: 20px;
  background-color: #fff;
  padding: 16px 0;
  background-image:url(https://www.remosoftware.com/registration/nimages/images/microsoft-gold-partner-2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10%;
}
#ouibounce-modal p {
  font-size: 16px;
  margin: 0;
  line-height: normal;
  padding: 0;
}
#ouibounce-modal p.two,
#ouibounce-modal p.three,
#ouibounce-modal p.four {
  font-weight: bold;
}
#ouibounce-modal p.one,
#ouibounce-modal p.four {
  margin-bottom: 16px;
}
#ouibounce-modal p.one {
  font-size: 32px;
}
#ouibounce-modal p.three {
  color: #cc0000;
  font-size: 50px;
  margin: 15px 0;
}
#ouibounce-modal .modal-button {
  display: block;
  text-decoration: none;
  font-family: verdana;
  font-size: 16px;
  line-height: normal;
  color: #fff;
  padding: 18px 0;
  margin: 0 auto;
  background-image: url(../images/ouibounce-button.png);
  background-repeat: no-repeat;
  background-position: center center;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes popin {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-ms-keyframes popin {
  0% {
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popin {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
