
.popup-container{display: none;}
.popup-container.show{display: block;}
.popup-container {
  width: 40%;
  background-color: #535351;
  /*background: -webkit-linear-gradient(#50504E, #1A1A1A);
  background: -o-linear-gradient(#50504E, #1A1A1A);
  background: -moz-linear-gradient(#50504E, #1A1A1A);
  background: linear-gradient(#F1F1F1, #DADADA);*/
  background: -webkit-linear-gradient(#003b71, #003b71);
  background: -o-linear-gradient(#003b71, #003b71);
  background: -moz-linear-gradient(#003b71, #003b71);
  background: linear-gradient(#003b71, #003b71);
  padding: 18px;
  border-radius: 0px;
  /*border: 1px solid #EAEAEA;*/
  border: 1px solid #3C3F42;
  /*box-shadow: 1px 1px 3px 0px rgba(195, 185, 185, 0.23);*/
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: 50px auto;
  z-index: 12;
  height: 100%;;
}
.pop-content{
  padding: 0 50px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 12px;
  line-height: 18px;
  margin-top: 20px;
}
.pop-header{
  font-family: "Open sans", arial, helvetica, sans-serif;
  text-transform: uppercase;
  line-height: normal;
  font-size:2.5em;
  padding:.5em;
  color:#003b71;
  background:#b2d3e0; /*#FFF*/
  font-weight: bold;
  text-align: center;
  margin: 0px;
}
.pop-contain-details {
  margin: 0 0 20px;
  font-size: 1.2em;
  text-align: left;
  color: #0d476f;
  background-color: #b2d3e0; /*#848484*/
  padding: 2em 25px 3em;
  font-family: "Open sans", arial, helvetica, sans-serif;
  text-align: center;
}
.pop-contain-details p{
  margin:0px 0px 10px;

}
.submit-btn{
  /*background-color: #7EBFD4;*/
  background-color: #0d476f;
  font-size: 18px;
  line-height: 1.5em;
  padding: 0 2em;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  border: none;
  margin: 10px 0px 20px;
  font-family: "Agenda bold";
}
.submit-btn:hover{
  background-color: #6EaFc4;
}
.bottom-text{
  line-height: 1em;
  text-align: left;
  font-size: 12px;
}
.pop-close{
  background-color: #D8D8D8;
  color: #000;
  top: 0px;
  padding: 8px 8px;
  font-family: sans-serif !important;
  font-size: 12px;
  line-height: 14px;
  border: 1px none #ffffff;
  border-radius: 0px;
  box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.23 );
  text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 );
  float: right;
  text-align: center;
  margin-right: -68px;
  margin-top: -38px;
  cursor: pointer;
}
fieldset{
  border: none;
  padding: 0px;
  margin: 0px;
}

.form-fields {
  margin-bottom: 10px;
/*  width: 70%;*/
}
input.input-field{
  width: 99%;
  padding: 2px 0px;
}
select.select-field{
  width: 100%;
  padding: 2px;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
   appearance: menulist;
}
.form-controler p{
  margin:0px;
}
.form-fields-control{
  display: block;
  margin-bottom: 2px;
}
.form-fields-control span{
  display: block;
  margin-bottom: 2px;
}
#ipop-overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  background-color: #000;
  opacity: .80;
}

/************** Animation css start here ***************/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/************** Animation css End here ***************/