#subscribe-popup {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  transition: opacity .3s, z-index .3s;
  padding-top: calc(50vh - 300px);
}

#subscribe-popup #subscribe-form {
  overflow: hidden;
  margin: 0 auto;
  background: #ccb7b6;
  box-sizing: border-box;
  padding: 30px;
  color: white;
}

#subscribe-popup.opened {
  opacity: 1;
  z-index: 1001;
}

#subscribe-popup #subscribe-form {
  width: 440px;
  height: auto;
  max-width: 100%;
}

#subscribe-popup #subscribe-form .required {
  display: block;
  float: right;
}

#subscribe-popup #subscribe-form .required-icon {
  color: #e85c41;
  font-size: 150%;
  position: relative;
  top: 5px;
}

#subscribe-popup #subscribe-form img {
  max-width: 100%;
}

#subscribe-popup #subscribe-form label {
  margin-bottom: 3px;
  font-size: 14px;
}

#subscribe-popup #subscribe-form input[type=email], input[type=text] {
  display: block;
  width: 100%;
  padding: 8px 0;
  text-indent: 2%;
  border: 1px solid #ABB0B2;
  border-radius: 3px;
  margin-bottom: 10px;
}

#subscribe-popup #subscribe-form input[type=submit], #subscribe-popup #subscribe-form a {
  clear: both;
  background: black;
  border: 0 none;
  transition: all 0.23s ease-in-out 0s;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  margin: 0 5px 10px 0;
  padding: 10px 22px;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
  width: auto;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  user-select: none;
}

#subscribe-close {
  color: white;
  position: absolute;
  top: 10px;
  right: .5em;
  font-size: 60px;
}
