html,body{
  height: 100%;
}

.popup-mainpanel {display:none;}
.invalid-feedback{
  color:red;
  font-size: 0.75em;
  display: none;
}
.popup-mainpanel{
  background-color: rgba(0,0,0,.7);
  height: 100%;
  width: 100%;
  overflow: auto;
  top: 0;
  position: fixed;
  z-index: 1000;
  font-family: Arial;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 30px;
}
.popup-wrap{
  max-width: 775px;
  background-color: white;
  position: relative;
  margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}
.popup-box{
  display: flex;
}
.popup-wrap .close{
  padding: 7px;
  background-color: #162340;
  position: relative;
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
}
.popup-wrap .close:hover{
  background-color: #273962;
}
.popup-wrap .close img{
  width: 15px;
  height: 15px;
}
.popup-col{
  width: 50%;
  padding: 30px 20px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.popup-col.full{
  width: 100%;
}
.popup-col h5{
  color: #162340;
  font-weight: bold;
  font-size: 1.125rem;
}
.popup-mainpanel h3{
  font-family: Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    font-style: normal;
    font-weight: 400;
    color: white;
  }
.popup-box .popup-col:first-child{
  background-color: #162340;
  color: white;
  text-align: center;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.popup-box .popup-col:first-child h2{
  font-size: 4rem;
  line-height: 4rem;
  margin: 50px 0;
}
.popup-box .popup-col:first-child h3{
  font-size: 2.5rem;
  line-height: 3rem;
  margin: 25px 0;
}
.popup-box .popup-col:first-child p {
    font-size: 16px;
}
.logo{
  padding: 0;
  max-width: 300px;
  /*margin: auto;*/
}
.logo img{
  width: 100%;
}
/* form */
.gap-wrap{
  position: relative;
}
.gap-wrap input{
  z-index: 1;
  position: relative;
}
.gap{
  width: 10px;
  height: 10px;
  background-color: white;
  position: absolute;
  z-index: 2;
}
.gap.rt{
  right: 0;
  top: 0;
}
.gap.rb{
  right: 0;
  bottom: 0;
}
.gap.lt{
  left: 0;
  top: 0;
}
.gap.lb{
  left: 0;
  bottom: 0;
}
.form-box{
  margin-bottom: 5px;
}
.form-box input {
    margin-bottom: 8px;
}
.popup-wrap .check-container {
    margin-bottom: 5px;
}
.form-item{
  display: block;
  width: 100%;
  /*height: 50px;*/
  padding: .275rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #162340;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #cacaca;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-item::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #162340;
}
.form-item:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #162340;
}
.form-item::-ms-input-placeholder { /* Microsoft Edge */
  color: #162340;
}

/* The container */
.check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #162340;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border:1px solid transparent;
}
.check-container:focus-within {
  border-color:black;
}
.check-container label{line-height: 1.3;}
/* Hide the browser's default checkbox */
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #cacaca;
}
/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
  background-color: #cacaca;
  border-color:transparent;
}
/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
  background-color: #162340;
  border-color:transparent;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkboxes .form-box {
    width: 49%;
    display: inline-block;
}
.checkboxes p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #162340;
}
.checkboxes .form-box.accept {
    width: 100%;
}

.checkboxes .accept label {
    font-size: 10px;
    line-height: 11px;
}
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}
.btn-style{
  background-color: #162340;
  text-align: center;
  display: block;
  padding: 13px;
  color: white; 
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  border: none;
  transition: 0.3s;
}
.btn-style:hover,
.btn-style:focus {
  background-color: #e3e3e3;
  color: #162340;
}
.pu-row{
  display: flex;
  flex-wrap:wrap;
}
.pu-col-grp-field{
  width: 100%;
}
.pu-col-listbox{
  width: 33.33%;
}
.list .form-box{
  padding: .5rem;
  margin-bottom: 0;
}
.list label img{
  width: 100%;
}
.hidden-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.pu-close-link{
  font-size: 1rem;
  border-bottom:2px solid #fff;
  color: white!important;
  padding-bottom: .4375rem;
  text-decoration: none;
}
.pu-close-link:hover,
.pu-close-link:focus{
  border-bottom:4px solid #fff;
}
@media (max-width: 991px) {
  .popup-wrap {
    transform: none;
    top: 15px;
  }
  .popup-box{
    flex-direction:column; 
  }
  .popup-col{
    width: 100%;
  }
  .pu-row{
    display: flex;
    flex-wrap:nowrap;
  }
  .pu-col-md-6{
    width: 50%;
  }
  .pu-row .pu-col-grp-field:first-child{
    padding-right: .5rem;
  }
  .pu-row .pu-col-grp-field:last-child{
    padding-left: .5rem;
  }
  .pu-col-listbox{
    width: 20%;
  }
  .pu-row.list{
    flex-wrap:wrap;
  }
}
@media (max-width: 768px) {
  .popup-box .popup-col:first-child h2{
    font-size: 3rem;
    line-height: 3rem;
    margin: 30px 0;
  }
  .pu-col-listbox{
    width: 25%;
  }
  .popup-wrap{
    margin:  30px auto;
        top: unset;
    transform: unset;
}
@media (max-width: 576px) {
  .popup-box .popup-col:first-child{
    font-size: 1rem;
  }
  .popup-box .popup-col:first-child h2{
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin: 30px 0;
  }
  .popup-box .popup-col:first-child h3{
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 30px 0;
  }
  .pu-col-grp-field{
    width: 100%;
  }
  .pu-row{
    display: block;
  }
  .pu-row .pu-col-grp-field:first-child{
    padding-right:0;
  }
  .pu-row .pu-col-grp-field:last-child{
    padding-left: 0;
  }
  .pu-col-listbox{
    width: 50%;
  }
  .pu-row.list{
    display: flex;
  }
}