.exit_popup #ouibounce-modal {
  font-family: 'Open Sans', sans-serif;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
}
.exit_popup #ouibounce-modal .ep-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;
}
.exit_popup #ouibounce-modal .ep-modal {
  background: url('../img/lp_turystyczna_ludzie1.jpg') right top no-repeat;
  background-size: auto 300px;
  max-width: 900px;
  height: 400px;
  background-color: #ffffff;
  z-index: 1;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
}
@media screen and (max-width: 720px) {
  .exit_popup #ouibounce-modal .ep-modal {
    background: #fff;
    max-width: 95vw;
  }
}

.exit_popup #ouibounce-modal .ep-modal .ep-modal-close {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 30px;
  color: #505050;
  cursor: pointer;
  transition: all linear .1s;
}

.exit_popup #ouibounce-modal .ep-modal .ep-modal-close:hover {
  color: #808080;
  transform: rotate(90deg);
}

.exit_popup #ouibounce-modal .ep-modal-title {
  padding: 30px 35px 20px;
  max-width: 550px;
}

.exit_popup #ouibounce-modal .ep-modal-title h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  color: #1d67a2;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  margin: 0;
  line-height: 40px;
}

.exit_popup #ouibounce-modal .ep-modal-body {
  padding: 10px 35px 10px 35px;
  font-size: 0.9em;
}

.exit_popup #ouibounce-modal .ep-modal-body .ep-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1d67a2;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.exit_popup #ouibounce-modal .ep-modal-body .ep-list {
  list-style: none;
  padding: 0px;
  margin-bottom: 21px;
}

.exit_popup #ouibounce-modal .ep-modal-body .ep-list .ep-item {
  background: url('../img/ikona_check.png') left center no-repeat;
  padding-left: 25px;
  line-height: 30px;
  font-size: 16px;
  color: #1d67a2;
}

.exit_popup #ouibounce-modal .ep-modal-body .ep-btn-red {
  background: #f45059;
  font-size: 18px;
  color: #fff;
  line-height: 1.33;
  border-radius: 6px;
  padding: 10px 30px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 400;
}

.exit_popup #ouibounce-modal .ep-modal-body .ep-btn-red:hover {
  background: #ee8f94;
}

.exit_popup #ouibounce-modal .ep-modal-footer {
  padding: 20px 35px;
}

.exit_popup #ouibounce-modal .ep-modal-footer .ep-logos {
  width: 100%;
  text-align: center;
}

.exit_popup #ouibounce-modal .ep-modal-footer .ep-logos img {
  height: 35px;
  margin: 10px;
  display: inline-block;
  vertical-align: middle;
  border: 0;
}



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