/*Buttons general*/
.vbutton {
	height:35px;
	display:inline;
	font-size: 13px;
}
.vbutton input {
	height: 35px;
	display: inline;
	background: #ffffff;
	border: 1px solid #d3d3d3;
	color: #575757;
	font-weight: bold;
	margin: 0;
	padding: 5px;
	cursor: pointer;
	border-radius: 3px;
}
.vbutton input:hover{
	color: #000000;
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
.vbutton input.button_secondary,
.vbutton input.b_back,
.vbutton input.b_cancel,
.vbutton input.b_reset {
	background: #e7e8e8;
	border: 1px solid #D3D3D3;
}
.vbutton input.button_secondary:hover,
.vbutton input.b_back:hover,
.vbutton input.b_cancel:hover,
.vbutton input.b_reset:hover {
	color: #000;
}

.vbutton input.b_send[disabled] {
	color: lightgray;
}

.vbutton input.b_send:hover[disabled] {
	color: lightgray;
}


/*Button In Cart */
.vbutton input.b_in_cart{
	background: #ffffff url(b_in_cart.png) no-repeat left center;
	background-size: 35px 35px;
	padding-left: 40px;
	border:1px solid #e7e8e8;
}
.vbutton input.b_in_cart:hover{
	background-color:#ffffff;
	border: 1px solid #e7e8e8;
} 

.vbutton1{
	height:17px;
	display:inline;
}
.vbutton1 input{
	height:17px; 
	background-color:#E2EFF8;
	color:#15568C; 
	font-weight:bold;
	border:1px solid #a3cfe4;
	display:inline;
	margin:0px;
	padding:0px 2px 0px 2px; 
	font-size:9px;
	cursor:pointer;
}
.vbutton1 input:hover{
	background-color:#B6DCED;
	border:1px solid #64b0d4;
}

/*Button row */
.vbuttrow{
	margin-top:15px;
}
.vbuttrow div.vbutton{ 
	margin-right:10px;
}
.vbuttrow div.vbutton:last{
	text-align:right;
	margin-right:0px;
}
.vbuttrow div.vbutton input {
	margin: 2px;
}

