/* Remove the navbar's default margin-bottom and rounded borders */ 
body {
	font-family: Segoe UI;
	font-weight: bold;
	font-size : 15px;
	//background-color: #feffd8 ;
}

.border-theme-color {
	border : 1px solid #519419;
}
/********************Table : Start***********************/
.table-bordered {
	border : 1px solid green;
}
.table thead tr th{
	border : 1px solid green;
}
.table tbody tr td{
	border : 1px solid green;
}
/********************Table : End***********************/

/********************Blink : Start***********************/
.blink {
	animation: blink-animation 1s steps(5, start) infinite;
	-webkit-animation: blink-animation 1s steps(5, start) infinite;
	color:#FF0000;
}
@keyframes blink-animation {
	to {
			visibility: hidden;
	}
}
@-webkit-keyframes blink-animation {
	to {
			visibility: hidden;
	}
}
/********************Blink : End***********************/

/********************Navigation bar : Start***********************/
.navbar {
	margin-bottom: 0;
	border-radius: 0;
	display:none;
}

.navbar-default {
	background-color: #519419 ;
}

.navbar-default .navbar-brand {
	color:#FFF;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus{
	color:#FFF;
}

.navbar-default .navbar-nav > li > a {
	color:#FFF;
}

.navbar-default .navbar-nav > li > a:hover {
	color:#FFF;
}

.navbar-toggle{
	//display:block
}
/********************Navigation bar : End***********************/

/********************Side Navigation bar : Start***********************/
/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {height: 450px}

/* Set gray background color and 100% height */
.sidenav {
	padding-top: 20px;
	background-color: #f1f1f1;
	height: 100%;
}
	
/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
	.sidenav {
		height: auto;
		padding: 15px;
	}
	.row.content {height:auto;} 
}
/********************Side Navigation bar : End***********************/

/********************Column : Start***********************/
/*.col-sm-1{
	padding:5px;
}
.col-sm-2{
padding:5px;
}
.col-sm-3{
	padding:5px;
}
.col-sm-4{
	padding:5px;
}
.col-sm-5{
	padding:5px;
}
.col-sm-6{
	padding:5px;
}
.col-sm-7{
	padding:5px;
}
.col-sm-8{
	padding:5px;
}
.col-sm-9{
	padding:5px;
}
.col-sm-10{
	padding:5px;
}
.col-sm-11{
	padding:5px;
}
.col-sm-12{
	padding:5px;
}*/
/********************Column : End***********************/
/********************Well : Start***********************/
.well {
	background-color:#FFFFFF;
	border : 1px solid green;
	box-shadow: 3px 3px 8px #888888;
	margin-bottom:5px;
}
/********************Well : Start***********************/

/********************Form : Start***********************/
.btn{
	font-weight: bold;
	//font-size: 18px;
}
.btn-xs{
	//font-weight: bold;
	//font-size: 12px;
}
.btn-sm{
	//font-weight: bold;
	//font-size: 14px;
}
.btn-lg{
	//font-weight: bold;
	//font-size: 20px;
	//padding-top:2px;
	//padding-bottom:2px;
}
.btn-custom{
	background-color: white;
	border:2px solid green;
}
.btn-custom:hover{
	background-color: green;
	color:white;
}
/********************Form : End***********************/

/********************List : Start***********************/
.list-custom {
	font-weight: bold;
	font-size : 18px;
	//padding : 5px;
}
/********************List : End***********************/

/********************Footer : Start***********************/
footer {
	display:none;
	background-color: #519419 ;
	color: white;
	//padding: 5px;
	
}
/********************Footer : End***********************/

/************************Loader : Start************************/
.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16 solid blue;
	border-right: 16px solid green;
	border-bottom: 16px solid red;
	border-left: 16px solid pink;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	
	width: 100px;
	height: 100px;
	position:absolute;
	top:10%;
	left:47%;
}

@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/************************Loader : End************************/

/************************Dropdown Menu : Start************************/
	.dropbtn {
		cursor: pointer;
	}

	.dropdown {
		float: right;
		position: relative;
		display: inline-block;
	}

	.dropdown-content {
		display: none;
		position: absolute;
		background-color: #f9f9f9;
		min-width: 140px;
		overflow: auto;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		right: 0;
		z-index: 1050;
	}

	.dropdown-content a {
		color: black;
		padding: 10px 11px;
		text-decoration: none;
		display: block;
	}

	.dropdown a:hover {background-color: #f1f1f1}

	.show {display:block;}
/************************Dropdown menu : End************************/

/************************Custom : Start************************/
.fwtb {
	font-weight : bold;
}
.fsz18{
	font-size : 18px;
}
.fsz20{
	font-size : 18px;
}
/************************Custom : End************************/

/************************Other : Start************************/
.pointer{
	cursor:pointer;
}
/************************Other : End************************/
