/* Navigation Bar */

.navbar {
	background: #ffd861;
	border-top: 1px dotted #de972d;
	border-bottom: 1px dotted #de972d;
	padding: 0.5rem 0;
}

.nav-link, .navbar-brand {
	color: grey;
	cursor: pointer;
}

.nav-link, .navbar-brand:hover {
	color: grey;
}

.nav-link {
	color: grey;
	margin-right: 1em !important;
}

.nav-link:hover {
	color:grey;
	background-color: #ffc15e;
}

.navbar-collapse {
	justify-content: flex-end;
}

.navbar-toggler {
	background: #fff !important;
}

.dropdown-menu{
	background: #fffbbe;
}

.dropdown-item{
	color: grey;
}
.dropdown-item:hover{
	background: #ffc15e;
	color: grey;
}

/* Body */

h4 {
	color : #de972d;
	font-weight: bold;
	font-family: 'Vollkorn', serif;
	padding-top : 2rem;
}

h5 {
	font-weight: bold;
	font-family: 'Vollkorn', serif;
	padding-top : 1rem;
}

h6 {
	font-weight: bold;
	font-family: 'Lato', sans-serif;
}

body {
	font-family: 'Lato', sans-serif;
}

input, select{
	height: calc(2.25rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-float, .input-integer {
	text-align: right;
}

.btn{
	vertical-align: baseline;
}
.bg-yellow {
	background: #fffbbe;
}

.footer{
	color: #de972d;
	height:50px;
}

#hrfooter{
	margin-top: 50px;
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px dotted #de972d;
}

.error {
	font-size : 0.80rem;
	color : red;
}

.valid {
	font-size : 0.80rem;
	color : green;
}

.header-btn{
	padding-top:1.5em;
}

.time {
	font-size: 0.75rem;
	background-color: #f0f0f0;
}

.mini{
	font-size: 0.75rem;
}

/* table */

.table-header{
	background: #de972d;
	color:white;
	font-weight:bold;
	line-height: 2;
	border-bottom: 2px solid #f69314;
	border-top: 2px solid #f69314;
}

.table-row{
	border-bottom: 1px dotted grey;
}

.table-row:nth-child(odd) {
  background: #fffbee;
}

.table-row:hover{
	background: #fffbbe;
}

/* icons and color */

.icon-edit, .icon-yellow {
	color: #de972d;
}

.icon-edit:hover, .icon-yellow:hover{
	color : #ce871d;
}

.icon-delete, .icon-red {
	color: red;
}

.icon-delete:hover, .icon-red:hover{
	color: #E00000;
}

.icon-white {
	color: white;
}

.icon-white:hover{
	color: #fffbbe;
}

.icon-green {
	color: #0b8457;
}

.icon-green:hover{
	color: #58b368;
}


.btn-submit {
	color: white;
	background : #de972d;
}

.btn-submit:hover{
	color: white;
	background : #ce871d;
}

.btn-delete {
	color: white;
	background : red;
}

.btn-delete:hover {
	color: white;
	background : #E00000;
}

