#iframe-container {
  position: relative;
  margin-bottom: 25px;
}

#footer-blocker {
  z-index: 3;
  height: 50px;
  width:100%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn-wrapper {
  text-align: center;
  margin-top: -20px;
}

.btn-wrapper .btn {
  font-weight: 700;
  border-radius: 2px;
  font-size: 1rem;
  color: #fff;
  background-color: #529598;
  letter-spacing: 3px;
  text-decoration: none !important;
  text-transform: uppercase;
  padding: 15px 20px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all ease-out .3s;
  align-content: center;
  margin-top: 0px;
  display: inline-block;
  max-width: 300px;
}


.btn-wrapper .btn:hover {
  opacity: 0.8;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all ease-in .3s;
  cursor: pointer;
}

.popup-header-img {
  text-align: center;
}

.popup-header-img img {
  max-width: 200px;
  height: auto;
  display: inline-block;
}

@media (max-width: 479px) {
  .btn-wrapper .btn {
    font-size: 1rem !important;
    margin-top: 10px !important;
    padding: 10px 15px !important;
  }
}

@media (max-width: 479px) {
  .btn-wrapper .btn {
    font-size: 0.6rem !important;
    margin-top: 15px !important;
    padding: 5px 10px !important;
  }
  .popup-text h2 {
    font-size: 1.2rem !important;
  }
}




/* ========================= */
/*         Popup             */
/* ========================= */

.blocker {
  position: fixed;
  -webkit-overflow-scrolling: touch;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.75);
  text-align: center;
}

.blocker:before{
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}
.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 5;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  position: absolute;
  right: 32px !important;
  top: 32px !important;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  background: none !important;
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.modal a.close-modal:before, .modal a.close-modal:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
}

.modal a.close-modal:hover:before, .modal a.close-modal:hover:after {
  opacity: 0.8;
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.modal a.close-modal:before {
  transform: rotate(45deg);
}

.modal a.close-modal:after {
  transform: rotate(-45deg);
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.5) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


/* ========================= */
/*      Popup Content        */
/* ========================= */


.wcs .wcs-pop-the-form {
  padding: 20px 0;
}

.wcs.wcs-modal {
  padding: 50px 50px;
  max-width: 800px;
  transition: .3s;
  opacity: 1;
}

.wcs.wcs-modal .wcs-pform .hs-form-required {
  display: none !important;
}
.wcs.wcs-modal .hs-form {
  margin-top: 0;
}
@media (min-width: 768px) {
  .wcs .vert-align {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .wcs .vert-align.rev-order {
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
  }
  .wcs .row-fluid.vert-align.rev-order .wcs-col-6:last-child {
    margin-left: 0;
  }
}
@media(min-width:768px) and (max-width:1139px) {
  .wcs .row-fluid.vert-align.rev-order .wcs-col-6:first-child {
    margin-left:2.762430939%;
    *margin-left:2.709239449638298%;
  }
}
@media(min-width:1280px) {
  .wcs .row-fluid.vert-align.rev-order .wcs-col-6:first-child {
    margin-left:2.564102564%;
    *margin-left:2.510911074638298%;
  }
}

.wcs .wcs-page-center {
    max-width: 400px;
    margin: 0 auto !important;
    float: none !important;
}

.wcs a.wcs-cta-button, .wcs a.wcs-cta-button:link, .wcs a.wcs-cta-button:active, .wcs a.wcs-cta-button:visited, .wcs a.wcs-cta_button, .wcs a.wcs-cta_button:link, .wcs a.wcs-cta_button:active, .wcs a.wcs-cta_button:visited {
    color: #fff;
  	text-decoration: none;
}

.wcs .wcs-cta-button, .wcs .wcs-cta_button {
    display: inline-block;
  	font-weight: bold;
  	text-transform: uppercase;
    text-align: center;
    padding: 20px 30px;
    width: 240px;
    margin-top: 10px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
  	background-color: ;
  	border-radius: 4px;
}

.wcs .wcs-cta-button:hover, .wcs .wcs-cta_button:hover {
 	 opacity: 0.8;
   transition: .3s;
}

a.cta-button, a.cta-button:link, a.cta-button:active, a.cta-button:visited {
    color: #fff;
  	text-decoration: none;
}

.cta-button {
    display: inline-block;
  	font-weight: bold;
  	text-transform: uppercase;
    text-align: center;
    padding: 20px 30px;
    width: 240px;
    margin-top: 10px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
  	background-color: ;
  	border-radius: 4px;
}

.cta-button:hover {
 	 opacity: 0.8;
   transition: .3s;
}


.wcs .wcs-pform input, .wcs .wcs-pform select, .wcs .wcs-pform textarea {
  -webkit-appearance: none;
  color: #555;
  padding: 10px;
  background-color: #f5f5f5;
  border: 1px solid #aaaaaa;
  font-family: inherit;
}

.wcs .wcs-pform select:focus {
  border: 1px solid ;
}

.wcs .wcs-pform .hs-button.primary {
    padding: 20px 30px;
    font-size: 24px;
 		background-color: ;
  	color: #fff;
    border: 0px solid ;
    margin-top:10px;
  	font-weight: bold;
  	text-transform: uppercase;
    min-width:100%;
    max-width: 100%;
    white-space: normal;
    display: block;
  	border-radius: 4px;
  	box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    transition-duration: .3s;
    text-align: center;
    padding: 15px 12px;
}

.wcs .wcs-pform .hs-button.primary:hover {
  	opacity: 0.8;
    color: #fff;
}

@media (max-width: 767px) {
  .wcs .wcs-pform .hs-button.primary {
    min-width: 100% !important;
  }
  .wcs.wcs-modal {
    padding: 20px !important;
  }
}