@charset 'utf-8';

form .control {
	border: 1px solid #ddd;
	border-radius: 0;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
    background-color: #fff;
    color: #32373c;
    outline: 0;
    transition: 50ms border-color ease-in-out;
	padding: 6px;
	display: block;
	width: 100%;
	max-width: 100%;
	transition: all .2s linear;
	max-height: none;
}

form .control.hidden {
	display: none;
	max-height: 0;
}

form .control.unsaved {
	border-left: 2px solid #f8bb86 !important;
}

form .group {
	position: relative;
}

form .group-helper {
	font-style: italic;
	color: #666;
	padding: 5px 5px 0;
	font-size: 11px;
	display: block;
}

form .group .control:not(:last-child) {
	border-bottom: 0;
}

form .group .control:first-child {
	border-radius: 3px 3px 0 0;
}

form .group .control:last-child {
	border-radius: 0 0 3px 3px;
}

form .group .control:only-child {
	border-radius: 3px;
}

form .control:focus {
	border: 1px solid #bbb !important;
	position: relative;
	z-index: 100;
}

form .control[disabled],
form .control[readonly]{
	background-color: #eee;
	cursor: no-drop;
	color: #888;
}

form .button {
	color: #555;
    background: #f7f7f7;
    box-shadow: 0 1px 0 #ccc;
    vertical-align: top;
	border: 1px solid #ddd;
	padding: 6px;
	border-radius: 3px;
	font-size: 12px;
}

form .button.full {
	display: block;
	width: 100%;
}

form .button:hover {
	border-color: #bbb;
}

form .button:active {
	background: #eee;
    border-color: #bbb;
    box-shadow: inset 0 2px 5px -3px rgba(0,0,0,.5);
    transform: translateY(1px);
}

form .button.orange {
	background-color: #da834e;
	border-color: #ccc;
}

form .add-file {
	margin-bottom: 12px;
	display: inline-block;
}

form .group div.file {
	position: relative;
}

form .group div.file a.fixed {
	position: absolute;
	font-size: 16px;
	right: 0;
	top: 0;
	padding: 6px;
	width: 40px;
	text-align: center;
}