@charset "utf-8";
/* CSS Document */
table.autocomp {
	width: 840px;
}
table.autocomp td.information {
  background-color: #F1F1F1;
  border-top: 1px solid DodgerBlue;
  border-left: 1px solid DodgerBlue;
  border-right: 1px solid DodgerBlue;
  border-bottom: 0px;
  padding-top: 14px;
  padding-left: 7px;
  padding-right: 7px;
  padding-bottom: 14px;
  background-image: url('../img/search.png');
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  font-size: 22px;
  font-weight: bold;
  color: #666666;
}
table.autocomp td.continent {
  background-color: DodgerBlue;
  text-align: left;
  vertical-align: middle;
  width: 370px;
}
table.autocomp td.country {
  background-color: DodgerBlue;
  text-align: right;
  vertical-align: middle;
  width: 470px;
}
table.autocomp td.search {
  width: 670px;
}
table.autocomp td.submit {
  background-color: #FF8A00;
  vertical-align: top;
  width: 170px;
}
input.search {
  border-top: 0px;
  border-left: 1px solid DodgerBlue;
  border-right: 1px solid DodgerBlue;
  border-bottom: 1px solid DodgerBlue;
  background-color: #F1F1F1;
  padding: 7px;
  font-size: 22px;
  color: DodgerBlue;
  font-weight: normal;
  width: 654px;
}
input.submit {
  background-color: #FF8A00;
  border: 0px;
  color: #FFFFFF;
  cursor: pointer;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 22px;
  font-weight: bold;
  text-transform: capitalize;
  height: 40px;
  width: 170px;
  border: 1px solid transparent;
}

div.autocomplete {
	width: 468px !important;
	text-align: left !important;
}
.autocomplete {
  position: relative;
  display: inline-block;
  border: 1px solid DodgerBlue;
}
.autocomplete input {
  border: 1px solid transparent;
  background-color: #F1F1F1;
  padding: 7px;
  font-size: 22px;
  color: DodgerBlue;
  font-weight: normal;
}
.autocomplete input[type=text] {
  background-color: #F1F1F1;
  width: 452px;
}
.autocomplete input[type=email] {
  background-color: #F1F1F1;
  width: 100%;
}
.autocomplete input[type=tel] {
  background-color: #F1F1F1;
  width: 100%;
}
.autocomplete input[type=submit] {
  background-color: DodgerBlue;
  border: 1px solid #0070DF;
  color: #FFFFFF;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  height: 38px;
  width: 720px;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid DodgerBlue;
  font-size: 22px;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #FFFFFF;
  border-bottom: 1px solid DodgerBlue;
}
.autocomplete-items div:hover {
  background-color: #E9E9E9;
}
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #FFFFFF;
  
}
.custom-select {
  position: relative;
  font-family: Arial;
  font-size: 22px;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: DodgerBlue;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #FFFFFF transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #FFFFFF transparent;
  top: 7px;
}

.select-items div,.select-selected {
  color: #FFFFFF;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}