.black_overlay {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  padding-top: 60px;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.white_content {
  display: none;
  position: relative;
  top: 10%;
  left: 50%;
  width: 500px;
  margin-left: -250px;
  min-height: 50%;
  box-sizing: border-box;
  padding: 16px;
  background-image: -moz-linear-gradient( 90deg, rgb(0,188,212) 0%, rgb(74,211,145) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(0,188,212) 0%, rgb(74,211,145) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(0,188,212) 0%, rgb(74,211,145) 100%);
  z-index:1002;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (max-width : 768px) {
  .white_content {
    position: relative;
    top: 0;
    left: 0;
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width : 480px) {
  .white_content {
    width: 100%;
  }
}

form .row {
  text-align: center;
  padding: 5px 0 10px 0;
}
.form-input {
  width: 80%;
  max-width: 280px;
  padding: 0 15px;
  height: 40px;
  background: #fff;
  margin-bottom: 0;
  border-radius: 2px;
  border: none;
  outline: none;
}
.form-textarea {
  width: 80%;
  max-width: 280px;
  padding: 15px;
  min-height: 80px;
  background: #fff;
  border-radius: 2px;
  border: none;
  outline: none;
}

.inner-block {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 15px;
  padding-bottom: 30px;
}
.text-bold-white {
    color: white;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
