#ouibounce-modal {
  font-family: 'Open Sans', sans-serif;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4000;
}
#ouibounce-modal .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(2,6,17,0.5);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
#ouibounce-modal .modal {
  max-width: 600px;
  width: 600px;
  height: 345px;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  border: 1px solid #48494e;
  box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.9);
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
  background: #e5edf5;
  background: -moz-radial-gradient(center, ellipse cover, #e5edf5 1%, #c3d6e8 97%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(1%,#e5edf5), color-stop(97%,#c3d6e8));
  background: -webkit-radial-gradient(center, ellipse cover, #e5edf5 1%,#c3d6e8 97%);
  background: -o-radial-gradient(center, ellipse cover, #e5edf5 1%,#c3d6e8 97%);
  background: -ms-radial-gradient(center, ellipse cover, #e5edf5 1%,#c3d6e8 97%);
  background: radial-gradient(ellipse at center, #e5edf5 1%,#c3d6e8 97%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5edf5', endColorstr='#c3d6e8',GradientType=1 );
}

#ouibounce-modal .modal label {
  font-weight: normal
}

#ouibounce-modal .modal h3 {
  margin: 5px !important;
  color: #484848;
}

#ouibounce-modal .modal .img_bounce {
  display: inline-block;
  background-image: url(/assets/images/img_bounce_modal-1.png);
  background-repeat: no-repeat;
  background-size: 170px auto;
  height: 170px;
  width: 100%;
  margin: 25px 10px;
  background-position: center center;
}

#ouibounce-modal .modal .title {
  color: #5e697c;
  padding: 10px 20px 5px;
  font-size:28px;
  text-align: left;
  margin-top: 35px;
  font-weight: 300;
}

#ouibounce-modal .modal .textfield {
  color: #5e697c;
  padding: 5px 20px 0px;
  font-size: 15px;
  text-align: left;
  margin-top: 5px;
}
#ouibounce-modal .modal .textfield .prices {
    margin: 20px 0 20px;
  }

.cross{
    position: relative;
    display: inline-block;
  }

.cross::after{
  position: absolute;
  background-position: top left;
  background-image: url(/assets/images/cross.png);
  background-repeat: no-repeat;
  display: inline-block;
  content: " ";
  top: 0;
  left: -5px;
  background-size: 90px auto;
  height: 30px;
  width: 90px;
}

#ouibounce-modal .modal .textfield .prices span {
    font-size: 15px;
    margin: 0px 3px;
  }

#ouibounce-modal .modal .ouibounce_buttons {
  display: inline-grid;
}

#ouibounce-modal .modal .ouibounce_buttons span {
  font-size: 11px;
  display: block;
}

#ouibounce-modal .modal .button {
  font-size: 22px;
  line-height: 110%;
}


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

@media screen and (max-width: 768px) {
  #ouibounce-modal .modal  {
    height: 390px;
  }
  #ouibounce-modal .modal .img_bounce {
    background-size: contain;
    height: 120px;
    margin: 0;
  }
  html body #ouibounce-modal .modal .title {
    color: #5e697c;
    padding: 10px 20px 5px;
    font-size: 28px;
    text-align: center;
    margin-top: 0px;
  }
  #ouibounce-modal .modal .textfield .prices {
    text-align: center;
  }
}
