body {
	background: #f9f9f9;
}

a {
	color: #3EC1D5;
	transition: all 0.3s ease 0s;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.header-area {
	position: fixed;
	background-color: black;
}

.section-headline {
	margin-top: 60px;
}

.panel-body {
	padding: 15px 25px 5px 25px;
	box-shadow: 0 3px 7px 0 rgba(60, 66, 87, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.07);
}

.area-padding {
	padding-bottom: 100px;
}

.alignright {
	margin-bottom: 0px;
}

.footer-area-bottom {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}

.contact-form button[type="submit"], .new-btn, .printBtn {
	background: #3EC1D5 none repeat scroll 0 0;
	border: 2px solid #3EC1D5;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	margin-top: 20px;
	margin-left: 100px;
	margin-bottom: 20px;
	padding: 10px 20px;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 30px;
}

.contact-form button[type="submit"] {
	margin-left: 0px;
	margin-top: 20px;
}

.contact-form button[type="submit"]:hover, .new-btn:hover, .printBtn:hover {
	background: #fff none repeat scroll 0 0;
	border: 2px solid #3EC1D5;
	color: #3EC1D5;
}

.center-block {
	text-align: center;
}

.tab-menu ul li.active a {
	border-radius: 4px;
}

.tab-content {
	padding: 15px 15px;
	border-radius: 4px;
	box-shadow: 0 3px 7px 0 rgba(60, 66, 87, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.07);
}

/* top-left border-radius */

table tr:first-child th:first-child {
	border-top-left-radius: 6px;
}

/* top-right border-radius */

table tr:first-child th:last-child {
	border-top-right-radius: 6px;
}

/* bottom-left border-radius */

table tr:last-child td:first-child {
	border-bottom-left-radius: 6px;
}

/* bottom-right border-radius */

table tr:last-child td:last-child {
	border-bottom-right-radius: 6px;
}

table td, table th {
	table-layout: fixed;
	overflow: hidden;
	word-wrap: break-word;
}

.id, .date, .name, .customer, .supplier, .btw, .unit, .settings {
	text-align: left;
}

.id, .status {
	width: 40px;
}

.date {
	width: 75px;
}

.customer, .supplier {
	width: 105px;
}

.amount, .unit {
	width: 70px;
}

.amount {
	text-align: right;
}

.name {
	width: 500px;
}

.customer a, .supplier a {
	width: 100px;
	color: #EC971F;
}

.btw {
	width: 100px;
}

.customerType, .supplierType {
	width: 250px;
}

.paymentType {
	text-align: left;
	width: 100px;
}

.description {
	text-align: left;
	width: 260px;
}

.status, .statusRed, .statusGreen {
	text-align: center;
}

.statusGreen {
	color: green;
}

.statusRed {
	color: red;
}

.settings {
	text-align: center;
	width: 105px;
}

/* Style the search field */

form.searchForm input[type=text] {
	padding: 5px;
	margin-top: 20px;
	font-size: 12px;
	border: 1px solid grey;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	float: left;
	width: 80%;
	height: 45px;
	background: #f1f1f1;
}

/* Style the submit button */

form.searchForm button {
	float: left;
	width: 20%;
	height: 45px;
	padding: 5px;
	margin-top: 20px;
	background: #3EC1D5;
	color: white;
	font-size: 12px;
	border: 1px solid grey;
	border-left: none;
	/* Prevent double borders */
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	cursor: pointer;
}

form.searchForm button:hover {
	background: #3EC1D5;
}

/* Clear floats */

form.searchForm::after {
	content: "";
	clear: both;
	display: table;
}