.container-header-search {
  padding: 1.3rem 1.5rem;
  border-radius: 24px;
  background: #fff;
  display: grid;
  grid-template-columns: 270.58px 1fr;
  align-items: center;
  gap: 1rem;
  .logo {
    width: 100%;
    max-width: 70px;
  }
  .container-user {
    display: flex;
    align-items: center;
    gap: 10px;
    .avatar {
      width: 60px;
      aspect-ratio: 1;
      border-radius: 100%;
      background: #c4c4c4;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    .user-name {
      display: block;
      width: 100%;
      font-family: var(--font-family-robot);
      font-size: 20px;
      font-weight: 600;
      color: #161616;
      max-width: 196.58px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: inline-block;
    }
  }
  .btn-search {
    outline: none;
    border: none;
    background: transparent;
    align-items: center;
    justify-content: center;
    width: fit-content;
    svg {
      width: 27px;
    }
  }
  .container-search {
    padding: 10px 12px;
    background: #f5f5f5;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: center;
    width: 100%;
    height: fit-content;
    input {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      height: 100%;
    }
    .btn-search {
      display: flex;
      outline: none;
      border: none;
      background: transparent;
    }
  }
  .btn-menu-offcanvas-dashboard {
    border: none;
    outline: none;
    background: transparent;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    color: #a3a3a3;
    font-size: 18px;
    &:hover {
      color: var(--color-secondary-dark);
    }
  }
}
@media (width<768px) {
  .container-header-search {
    padding: 12px 1rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    .avatar {
      width: 40px !important;
    }
    .user-name {
      font-size: 16px !important;
    }
  }
  .container-header-search {
    top: 0rem;
    position: fixed;
    width: 100%;
    left: 0;
    border-radius: 0;
    background: #fff;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    gap: 1rem;
    .user-name {
      display: none !important;
    }
  }
}

.container-header-search > .btn-search:hover svg path {
  fill: var(--color-secondary);
}
