/*custom font*/
/* @import url(https://fonts.googleapis.com/css?family=Montserrat); */

/*basic reset*/


/* body {
    font-family: montserrat, arial, verdana;
    background: transparent;
} */
.superform{display:grid;grid-template-columns: repeat(2,1fr);grid-gap: 10px 50px;}

@media screen and (max-width:1240px) {
    .superform{grid-template-columns: repeat(1,1fr);grid-gap: 0px 10px;}
}

input[type="text"], input[type="number"], input[type="email"], input[type="url"], select, input[type="password"]{
    margin-bottom: 0;
}

.superform dl{}
.superform dl,.superform dl dt,.superform dl dd{padding: 0; margin: 0;}
.superform dl dd{display: flex;width:100%;}
.superform dl dd label{display: flex;align-items: center;margin-right:10px;}
.superform dl dd input[type="text"],.superform dl dd select,.superform dl dd input[type="number"]{margin-bottom:0px;border: 1px solid #cdcdcd;border-radius: 5px;}
.superform dl dd.requis{height:24px;color: red;justify-content: right;}
input[type=text]::placeholder,input[type="number"]::placeholder {  
    color: #999;
}
.superform dl dd select option{line-height: 24px;}
 
.clear{clear: both;}
.myform{width:100%;min-height:500px;padding-bottom: 50px;}
.btn-opre{width:100%;display: flex;justify-content: space-between;}
/*form styles*/
#msform {
    position: relative;
    margin-top: 30px;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1); */
    padding: 20px 20px;
    box-sizing: border-box;
    width: 96%;margin: 0px auto;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
    
}

.tips{width:100%;height:48px;color: red;text-align: right;}
.show{display: block;}
#msform select{
    border-radius: 5px;margin-bottom: 0px;
    /*很关键：将默认的select选择框样式清除*/
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
 
  /*在选择框的最右侧中间显示小箭头图片*/
  background: url("../images/o_select.png") no-repeat scroll right center transparent;
  padding-right: 20px;
}

/*inputs*/
/* #msform input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
} */

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ee0979;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    background: #ee0979;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    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 #ee0979;
}

#msform .action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;text-align: center;margin-left: 0;
}

#progressbar li {
    list-style-type: none;
    color: #E2E2E2;
    text-transform: uppercase;
    font-size: 9px;
    width: 50%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: #E2E2E2;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background:#e2e2e2;
    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: #1a73ad;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #1a73ad;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}
.price input{display: inline-block;width:20px !important;height: 20px;float: left;padding: 0 !important;}
.price{text-align: left;display: flex;align-items: center;}