.header {
  height: 70px;
  display: flex;
  position: fixed;
  top: 0;
  left: 70px;
  right: 0;
  z-index: 2;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.header-show {
  transform: translateX(0px);
}

.header-menu {
  display: none;
}

.header-mini-logo {
  min-width: 70px;
  width: 70px;
  height: 100%;
  background: #1c1c1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.header-mini-logo img {
  width: 50px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-grow: 1;
}

.header-logo img {
  height: 55px;
}

.header-search {
  height: 100%;
  min-width: 70px;
  width: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  transition: width 0.3s;
  background: #fda21e;
  color: white;
}

.header-search-img-search {
  background-image: url(../svg/white-search.svg);
}

.header-search-img-close {
  background-image: url(../svg/white-close.svg);
}

.header-search-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.header-search-icon-img {
  width: 25px;
  height: 25px;
  background-size: cover;
}

.header-search-input {
  width: 0px;
  height: 50%;
}

.header-search input {
  border: 0px;
  padding: 0px;
  color: white;
  background: transparent;
  width: 100%;
  border-bottom: 1px solid;
  box-sizing: border-box;
  font-size: 17px;
  height: 100%;
  outline: none;
  transition: width 0.3s;
}

.header-search-show {
  width: 270px;
}

.header-search-show-input {
  width: 180px !important;
}

.header-search-show-img {
  opacity: 1 !important;
}

@media only screen and (max-width: 1100px) {
  .header {
    left: 50px;
    height: 50px;
  }

  .header-mini-logo {
    width: 50px;
    min-width: 50px;
  }

  .header-mini-logo img {
    width: 30px;
  }

  .header-logo img {
    height: 35px;
  }

  .header-search {
    min-width: 50px;
    width: 50px;
  }
  
  .header-search-icon {
    width: 50px;
    height: 50px;
  }

  .header-search-show {
    width: 250px;
  }
}

@media only screen and (max-width: 750px) {
  .header {
    left: 0;
    background: #ffffff;
  }

  .header-logo {
    visibility: visible !important;
  }

  .header-mini-logo {
    display: none;
  } 

  .header-menu {
    min-width: 50px;
    width: 50px;
    height: 100%;
    background: #1c1c1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
  }

  .header-search-input {
    position: fixed;
    top: 50px;
    right: 0;
    width: 270px;
    height: 50px;
    z-index: 3;
    background: inherit;
    padding: 10px;
    transform: translateX(270px);
  }
  
  .header-search-show {
    width: 50px;
  }

  .header-search-show .header-search-input {
    transform: translateX(0px);
  }
}

@media only screen and (max-width: 320px) {
  .header-logo img {
    height: 30px;
  }
}

@media only screen and (max-width: 250px) {
  .header-logo img {
    height: 15px;
  }
}