.fixed_emailform{
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:12000;
	display:flex;
	justify-content:center;
	align-items:center;
}
.fixed_emailform_bg{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:30000;
	background:#3333;
	cursor:pointer;
}
.feform-main{
	position:relative;
	z-index:50000;
	padding:40px;
	background: #fff;
    border-radius: 10px;
	max-width: 90%;
    max-height: 90%;
	overflow-x: hidden;
	overflow-y: auto;
}
.fixed_emailform .close_button{
	position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    z-index: 50020;
    cursor: pointer;
	transition: .5s all;
}
.fixed_emailform .close_button:hover {
    transform: rotate(270deg);
}
#svg-close{
	width: 26px;
    height: 26px;
    stroke: #333;
    stroke-width: 3px;
}
.feform-main_form label{
	width:100%;
	position:relative;
}
.feform-main_form label .error {
    position: absolute;
    bottom: 5px;
    right: 10px;
    transform: translateY(-50%);
    color: #ff0000;
    font-size: 12px;
}
.feform-main_form_title{
	font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
	text-align: center;
	padding-bottom:20px;
}
.feform-main_form input,.feform-main_form textarea{
	display: block;
	width:100%;
    font-size: 16px;
	border-radius: 4px;
    border: 0;
    outline: 0;
	padding: 12px 18px;
    line-height: 20px;
    margin-bottom: 14px;
	background-color: #eee;
}
.feform-main_form textarea{
	resize: vertical;
}
#fixed_emailform_submit{
	color:#fff;
	font-weight:bold;
	transition: .5s all;
}
.feform-main_form_tip{
	padding-bottom: .2em;
}
@media screen and (max-width: 768px){
	.fixed_emailform{
		padding: 12px;
	}
	.feform-main{
		padding: 20px;
        max-height: calc(100vh - 160px);
        margin-top: 74px;
	}
}