strong {
  font-weight: bolder
}

.cloudapp {
  font-size: 2em;
}

.blue-cloud {
  position: relative;
  line-height: 24px;
  padding-top: 70px;
  padding-left: 50px;
  padding-right: 20px;
  display: inline-block;
  margin-top: -20px;
  font-size: 18px;
  text-align: center;
}

.blue-cloud:after {
  content: '';
  position: absolute;
  background-position: -64px 0;
  top: 0;
  left: 50%;
  width: 64px;
  height: 64px;
  background-image: url(/assets/blue-cloud.png);
  margin-left: -32px;
}

#ouibounce-modal {
  font-family: 'Open Sans', sans-serif;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#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 {
  width: 538px;
  height: 339px;
  background-color: #fafbfa;
  z-index: 1;
  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;
}

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

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

#ouibounce-modal .modal .top-bar {
  color: #484848;
  padding: 13px 0 35px 0;
  font-size: 17px;
}

#ouibounce-modal .modal .logo {
  max-height: 15px !important;
  margin-top: 0 !important;
  display: inline-block !important;
}
#ouibounce-modal .modal .close {
  width: 14px;
  height: 15px;
  position: absolute;
  left: 5px;
  top: 5px;
  background: url('/assets/close.png') 0 0;
  cursor: pointer;
}
#ouibounce-modal .modal .close:hover {
  background-position: 0 -15px;
}
#ouibounce-modal .modal .close:active {
  background-position: 0 -30px;
}

#validation-error {
  display: none;
  color: red;
  float: right;
  font-size: 12px;
}

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