﻿/* CSS Document */
html, body {
	height: 100%;
}
body {
	font-size: 14px; 
	font-family:'Open Sans', sans-serif;
}

/* Remove the jumbotron's default bottom margin */ 
 .jumbotron { 
	margin-bottom: 0;
	padding-left: 40px;  
	background-color:#e6dedb ; /*;#*fdede8*/
}


/* Remove the navbar's default rounded borders and increase the bottom margin */ 
.navbar {
	padding: 0; 
	margin-bottom: 50px;
	border-radius: 0;
	background-color: #dc3545;
	border: 0;
	font-size:16px; 
}

.navbar-nav li a{
	padding: 15px 15px 15px 15px;
}

.navbar-nav li.active a {
	color: #dc3545 !important;
	background-color: #fff !important;
}

.navbar-nav li a:hover {
	color: #dc3545 !important;
	background-color: #F2F3F4  !important;
}

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

.navbar-right li.active a {
	color:#fff !important;
	background-color: #dc3545  !important;
}
.navbar-right li a:hover {
	color: #fff !important;
	background-color: #dc3545  !important;
}
/*
.navbar-inverse .navbar-nav>li>a {
	color: #fff;
}

.navbar-expand-sm .navbar-nav>li>a {
	color: #fff;
}
*/


/* Add a gray background color and some padding to the footer */
footer {
	background-color: #f2f2f2;
	padding: 25px;
}

th {
	
	background-color: #d9edf7; 
	text-align: center;
}

#err_mess{
	background-color: #FF4C4C;
	color:#FFF;
	font: bold 110%; 
	padding: 10px 10px 10px 10px; 
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	  -moz-box-sizing : content-box;
	       box-sizing : content-box;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
	   -moz-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
	        box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
}


#popup_mess{

	font: bold 110%; 
	padding: 10px 10px 10px 10px; 

}

#popup_mess.red {
	color: #a94442;
	background-color: #f2dede; /*#FF4C4C; */	
	border-color: #ebccd1;
}

#popup_mess.green {
	color: #002600;
	background-color: #c8d8c2; /* #4CAF50; */
	border-color: #002600;
}

#popup_mess.blue {
	color: #31708f;
	background-color: #d9edf7; /*#337ab7;*/
	border-color: #bce8f1;
}

.modal-header {
	font-weight: bold; 
	background-color: #dff0d8; 
}

.container.add-box {
	background-color: #d9edf7;
	padding: 40px 40px 40px 40px; 
}

.tooltip1 {
  position: relative;
  display: inline-block;
  border-bottom: 0px;
}

.tooltip1 .tooltiptext1 {
  visibility: hidden;
  width: 400px;
  background-color: #007bff;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 15px;
  position: absolute;
  z-index: 1;
  bottom: 80%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip1 .tooltiptext1::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip1:hover .tooltiptext1 {
  visibility: visible;
  opacity: 1;
}
