#popup_wrapper {
    z-index: 99;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: none;
	overflow: auto;
	position: fixed;
	background: rgba(49,49,49,0.7);
	-webkit-animation: fadein 2s;
	-moz-animation: fadein 2s;
	-ms-animation: fadein 2s;
	-o-animation: fadein 2s;
	animation: fadein 2s;
	font-family: Verdana, Geneva, sans-serif;
}
@keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
@-moz-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
@-webkit-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
@-ms-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
@-o-keyframes fadein {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
#popup_wrapper img#close {
    top: -30px;
    border-radius: 100%;
    right: -30px;
    cursor: pointer;
    position: absolute;
    width: 40px;
    height: 40px;
}
#popup_wrapper div#popupContact {
    width: 50%;
    position: relative;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}
#popup_wrapper form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}
#popup_wrapper p {
	font-size: 14px;
	margin-top: 20px;
}
#popup_wrapper h2 {
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    font-size: 40px;
    color: #b2903a;
    display: inline-block;
    line-height: 40px;
}
#popup_wrapper hr {
	border: 0px;
	border-top: 1px solid #ccc;
}
#popup_wrapper input[type=text], #popup_wrapper input[type=email] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-top: 20px;
    padding-left: 15px;
    border-radius: 5px;
    border-bottom: 1px solid #b2903a85;
}
#popup_wrapper #name {
	background-repeat: no-repeat;
	background-position: 8px 5px;
}
#popup_wrapper #email {
	background-repeat: no-repeat;
	background-position: 8px 5px;
}
#popup_wrapper textarea {
    width: 100%;
    resize: none;
    height: 50px;
    padding: 10px;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 5px;
    padding-left: 15px;
    margin-bottom: 20px;
    font-family: inherit;
    background-repeat: no-repeat;
    border-bottom: 1px solid #b2903a85;
    background-position: 8px 7px;
}
#popup_wrapper #submit {
	color: #fff;
	border: none;
	display: block;
	font-size: 16px;
	cursor: pointer;
	background: #f30;
	text-align: center;
	border-radius: 5px;
	text-decoration: none;
	padding: 2px 10px 5px;
}

@media screen and (max-width: 767px) {
#popup_wrapper div#popupContact {
	width: 90%;
}
}
@media screen and (max-width: 360px) {
#popup_wrapper input[type=text], #popup_wrapper input[type=email], #popup_wrapper textarea {
	width: 77%;
}
}
@media (min-width: 768px) and (max-width: 1023px) {
#popup_wrapper input[type=text], #popup_wrapper input[type=email], #popup_wrapper textarea {
	width: 77%;
}
#popup_wrapper div#popupContact {
	width: 50%;
}
}
@media (min-width: 1024px) and (max-width: 1279px) {
#popup_wrapper div#popupContact {
	width: 35%;
}
}
@media (min-width: 1280px) and (max-width: 1439px) {
#popup_wrapper div#popupContact {
	width: 28%;
}
}
@media (min-width: 1920px) and (max-width: 2000px) {
#popup_wrapper div#popupContact {
	width: 20%;
}
}


input::placeholder, textarea::placeholder {
  color: #333;
}

#popup_wrapper form {
    background: url(../images/popup_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#popup_wrapper h2{
    color: #3e3e3e !important;
}
#popup_wrapper input{
    background: transparent;
}

#popup_wrapper .input-group {
    justify-content: center;
}



#popup_wrapper  button.button.btn {
    padding: 15px 20px !important;
}