/* header style  */
.body-ctn > .header-ctn {
  grid-area: head;
  width: 100%;
  padding: 1rem 2rem;
}

.header-ctn .header-box {
  display: flex;
  height: 2rem;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.header-ctn .header-box > div {
  width: 50%;
}

.header-box .search-box {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.header-box #search-input {
  width: 100%;
  height: 100%;
  padding-left: 1rem;

  background: var(--neutral-20, rgba(1, 0, 57, 0.04));
  color: #1f384c;
  border-radius: 5px;
  border: none;
  outline: none;

  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.8125rem;
  letter-spacing: 0.03125rem;
}

.search-box .search-icon {
  position: absolute;
  top: 10px;
  right: 1rem;
}

.header-box .account-info {
  width: 13rem;
  display: flex;
  justify-content: end;
  align-items: center;
}

.account-info .txt {
  font-family: "Poppins", sans-serif;
  color: #1f384c;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.8125rem;
  letter-spacing: 0.03125rem;
  margin-left: .75rem;
}

.burger-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  border-radius: 15px;
  
  background: #ffe6cc;
}

.notif-icon {
  position: relative;
  margin-left: 2rem;

  color: #b0c3cc;
}

#notif-sign {
  position: absolute;
  right: 0;
}