.app-header {
  background-color: #363844;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  min-height: 134px;
  padding: 0 3rem;
  gap: 1rem;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
}

.app-header-spacer{
  height: 134px;
}

nav ul li:hover {
  border-radius: 5px;
  background-color: #006B99;
  border-color: #337ab7;
}

nav ul {
  list-style: none;
  padding: 1.2rem 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none !important;
  color: #fff !important;
}

nav ul li ul {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #363844;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

nav ul li:hover ul {
  display: block;
}

nav ul li ul li {
  width: 200px;
}

.submenu {
  display: none;
  position: absolute;
  top: 0px;
  left: 0;
  background-color: #363844;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  @media(max-width: 1266px){
  top: 54px;
}
}

.search-and-graphics form {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 1.5rem;
}

.search-and-graphics input[type="search"] {
  padding: 6px 12px;
  width: 100%;
  height: 40px;
  background-color: white;
  font-size: 1.2rem;
}

.btn-search {
  border-radius: 0 4px 4px 0;
  background-color: #006B99;
  border-color: #2e6da4;
  height: 40px;
  width: 40px;

}

.form-inline {
  font-size: 1.4rem;
}

.dropdown-container {
  display: none;
}


.dropdown-container.open {
  position: fixed;
  top: 134px;
  z-index: 109990;
  background-color: #52525456;
  width: 100%;
  height: 120vh;
  display: flex;
  flex-direction: row-reverse;
  display: flex;
  align-items: end;

  @media(min-width: 1267px){
    display: none;
  }

  @media(min-width: 464px){
    background-color: transparent;
  }

  animation: fade-in-normal 0.2s ease-in 0s normal none;
}

.dropdown {
  background-color: #363844;
  height: 120vh;

  @media(min-width: 744px) {
      height: fit-content;
      position: fixed !important;
      top: 134px;
      border-radius:0 0 8px 8px;
      width: 350px;
    }
}

.dropdown-list {
  display: flex;
  flex-direction: column;
}

.dropdown-list-item {
  margin: 10px 0;
}

.menu.open {
  display: block;
  flex-direction: column;
  align-items: center;
}

.logo-image {
  min-height: 100px;
}

.flex-container {
  display: flex;
  flex-direction: column;

  @media(max-width: 1266px) {
    width: 100%;
  }
}

.navbar {
  @media (max-width: 1266px) {
    display: none;
  }
}

.search-and-graphics {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-right: 1rem;
  gap: 2rem;
}

.btn-hamburger {
  background-color: #006B99;
  padding: 5px;
  border: none;
  cursor: pointer;
  border-radius: 4px;

  & svg {
    color: #ffffff;
  }

  @media(min-width: 1267px) {
    display: none;
  }
}

.btn-search {
  background-color: #006B99;
  color: #fff;
  border: none;
  height: 40px;
  padding: 5px 10px;
  cursor: pointer;
  /* // height: 3.2rem; */

  @media(max-width: 490px) {
    display: none;
  }
}

.search-bar {
  height: 3.2rem;
  width: 100%;
  border-width: 0px;
  border-radius: 8px 0 0 8px;

  @media(max-width: 490px) {
    display: none;
  }

  &:focus {
    outline: none;
    border: 2px solid transparent;
    border-color: #66afe9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075),
      0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075),
      0 0 8px rgba(102, 175, 233, .6)
  }
}


.btn-header {
  display: flex;
  align-items: center;
  color: #fff !important;
  padding: 6px 12px;
  background-color: #006B99;
  border-color: #204d74;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 4px;
  height: 40px;
  word-wrap: break-word;
  white-space: nowrap;
  text-decoration: none !important;

  &:hover {
    background-color: #286090;
  }

  @media(max-width: 744px) {
    display: none;
  }

}

.dropdown-main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 6px 12px;
  margin-inline: 8px;
  background-color: #006B99;
  border-color: #204d74;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  height: 40px;
  word-wrap: break-word;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;

  &:hover {
    background-color: #286090;
  }

  @media(min-width: 744px) {
    display: none;
  }
}

@keyframes fade-in-normal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.dropdown-search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px;
}

.dropdown-search-bar {
  height: 32px;
  width: 100%;
  border-width: 0px;
  border-radius: 8px 0 0 8px;
  text-align: center;
  
  @media(min-width: 490px) {
    height: 3.2rem;
    display: none;
  }

  &:focus {
    outline: none;
    border: 2px solid transparent;
    border-color: #66afe9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075),
      0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075),
      0 0 8px rgba(102, 175, 233, .6)
  }
}


.btn-dropdown-search-bar {
  background-color: #006B99;
  color: #fff;
  border: none;
  height: 32px;
  padding: 5px 10px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  /* // height: 3.2rem; */

  @media(min-width: 490px) {
    display: none;
  }
}
