/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
	height: 100%;
	background-color: rgb(64,64,64);
}

body {
	font-family: montserrat, arial, verdana;
}
/*form styles*/
.msform {
	margin: 0px auto;
	text-align: center;
	position: relative;
}
fieldset{
    padding: 0px 20px;
}
/*Hide all except first fieldset*/
.msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
.msform input, .msform textarea {
	padding: 8px 10px;
	border:none;
	border-radius: 0px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	color: #2C3E50;
	font-size: 13px;
}
.msform input.error, .msform textarea.error{
	border: 1px solid rgb(199, 15, 67);
}
.msform label{
    display: block;
    text-align: left;
    font-family: 'National Book';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 17px;
}
.msform input[type="radio"], .msform input[type="checkbox"]{
	width: auto;
    margin: 0px 10px 0px 0px;
    padding: 0px;
}
/*buttons*/
.msform .action-button {
	width: 150px;
	background-color:#a90533;
	text-transform:uppercase;
	border:none;	
	font-weight: bold;
	color: white;
	border-radius:0px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
.msform .conf-button {
	width: 320px !important;
}
.msform .action-button:hover, .msform .action-button:focus {
	background-color: #249baa;
}
.msform .action-button{
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
}

/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
.progressbar {
	margin-bottom: 20px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
	background-color:#fff;
	padding-bottom:10px;
}
.progressbar li {
	list-style-type: none;
	color: #aaaaaa;
	text-transform: uppercase;
	font-size: 13px;
	width: 33.33%;
	float: left;
	position: relative;
}

.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{
	color:#000;
}
.vtcha{
	max-width: 100%;
}
.vtcha .item-box,.vtcha .target-box{
	width: 170px;
	margin: 10px auto 0;
}
.msform input.next-text{
	width:auto;
	background-color:transparent;
    color: #fff;
    text-transform: uppercase;
    padding: 0px;
    margin-bottom: 0px;
    font-size: 16px;
}
.next{
	position:absolute;
	right:15px;
}
.send{
	position:absolute;
	right:15px;
}

.previous{
	position:absolute;
	left:15px;
}
.msform p {
    text-align: left;
}    
.styled-select {
   background: url(http://i62.tinypic.com/15xvbd5.png) no-repeat 96% 0;
   height: 29px;
   overflow: hidden;
   width: 240px;
}

.styled-select select {
   background: transparent;
   border: none;
   font-size: 14px;
   height: 29px;
   padding: 5px; /* If you add too much padding here, the options won't show in IE */
   width: 126px;
}

.styled-select.slate {
   	background: url('../img/select-arrow.jpg') no-repeat right center;
   	background-color:#fff; 
   	height: 34px;
   	width: 126px;
   	display:inline-block;
	background-size: 34px 34px;
}
.styled-select.slate.slate{
	width:100%;
    margin-bottom: 5px;	
}

.styled-select.slate.state{
   width:40%;
}
.styled-select.slate.credit-card{
   width:55%;
   float:left;
   margin-bottom:10px;
}
.styled-select.slate select {
   border: none;
   font-size: 14px;
   height: 34px;
   width: 100%;
   border-radius: 0px;
}
select::-ms-expand {
    display: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
.msform .zip-code{
    width: 55%;
    display: inline-block;
    margin-left: 3.5%;
    vertical-align: top;    
}
.slate{ 
background-color: #ddd;
}
.slate select{ 
	color: #666666; 
    font-family: 'National Book';
    font-weight: normal;
    font-style: normal;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #666666;
    font-family: 'National Book';
    font-weight: normal;
    font-style: normal;
    font-size:14px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-family: 'National Book';
    font-weight: normal;
    font-style: normal;
   c olor: #666666;
    font-size:14px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #666666;
    font-family: 'National Book';
    font-weight: normal;
    font-style: normal;   
    font-size:14px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #666666;
    font-family: 'National Book';
    font-weight: normal;
    font-style: normal;   
    font-size:14px;
}