.dialog_box{
    z-index:9999;
    background:rgba(255,255,255,0.9);
    box-shadow:0px 2px 20px rgba(0,0,0,0.2);
    border-radius:8px;
    display: none;
}
.title{
    line-height: 45px;
    font-size: 15px;
    color: #555;
    background: -moz-linear-gradient(top,  rgba(204,204,204,0) 0%, rgba(204,204,204,.4) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(204,204,204,0)), color-stop(100%,rgba(204,204,204,.4))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,.4) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,.4) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,.4) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(204,204,204,0) 0%,rgba(204,204,204,.4) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cccccc', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
}
.text-field{
  width: 80%;
  margin: 30px auto 0;
}
.text-field input, select{
    width:225px;
    height:40px;
    padding-left: 10px;
    border: 1px solid #C6C6C6;
    border-radius:5px;
    font-size: 14px;
    color: #666;
}
.text-field .btn{
    width:150px;
    height:45px;
    margin:0 auto;
    display:block;
    font-size: 17px;
}
.popup{
  position: absolute;
  width: 360px;
  top: 35%;
  left: 40%;
/*margin-top: -150px;
  margin-left: -180px;*/
  border-radius: 5px;
  text-align: center;
}
.popup p{
  margin-bottom: 15px;
  padding-top: 25px;
  font-size: 15px;
  line-height: 1.7em;
  color: #555;
}
.popup .title{
  line-height: 45px;
  font-size: 15px;
  color: #555;
  background: -moz-linear-gradient(top,  rgba(204,204,204,0) 0%, rgba(204,204,204,.4) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(204,204,204,0)), color-stop(100%,rgba(204,204,204,.4))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,.4) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,.4) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,.4) 100%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(204,204,204,0) 0%,rgba(204,204,204,.4) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cccccc', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
}
.popup .btn{
  width:110px;
  height:40px;
  margin: 0 2px 30px;
  display: inline-block;
  font-size: 15px;
}
.popup .icon{
  float: left;
  padding-left: 15px;
  margin-bottom: 10px;
  width: 20%;
  line-height: 42px;
  background-size: 18px;
  background-position: 0 12px;
  color: #888;
  font-size: 14px;
}
.popup .text-field{
  width: 80%;
  margin: 30px auto 0;
}
.popup .form-control{
  float: right;
  /*width: 70%;*/
}
@media screen and (max-width: 1200px) {
    .popup{
        top: 35%;
        left: 30%;
    }
}
@media screen and (max-width: 767px) {
    .popup{
        top: 25%;
        left: 22%;
    }
    .text-field input{
        font-size: 15px;
    }
}
@media screen and (max-width: 600px) {
    .popup{
        top: 20%;
        left: 15%;
    }
}
@media screen and (max-width: 500px) {
    .popup{
        top: 18%;
        left: 8%;
    }
}
@media screen and (max-width: 400px) {
  .popup{
    left: 2%;
    /*position:static;*/
    width:95%;
  }
  .popup .text-field {
    width: 85%;
    margin: 30px auto 0;
  }
}