* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
header {
  background-color: #FFF;
  padding: 5px;
  text-align: center;
  font-size: 35px;
  color: black;
  height: 120px;
  line-height: 120px;
  font-family: 'Montserrat', sans-serif;
}

h1 {
	margin-top: 0px;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  width: 100%;
  background: #333;
  padding: 10px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
  width: 50%
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
	
}

li a:hover {
  background-color: #d12b22;
	text-decoration: none;
	color: white;
}

article {
  float: left;
  padding-left: 20px;
	padding-right: 20px;
  width: 100%;
  background-color: #FFF;
  font-family: 'Montserrat', sans-serif;

}

/* Clear floats after the columns */
section:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: #FFF;
  padding: 10px;
  text-align: center;
  color: black;
  font-family: 'Montserrat', sans-serif;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }
}

input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #be322b;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;	
}

input[type=submit]:hover {
  background-color: #d12b22;
}

div {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.btn-info 
{
	background-color: #be322b;
	border-color: #be322b;
}

.btn-info:hover
{
	background-color: #d12b22;
	border-color: #d12b22;
}

.modal-content {
	width: 1000px;
	top: -20px;
	position: absolute;
}
.search-box{
	width: 100%;
	position: relative;
	display: inline-block;
	font-size: 14px;
}
.search-box input[type="text"]{
	height: 32px;
	padding: 5px 10px;
	border: 1px solid #CCCCCC;
	font-size: 14px;
}
.result{
	position: absolute;        
	z-index: 999;
	top: 100%;
	left: 0;
	padding: 0px;
}
.search-box input[type="text"], .result{
	width: 100%;
	box-sizing: border-box;
}
/* Formatting result items */
.result p{
	margin: 0;
	padding: 7px 10px;
	border: 1px solid #CCCCCC;
	border-top: none;
	cursor: pointer;
}
.result p:hover{
	background: #f2f2f2;
}

table tr {
	height: 50px;
}
* {
  box-sizing: border-box;
}

/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  /*display: inline-block;*/
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px;	
}

h4 {
	color: red;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 70px;
  left: 0;
  right: 0;
  padding: 0px;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

label {
	margin-top: 5px;
}