.header-nav-container {
  height: 72px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.header-nav-container .burger-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 56px;
  padding-right: 2px;
}

.header-nav-container .burger-menu img {
  width: 24px;
  height: 18px;
}

.header-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 97%;
  padding: 0 64px;
  border-radius: 0px 0px 0px 16px;
  float: right;
  overflow: hidden;
  background-color: white;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
}

@media (min-width: 900px) {
  .header-nav.header-scrolled {
    width: 100%;
    border-radius: 0px 0px 0px 0px;
  }
}

.header-nav .navbar-brand {
  width: 96px;
  padding: 0;
}

.header-nav .button-group {
  display: flex;
  gap: 24px;
}

.header-nav .button {
  height: 36px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 600 !important;
}

.header-nav .button.orange {
  background-color: #e87722 !important;
  color: white;
  padding: 0 10px;
}

.header-nav .button.logout {
  background-color: white;
  border: 2px solid #e87722;
  color: #e87722 !important;
  padding: 2px 14px 0 !important;
}

/******* [ Smaller screen Version ] ********/

@media screen and (max-width: 1024px) {
  .header-nav-container {
    height: 56px;
  }

  .header-nav-container .burger-menu {
    display: block;
  }

  .header-nav {
    width: 93%;
    padding: 19px 15px 19px 20px;
  }

  .header-nav .navbar-brand {
    width: 55px;
  }
}

/******* [ Tablet Version ] ********/

@media screen and (max-width: 768px) {
  .header-nav-container .burger-menu {
    padding-right: 16px;
  }
}

/******* [ Mobile Version ] ********/

@media screen and (max-width: 460px) {
  .header-nav {
    width: 85%;
  }

  .header-nav-container .burger-menu {
    padding-right: 16px;
  }

  .header-nav .button-group {
    gap: 10px;
  }
}
