.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  padding-top: 10px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 7px;

  background-color: black;

  z-index: 1;
}

.header .left-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  width: 325px;
}

.hamburger-menu-container {
  width: 45px;
}

.hamburger-menu {
  width: 100%;
}

.logo-container {
  width: 250px;
}

.logo {
  object-fit: contain;
}

.header .middle-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  flex: 1;
}

.searchbar {
  width: 400px;

  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 7px;
  padding-right: 7px;

  font-family: 'Times New Roman';
  font-size: 15px;

  box-shadow: 
  inset 0px 4px 7px rgb(102, 102, 102),
  inset 0px -4px 7px rgb(102, 102, 102);
  border: solid;
  border-width: 1px;
}

.searchbar::placeholder {
  font-family: 'Times New Roman';
  font-size: 17px;
}

.searchbar:focus {
  outline: none;
  border: 1px solid rgb(0, 245, 208);
  box-shadow:
  inset 1px 5px 6px rgba(0, 245, 208, 0.4),
  inset -1px -5px 6px rgba(0, 245, 208, 0.4);
}

.search-button {
  position: relative;

  width: 50px;
  height: 45px;
  margin-left: -1px;
}

.search-button .tooltip {
  position: absolute;

  font-family: Arial;
  font-size: 13px;

  bottom: -28px;
  left: -2px;

  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 5px;
  padding-right: 5px;

  border-radius: 1px;

  background-color: grey;

  opacity: 0;
  transition: opacity 0.5s;

  pointer-events: none;
}

.search-button:hover .tooltip {
  opacity: 0.9;
}

.header .right-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  width: 325px;
}

.right-section a {
  text-decoration: none;
}

.right-section div {
  margin-left: 5px;
  margin-right: 5px;

  color: white;
  font-family: 'Times New Roman';
  font-size: 19px;
}

.team-store-link:hover {
  color: rgb(0, 245, 208);
  cursor: pointer;
}

.mercedes-amg-link:hover {
  color:rgb(0, 245, 208);
  cursor: pointer;
}

.mercedes-benz-link:hover {
  color:rgb(0, 245, 208);
  cursor: pointer;
}