#ouibounce-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}
#ouibounce-modal .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
#ouibounce-modal .modal {
  color: #ffffff;
  width: 690px;
  height: 360px;
  background-color: #ffffff;
  z-index: 10000;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
  display: block !important;
  border: 1px #e5e5e5 solid;
  overflow: visible;
}
#ouibounce-modal .modal-title {
  font-size: 24px;
  background-color: #000000;
  color: #ffffff;
  padding: 15px;
  margin: 0;
  text-align: center;
}

#ouibounce-modal .modal-title span {
  display: block;
  font-size: 29px;
  margin-top: 7px;
}

#ouibounce-modal h3 {
  color: #2d2e28;
  font-weight: lighter;
  margin: 0;
  font-size: 22px;
}

#ouibounce-modal .PopupContent {
  padding: 50px 35px;
}

#ouibounce-modal .PopupContent .PopupDescription {
  font-size: 17px;
  color: #2d2e28;
  padding-top: 10px;
  font-weight: 500;
}

#ouibounce-modal .PopupContent .PopupDescription > div {
  color: #3e3e3e;
  font-size: 15px;
  padding-top: 10px;
  font-weight: 400;
}

#ouibounce-modal .PopupContent .PopupDescription > div span {
  display: block;
}

#ouibounce-modal .modal-body {
  padding: 0px;
  font-size: 18px;
  text-align: center;
}

#ouibounce-modal .modal-body .resultmsg {
  color: #2d2e28;
}

#ouibounce-modal .modal-body .resultmsg img {
  margin: auto;
}

#ouibounce-modal .modal-body .resultmsg.notok {
  font-size: 16px;
  line-height: 18px;
}

#ouibounce-modal .modal-body span.glyphicon {
  font-size: 40px;
  margin: 20px 0px 20px 0px;
  display: block;
  text-align: center;
  color: #008000;
}

#ouibounce-modal .modal-body .resultmsg.notok span {
  font-size: 12px;
  line-height: 12px;
  display: block;
  padding-top: 2px;
}

#ouibounce-modal form {
  text-align: center;
  margin-top: 10px;
}
#ouibounce-modal form input[type="text"] {
  padding: 6px 5px;
  width: 100%;
  border: 1px solid #d4d4d4;
  -webkit-font-smoothing: antialiased;
  background-color: #f5f5f5;
  color: #9d9d9d;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
}
#ouibounce-modal form input[type="submit"] {
  display: block;
  font-size: 16px;
  padding: 5.5px 25px;
  text-align: center;
  background: #716347;
  float: none;
  height: auto;
  line-height: 1.5;
  color: #ffffff;
  width: 100%;
}

#ouibounce-modal .SocialMediaButtons {
}

#ouibounce-modal form input[type="submit"]:hover {
  background-color: #3e3e3e;
}

#ouibounce-modal .modal-footer .ExitPopup {
  display: block;
  position: absolute;
  top: -9px;
  right: -14px;
  text-align: center;
  border: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 100;
  text-align: center;
  background: #3e3e3e;
  padding: 1.5px;
  border-radius: 50%;
}
#ouibounce-modal .modal-footer .ExitPopup i {
  font-size: 15px;
  line-height: 23px;
  color: #ffffff;
}
#ouibounce-modal .modal-footer .ExitPopup:hover i {
  color: #ffffff;
}
#ouibounce-modal .modal-footer {
  border: 0;
  padding: 0px;
}

#ouibounce-modal .modal-footer .ExitPopup:hover {
  background-color: #da171f;
}

@media (max-width: 767px) {
  #ouibounce-modal .modal {
    width: 80%;
  }
}

@-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;
  }
}
