.gate-content-verification-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.65);
}
.gate-content-verification-popup {
  z-index: 9999;
  background: transparent;
  position: absolute;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.gate-content-verification-popup {
  width: 400px;
  box-shadow: 0 0 15px 3px rgba(0,0,0,.2);
}
.gate-content-verification-popup .frm_message p {
  color: #000;
}
.gate-content-verification-popup .frm_error_style, .gate-content-verification-popup .frm_error{
  font-weight: 900;
}
.gate-content-verification-popup .head {
  padding: 23px 30px 0px 30px;
  background-color: #15426f;
  overflow: hidden 
}
.gate-content-verification-popup .head h3 {
  margin: 0;
  float: left;
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
}
.gate-content-verification-popup .head i {
  float: right;
  color: #fefefe;
}
.gate-content-verification-popup .body {
  background-color: #fff;
}
.gate-content-verification-popup .body h3 {
  padding: 23px 30px 0px 30px;
}
.gate-content-verification-popup form {
  padding: 25px;
  background-color: #fff 
}
.gate-content-verification-popup .frm_form_field {
  margin-bottom: 0 !important;
}
.gate-content-verification-popup .frm_form_field > input {
  height: 32px;
  margin-bottom: 10px 
}
.gate-content-verification-popup .frm_form_field > input, .gate-content-verification-popup .frm_form_field > select, .gate-content-verification-popup .frm_form_field > textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #bbb;
  color: #4e4e4e;
}
.gate-content-verification-popup .frm_form_field > textarea {
  height: 70px;
  margin-bottom: 40px;
  resize: none 
}
.gate-content-verification-popup .frm_button_submit {
  display: block;
  width: 80%;
  margin: auto;
  padding: 18px;
  letter-spacing: 1px;
  background: #f79320;
  font-family: 'Lato', 'sans-serif';
  color: white;
  border: none;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 8px rgba(165, 126, 157, 0.62);
  box-shadow: 0px 4px 8px rgba(165, 126, 157, 0.62);
  cursor: pointer;
  /*margin-top: 1em;*/
}
.gate-content-verification-popup .frm_form_field > input:focus, .gate-content-verification-popup .frm_form_field > textarea:focus, .gate-content-verification-popup .frm_form_field button:focus {
  outline: 0 
}
.gate-content-verification-popup .head h3, .gate-content-verification-popup .frm_form_field button {
  text-transform: uppercase 
}
::-webkit-input-placeholder {
  color: #d9d5d6 
}
.blocked {
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  -webkit-backface-visibility: hidden;
}
.loader {
  display: none;
  width: 28px;
  height: 28px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  margin: -14px 0 0 -14px;
  border-radius: 100%;
  border: 4px solid lightgray;
  border-top: 4px solid #15426f;
  border-right: 4px solid #15426f;
  -ms-transform: translateZ(0);
 /* IE 9 */
  -webkit-transform: translateZ(0);
 /* Chrome, Safari, Opera */
  transform: translateZ(0);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0deg);
 }
  100% {
      -webkit-transform: rotate(360deg);
 }
}
@keyframes spin {
  0% {
      transform: rotate(0deg);
 }
  100% {
      transform: rotate(360deg);
 }
}