/* Input form style */ 
.rowcal {
    margin-right: -15px;
    margin-left: -15px;
}
.rowcal:before , .rowcal:after {
    display: table;
    content: " ";
}
.rowcal:after {
    clear: both;
}
  
.form-group {
    position: relative;
	margin-bottom: 2px;
	margin-top: 10px;
}

label {
    display: inline-block;
    max-width: 80%;
    margin-bottom: 5px;
    font-weight: 700;
	font-size: 0.9rem;
}

.form-control {
  font-size: 12px;
  color: #333;
  height:24px;
  border-radius: 3px;
}

.date-pick {
	max-width: 70%;
}

.input-icon {
    position: absolute;
    right: 6px;
    top: 30px;
    width: 28px;
    height: 24px;
   /* background-color: #fff;*/
    text-align: right;
}

.input-icon i {
    color: #999;
    font-size: 14px;
    line-height: 24px;
}

/*-------- 1.2 Buttons --------*/
a.btn_full, .btn_full{
	border: none;
	font-family: inherit;
	font-size: inherit;
	color:#fff;
	width:100%;
	background: #85c99d;
	cursor: pointer;
	padding: 12px 20px;
	display: inline-block;
	outline: none;
	font-size:12px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-transform:uppercase;
	font-weight:bold;
	display:block;
	text-align:center;
	margin-bottom:10px;
}
a.btn_full:hover, .btn_full:hover{
	background:#333;
}

/** Quantity incrementer input==================== **/   
.qty-buttons{ position:relative; width:110px; height:34px;  }

input.qty { width:45px;border-left:0; border-right:0; padding-left:52px  }
input.qtyminus, input.qtyplus, input.qtyplus:focus {position:absolute; width:35px; height:38px; 	border: 1px solid #cccccc;  outline:none; cursor:pointer;-webkit-box-shadow: none;box-shadow: none;-webkit-transition: none; z-index:9 }
input.qtyplus {
	background:#fff url(../img/plus.png) no-repeat center center; 
	right:0; top:0; 
	text-indent:-9999px;  
	-webkit-border-top-right-radius: 4px;
     -webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	-moz-border-radius-bottomright: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	border-left: 1px solid #cccccc;
}
input.qtyminus {
	background:#fff url(../img/minus.png) no-repeat center center;
	text-indent:-9999px;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	left:0; top:0; 
	border-right: 1px solid #cccccc;
}

.error_message {
    margin: 0 0 5px 0;
    padding: 0;
    color: #C33;
    display: inline-block;
    font-weight: 600;
}

