html {
  margin: 0 0;
}

body {
  margin: 0 0;
}

.header {
  height: 100px;
}

.header-logo {
  position: absolute;
  top: 20px;
  left: 70px;
  z-index: 10;
  width: 100px;
  height: 100px;
}

.upper-bar {
  height: 50px;
  background: rgb(236, 102, 8);
  background: linear-gradient(
    90deg,
    rgba(236, 102, 8, 1) 0%,
    rgba(228, 6, 41, 1) 100%
  );
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  position: relative;
}

.lower-bar {
  height: 50px;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 80px;
  position: relative;
}

.nav-image {
  width: 25px;
  height: 25px;
}

#nav-image-betalen {
  width: 30px;
  height: 30px;
}

input:focus {
  outline: none;
}

#search-bar {
  width: 100px;
  height: 30px;
  border-radius: 5px;
  border: none;
}

.input-box {
  width: 180px;
  height: 33px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: white;
  border-radius: 5px;
}

#search-icon {
  width: 18px;
}

::placeholder {
  font-family: "Noto Sans Georgian";
}

#letter-sizing {
  width: 40px;
  height: 33px;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#sizing-button {
  width: 20px;
}

#language {
  width: 70px;
  height: 33px;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
}

#union-jack {
  width: 20px;
}

#myCZ {
  width: 100px;
  height: 33px;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: #fff;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
}

#user-icon {
  width: 15px;
}

.nav-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 100%;
  left: 0;
  border-radius: 10px;
  font-family: "Noto Sans Georgian";
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.nav-item:hover .dropdown-content {
  display: block;
}

.nav-item a {
  text-decoration: none;
  color: black;
}
