
#ouibounce-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#ouibounce-modal .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadein 0.5s;
}

#ouibounce-modal .modal-block {
  width: 550px;
  max-width: 100%;
  height: auto;
  padding: 50px 40px 45px;
  font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
  font-size: 15px;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 3px solid rgba(255, 255, 255, 0.34);
  position: absolute;
  margin: 50px auto;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  animation: popin 0.3s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  line-height: 1.5;
  -moz-text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
  -webkit-text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
  background-clip: padding-box;
  position: relative;
}
#ouibounce-modal .modal-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.75);
  z-index: -1;
  -moz-border-radius: inherit;
  -webkit-border-radius: inherit;
  border-radius: inherit;
}

#ouibounce-modal .modal-block p {
  margin: 0;
}
#ouibounce-modal .modal-block p:first-of-type {
  margin-bottom: 24px;
}
#ouibounce-modal .modal-block .modal-img {
  width: 52%;
  text-align: center;
  margin: 0 auto 10px;
}

#ouibounce-modal .modal-block .modal-img img {
  display: block;
  max-width: 100%;
}

#ouibounce-modal .modal-block .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
}

#ouibounce-modal .modal-block .modal-close:before {
  content: '×';
  font-size: 48px;
  line-height: 50px;
  color: rgba(255, 255, 255, 0.25);
}

.text-accent {
  font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.2;
  -moz-text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
  -webkit-text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
}
.promocode {
  font-size: 18px;
}

#ouibounce-modal .modal-block .promocode {
  margin-bottom: 32px;
}
.btn-popup {
    font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    transition: all 0.25s ease-out;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: 18px 32px;
    font-size: 19px;
    color: #000;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: 2px solid #FFD800;
    background-color: #ffd800;
    text-shadow: none;
    text-decoration: none;
    position: relative;
}
.btn-popup:before {
  content: '';
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: #000;
  border-right-width: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin-top: 2px;
}
.btn-popup:hover,
.btn-popup:focus {
  text-decoration: none;
  color: #000;
  background-color: #ffd800;
  background-size: 15px 23px;
  border: 2px solid #FFD800;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes popin {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  85% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* --- injected clearfix (WaybackScraper) --- */
.clearfix::after{content:"";display:table;clear:both}
.clearfix{display:block}
