body {
  font-family: 'Roboto', Arial, sans-serif;
}

.ab-form-promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  color: white;
  font-size: 16pt;
  font-weight: 500;
  text-align: center;
  background-color: #00aac7;
}

.ab-main-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130px;
}

.ab-main-nav-bar-logo {
  display: flex;
  align-items: center;
  width: 160px;
}

.ab-main-nav-bar-logo img {
  width: 109px;
}

.ab-main-nav-bar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 820px;
}

.ab-main-nav-bar-links a {
  color: black;
  font-size: 11pt;
  font-weight: bold;
  text-decoration: none;
  margin-left: 25px;
}

.ab-main-nav-bar-account-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
}

.ab-main-nav-bar-account-links a {
  color: black;
  font-size: 11pt;
  font-weight: bold;
  text-decoration: none;
  margin-left: 25px;
}

.ab-main-nav-bar-more-dropdown {
  position: relative;
  color: black;
  font-size: 11pt;
  font-weight: bold;
  text-decoration: none;
  margin-left: 25px;
}

.ab-main-nav-bar-more-dropdown-content {
  display: none;
  position: absolute;
  z-index: 9999;  
  background-color: #ffffff;
  min-width: 190px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  padding: 10px 0px 10px 0px !Important;
}

.ab-main-nav-bar-more-dropdown-content a {
  display: block;
  margin-left: 0 !important;
  padding: 10px 0px 10px 15px;  
}

.ab-main-nav-bar-more-dropdown:hover .ab-main-nav-bar-more-dropdown-content {
  display: block;
}

.ab-main-nav-bar-more-dropdown:hover .ab-main-nav-bar-more-dropdown-content a {
  display: block;
  color: #737373;
  font-size: 11pt;
  font-weight: 450;
}

.ab-main-nav-bar-more-dropdown-content a:hover {
  background-color: #e4e4e4;
}

.ab-form-title {  
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 75px;
  font-size: 28pt;
  font-weight: bold;
  margin-top: 20px;
  background-color: #bbedf5;
}

.ab-form-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

/* Search Bar Style Start */
.searchbar {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  background-color: black;
}

.searchbar form {
  width: 100%;
  text-align: center;
}

.searchbar input {
  width: 350px;
  height: 22px;
  font-size: 12px;
  border: 1px solid white;  
	border-radius: 2px;
  padding: 1px 0px 0px 5px;
}

.searchbar button {
  color: white;
  width: 80px;
  height: 25px;
  font-size: 12px;
  border: 1px solid white;  
	border-radius: 2px;
  background: #00aac7;
  padding: 1px 0px 0px 0px;
}

.searchbar button:hover {
  background: grey;
}

@media screen and (max-width: 490px) {
  .searchbar {margin: 0 auto; height: 40px;}
  .searchbar input {width: 200px; height: 20px; font-size: 12px; padding: 0px 0px 0px 5px; margin-bottom: 5px;}
  .searchbar button {height: 20px; font-size: 11px; padding: 1px 0px 0px 0px; margin-bottom: 5px;}
}
/* Search Bar Style End */