*:focus {
outline: 0;
outline: none;
}
.hide{
	display:none;
}
.dropbtn {
  color: white;
  padding: 0px;
  font-size: 18px;
  font-weight:500;
  border: none;
  cursor: pointer;
  min-width: 130px;
  min-height:130px;
  border-radius:50%;
}

.dropbtnClicked {
  color: white;
  padding: 0px;
  font-size: 30px;
  font-weight:500;
  border: none;
  cursor: default;
  min-width: 130px;
  min-height:45px;
  transition: all 1s ease;
  display:block;
  margin:0px auto 5px auto;
  padding:0 8px;
}
#dropdown1{
	margin-top:50px;
	transition: all 1s ease;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width:130px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.blue {
	background-color: #3498DB;
}
/* Dropdown button on hover & focus */
.blue:hover, .blue:focus {
  background-color: #2980B9;
}
.green {
	background-color: #50dc34;
}
/* Dropdown button on hover & focus */
.green:hover, .green:focus {
  background-color: #49ba29;
}
.red {
	background-color: #dc3434;
}
/* Dropdown button on hover & focus */
.red:hover, .red:focus {
  background-color: #ba2929;
}
.orange {
	background-color: #ffa300;
}
/* Dropdown button on hover & focus */
.orange:hover, .orange:focus {
  background-color: #f09100;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
#airportCodeTextbox{
	width:97px;
	margin-top:5px;
}