/** ESA HEADER CORPORATE v1.0 **/

#esa-header {
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  background-color: #003247;
  border-bottom: 4px solid #335E6F;
  color: #FFF;
  z-index: 99999;
}

#esa-header #esa-header-group {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#esa-header #esa-header-group > * {
  margin-right: 20px;
}

#esa-header button {
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  transition: all 0.25s ease; 
}
#esa-header button:hover {
  cursor: pointer;
  transform: scale(1.1);
}

#esa-header #esa-menu img {
  height: 16px;
}

#esa-header #esa-search img {
  height: 22px;
}

#esa-header #esa-signature {
  display: none;
  margin-right: 0 !important;
}

#esa-header #esa-brand {
  height: 30px;
  margin-left: auto;
}

@media (min-width: 375px) {

  #esa-header #esa-signature {
    display: block;
    height: 14px;
  }

}

@media (min-width: 450px) {

  #esa-header #esa-signature {
    height: 18px;
  }

}