.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #000;

  .logo {
    height: 100%;
    max-height: 40px;

    img {
      height: 100%;
    }
  }

  .header__info {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    align-items: center;

    .header__menu {
      height: 30px;
      width: auto;
      text-align: right;
      display: inline-block;

      img {
        height: 100%;
      }
    }
  }

  .header__age {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.navbar {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: auto;
  padding: 0.5rem 0;
  position: relative;
}

.header__search {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.input {
  -webkit-appearance: textfield;
  background: 0 0;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 0.25rem 0 0 0.25rem;
  font-family: inherit;
  font-size: 100%;
  outline: 0;
  padding: 0.375rem 0.5rem;
  position: relative;
  -webkit-transition: all .75s ease-out;
  transition: all .75s ease-out;
  width: 100%;
  color: #777;
}

.btn {
  background-color: #ff524e;
  border: 1px solid #ff524e;
  border-radius: 0 0.25rem 0.25rem 0;
  cursor: pointer;
  flex-direction: column;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  margin-left: 0;
  outline: 0;
  padding: 0 0.75rem;
  position: relative;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  justify-content: center;
  align-items: center;

  .icon-magnifier {
    fill: #fff;
    margin-right: 0;
    z-index: 100;
  }

  .icon {
    height: 20px;
    overflow: hidden;
    margin-right: 2px;
    position: relative;
    top: 0px;
    width: 20px;
  }
}

.header__info {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;

  .header__close {
    border-radius: 100%;
    border: 1px solid #666;
    width: 24px;
    height: 24px;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #666;
    color: #fff !important;
    font-size: 16px;
  }
}
