.awmodals {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.6);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
.awmodals.active {
  opacity: 1;
  visibility: visible;
}
.awmodals .awmodal {
  width: 100%;
  max-width: 500px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,.6);
  box-shadow: 0 0 5px rgba(0,0,0,.6);
  transform: translate(0, -100px);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
}
.awmodals .awmodal.active {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
.awmodals .awmodal .header {
  font-family: PTSans, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1em;
  color: #000;
  padding: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.awmodals .awmodal .header .awclose {
  position: absolute;
  display: block;
  top: 14px;
  right: 14px;
  width: 25px;
  height: 25px;
  font-size: 25px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  transition: .2s ease-in-out;
  color: #ddd;
}
.awmodals .awmodal .header .awclose:hover {
  color: red;
}
.awmodals .awmodal .body {
  padding: 0 15px 10px;
}
.awmodals .awmodal .privacy-policy-warning {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.2em;
  text-align: center;
}
.awmodals .awmodal .privacy-policy-warning a {
  color: #333;
}
.awmodals .awmodal .btn {
  display: inline-block;
  background: #ff7a31;
  color: #fff;
  font-size: 14px;
  line-height: 1em;
  padding: 10px 25px;
  border: 0;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
}