.header {
  height: 55px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgb(99, 56, 255);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 2px;
  border-left: 0px;
  border-right: 0px;
  border-top: 0px;
  border-style: dashed;
  border-color: rgb(255, 251, 200);
  z-index: 1;
}

.header_left{
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: underline;
}

.header_center {
  flex: 1;
  margin: 0px 25px;
  max-width: 500px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_right,
.hidden_right, 
.hidden_center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5px;
  padding-right: 5px;
  width: 200px;
}

.hidden_center{
  justify-content: end;
}

.hidden_right {
  width: auto;
}

@media (min-width: 500px){
  .hidden_right {
    display: none;
  }
}

@media (max-width: 500px)  {
  .header_right {
    display: none;
  }
}

@media (min-width: 370px) {
  .hidden_center {
    display: none;
  }
}

@media (max-width: 370px) {
  .header_center{
    display: none;
  }
}

.icons {
  position: relative;
}

.icons .tooltip {
  position: absolute;
  background-color: black;
  font-size: 11px;
  text-align: center;
  padding: 3px;
  bottom: -30px;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}

.icons:hover .tooltip {
  opacity: 1;
}

.icon_search,
.icon_left,
.icon_right,
.icon_dropdown  {
  width: 40px;
}

.icon_left {
  margin-left: 5px;
}

.icon_left:hover,
.icon_right:hover,
.logo:hover {
  cursor: pointer;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
  margin-right: 5px;
  color: rgb(255, 251, 200);
}

.searchbar {
  border: 2px dashed black;
  background-color: white;
  width: 90%;
  height: 50%;
  font-weight: bold;
}

.searchbar::placeholder{
  font-weight: bold;
  color: rgb(90, 90, 90);
}

.searchbar:focus {
  outline: none;
  background-color: rgb(255, 251, 200);
}

.mini_search {
  position: relative;
}

.mini_search .search_dropdown{
  position: absolute;
  background-color: black;
  padding: 10px;
  bottom: -35px;
  right: -10px;
  display: none;
}

.mini_search:hover .search_dropdown {
  display: inline;
}

.search_dropdown input {
  border: 2px dashed black;
  background-color: white;
  font-weight: bold;
  height: 20px;
  width: auto;
}

.search_dropdown input::placeholder {
  font-weight: bold;
  color: rgb(90, 90, 90);
}

.search_dropdown input:focus {
  outline: none;
  background-color: rgb(255, 251, 200);
}

.dropdown {
  position: relative;
}

.dropdown .dropdown_menu{
  position: absolute;
  background-color: black;
  text-align: end;
  white-space: nowrap;
  padding: 3px;
  right: 0px;
  bottom: -130px;
  display: none;
}

.dropdown_text {
  margin: 10px;
  display: block;
  color: rgb(255, 251, 200);
}

.dropdown_text:hover {
  background-color: rgb(99, 56, 255);
}

.dropdown:hover .dropdown_menu{
  display: inline;
}