#newsletter-subscribe-modal {
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

#newsletter-subscribe-modal {
  top: -700px;
  animation: drop 0.7s ease forwards;
}

@keyframes drop {
  0%{}
  70%{ transform: translateY(700px);}
  100% { transform: translateY(650px); }
}

.modal-content {
  background-color: #161616;
  margin: 15% auto; 
  border: 1px solid #888;
  width: 62%; 
  border: 0;
}

.modal-wrap {
  width: 62%;
}

.form__checkbox-box {
  top: 15px;
}

.form__checkbox-group {
  padding-top: 10px;
}

.newsletter__input  {
  border-bottom: #30b7d7 solid 1px;
  background: none;
  padding-left: 0;
}

h3 {
  padding-bottom: 15px;
}

/* The Close Button */
.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  background-color: #161616 !important;
  float: right;
  text-align: right;
  padding-right: 10px;
  padding-top: 5px;
}

.close-text {
  text-align: center;
}
.close-text:hover {
  color: #30b7d7;
  text-decoration: none;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #30b7d7;
  text-decoration: none;
  cursor: pointer;
}

.newsletter-icon-container {
  text-align: center;
}

.subscribe {
  width: 50%;
  height: 420px;
  float: left;
  border-right: 0.4px solid;
  padding: 5%;
  box-sizing: border-box;
  border-color: rgba(255, 255, 255, 0.15);
}

.subscribe-form {
  width: 50%;
  float: left;
  padding: 5%;
  box-sizing: border-box;
}

@media only screen and (max-width: 950px) {
  #newsletter-subscribe-modal {
    top: -600px;
  }
}

@media screen and (max-width: 900px) {
  .subscribe {
    width:  auto;
    height: auto;
  }

  .subscribe-form {
    width: auto;
  }

  .modal-content {
    width: 85%;
  }
}
