/* HEADER LAYOUT */
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #6195CC;
  padding: 10px 15px;
}

/* LOGO */
.header-logo img {
  max-height: 60px;
  width: auto;
}

/* RIGHT COLUMN */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* TEXT ABOVE SEARCH */
.header-text {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 6px;
  text-align: right;
}

/* SEARCH FORM */
.global-search-form {
  display: flex;
  align-items: center;
}

.global-search-form input {
  padding: 8px 10px;
  font-size: 14px;
  border: none;
  width: 220px;
}

.global-search-form button {
  padding: 8px 14px;
  background: #cc0000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.global-search-form button:hover {
  background: #a80000;
}

/* TRANSLATE */
.translate-wrap {
  margin-top: 6px;
}

/* MOBILE */
@media (max-width: 768px) {

  .header-bar {
    padding: 8px;
  }

  .header-logo img {
    max-height: 40px;
  }

  .global-search-form input {
    width: 140px;
  }

  /* HIDE TRANSLATE ON MOBILE */
  .translate-wrap {
    display: none;
  }
}
