@charset "UTF-8";


.popup_wrapper {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 9999999;
}
.popup_wrapper .popup_content {
  background-color: #fff;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 500px;
}
@media (max-width: 767px) {
  .popup_wrapper .popup_content {
    width: 300px;
  }
}
.popup_wrapper .popup_content.newsletter {
  width: 300px;
}
@media (max-width: 767px) {
  .popup_wrapper .popup_content.newsletter {
    width: 300px;
    height: 300px;
  }
}
.popup_wrapper .popup_content.newsletter figure {
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
}
.popup_wrapper .popup_content.newsletter figure img {
  height: 100%;
  width: auto;
}
.popup_wrapper .popup_content.newsletter .content {
  height: 100%;
  padding: 20px 20px;
  text-align: center;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .popup_wrapper .popup_content.newsletter .content {
    padding: 30px 30px 15px 30px;
    height: auto;
  }
}
.popup_wrapper .popup_content.newsletter .content .wrapper {
  width: 100%;
}
.popup_wrapper .popup_content.newsletter .content .wrapper h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  margin-top: 25px;
}
.popup_wrapper .popup_close {
  color: #ffffff;
  cursor: pointer;
  display: block;
  text-align: center;
  text-decoration: none;
  background: #000;
  width: 53px;
  height: 25px;
  line-height: 27px;
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 13px;
  font-weight: 700;

}
.popup_wrapper .popup_close:hover {
  background: #cc0000;
}


#form_container {
	background-color: #fff;
	width: 1000px;
	min-height: 460px;
	margin: 120px auto 30px;
}

#left_form {
	background-color: #004dda;
	min-height: 190px;
	color: #fff;
	text-align: center;
	padding: 70px 50px 30px 50px;
	box-sizing: border-box;
	position: relative;
}
