.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 10px;
  background-color: #2b2b2b;
  border-bottom: 2px solid #6262622b;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.09);

  .logo {
    flex: 1 1 0;
    min-width: 100px;
    max-width: 100%;
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 60px;
    height: 40px;
    text-transform: uppercase;
    background: url(logo.svg) 0 center / 30px no-repeat;
    padding-left: 40px;

    span {
      color: #758280;
      margin: 0 3px;
      text-transform: uppercase;
      display: inline-block;
    }

    img {
      height: 100%;
    }
  }

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

    .header__menu {
      height: 40px;
      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%;
  height: 40px;
}

.input {
  -webkit-appearance: textfield;
  background: 0 0;
  font-family: inherit;
  font-size: 100%;
  outline: 0;
  position: relative;
  -webkit-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
  width: 100%;
  padding: 0 60px 0 20px;
  border-radius: 0px;
  background: none;
  box-shadow: none;
  color: #fff;
  border: 2px solid #899b07;
  line-height: revert-layer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.btn {
  border: 1px solid #7d7d7d;
  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;
  background: linear-gradient(135deg, #7d7d7d 0%, #65696c 100%);

  .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;
  }
}
