@charset "utf-8";
body {
	background:#ffffff;
}

.form-login {
	max-width: 700px;        
	padding: 10px 36px 28px;
	margin: 20px auto;
	background-color: #fff;	
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
	box-shadow: 0 1px 2px rgba(0,0,0,.05);			
	font-family: sans-serif, Helvetica, Tahoma, Geneva, sans-serif;
	color:black;
	font-weight:lighter;
}
.form-login .form-login-heading {
    color:black;/*you can change the color */
}
.form-login input[type="text"],
.form-login input[type="date"],
.form-login input[type="password"],
.form-login input[type="email"] {
    color: black;/*#ff0000;*/
    font-size: 16px;
    height: 40px;
    padding: 7px 9px;
    /*font-weight: bold;*/
}
.form-label {
  color:black; /*you can change the color */
}
.form-sub-label{
  color:black;/*you can change the color */
}
.body-container {
  margin-top:110px;
}
.navbar-brand {
  font-family:"Lucida Handwriting";
}
#btn-submit{
  height:45px;
}
.form-login h2{
  color:black;/*you can change the color */
}

.form-login .payment {
    float: left;
    position: relative;
}

.form-login label {
    width: 100%;
    margin-bottom: 10px;
}

.form-login .payment .form-group {
    float: left;
    margin-bottom: 15px;
}

.form-login .payment .form-control {
    line-height: 40px;
    height: auto;
    padding: 0 16px;
}

.form-login .owner {
    width: 63%;
    margin-right: 10px;
}

.form-login .CVV {
    width: 35%;
}

.form-login #card-number-field {
    width: 100%;
}

.form-login #expiration-date {
    width: 49%;
}

.form-login #credit_cards {
    width: 50%;
    margin-top: 25px;
    text-align: right;
}

.form-login .payment select {
    padding: 10px;
    margin-right: 15px;
    font-size: 16px;
}

.transparent {
    opacity: 0.2;
}

@media(max-width: 650px) {
    .form-login .owner,
    .form-login .CVV,
    .form-login #expiration-date,
    .form-login #credit_cards {
        width: 100%;
    }
    .form-login #credit_cards {
        text-align: left;
    }
}

table td, table td * {
    vertical-align: top;
    /*font-weight: bold;*/
}
/* Progressbar */
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: #8b9ab0;
	text-transform: uppercase;
	font-size: 9px;
	width: 24%;
	float: left;
	position: relative;
	text-align: center;
}
#progressbar li.active {
	color: #d91b5b;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 22px;
	line-height: 22px;
	display: block;
	font-size: 12px;
	color: #d91b5b;
	background: #d91b5b;/*#80B816;//white;*/
	border-radius: 3em;
	margin: 0 auto 5px auto;
	text-align: center;
}

/* Progressbar connectors */
#progressbar li:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #d91b5b;
	position: absolute;
	left: -50%;
	top: 10px;
	z-index: -1;
}
#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: #d91b5b;
	color: white;
}

#top {
    display: block;
    position: relative;
}
#top h2{
    text-align: center;
    font-weight: bold;
}

.btn-primary {
    background-color: #1F313F !important;
}
.btn-primary:hover, .btn-primary:visited {
    background-color: #253544 !important;
}

