/*==========multi_step==========*/

/*form styles*/
#msform {
    /*text-align: center;*/
    position: relative;
    /* margin-top: 60px; */
}

#msform fieldset {
    background: white;
    /* border:15px solid #efeded; */
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px;
    box-sizing: border-box;
    width:100%;
    margin:0;

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

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

/*inputs*/
#msform input, #msform textarea, #msform select, #frmCustomer select, #frmCustomer input[type="tel"], #frmCustomer input[type="text"], #frmCustomer input[type="password"], .intl-tel-input input[type="tel"]  {
    padding: 0px 5px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    /* height: auto; */
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    color: #2C3E50;
    font-size: 12px;
    letter-spacing:1px;
    line-height:16px;
    background: none;
    /* display: none; */
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    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, .modal-footer .action-button {
    width: 125px;
    background: #54c3de;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 20px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    background: red;
}

#msform .action-button-previous {
    width: 125px;
    background: #c1c1c1;
    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 {
    background: red;
}

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

.fs-subtitle {
    font-size: 16px;
	color: #666;
	margin: 10px 0;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	background: rgba(0,0,0,0.1);
	padding: 6px 10px;
}

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

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

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
	height: 30px;
	line-height: 28px;
	display: block;
	font-size: 15px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
	font-weight:600;
	border:1px solid #54c3de;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    /*background: white;*/
    position: absolute;
    left: -50%;
    top: 14px;
    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: #54c3de;*/
    background:#54c3de ;
    color: white;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    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;
}

.slct_box_inline {
    display: inline-block;
    width: 15% !important;
}

.di_in_put {
    display: inline-block;
    width: 84% !important;
}
#msform .ovrFlwnone {
    overflow: visible;
}

select{height: 34px !important;border-radius:0px!important;font-size:12px!important;}
textarea{padding:5px !important;}
.label{background-color:rgb(249, 237, 239)!important;font-size:small;text-align:center;line-height:30px;color:rgb(255, 0, 0);font-weight:normal;}
.panel{border-radius:0px !important;}