/*header area */
header {
  margin: 0;
  display: block;
  width: 100%;
}

.title-bar,
.xs-title-bar {
  height: 50px;
  background-color: #ffffff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.top-bar-icons {
  padding: 7px 10px;
  font-size: 1.5rem;
  position: relative;
  display: block;
  float: right;
  color: #555555;
  text-decoration: none;
}

.top-bar-icons:hover {
  background-color: #e4e4e4;
  color: #439451;
  text-decoration: none;
}
.top-bar-icons img {
  width: 100%;
  height: 100%;
}

.icon-badge {
  position: absolute;
  font-size: 14px;
  color: #fff;
  background-color: #cc1a1a;
  padding: 0.05rem 0.45rem 0.05rem 0.45rem;
  top: 4px;
  right: 2px;
  border-radius: 50%;
  display: none;
}

/*header center on home page only*/
.index-logo {
  float: left;
  width: 50px;
  height: 40px;
  margin: 5px 10px;
}

.header-title {
  float: left;
  color: #000;
  margin-bottom: 0;
  padding: 10px 10px 10px 0;
  font-size: 25px;
}

/*Top Navigation bar*/
.main-nav {
  position: fixed;
  top: 50px;
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.1em;
  margin: 0;
  z-index: 10;
  background-color: #439451;
}

.al-nav-item {
  color: #ffffff !important;
}

.al-nav-item:hover {
  background-color: #ffffff;
  color: #439451 !important;
}

.header-dropdown:hover {
  background-color: #439451;
  color: #fff;
}

.nav-item:focus > a {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

.main-nav-item {
  padding: 8px 10px;
  display: inline-block;
  text-align: center;
  color: #fff;
  margin: 0;
}

.main-nav-item:active {
  text-decoration: none;
  color: #000;
}

.main-nav-item:visited {
  color: #fff;
}

.main-nav-item:hover,
.main-nav-item:focus {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

.list-group-item.active {
  background-color: #439451 !important;
  border-color: #439451;
}

.list-group-item {
  word-wrap: break-word;
}

/* al services menu*/
.al-service-div {
  position: absolute;
  width: 500px;
  min-height: 400px;
  max-height: 80vh;
  background: #fdfdfd;
  z-index: 2;
  top: 42px;
  left: 216px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  display: none;
  overflow-y: auto;
}

.al-service-menu {
  max-height: 80vh;
  overflow: auto;
}

.al-service-item {
  cursor: pointer;
}

.al-service-item:hover {
  color: #ffffff;
  background-color: #439451;
}

.service-section {
  display: none;
}

.service-card {
  max-height: 400px;
}

.service-item-title-div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #f9f9f9;
  color: #6d6d6d;
  padding: 10px;
}

.service-item-title-div img {
  vertical-align: top;
  width: 50px;
  height: auto;
  padding-right: 5px;
}

.service-item-title-div label {
  font-size: 1.8rem;
}

.service-item-title-div a {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0.3rem 0.6rem;
  color: #1ca354;
}

.service-item-ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-item-ul li {
  padding: 0.3rem;
}

.service-content-div {
  padding: 15px;
  text-align: left;
}

/* cookie bar */
#cookieBar {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
}

.accept-cookie-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/* auto complete */

.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: 100%;
  max-height: 400px;
  left: 0;
  right: 0;
  overflow-y: auto;
  background: #ffffff;
  color: #555555;
}

.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;
}

/* scroll down icon */
.scroll-down-icon {
  position: fixed;
  bottom: 20px;
  left: 48.5%;
  width: 3%;
  background: #555555;
  z-index: 70;
  opacity: 0.6;
  border-radius: 50%;
}

.scroll-down-icon img {
  width: 100%;
  height: auto;
}

/* responsive */
.mobile-main-nav {
  display: none;
  position: fixed;
  top: 100px;
  right: 0;
  background: #ececec;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 90;
  padding: 10px;
}

.mobile-main-nav ul {
  padding: 0;
  margin: 0;
}

.mobile-main-nav ul li {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-main-nav ul li:last-child {
  border-bottom: none;
}

.mobile-main-nav ul li a {
  display: block;
  color: #000;
  text-decoration: none;
  margin: 0;
  padding: 10px;
}

.mobile-main-nav ul li a:active,
.mobile-main-nav ul li p:active {
  background: #333;
  color: #fff;
}

.hidden-mobile-sub-menu {
  position: absolute;
  top: 50px;
  height: 100%;
  z-index: 60;
  display: none;
}

.mobile-sub-menu {
  display: none;
  background: #e6e5e5;
  padding: 10px;
  box-shadow: 0px 3px 3px #c4c4c4;
}

.mobile-sub-menu ul {
  margin: 0;
  padding: 0;
}

.mobile-sub-menu ul li {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
}

.mobile-sub-menu ul li:last-child {
  border-bottom: none;
}

.mobile-sub-menu ul li a {
  display: block;
  color: #000;
  text-decoration: none;
  margin: 0;
  padding: 10px 0;
}

.mobile-drawer {
  position: fixed;
  right: -200px;
  width: 200px;
  top: 50px;
  height: 100vh;
  z-index: 10;
  background-color: #ffffff;
  box-shadow: -1px 2px 5px 1px #e0e0e0;
}

.main-nav-item {
  padding: 8px 10px;
  display: inline-block;
  text-align: center;
  color: #fff;
  margin: 0;
}

#burgerMenu,
.xs-title-bar,
.xs-drawer-list {
  display: none;
}

.mobile-drawer-list {
  padding-left: 0;
}

.mobile-drawer-list a {
  padding-left: 1.25rem;
  color: #000000;
  text-decoration: none;
}

.mobile-drawer-list a:hover,
.mobile-drawer-list a:active,
.mobile-drawer-list a:visited,
.mobile-drawer-list a:focus {
  color: #000000;
  text-decoration: none;
}

/* important notice */
.important-notice-bar {
  padding: 15px;
  text-align: center;
  background-color: #ffc400;
  color: #000000;
  font-size: 1.5em;
}

.al-search-result-btn{
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
}