/*---------------------------------------
  GENERAL
-----------------------------------------*/
body {
	padding-top: 0px;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	background-color: #f5fdf7; /* very light green background for dashboard */
}

h1, h2, h3, h4, h5, h6 {
	color: #0b6623; /* dark green headings */
}

a {
	color: #0b6623;
	text-decoration: none;
}

	a:hover {
		color: #4caf50;
	}

/*---------------------------------------
  THUMBNAILS & RATINGS
-----------------------------------------*/
.thumbnail img {
	width: 100%;
	border-radius: 6px;
}

.thumbnail {
	padding: 0;
	border: 1px solid #d1e7d2;
	border-radius: 8px;
	background-color: #ffffff;
	transition: box-shadow 0.3s ease;
}

	.thumbnail:hover {
		box-shadow: 0 4px 20px rgba(0, 102, 0, 0.2);
	}

	.thumbnail .caption-full {
		padding: 12px;
		color: #0b6623;
	}

.ratings {
	padding: 0px 10px 20px 10px;
	color: #4caf50;
}

/*---------------------------------------
  NAVBAR
-----------------------------------------*/
#custom-bootstrap-menu.navbar-default {
	font-size: 14px;
	background-color: #0b6623;
	border-width: 0px;
	border-radius: 0px;
}

	#custom-bootstrap-menu.navbar-default .navbar-brand {
		color: #fff;
		font-weight: 700;
	}

	#custom-bootstrap-menu.navbar-default .navbar-nav > li > a {
		color: #a7d7a5;
	}

		#custom-bootstrap-menu.navbar-default .navbar-nav > li > a:hover,
		#custom-bootstrap-menu.navbar-default .navbar-nav > li > a:focus {
			color: #ffffff;
		}

	#custom-bootstrap-menu.navbar-default .navbar-nav > .active > a {
		color: #fff;
		background-color: #4caf50;
	}

	/* Toggle button */
	#custom-bootstrap-menu.navbar-default .navbar-toggle .icon-bar {
		background-color: #a7d7a5;
	}

	#custom-bootstrap-menu.navbar-default .navbar-toggle:hover .icon-bar {
		background-color: #4caf50;
	}

/*---------------------------------------
  SIDEBAR
-----------------------------------------*/
.sidebar .categories > li {
	border-bottom: 1px solid #d1e7d2;
	padding: 10px 0;
	transition: all 0.3s;
}

	.sidebar .categories > li a {
		color: #0b6623;
	}

	.sidebar .categories > li:hover {
		background: #4caf50;
		color: #fff;
		padding-left: 15px;
	}

.sidebar h4 {
	color: #0b6623;
}

/*---------------------------------------
  TABS
-----------------------------------------*/
.nav-tabs li a {
	color: #0b6623;
	background: #dff4dc;
	font-weight: 600;
	text-transform: uppercase;
	padding: 15px 25px;
	border: 1px solid #c1e0c1;
}

	.nav-tabs li a:hover {
		background: #4caf50 !important;
		color: #fff;
	}

.nav-tabs > .active > a {
	background-color: #4caf50 !important;
	color: #fff !important;
}

/*---------------------------------------
  CAROUSEL
-----------------------------------------*/
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
	border-radius: 8px;
}

.carousel-caption {
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.carousel-control {
	color: #4caf50;
	opacity: 0.8;
}

/*---------------------------------------
  BUTTONS
-----------------------------------------*/
.btn-green, .submit3 {
	background-color: #0b6623;
	color: #fff;
	border-radius: 6px;
	font-weight: 700;
	transition: background 0.3s ease;
}

	.btn-green:hover, .submit3:hover {
		background-color: #4caf50;
	}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.footer {
	background: #0b6623;
	color: #c1e0c1;
	padding: 50px 20px 30px 20px;
	font-size: 13px;
	line-height: 20px;
}

.footerbrand {
	color: #fff !important;
	font-size: 30px !important;
	font-weight: 600 !important;
}

.footer ul.social-icons li a {
	color: #a7d7a5;
}

	.footer ul.social-icons li a:hover {
		color: #fff;
	}

.copyright {
	background: #4caf50;
	color: #fff;
	padding: 10px 0;
	font-size: 12px;
}

/*---------------------------------------
  PANELS / PRICING
-----------------------------------------*/
.panel-pricing {
	transition: all 0.3s ease;
	border-radius: 8px;
	border: 1px solid #c1e0c1;
}

	.panel-pricing:hover {
		box-shadow: 0px 0px 20px rgba(0, 102, 0, 0.2);
	}

	.panel-pricing .panel-heading {
		background-color: #0b6623;
		color: #fff;
		padding: 20px 10px;
	}

	.panel-pricing .panel-body {
		background-color: #e6f4ea;
		color: #0b6623;
		font-size: 18px;
	}

/*---------------------------------------
  BACK TO TOP
-----------------------------------------*/
.back-to-top {
	background-color: #0b6623;
	color: #fff;
}

	.back-to-top:hover {
		background-color: #4caf50;
	}

/*---------------------------------------
  TABLES (Grid2)
-----------------------------------------*/
.grid2 {
	border-collapse: collapse;
	width: 100%;
	text-align: center;
}

	.grid2 td {
		background-color: #f9fdf7;
		padding: 12px 10px;
		border: 1px solid #c1e0c1;
		color: #0b6623;
		transition: background-color 0.3s ease;
	}

	.grid2 tr:hover td {
		background-color: #e6f4ea;
	}

	.grid2 th {
		padding: 10px 5px;
		color: #fff;
		background-color: #0b6623;
		border: 1px solid #4caf50;
	}

		.grid2 th a {
			color: #fff;
		}

			.grid2 th a:hover {
				color: #4caf50;
			}
