﻿.form_custom {
	max-width			:360px;
	margin				:10px auto;
	background			:#f7f7f7;
	padding				:30px;
	display				:block;	
	box-shadow			:0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius		:10px;
	transition			:box-shadow 0.5s;
}

.form_custom:hover {
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}


.form_custom input.input[type="text"], .form_custom textarea.input {
	width				:100%;
}

.repairPartsAdd {
	cursor				:pointer;
	display				:inline-block;
	line-height			:24px;
	padding				:4px 10px 4px 38px;
	margin				:0 0 5px 0;
	font-size			:12px;
	border				:1px solid #E1E1E1;
	border-radius		:10px;
	background-color	:#E8E8E8;
	background-image	:url('/tmp/form/images/add.png');
	background-repeat	:no-repeat;
	background-position	:10px center;
	transition			:all 0.5s;
}

.repairPartsAdd:hover {
	background-color	:#F0F0F0;
}

.form_custom strong {
    padding: 20px 0 5px 0;
    display: block;
    font-size: 16px;
}

.form_custom input[name="file"] {
    background: #fff;
    padding: 20px 10px;
    border: 1px dashed;
    border-radius: 5px;
}