.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 42px;
  padding: 0 19px;
  background-color: #FFFFFF;
}
.header .humburger-menu-img {
  width: 20px;
}
.header .logo {
  display: none;
}
.header .logo-img {
    width: 120px;
  }
.header .bell-img {
  width: 20px;
}
.header .menu-list {
  display: none;
}
.header .left-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-no-auth {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 19px;
  background-color: #FFFFFF;
}
.header-no-auth .logo-img {
  width: 120px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .header {
    height: 60px;
  }
  .header .right-area {
    display: none;
    width: 337px;
  }
  body.humburgerMenuClose .right-area {
      display: block;
  }
  .header .humburger-menu-img {
    width: 23px;
  }
  .header .logo {
    display: inline-block;
    width: 80px;
  }
  .header .logo-img {
    width: 120px;
  }
  .header .bell-img {
    width: 23px;
  }
  .header .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .menu-item:not(:last-child) {
    margin-right: 16px;
  }
  .header .menu-item:last-child {
    margin-right: 20px;
  }
  .header .menu-link {
    color: #322F2F;
    font-size: 15px;
    text-decoration: none;
  }
  .header-no-auth {
    height: 60px;
  }
  .header-no-auth .logo-img {
    width: 120px;
  }
}