

/*basic reset*/
* {margin: 0; padding: 0;}

/*html {
	height: 100%;*/
	/*Image only BG fallback*/
	/*background: url('http://thecodeplayer.com/uploads/media/gs.png');
	background = gradient + image pattern combo
	background: 
		linear-gradient(rgba(196, 102, 0, 0.2), rgba(155, 89, 182, 0.2)), 
		url('http://thecodeplayer.com/uploads/media/gs.png');
}*/
ul, li {
    list-style: none;
}
body {
	font-family: montserrat, arial, verdana;
}

#mark {
    opacity: 1;
    background: rgb(0 0 0 / 50%);
    position: absolute;
    width: 100%;
    height: 100%;
}

.fixitem{    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: space-evenly;}
 .fixitem label{margin-right: 10px}
 .textarea textarea{
    width: 751px;    height: 90px;}
  .ckbox{    text-align: left;padding: 20px 30px;
    background: #fff;}
 .ckbox h2{    margin-bottom: 20px;
    font-size: 20px;    margin-top: 10px;}
 .ckbox ul li label input{    margin-right: 10px;}
 .scw{    margin-bottom: 20px;}

.malltit{    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;}
/*form styles*/
#msform {
	/*width: 400px;*/
	padding: 40px 0;
	text-align: center;
	position: relative;
}
#msform fieldset {
    /* width: 850px; */
    background: white; 
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 40%);
 
    box-sizing: border-box;
    /* width: 80%; */
        margin: 0 23%;
    /* position: absolute;*/
}
#msform fieldset.fieldset1{  /*  width: 850px;*/
	     /* width: 710px; */
    /* margin: 0 auto; */
    /* position: relative; */
    /* left: 50%; */
    /* margin-left: -336px;*/
    height: 500px;
    overflow-y: auto;
}
#msform .fieldset2{    background: white;
    padding: 20px 30px;}

@media only screen and (max-width: 800px){
#msform fieldset {
    margin: 0 10px;
}
}



/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	/*width: 100%;*/
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}
/*label{width: 100%;display: block;}*/
/*buttons*/
#msform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
	    font-size: 26px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 30px;
    margin-top: 20px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	    overflow: hidden;
    counter-reset: step;
    width: 400px;
    margin: 0 auto;
    margin-bottom: 30px;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 50%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60;
	color: white;
}
.close{      
    color: #000;
    background: #ebebeb;
    float: right;
    width: 58px;
    height: 27px;
    line-height: 27px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    opacity: .8;}
 .close:hover{opacity: 1;background-color: #c73237;color: #fff}
 .formk{position: relative;}
#error {
    color: #f00 !important;
    font-size: 13px;
    margin-bottom: 20px;
}
.tanchuang{      position: fixed;    padding-top: 264px;
    width: 100%;
    display: none;
    height: 100%;top:0;
    z-index: 99;}